commit bc93643957a83262dd9cc7c4256f356d5f7b66f4 (HEAD, refs/remotes/origin/master) Author: Paul Eggert Date: Wed Jun 8 00:35:51 2016 -0700 * src/fileio.c (auto_save_error): Omit unused local. diff --git a/src/fileio.c b/src/fileio.c index 5615639..9e3e54d 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -5376,17 +5376,13 @@ An argument specifies the modification time value to use static Lisp_Object auto_save_error (Lisp_Object error_val) { - Lisp_Object msg; - int i; - auto_save_error_occurred = 1; ring_bell (XFRAME (selected_frame)); AUTO_STRING (format, "Auto-saving %s: %s"); - msg = CALLN (Fformat, format, BVAR (current_buffer, name), - Ferror_message_string (error_val)); - + Lisp_Object msg = CALLN (Fformat, format, BVAR (current_buffer, name), + Ferror_message_string (error_val)); call3 (intern ("display-warning"), intern ("auto-save"), msg, intern ("error")); commit e8ba94bf83515a64523532cc2942033ef0364301 Author: Paul Eggert Date: Wed Jun 8 00:35:11 2016 -0700 Simplify overflow check via INT_SUBTRACT_WRAPV * src/editfns.c (check_tm_member): Simplify integer overflow check. diff --git a/src/editfns.c b/src/editfns.c index 6b0996d..81c30d3 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -2176,17 +2176,16 @@ usage: (decode-time &optional TIME ZONE) */) } /* Return OBJ - OFFSET, checking that OBJ is a valid fixnum and that - the result is representable as an int. Assume OFFSET is small and - nonnegative. */ + the result is representable as an int. */ static int check_tm_member (Lisp_Object obj, int offset) { - EMACS_INT n; CHECK_NUMBER (obj); - n = XINT (obj); - if (! (INT_MIN + offset <= n && n - offset <= INT_MAX)) + EMACS_INT n = XINT (obj); + int result; + if (INT_SUBTRACT_WRAPV (n, offset, &result)) time_overflow (); - return n - offset; + return result; } DEFUN ("encode-time", Fencode_time, Sencode_time, 6, MANY, 0, commit 378f5776fce0b4d6df95aa65be2ef6276e7bc610 Author: Glenn Morris Date: Tue Jun 7 20:50:35 2016 -0700 Try to avoid hangs and stray procs in network-stream-tests. (Bug#23560) * test/lisp/net/network-stream-tests.el (connect-to-tls-ipv4-wait) (connect-to-tls-ipv4-nowait, connect-to-tls-ipv6-nowait): Ensure gnutls-serv process gets killed. (echo-server-nowait, connect-to-tls-ipv4-nowait): Limit the amount of time we might wait. diff --git a/test/lisp/net/network-stream-tests.el b/test/lisp/net/network-stream-tests.el index 9e21420..afffeeb 100644 --- a/test/lisp/net/network-stream-tests.el +++ b/test/lisp/net/network-stream-tests.el @@ -146,10 +146,13 @@ :host "localhost" :nowait t :family 'ipv4 - :service port))) + :service port)) + (times 0)) (should (eq (process-status proc) 'connect)) - (while (eq (process-status proc) 'connect) + (while (and (eq (process-status proc) 'connect) + (< (setq times (1+ times)) 10)) (sit-for 0.1)) + (should-not (eq (process-status proc) 'connect)) (with-current-buffer (process-buffer proc) (process-send-string proc "echo foo") (sleep-for 0.1) @@ -174,24 +177,26 @@ (let ((server (make-tls-server 44332)) (times 0) proc status) - (sleep-for 1) - (with-current-buffer (process-buffer server) - (message "gnutls-serv: %s" (buffer-string))) + (unwind-protect + (progn + (sleep-for 1) + (with-current-buffer (process-buffer server) + (message "gnutls-serv: %s" (buffer-string))) - ;; It takes a while for gnutls-serv to start. - (while (and (null (ignore-errors - (setq proc (make-network-process - :name "bar" - :buffer (generate-new-buffer "*foo*") - :host "localhost" - :service 44332)))) - (< (setq times (1+ times)) 10)) - (sit-for 0.1)) - (should proc) - (gnutls-negotiate :process proc - :type 'gnutls-x509pki - :hostname "localhost") - (delete-process server) + ;; It takes a while for gnutls-serv to start. + (while (and (null (ignore-errors + (setq proc (make-network-process + :name "bar" + :buffer (generate-new-buffer "*foo*") + :host "localhost" + :service 44332)))) + (< (setq times (1+ times)) 10)) + (sit-for 0.1)) + (should proc) + (gnutls-negotiate :process proc + :type 'gnutls-x509pki + :hostname "localhost")) + (if (process-live-p server) (delete-process server))) (setq status (gnutls-peer-status proc)) (should (consp status)) (delete-process proc) @@ -210,28 +215,33 @@ (let ((server (make-tls-server 44331)) (times 0) proc status) - (sleep-for 1) - (with-current-buffer (process-buffer server) - (message "gnutls-serv: %s" (buffer-string))) + (unwind-protect + (progn + (sleep-for 1) + (with-current-buffer (process-buffer server) + (message "gnutls-serv: %s" (buffer-string))) - ;; It takes a while for gnutls-serv to start. - (while (and (null (ignore-errors - (setq proc (make-network-process - :name "bar" - :buffer (generate-new-buffer "*foo*") - :nowait t - :tls-parameters - (cons 'gnutls-x509pki - (gnutls-boot-parameters - :hostname "localhost")) - :host "localhost" - :service 44331)))) - (< (setq times (1+ times)) 10)) - (sit-for 0.1)) - (should proc) - (while (eq (process-status proc) 'connect) - (sit-for 0.1)) - (delete-process server) + ;; It takes a while for gnutls-serv to start. + (while (and (null (ignore-errors + (setq proc (make-network-process + :name "bar" + :buffer (generate-new-buffer "*foo*") + :nowait t + :tls-parameters + (cons 'gnutls-x509pki + (gnutls-boot-parameters + :hostname "localhost")) + :host "localhost" + :service 44331)))) + (< (setq times (1+ times)) 10)) + (sit-for 0.1)) + (should proc) + (setq times 0) + (while (and (eq (process-status proc) 'connect) + (< (setq times (1+ times)) 10)) + (sit-for 0.1)) + (should-not (eq (process-status proc) 'connect))) + (if (process-live-p server) (delete-process server))) (setq status (gnutls-peer-status proc)) (should (consp status)) (delete-process proc) @@ -248,29 +258,31 @@ (let ((server (make-tls-server 44333)) (times 0) proc status) - (sleep-for 1) - (with-current-buffer (process-buffer server) - (message "gnutls-serv: %s" (buffer-string))) + (unwind-protect + (progn + (sleep-for 1) + (with-current-buffer (process-buffer server) + (message "gnutls-serv: %s" (buffer-string))) - ;; It takes a while for gnutls-serv to start. - (while (and (null (ignore-errors - (setq proc (make-network-process - :name "bar" - :buffer (generate-new-buffer "*foo*") - :family 'ipv6 - :nowait t - :tls-parameters - (cons 'gnutls-x509pki - (gnutls-boot-parameters - :hostname "localhost")) - :host "::1" - :service 44333)))) - (< (setq times (1+ times)) 10)) - (sit-for 0.1)) - (should proc) - (while (eq (process-status proc) 'connect) - (sit-for 0.1)) - (delete-process server) + ;; It takes a while for gnutls-serv to start. + (while (and (null (ignore-errors + (setq proc (make-network-process + :name "bar" + :buffer (generate-new-buffer "*foo*") + :family 'ipv6 + :nowait t + :tls-parameters + (cons 'gnutls-x509pki + (gnutls-boot-parameters + :hostname "localhost")) + :host "::1" + :service 44333)))) + (< (setq times (1+ times)) 10)) + (sit-for 0.1)) + (should proc) + (while (eq (process-status proc) 'connect) + (sit-for 0.1))) + (if (process-live-p server) (delete-process server))) (setq status (gnutls-peer-status proc)) (should (consp status)) (delete-process proc) commit 3db521ccaf3a5b6892bf23ea1305c7cfe9aa1cce Author: Glenn Morris Date: Tue Jun 7 21:34:51 2016 -0400 Reduce allout.el's pollution of the namespace. * lisp/allout.el (allout-set-regexp): Rename from set-allout-regexp. Keep old name as obsolete alias. (allout-produce-mode-menubar-entries, allout-nullify-prefix-data) (allout-solicit-char-in-string) (allout-count-trailing-whitespace-region, allout-regexp-sans-escapes): Rename to add an "allout-" prefix. diff --git a/lisp/allout.el b/lisp/allout.el index 49bdc06..3a7b6e6 100644 --- a/lisp/allout.el +++ b/lisp/allout.el @@ -592,7 +592,7 @@ software. By default: See `allout-plain-bullets-string' for the standard, alternating bullets. -You must run `set-allout-regexp' in order for outline mode to +You must run `allout-set-regexp' in order for outline mode to adopt changes of this value. DO NOT include the close-square-bracket, `]', on either of the bullet @@ -947,13 +947,13 @@ case the value of `allout-default-layout' is used.") Any line whose beginning matches this regexp is considered a heading. This var is set according to the user configuration vars -by `set-allout-regexp'.") +by `allout-set-regexp'.") (make-variable-buffer-local 'allout-regexp) ;;;_ = allout-bullets-string (defvar allout-bullets-string "" "A string dictating the valid set of outline topic bullets. -This var should *not* be set by the user -- it is set by `set-allout-regexp', +This var should *not* be set by the user -- it is set by `allout-set-regexp', and is produced from the elements of `allout-plain-bullets-string' and `allout-distinctive-bullets-string'.") (make-variable-buffer-local 'allout-bullets-string) @@ -970,7 +970,7 @@ headers at depth 2 and greater. Use `allout-depth-one-regexp' for to seek topics at depth one. This var is set according to the user configuration vars by -`set-allout-regexp'. It is prepared with format strings for two +`allout-set-regexp'. It is prepared with format strings for two decimal numbers, which should each be one less than the depth of the topic prefix to be matched.") (make-variable-buffer-local 'allout-depth-specific-regexp) @@ -979,7 +979,7 @@ topic prefix to be matched.") "Regular expression to match a heading line prefix for depth one. This var is set according to the user configuration vars by -`set-allout-regexp'. It is prepared with format strings for two +`allout-set-regexp'. It is prepared with format strings for two decimal numbers, which should each be one less than the depth of the topic prefix to be matched.") (make-variable-buffer-local 'allout-depth-one-regexp) @@ -987,7 +987,7 @@ topic prefix to be matched.") (defvar allout-line-boundary-regexp () "`allout-regexp' prepended with a newline for the search target. -This is properly set by `set-allout-regexp'.") +This is properly set by `allout-set-regexp'.") (make-variable-buffer-local 'allout-line-boundary-regexp) ;;;_ = allout-bob-regexp (defvar allout-bob-regexp () @@ -999,7 +999,7 @@ This is properly set by `set-allout-regexp'.") (make-variable-buffer-local 'allout-header-subtraction) ;;;_ = allout-plain-bullets-string-len (defvar allout-plain-bullets-string-len (length allout-plain-bullets-string) - "Length of `allout-plain-bullets-string', updated by `set-allout-regexp'.") + "Length of `allout-plain-bullets-string', updated by `allout-set-regexp'.") (make-variable-buffer-local 'allout-plain-bullets-string-len) ;;;_ = allout-doublecheck-at-and-shallower @@ -1034,7 +1034,7 @@ suitably economical.") (interactive "sNew lead string: ") (setq allout-header-prefix header-lead) (setq allout-header-subtraction (1- (length allout-header-prefix))) - (set-allout-regexp)) + (allout-set-regexp)) ;;;_ X allout-lead-with-comment-string (header-lead) (defun allout-lead-with-comment-string (&optional header-lead) "Set the topic-header leading string to specified string. @@ -1114,8 +1114,8 @@ file is programming code." comment-start (not (eq 'force allout-reindent-bodies))) (setq allout-reindent-bodies nil))) -;;;_ > set-allout-regexp () -(defun set-allout-regexp () +;;;_ > allout-set-regexp () +(defun allout-set-regexp () "Generate proper topic-header regexp form for outline functions. Works with respect to `allout-plain-bullets-string' and @@ -1242,12 +1242,13 @@ Also refresh various data structures that hinge on the regexp." "[^" allout-primary-bullet "]")) "\\)" )))) +(define-obsolete-function-alias 'set-allout-regexp 'allout-set-regexp "25.2") ;;;_ : Menu bar (defvar allout-mode-exposure-menu) (defvar allout-mode-editing-menu) (defvar allout-mode-navigation-menu) (defvar allout-mode-misc-menu) -(defun produce-allout-mode-menubar-entries () +(defun allout-produce-mode-menubar-entries () (require 'easymenu) (easy-menu-define allout-mode-exposure-menu allout-mode-map-value @@ -2029,7 +2030,7 @@ OPEN: A TOPIC that is not CLOSED, though its OFFSPRING or BODY may be." (allout-infer-header-lead-and-primary-bullet) (allout-infer-body-reindent) - (set-allout-regexp) + (allout-set-regexp) (allout-add-resumptions '(allout-encryption-ciphertext-rejection-regexps allout-line-boundary-regexp extend) @@ -2038,7 +2039,7 @@ OPEN: A TOPIC that is not CLOSED, though its OFFSPRING or BODY may be." extend)) (allout-compose-and-institute-keymap) - (produce-allout-mode-menubar-entries) + (allout-produce-mode-menubar-entries) (add-to-invisibility-spec '(allout . t)) @@ -2245,8 +2246,8 @@ the new value of `allout-recent-prefix-beginning'." allout-recent-prefix-beginning allout-header-subtraction))) allout-recent-prefix-beginning) -;;;_ > nullify-allout-prefix-data () -(defsubst nullify-allout-prefix-data () +;;;_ > allout-nullify-prefix-data () +(defsubst allout-nullify-prefix-data () "Mark allout prefix data as being uninformative." (setq allout-recent-prefix-end (point) allout-recent-prefix-beginning (point) @@ -2381,7 +2382,7 @@ Like `allout-current-depth', but respects hidden as well as visible topics." allout-recent-depth (progn ;; Oops, no prefix, nullify it: - (nullify-allout-prefix-data) + (allout-nullify-prefix-data) ;; ... and return 0: 0))))) ;;;_ > allout-current-depth () @@ -3478,11 +3479,11 @@ Offer one suitable for current depth DEPTH as default." (let* ((default-bullet (or (and (stringp current-bullet) current-bullet) (allout-bullet-for-depth depth))) - (sans-escapes (regexp-sans-escapes allout-bullets-string)) + (sans-escapes (allout-regexp-sans-escapes allout-bullets-string)) choice) (save-excursion (goto-char (allout-current-bullet-pos)) - (setq choice (solicit-char-in-string + (setq choice (allout-solicit-char-in-string (format-message "Select bullet: %s (`%s' default): " sans-escapes @@ -6341,7 +6342,7 @@ save. See `allout-encrypt-unencrypted-on-saves' for more info." ;; we had to wait for this 'til now so prior topics are ;; encrypted, any relevant text shifts are in place: editing-point (- current-mark-position - (count-trailing-whitespace-region + (allout-count-trailing-whitespace-region bo-subtree current-mark-position)))) (allout-toggle-subtree-encryption) (if (not was-modified) @@ -6507,8 +6508,8 @@ not its value." (allout-end-of-current-subtree) (exchange-point-and-mark)) ;;;_ : UI: -;;;_ > solicit-char-in-string (prompt string &optional do-defaulting) -(defun solicit-char-in-string (prompt string &optional do-defaulting) +;;;_ > allout-solicit-char-in-string (prompt string &optional do-defaulting) +(defun allout-solicit-char-in-string (prompt string &optional do-defaulting) "Solicit (with first arg PROMPT) choice of a character from string STRING. Optional arg DO-DEFAULTING indicates to accept empty input (CR)." @@ -6541,8 +6542,8 @@ Optional arg DO-DEFAULTING indicates to accept empty input (CR)." got) ) ;;;_ : Strings: -;;;_ > regexp-sans-escapes (string) -(defun regexp-sans-escapes (regexp &optional successive-backslashes) +;;;_ > allout-regexp-sans-escapes (string) +(defun allout-regexp-sans-escapes (regexp &optional successive-backslashes) "Return a copy of REGEXP with all character escapes stripped out. Representations of actual backslashes -- `\\\\\\\\' -- are left as a @@ -6561,11 +6562,11 @@ Optional arg SUCCESSIVE-BACKSLASHES is used internally for recursion." (if (or (not successive-backslashes) (= 2 successive-backslashes)) ;; Include first char: (concat (substring regexp 0 1) - (regexp-sans-escapes (substring regexp 1))) + (allout-regexp-sans-escapes (substring regexp 1))) ;; Exclude first char, but maintain count: - (regexp-sans-escapes (substring regexp 1) successive-backslashes)))) -;;;_ > count-trailing-whitespace-region (beg end) -(defun count-trailing-whitespace-region (beg end) + (allout-regexp-sans-escapes (substring regexp 1) successive-backslashes)))) +;;;_ > allout-count-trailing-whitespace-region (beg end) +(defun allout-count-trailing-whitespace-region (beg end) "Return number of trailing whitespace chars between BEG and END. If BEG is bigger than END we return 0." @@ -6797,9 +6798,9 @@ To ignore intangibility, bind `inhibit-point-motion-hooks' to t." "Isearch (regexp) for topic with bullet BULLET." (interactive) (if (not bullet) - (setq bullet (solicit-char-in-string + (setq bullet (allout-solicit-char-in-string "ISearch for topic with bullet: " - (regexp-sans-escapes allout-bullets-string)))) + (allout-regexp-sans-escapes allout-bullets-string)))) (let ((isearch-regexp t) (isearch-string (concat "^" commit e533ea819f73b7715a3413697de5c35268b45d78 Author: Glenn Morris Date: Tue Jun 7 21:31:08 2016 -0400 * configure.ac (emacs_config_features): Add CANNOT_DUMP. diff --git a/configure.ac b/configure.ac index 73fce2d..a367582 100644 --- a/configure.ac +++ b/configure.ac @@ -5236,9 +5236,10 @@ emacs_config_features= for opt in XAW3D XPM JPEG TIFF GIF PNG RSVG CAIRO IMAGEMAGICK SOUND GPM DBUS \ GCONF GSETTINGS NOTIFY ACL LIBSELINUX GNUTLS LIBXML2 FREETYPE M17N_FLT \ LIBOTF XFT ZLIB TOOLKIT_SCROLL_BARS X_TOOLKIT X11 NS MODULES \ - XWIDGETS LIBSYSTEMD; do + XWIDGETS LIBSYSTEMD CANNOT_DUMP; do case $opt in + CANNOT_DUMP) eval val=\${$opt} ;; NOTIFY|ACL) eval val=\${${opt}_SUMMARY} ;; TOOLKIT_SCROLL_BARS|X_TOOLKIT) eval val=\${USE_$opt} ;; *) eval val=\${HAVE_$opt} ;; commit 95443fc07f2a0ac22d4852fd68f94b46d5b78909 Author: Glenn Morris Date: Tue Jun 7 21:29:30 2016 -0400 Misc small webjump updates. * lisp/net/webjump.el (webjump): Add custom group. (webjump-sample-sites): Make it a constant. Remove explicit, old list of GNU ftp mirrors. (webjump-state-to-postal-alist): Make it a constant. (webjump-sites): Make it a defcustom. (webjump-to-iwin): Update for changed remote service. diff --git a/lisp/net/webjump.el b/lisp/net/webjump.el index 41b7a7b..46f17af 100644 --- a/lisp/net/webjump.el +++ b/lisp/net/webjump.el @@ -67,142 +67,18 @@ ;;------------------------------------------------------------------- Constants -(defvar webjump-sample-sites +(defgroup webjump nil + "Programmable Web hotlist." + :prefix "webjump-" + :group 'browse-url) + +(defconst webjump-sample-sites '( ;; FSF, not including Emacs-specific. ("GNU Project FTP Archive" . ;; GNU FTP Mirror List from http://www.gnu.org/order/ftp.html [mirrors "ftp://ftp.gnu.org/pub/gnu/" - ;; United States - "ftp://mirrors.kernel.org/gnu" - "ftp://gatekeeper.dec.com/pub/GNU/" - "ftp://ftp.keystealth.org/pub/gnu/" - "ftp://mirrors.usc.edu/pub/gnu/" - "ftp://cudlug.cudenver.edu/pub/mirrors/ftp.gnu.org/" - "ftp://ftp.cise.ufl.edu/pub/mirrors/GNU/" - "ftp://uiarchive.cso.uiuc.edu/pub/ftp/ftp.gnu.org/gnu/" - "ftp://gnu.cs.lewisu.edu/gnu/" - "ftp://ftp.in-span.net/pub/mirrors/ftp.gnu.org/" - "ftp://gnu.ms.uky.edu/pub/mirrors/gnu/" - "ftp://ftp.algx.net/pub/gnu/" - "ftp://aeneas.mit.edu/pub/gnu/" - "ftp://ftp.egr.msu.edu/pub/gnu/" - "ftp://ftp.wayne.edu/pub/gnu/" - "ftp://wuarchive.wustl.edu/mirrors/gnu/" - "ftp://gnu.teleglobe.net/ftp.gnu.org/" - "ftp://ftp.cs.columbia.edu/archives/gnu/prep/" - "ftp://ftp.ece.cornell.edu/pub/mirrors/gnu/" - "ftp://ftp.ibiblio.org/pub/mirrors/gnu/" - "ftp://ftp.cis.ohio-state.edu/mirror/gnu/" - "ftp://ftp.club.cc.cmu.edu/gnu/" - "ftp://ftp.sunsite.utk.edu/pub/gnu/ftp/" - "ftp://thales.memphis.edu/pub/gnu/" - "ftp://gnu.wwc.edu" - "ftp://ftp.twtelecom.net/pub/GNU/" - ;; Africa - "ftp://ftp.sun.ac.za/mirrorsites/ftp.gnu.org" - ;; The Americas - "ftp://ftp.unicamp.br/pub/gnu/" - "ftp://master.softaplic.com.br/pub/gnu/" - "ftp://ftp.matrix.com.br/pub/gnu/" - "ftp://ftp.pucpr.br/gnu" - "ftp://ftp.linorg.usp.br/gnu" - "ftp://ftp.cs.ubc.ca/mirror2/gnu/" - "ftp://cs.ubishops.ca/pub/ftp.gnu.org/" - "ftp://ftp.inf.utfsm.cl/pub/gnu/" - "ftp://sunsite.ulatina.ac.cr/Mirrors/GNU/" - "ftp://www.gnu.unam.mx/pub/gnu/software/" - "ftp://gnu.cem.itesm.mx/pub/mirrors/gnu.org/" - "ftp://ftp.azc.uam.mx/mirrors/gnu/" - ;; Australia - "ftp://mirror.aarnet.edu.au/pub/gnu/" - "ftp://gnu.mirror.pacific.net.au/gnu/" - ;; Asia - "ftp://ftp.cs.cuhk.edu.hk/pub/gnu/gnu/" - "ftp://sunsite.ust.hk/pub/gnu/" - "ftp://ftp.gnupilgrims.org/pub/gnu" - "ftp://www.imtech.res.in/mirror/gnuftp/" - "ftp://kambing.vlsm.org/gnu" - "ftp://ftp.cs.huji.ac.il/mirror/GNU/" - "ftp://tron.um.u-tokyo.ac.jp/pub/GNU/" - "ftp://core.ring.gr.jp/pub/GNU/" - "ftp://ftp.ring.gr.jp/pub/GNU/" - "ftp://mirrors.hbi.co.jp/gnu/" - "ftp://ftp.cs.titech.ac.jp/pub/gnu/" - "ftp://ftpmirror.hanyang.ac.kr/GNU/" - "ftp://ftp.linux.sarang.net/mirror/gnu/gnu/" - "ftp://ftp.xgate.co.kr/pub/mirror/gnu/" - "ftp://ftp://gnu.xinicks.com/" - "ftp://ftp.isu.net.sa/pub/gnu/" - "ftp://ftp.nctu.edu.tw/UNIX/gnu/" - "ftp://coda.nctu.edu.tw/UNIX/gnu/" - "ftp://ftp1.sinica.edu.tw/pub3/GNU/gnu/" - "ftp://gnu.cdpa.nsysu.edu.tw/gnu" - "ftp://ftp.nectec.or.th/pub/mirrors/gnu/" - ;; Europe - "ftp://ftp.gnu.vbs.at/" - "ftp://ftp.univie.ac.at/packages/gnu/" - "ftp://gd.tuwien.ac.at/gnu/gnusrc/" - "ftp://ftp.belnet.be/mirror/ftp.gnu.org/" - "ftp://gnu.blic.net/pub/gnu/" - "ftp://ftp.fi.muni.cz/pub/gnu/" - "ftp://ftp.dkuug.dk/pub/gnu/" - "ftp://sunsite.dk/mirrors/gnu" - "ftp://ftp.funet.fi/pub/gnu/prep/" - "ftp://ftp.irisa.fr/pub/gnu/" - "ftp://ftp.cs.univ-paris8.fr/mirrors/ftp.gnu.org/" - "ftp://ftp.cs.tu-berlin.de/pub/gnu/" - "ftp://ftp.leo.org/pub/comp/os/unix/gnu/" - "ftp://ftp.informatik.rwth-aachen.de/pub/gnu/" - "ftp://ftp.de.uu.net/pub/gnu/" - "ftp://ftp.freenet.de/pub/ftp.gnu.org/gnu/" - "ftp://ftp.cs.uni-bonn.de/pub/gnu/" - "ftp://ftp-stud.fht-esslingen.de/pub/Mirrors/ftp.gnu.org/" - "ftp://ftp.stw-bonn.de/pub/mirror/ftp.gnu.org/" - "ftp://ftp.math.uni-bremen.de/pub/gnu" - "ftp://ftp.forthnet.gr/pub/gnu/" - "ftp://ftp.ntua.gr/pub/gnu/" - "ftp://ftp.duth.gr/pub/gnu/" - "ftp://ftp.physics.auth.gr/pub/gnu/" - "ftp://ftp.esat.net/pub/gnu/" - "ftp://ftp.heanet.ie/mirrors/ftp.gnu.org" - "ftp://ftp.lugroma2.org/pub/gnu/" - "ftp://ftp.gnu.inetcosmos.org/pub/gnu/" - "ftp://ftp.digitaltrust.it/pub/gnu" - "ftp://ftp://rm.mirror.garr.it/mirrors/gnuftp" - "ftp://ftp.nluug.nl/pub/gnu/" - "ftp://ftp.mirror.nl/pub/mirror/gnu/" - "ftp://ftp.nl.uu.net/pub/gnu/" - "ftp://mirror.widexs.nl/pub/gnu/" - "ftp://ftp.easynet.nl/mirror/GNU/" - "ftp://ftp.win.tue.nl/pub/gnu" - "ftp://gnu.mirror.vuurwerk.net/pub/GNU/" - "ftp://gnu.kookel.org/pub/ftp.gnu.org/" - "ftp://ftp.uninett.no/pub/gnu/" - "ftp://ftp.task.gda.pl/pub/gnu/" - "ftp://sunsite.icm.edu.pl/pub/gnu/" - "ftp://ftp.man.poznan.pl/pub/gnu" - "ftp://ftp.ist.utl.pt/pub/GNU/gnu/" - "ftp://ftp.telepac.pt/pub/gnu/" - "ftp://ftp.timisoara.roedu.net/mirrors/ftp.gnu.org/pub/gnu" - "ftp://ftp.chg.ru/pub/gnu/" - "ftp://gnuftp.axitel.ru/" - "ftp://ftp.arnes.si/software/gnu/" - "ftp://ftp.etsimo.uniovi.es/pub/gnu/" - "ftp://ftp.rediris.es/pub/gnu/" - "ftp://ftp.chl.chalmers.se/pub/gnu/" - "ftp://ftp.isy.liu.se/pub/gnu/" - "ftp://ftp.luth.se/pub/unix/gnu/" - "ftp://ftp.stacken.kth.se/pub/gnu/" - "ftp://ftp.sunet.se/pub/gnu/" - "ftp://sunsite.cnlab-switch.ch/mirror/gnu/" - "ftp://ftp.ulak.net.tr/gnu/" - "ftp://ftp.gnu.org.ua" - "ftp://ftp.mcc.ac.uk/pub/gnu/" - "ftp://ftp.mirror.ac.uk/sites/ftp.gnu.org/gnu/" - "ftp://ftp.warwick.ac.uk/pub/gnu/" - "ftp://ftp.hands.com/ftp.gnu.org/" - "ftp://gnu.teleglobe.net/ftp.gnu.org/"]) + "http://ftpmirror.gnu.org"]) ("GNU Project Home Page" . "www.gnu.org") ;; Emacs. @@ -233,7 +109,7 @@ [simple-query "wikipedia.org" "wikipedia.org/wiki/" ""]) ;; Misc. general interest. - ("Interactive Weather Information Network" . webjump-to-iwin) + ("National Weather Service" . webjump-to-iwin) ("Usenet FAQs" . "www.faqs.org/faqs/") ("RTFM Usenet FAQs by Group" . @@ -254,10 +130,10 @@ "www.neilvandyke.org/webjump/") ) - "Sample hotlist for WebJump. See the documentation for the `webjump' -function and the `webjump-sites' variable.") + "Sample hotlist for WebJump. +See the documentation for `webjump' and `webjump-sites'.") -(defvar webjump-state-to-postal-alist +(defconst webjump-state-to-postal-alist '(("Alabama" . "al") ("Alaska" . "ak") ("Arizona" . "az") ("Arkansas" . "ar") ("California" . "ca") ("Colorado" . "co") ("Connecticut" . "ct") ("Delaware" . "de") ("Florida" . "fl") ("Georgia" . "ga") ("Hawaii" . "hi") @@ -277,8 +153,7 @@ function and the `webjump-sites' variable.") ;;------------------------------------------------------------ Option Variables -(defvar webjump-sites - webjump-sample-sites +(defcustom webjump-sites webjump-sample-sites "Hotlist for WebJump. The hotlist is represented as an association list, with the CAR of each cell @@ -309,33 +184,47 @@ parameter. This might come in handy for various kludges. For convenience, if the `http://', `ftp://', or `file://' prefix is missing from a URL, WebJump will make a guess at what you wanted and prepend it before -submitting the URL.") +submitting the URL." + :type '(alist :key-type (string :tag "Name") + :value-type (choice :tag "URL" + (string :tag "URL") + function + (vector :tag "Builtin" + (symbol :tag "Name") + (repeat :inline t :tag "Arguments" + string)) + (sexp :tag "Expression to eval")))) ;;------------------------------------------------------- Sample Site Functions (defun webjump-to-iwin (name) - (let ((prefix "http://iwin.nws.noaa.gov/") - (state (webjump-read-choice name "state" - (append '(("Puerto Rico" . "pr")) - webjump-state-to-postal-alist)))) - (if state - (concat prefix "iwin/" state "/" - (webjump-read-choice name "option" - '(("Hourly Report" . "hourly") - ("State Forecast" . "state") - ("Local Forecast" . "local") - ("Zone Forecast" . "zone") - ("Short-Term Forecast" . "shortterm") - ("Weather Summary" . "summary") - ("Public Information" . "public") - ("Climatic Data" . "climate") - ("Aviation Products" . "aviation") - ("Hydro Products" . "hydro") - ("Special Weather" . "special") - ("Watches and Warnings" . "warnings")) - "zone") - ".html") - prefix))) + (let* ((prefix "http://www.nws.noaa.gov/view/") + (state (webjump-read-choice name "state" + (append '(("Puerto Rico" . "pr") + ("Guam" . "gu") + ("American Samoa" . "as") + ("District of Columbia" . "dc") + ("US Virgin Islands" . "vi")) + webjump-state-to-postal-alist))) + (opt (if state + (webjump-read-choice + name "option" + '(("Hourly Report" . "hourly") + ("State Forecast" . "state") + ("Zone Forecast" . "zone") + ("Short-Term Forecast" . "shortterm") + ("Forecast Discussion" . "discussion") + ("Weather Summary" . "summary") + ("Public Information" . "public") + ("Climatic Data" . "climate") + ("Hydro Products" . "hydro") + ("Watches" . "watches") + ("Special Weather" . "special") + ("Warnings and Advisories" . "warnings") + ("Fire Weather" . "firewx")))))) + (cond (opt (concat prefix "prodsByState.php?state=" state "&prodtype=" opt)) + (state (concat prefix "states.php?state=" state)) + (t prefix)))) (defun webjump-to-risks (name) (let (issue volume) commit 3a28d64e275ca6860f81016b04a2024d9c66da1f Author: Glenn Morris Date: Tue Jun 7 21:25:20 2016 -0400 Do not hard-code port for package test server. (Bug#23708) * test/lisp/emacs-lisp/package-resources/package-test-server.py: Do not hard-code port. * test/lisp/emacs-lisp/package-tests.el (package-test-update-archives-async): Update for the above change. diff --git a/test/lisp/emacs-lisp/package-resources/package-test-server.py b/test/lisp/emacs-lisp/package-resources/package-test-server.py index 35ca820..1acd9f7 100644 --- a/test/lisp/emacs-lisp/package-resources/package-test-server.py +++ b/test/lisp/emacs-lisp/package-resources/package-test-server.py @@ -10,7 +10,7 @@ if sys.argv[1:]: port = int(sys.argv[1]) else: - port = 8000 + port = 0 server_address = ('127.0.0.1', port) HandlerClass.protocol_version = Protocol diff --git a/test/lisp/emacs-lisp/package-tests.el b/test/lisp/emacs-lisp/package-tests.el index c7a5cc7..0a446fd 100644 --- a/test/lisp/emacs-lisp/package-tests.el +++ b/test/lisp/emacs-lisp/package-tests.el @@ -372,16 +372,28 @@ Must called from within a `tar-mode' buffer." (skip-unless (executable-find "python2")) ;; For some reason this test doesn't work reliably on hydra.nixos.org. (skip-unless (not (getenv "NIX_STORE"))) - (with-package-test (:basedir - package-test-data-dir - :location "http://0.0.0.0:8000/") - (let* ((package-menu-async t) - (process (start-process - "package-server" "package-server-buffer" - (executable-find "python2") - (expand-file-name "package-test-server.py")))) - (unwind-protect - (progn + (let* ((package-menu-async t) + (default-directory package-test-data-dir) + (process (start-process + "package-server" "package-server-buffer" + (executable-find "python2") + "package-test-server.py")) + port) + (unwind-protect + (progn + (with-current-buffer "package-server-buffer" + (should + (with-timeout (10 nil) + (while (not port) + (accept-process-output nil 1) + (goto-char (point-min)) + (if (re-search-forward "Serving HTTP on .* port \\([0-9]+\\) " + nil t) + (setq port (match-string 1)))) + port))) + (with-package-test (:basedir + package-test-data-dir + :location (format "http://0.0.0.0:%s/" port)) (list-packages) (should package--downloads-in-progress) (should mode-line-process) @@ -395,8 +407,8 @@ Must called from within a `tar-mode' buffer." (skip-unless (process-live-p process)) (goto-char (point-min)) (should - (search-forward-regexp "^ +simple-single" nil t))) - (if (process-live-p process) (kill-process process)))))) + (search-forward-regexp "^ +simple-single" nil t)))) + (if (process-live-p process) (kill-process process))))) (ert-deftest package-test-describe-package () "Test displaying help for a package." commit f4ef1a1fea15aa58fbb5e7a59bff260720658e49 Author: Tino Calancha Date: Tue Jun 7 20:35:24 2016 -0400 * lisp/ibuffer.el (ibuffer): Improve 'other-window' case. (Bug#23617) diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el index dd2687c..609524c 100644 --- a/lisp/ibuffer.el +++ b/lisp/ibuffer.el @@ -2341,7 +2341,8 @@ FORMATS is the value to use for `ibuffer-formats'. (setq other-window-p t)) (let ((buf (get-buffer-create (or name "*Ibuffer*")))) (if other-window-p - (funcall (if noselect (lambda (buf) (display-buffer buf t)) #'pop-to-buffer) buf) + (or (and noselect (display-buffer buf t)) + (pop-to-buffer buf t)) (funcall (if noselect #'display-buffer #'switch-to-buffer) buf)) (with-current-buffer buf (save-selected-window commit e686f4760ca8e4fe3fb414cfeac0948e0f99a4ec Author: Glenn Morris Date: Tue Jun 7 19:31:29 2016 -0400 * src/fileio.c (auto_save_error): Use display-warning. (Bug#23703) diff --git a/src/fileio.c b/src/fileio.c index 9da0bf0..5615639 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -5387,14 +5387,8 @@ auto_save_error (Lisp_Object error_val) msg = CALLN (Fformat, format, BVAR (current_buffer, name), Ferror_message_string (error_val)); - for (i = 0; i < 3; ++i) - { - if (i == 0) - message3 (msg); - else - message3_nolog (msg); - Fsleep_for (make_number (1), Qnil); - } + call3 (intern ("display-warning"), + intern ("auto-save"), msg, intern ("error")); return Qnil; } commit 738738259ba77fe17e433c64e0758ea59ab5bc75 Author: Tino Calancha Date: Tue Jun 7 19:24:51 2016 -0400 * lisp/ibuf-ext.el (ibuffer-do-shell-command-file): Fix non-file-visiting-buffer case. (Bug#22678) diff --git a/lisp/ibuf-ext.el b/lisp/ibuf-ext.el index 6052bf3..0baab6b 100644 --- a/lisp/ibuf-ext.el +++ b/lisp/ibuf-ext.el @@ -347,10 +347,14 @@ the mode if ARG is omitted or nil." :modifier-p nil) (shell-command (concat command " " (shell-quote-argument - (if buffer-file-name - buffer-file-name - (make-temp-file - (substring (buffer-name) 0 (min 10 (length (buffer-name)))))))))) + (or buffer-file-name + (let ((file + (make-temp-file + (substring + (buffer-name) 0 + (min 10 (length (buffer-name))))))) + (write-region nil nil file nil 0) + file)))))) ;;;###autoload (autoload 'ibuffer-do-eval "ibuf-ext") (define-ibuffer-op eval (form) commit 2f9d547329e8459965692383c5a95d41b7035726 Author: Paul Eggert Date: Tue Jun 7 16:18:02 2016 -0700 Port --enable-gcc-warnings to clang 3.7.0 * configure.ac: Add -Wno-tautological-compare to avoid bogus warnings about 0 <= rlim.rlim_max. Remove flags that no longer seem to be needed, at least in Fedora 23 x86-64. diff --git a/configure.ac b/configure.ac index 37a159f..73fce2d 100644 --- a/configure.ac +++ b/configure.ac @@ -986,10 +986,8 @@ AS_IF([test $gl_gcc_warnings = no], # More things that clang is unduly picky about. if test $emacs_cv_clang = yes; then - gl_WARN_ADD([-Wno-format-extra-args]) + gl_WARN_ADD([-Wno-tautological-compare]) gl_WARN_ADD([-Wno-tautological-constant-out-of-range-compare]) - gl_WARN_ADD([-Wno-unused-command-line-argument]) - gl_WARN_ADD([-Wno-unused-value]) fi # This causes too much noise in the MinGW build commit 302185156b6c20df5400a9956c09d6c24d29f652 Author: Paul Eggert Date: Tue Jun 7 15:41:51 2016 -0700 Use __builtin_assume_aligned on untagged Lisp vals * src/conf_post.h (__has_builtin, __builtin_assume_aligned): New macros, for compilers not already defining them. (__has_builtin___builtin_assume_aligned): New macro. * src/lisp.h (lisp_h_XUNTAG): Use __builtin_assume_aligned. This shrinks text space by 0.2% on x86-64 with GCC 6.1. diff --git a/src/conf_post.h b/src/conf_post.h index bea2a8a..762aa77 100644 --- a/src/conf_post.h +++ b/src/conf_post.h @@ -64,6 +64,15 @@ typedef bool bool_bf; (4 < __GNUC__ + (8 <= __GNUC_MINOR__)) #endif +/* Simulate __has_builtin on compilers that lack it. It is used only + on arguments like __builtin_assume_aligned that are handled in this + simulation. */ +#ifndef __has_builtin +# define __has_builtin(a) __has_builtin_##a +# define __has_builtin___builtin_assume_aligned \ + (4 < __GNUC__ + (7 <= __GNUC_MINOR__)) +#endif + /* Simulate __has_feature on compilers that lack it. It is used only to define ADDRESS_SANITIZER below. */ #ifndef __has_feature @@ -77,6 +86,11 @@ typedef bool bool_bf; # define ADDRESS_SANITIZER false #endif +/* Yield PTR, which must be aligned to ALIGNMENT. */ +#if ! __has_builtin (__builtin_assume_aligned) +# define __builtin_assume_aligned(ptr, alignment, ...) ((void *) (ptr)) +#endif + #ifdef DARWIN_OS #ifdef emacs #define malloc unexec_malloc diff --git a/src/lisp.h b/src/lisp.h index 1fc6130..4042f4d 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -341,7 +341,9 @@ error !; (struct Lisp_Symbol *) ((intptr_t) XLI (a) - Lisp_Symbol \ + (char *) lispsym)) # define lisp_h_XTYPE(a) ((enum Lisp_Type) (XLI (a) & ~VALMASK)) -# define lisp_h_XUNTAG(a, type) ((void *) (intptr_t) (XLI (a) - (type))) +# define lisp_h_XUNTAG(a, type) \ + __builtin_assume_aligned ((void *) (intptr_t) (XLI (a) - (type)), \ + GCALIGNMENT) #endif /* When compiling via gcc -O0, define the key operations as macros, as commit 8ea5d990f6315917bbd9c7b94856c52137405dad Author: Glenn Morris Date: Tue Jun 7 16:44:48 2016 -0400 * lisp/help-fns.el (describe-function-1): Avoid reporting advised aliases as the type of their targets. diff --git a/lisp/help-fns.el b/lisp/help-fns.el index 040152a..f591392 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el @@ -541,14 +541,14 @@ FILE is the file where FUNCTION was probably defined." ;; Print what kind of function-like object FUNCTION is. (princ (cond ((or (stringp def) (vectorp def)) "a keyboard macro") - ((subrp def) - (if (eq 'unevalled (cdr (subr-arity def))) - (concat beg "special form") - (concat beg "built-in function"))) ;; Aliases are Lisp functions, so we need to check ;; aliases before functions. (aliased (format-message "an alias for `%s'" real-def)) + ((subrp def) + (if (eq 'unevalled (cdr (subr-arity def))) + (concat beg "special form") + (concat beg "built-in function"))) ((autoloadp def) (format "%s autoloaded %s" (if (commandp def) "an interactive" "an") commit b7adc2f23787eb72015cd705b873e229db6a5049 Author: Tino Calancha Date: Tue Jun 7 15:06:38 2016 -0400 * lisp/simple.el (process-menu-mode, list-processes--refresh): Include PID. (Bug#21725) diff --git a/lisp/simple.el b/lisp/simple.el index 3d25ec1..6c30929 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -3765,6 +3765,7 @@ support pty association, if PROGRAM is nil." (define-derived-mode process-menu-mode tabulated-list-mode "Process Menu" "Major mode for listing the processes called by Emacs." (setq tabulated-list-format [("Process" 15 t) + ("PID" 7 t) ("Status" 7 t) ("Buffer" 15 t) ("TTY" 12 t) @@ -3796,6 +3797,7 @@ Also, delete any process that is exited or signaled." (process-query-on-exit-flag p)) (let* ((buf (process-buffer p)) (type (process-type p)) + (pid (if (process-id p) (format "%d" (process-id p)) "--")) (name (process-name p)) (status (symbol-name (process-status p))) (buf-label (if (buffer-live-p buf) @@ -3831,7 +3833,7 @@ Also, delete any process that is exited or signaled." (format " at %s b/s" speed) ""))))) (mapconcat 'identity (process-command p) " ")))) - (push (list p (vector name status buf-label tty cmd)) + (push (list p (vector name pid status buf-label tty cmd)) tabulated-list-entries)))))) (defun process-menu-visit-buffer (button) commit 62564a6ad2e897785c6cb1f84778814cfb4a9cd4 Author: Glenn Morris Date: Tue Jun 7 13:55:33 2016 -0400 ; * etc/NEWS: Fix a typo. diff --git a/etc/NEWS b/etc/NEWS index a72be53..7f91721 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -103,8 +103,8 @@ have been added. They are: 'file-attribute-type', 'file-attribute-device-number'. +++ -** The new function 'buffer-hash' computes compute a fast, non-consing -hash of a buffer's contents. +** The new function 'buffer-hash' computes a fast, non-consing hash of +a buffer's contents. --- ** 'fill-paragraph' no longer marks the buffer as changed unless it commit 2aa6b47e3e216410195cf7ec3abb5902f38082fa Merge: 5bc3263 6e3adf8 Author: Paul Eggert Date: Tue Jun 7 09:34:27 2016 -0700 Merge from origin/emacs-25 6e3adf8 Fix crash in syntax.c after GC 973ce5a Improve squiggly heredoc support in non-SMIE Ruby mode 9d5cceb Fix doc string quoting 0b33a23 Fix mouse dragging of vertical dividers with scroll bars on l... a5d05f4 * etc/PROBLEMS: Mention the link-time problems on FreeBSD 11. commit 5bc3263303bde93db32b0799ecee0cfa9fe40e9a Merge: 5feeead 9c28e70 Author: Paul Eggert Date: Tue Jun 7 09:34:27 2016 -0700 ; Merge from origin/emacs-25 The following commit was skipped: 9c28e70 ; Auto-commit of loaddefs files. commit 5feeead12693cd97c6d77b14ef05d29ba5cf18bb Merge: 14649c8 604f656 Author: Paul Eggert Date: Tue Jun 7 09:34:27 2016 -0700 Merge from origin/emacs-25 604f656 * test/automated/viper-tests.el (viper-test-undo-kmacro): Del... 20eb531 * lisp/mail/footnote.el (footnote-mode): Fix doc typo. a7a2244 * doc/misc/smtpmail.texi (Encryption): Fix 2012-12-22 typo. 07bd972 * lisp/emacs-lisp/lisp-mode.el (lisp--mode-syntax-table): Fix... commit 6e3adf8a4a796cea4328a528da48fc972b3feed6 Author: Paul Eggert Date: Tue Jun 7 09:28:49 2016 -0700 Fix crash in syntax.c after GC Problem reported by Vincent Belaïche (Bug#23704). * src/syntax.c (skip_chars): Recompute pointers into the buffer after every call to update_syntax_table_forward, as it can GC. diff --git a/src/syntax.c b/src/syntax.c index 16b7fab..6f53684 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -2171,63 +2171,51 @@ skip_syntaxes (bool forwardp, Lisp_Object string, Lisp_Object lim) ptrdiff_t start_point = PT; ptrdiff_t pos = PT; ptrdiff_t pos_byte = PT_BYTE; - unsigned char *p = PT_ADDR, *endp, *stop; - - if (forwardp) - { - endp = (XINT (lim) == GPT) ? GPT_ADDR : CHAR_POS_ADDR (XINT (lim)); - stop = (pos < GPT && GPT < XINT (lim)) ? GPT_ADDR : endp; - } - else - { - endp = CHAR_POS_ADDR (XINT (lim)); - stop = (pos >= GPT && GPT > XINT (lim)) ? GAP_END_ADDR : endp; - } + unsigned char *p, *endp, *stop; immediate_quit = 1; SETUP_SYNTAX_TABLE (pos, forwardp ? 1 : -1); + if (forwardp) { - if (multibyte) + while (true) { - while (1) + p = BYTE_POS_ADDR (pos_byte); + endp = XINT (lim) == GPT ? GPT_ADDR : CHAR_POS_ADDR (XINT (lim)); + stop = pos < GPT && GPT < XINT (lim) ? GPT_ADDR : endp; + + do { int nbytes; if (p >= stop) { if (p >= endp) - break; + goto done; p = GAP_END_ADDR; stop = endp; } - c = STRING_CHAR_AND_LENGTH (p, nbytes); + if (multibyte) + c = STRING_CHAR_AND_LENGTH (p, nbytes); + else + c = *p, nbytes = 1; if (! fastmap[SYNTAX (c)]) - break; + goto done; p += nbytes, pos++, pos_byte += nbytes; - UPDATE_SYNTAX_TABLE_FORWARD (pos); - } - } - else - { - while (1) - { - if (p >= stop) - { - if (p >= endp) - break; - p = GAP_END_ADDR; - stop = endp; - } - if (! fastmap[SYNTAX (*p)]) - break; - p++, pos++, pos_byte++; - UPDATE_SYNTAX_TABLE_FORWARD (pos); } + while (!parse_sexp_lookup_properties + || pos < gl_state.e_property); + + update_syntax_table_forward (pos + gl_state.offset, + false, gl_state.object); } } else { + p = BYTE_POS_ADDR (pos_byte); + endp = CHAR_POS_ADDR (XINT (lim)); + stop = pos >= GPT && GPT > XINT (lim) ? GAP_END_ADDR : endp; + if (multibyte) { while (1) @@ -2269,6 +2257,7 @@ skip_syntaxes (bool forwardp, Lisp_Object string, Lisp_Object lim) } } + done: SET_PT_BOTH (pos, pos_byte); immediate_quit = 0; commit 973ce5a12352e1f88af335f8b57be2dcbe49c2b7 Author: Dmitry Gutov Date: Tue Jun 7 04:06:33 2016 +0300 Improve squiggly heredoc support in non-SMIE Ruby mode * lisp/progmodes/ruby-mode.el (ruby-parse-partial): Support squiggly heredocs here, too (port from upstream). diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el index cd3b04d..d75edbc 100644 --- a/lisp/progmodes/ruby-mode.el +++ b/lisp/progmodes/ruby-mode.el @@ -1151,7 +1151,7 @@ delimiter." ((looking-at "<<") (cond ((and (ruby-expr-beg 'heredoc) - (looking-at "<<\\(-\\)?\\(\\([\"'`]\\)\\([^\n]+?\\)\\3\\|\\(?:\\sw\\|\\s_\\)+\\)")) + (looking-at "<<\\([-~]\\)?\\(\\([\"'`]\\)\\([^\n]+?\\)\\3\\|\\(?:\\sw\\|\\s_\\)+\\)")) (setq re (regexp-quote (or (match-string 4) (match-string 2)))) (if (match-beginning 1) (setq re (concat "\\s *" re))) (let* ((id-end (goto-char (match-end 0))) commit 9d5ccebeba0506f7280662630f0ee85a52c8a327 Author: Stephen Berman Date: Mon Jun 6 09:29:17 2016 -0700 Fix doc string quoting * lisp/files.el (shell-quote-wildcard-pattern): * lisp/progmodes/vhdl-mode.el (vhdl-mode): * lisp/subr.el (replace-regexp-in-string): * lisp/view.el (view-mode): * src/nsfns.m (syms_of_nsfns): * src/syntax.c (Fbackward_prefix_chars): Fix quoting problems in doc strings (Bug#23696). diff --git a/lisp/files.el b/lisp/files.el index c5cfa8e..1f97fa5 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -6147,7 +6147,7 @@ and `list-directory-verbose-switches'." PATTERN is assumed to represent a file-name wildcard suitable for the underlying filesystem. For Unix and GNU/Linux, each character from the -set [ \\t\\n;<>&|()`'\"#$] is quoted with a backslash; for DOS/Windows, all +set [ \\t\\n;<>&|()\\=`\\='\"#$] is quoted with a backslash; for DOS/Windows, all the parts of the pattern which don't include wildcard characters are quoted with double quotes. diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el index a390494..0756c79 100644 --- a/lisp/progmodes/vhdl-mode.el +++ b/lisp/progmodes/vhdl-mode.el @@ -4684,7 +4684,7 @@ Usage: SPECIAL MENUES: As an alternative to the speedbar, an index menu can be added (set option `vhdl-index-menu' to non-nil) or made accessible as a mouse menu - (e.g. add \"(global-set-key '[S-down-mouse-3] 'imenu)\" to your start-up + (e.g. add \"(global-set-key [S-down-mouse-3] \\='imenu)\" to your start-up file) for browsing the file contents (is not populated if buffer is larger than 256000). Also, a source file menu can be added (set option `vhdl-source-file-menu' to non-nil) for browsing the diff --git a/lisp/subr.el b/lisp/subr.el index 43660d7..81570d4 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -3760,9 +3760,9 @@ the match data are the result of matching REGEXP against a substring of STRING, the same substring that is the actual text of the match which is passed to REP as its argument. -To replace only the first match (if any), make REGEXP match up to \\' +To replace only the first match (if any), make REGEXP match up to \\\\=' and replace a sub-expression, e.g. - (replace-regexp-in-string \"\\\\(foo\\\\).*\\\\'\" \"bar\" \" foo foo\" nil nil 1) + (replace-regexp-in-string \"\\\\(foo\\\\).*\\\\\\='\" \"bar\" \" foo foo\" nil nil 1) => \" bar foo\"" ;; To avoid excessive consing from multiple matches in long strings, diff --git a/lisp/view.el b/lisp/view.el index 830073a..ff7d2c9 100644 --- a/lisp/view.el +++ b/lisp/view.el @@ -429,7 +429,7 @@ x exchanges point and mark. Mark ring is pushed at start of every successful search and when jump to line occurs. The mark is set on jump to buffer start or end. \\[point-to-register] save current position in character register. -' go to position saved in character register. +\\=' go to position saved in character register. s do forward incremental search. r do reverse incremental search. \\[View-search-regexp-forward] searches forward for regular expression, starting after current page. diff --git a/src/nsfns.m b/src/nsfns.m index ea09908..9bc6c1d 100644 --- a/src/nsfns.m +++ b/src/nsfns.m @@ -3125,7 +3125,7 @@ - (NSString *)panel: (id)sender userEnteredFilename: (NSString *)filename (setq ns-icon-type-alist (append ns-icon-type-alist - '((\"^\\\\*\\\\(Group\\\\*$\\\\|Summary \\\\|Article\\\\*$\\\\)\" + \\='((\"^\\\\*\\\\(Group\\\\*$\\\\|Summary \\\\|Article\\\\*$\\\\)\" . \"Gnus\")))) When you miniaturize a Group, Summary or Article frame, Gnus.tiff will diff --git a/src/syntax.c b/src/syntax.c index 8e14bf3..16b7fab 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -3079,7 +3079,7 @@ but before count is used up, nil is returned. */) DEFUN ("backward-prefix-chars", Fbackward_prefix_chars, Sbackward_prefix_chars, 0, 0, 0, doc: /* Move point backward over any number of chars with prefix syntax. -This includes chars with expression prefix syntax class (') and those with +This includes chars with expression prefix syntax class (\\=') and those with the prefix syntax flag (p). */) (void) { commit 0b33a23ffecdb4ca87806c9fc7568d17c5ca7e98 Author: Martin Rudalics Date: Sun Jun 5 11:50:47 2016 +0200 Fix mouse dragging of vertical dividers with scroll bars on left (Bug#23690) * lisp/mouse.el (mouse-drag-line): With scroll bars on the left adjust trailing edge of window on the left when dragging the vertical divider of the mode line. (Bug#23690) diff --git a/lisp/mouse.el b/lisp/mouse.el index fa355ff..592338a 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -406,7 +406,15 @@ must be one of the symbols `header', `mode', or `vertical'." (or (not resize-mini-windows) (eq minibuffer-window (active-minibuffer-window))))))) - (setq draggable nil)))) + (setq draggable nil))) + ((eq line 'vertical) + (let ((divider-width (frame-right-divider-width frame))) + (when (and (or (not (numberp divider-width)) + (zerop divider-width)) + (eq (cdr (assq 'vertical-scroll-bars + (frame-parameters frame))) + 'left)) + (setq window (window-in-direction 'left window t)))))) (let* ((exitfun nil) (move commit a5d05f447008c4a99d1b00f0af642b4a5ce4cbce Author: Eli Zaretskii Date: Sat Jun 4 18:45:46 2016 +0300 * etc/PROBLEMS: Mention the link-time problems on FreeBSD 11. (Bug#23641) diff --git a/etc/PROBLEMS b/etc/PROBLEMS index 84d39a4..21346b2 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS @@ -2458,6 +2458,13 @@ files are installed. Then use: (using the location of the 32-bit X libraries on your system). +*** Building on FreeBSD 11 fails at link time due to unresolved symbol + +The symbol is sendmmsg@FBSD_1.4. This is due to a faulty libgio +library on these systems. The solution is to reconfigure Emacs while +disabling all the features that require libgio: rsvg, dbus, gconf, and +imagemagick. + *** Building Emacs for Cygwin can fail with GCC 3 As of Emacs 22.1, there have been stability problems with Cygwin commit 9c28e70b4b4b1887030e41103b5f6dd8304585e6 Author: Glenn Morris Date: Wed Jun 1 07:18:41 2016 -0400 ; Auto-commit of loaddefs files. diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index b1f0432..3fc3dd1 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el @@ -3,7 +3,7 @@ ;;; Code: -;;;### (autoloads nil "5x5" "play/5x5.el" (22330 59913 969323 446000)) +;;;### (autoloads nil "5x5" "play/5x5.el" (22150 28228 674072 702000)) ;;; 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" (22330 59913 -;;;;;; 977323 421000)) +;;;### (autoloads nil "ada-mode" "progmodes/ada-mode.el" (22197 58438 +;;;;;; 383460 447000)) ;;; Generated autoloads from progmodes/ada-mode.el (autoload 'ada-add-extensions "ada-mode" "\ @@ -85,8 +85,8 @@ Ada mode is the major mode for editing Ada code. ;;;*** -;;;### (autoloads nil "ada-stmt" "progmodes/ada-stmt.el" (22330 59913 -;;;;;; 978323 418000)) +;;;### (autoloads nil "ada-stmt" "progmodes/ada-stmt.el" (22150 28228 +;;;;;; 750072 702000)) ;;; Generated autoloads from progmodes/ada-stmt.el (autoload 'ada-header "ada-stmt" "\ @@ -96,8 +96,8 @@ Insert a descriptive header at the top of the file. ;;;*** -;;;### (autoloads nil "ada-xref" "progmodes/ada-xref.el" (22331 17372 -;;;;;; 88369 281000)) +;;;### (autoloads nil "ada-xref" "progmodes/ada-xref.el" (22150 28228 +;;;;;; 754072 702000)) ;;; 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" (22331 17372 121369 -;;;;;; 164000)) +;;;### (autoloads nil "add-log" "vc/add-log.el" (22284 55604 194845 +;;;;;; 171000)) ;;; Generated autoloads from vc/add-log.el (put 'change-log-default-name 'safe-local-variable 'string-or-null-p) @@ -238,8 +238,8 @@ old-style time formats for entries are supported. ;;;*** -;;;### (autoloads nil "advice" "emacs-lisp/advice.el" (22331 17371 -;;;;;; 987369 640000)) +;;;### (autoloads nil "advice" "emacs-lisp/advice.el" (22150 28227 +;;;;;; 338072 702000)) ;;; 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" (22331 17371 979369 668000)) +;;;### (autoloads nil "align" "align.el" (22311 14138 946375 715000)) ;;; Generated autoloads from align.el (autoload 'align "align" "\ @@ -479,7 +479,7 @@ indented. ;;;*** -;;;### (autoloads nil "allout" "allout.el" (22330 59913 751324 119000)) +;;;### (autoloads nil "allout" "allout.el" (22189 64323 68321 19000)) ;;; Generated autoloads from allout.el (push (purecopy '(allout 2 3)) package--builtin-versions) @@ -839,8 +839,8 @@ for details on preparing Emacs for automatic allout activation. ;;;*** -;;;### (autoloads nil "allout-widgets" "allout-widgets.el" (22330 -;;;;;; 59913 751324 119000)) +;;;### (autoloads nil "allout-widgets" "allout-widgets.el" (22150 +;;;;;; 28226 938072 702000)) ;;; Generated autoloads from allout-widgets.el (push (purecopy '(allout-widgets 1 0)) package--builtin-versions) @@ -898,8 +898,8 @@ outline hot-spot navigation (see `allout-mode'). ;;;*** -;;;### (autoloads nil "ange-ftp" "net/ange-ftp.el" (22330 59913 952323 -;;;;;; 498000)) +;;;### (autoloads nil "ange-ftp" "net/ange-ftp.el" (22150 28228 350072 +;;;;;; 702000)) ;;; Generated autoloads from net/ange-ftp.el (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) @@ -920,8 +920,8 @@ directory, so that Emacs will know its current contents. ;;;*** -;;;### (autoloads nil "animate" "play/animate.el" (22330 59913 969323 -;;;;;; 446000)) +;;;### (autoloads nil "animate" "play/animate.el" (22150 28228 674072 +;;;;;; 702000)) ;;; Generated autoloads from play/animate.el (autoload 'animate-string "animate" "\ @@ -953,8 +953,8 @@ the buffer *Birthday-Present-for-Name*. ;;;*** -;;;### (autoloads nil "ansi-color" "ansi-color.el" (22330 59913 751324 -;;;;;; 119000)) +;;;### (autoloads nil "ansi-color" "ansi-color.el" (22150 28226 942072 +;;;;;; 702000)) ;;; Generated autoloads from ansi-color.el (push (purecopy '(ansi-color 3 4 2)) package--builtin-versions) @@ -980,8 +980,8 @@ This is a good function to put in `comint-output-filter-functions'. ;;;*** -;;;### (autoloads nil "antlr-mode" "progmodes/antlr-mode.el" (22330 -;;;;;; 59913 978323 418000)) +;;;### (autoloads nil "antlr-mode" "progmodes/antlr-mode.el" (22182 +;;;;;; 44208 579853 279000)) ;;; Generated autoloads from progmodes/antlr-mode.el (push (purecopy '(antlr-mode 2 2 3)) package--builtin-versions) @@ -1017,8 +1017,8 @@ Used in `antlr-mode'. Also a useful function in `java-mode-hook'. ;;;*** -;;;### (autoloads nil "appt" "calendar/appt.el" (22331 17371 981369 -;;;;;; 661000)) +;;;### (autoloads nil "appt" "calendar/appt.el" (22150 28227 46072 +;;;;;; 702000)) ;;; Generated autoloads from calendar/appt.el (autoload 'appt-add "appt" "\ @@ -1039,8 +1039,8 @@ ARG is positive, otherwise off. ;;;*** -;;;### (autoloads nil "apropos" "apropos.el" (22331 17371 980369 -;;;;;; 665000)) +;;;### (autoloads nil "apropos" "apropos.el" (22311 14138 958375 +;;;;;; 715000)) ;;; Generated autoloads from apropos.el (autoload 'apropos-read-pattern "apropos" "\ @@ -1156,8 +1156,8 @@ Returns list of symbols and documentation found. ;;;*** -;;;### (autoloads nil "arc-mode" "arc-mode.el" (22330 59913 751324 -;;;;;; 119000)) +;;;### (autoloads nil "arc-mode" "arc-mode.el" (22150 28226 946072 +;;;;;; 702000)) ;;; Generated autoloads from arc-mode.el (autoload 'archive-mode "arc-mode" "\ @@ -1177,7 +1177,7 @@ archive. ;;;*** -;;;### (autoloads nil "array" "array.el" (22330 59913 751324 119000)) +;;;### (autoloads nil "array" "array.el" (22150 28226 946072 702000)) ;;; Generated autoloads from array.el (autoload 'array-mode "array" "\ @@ -1248,8 +1248,8 @@ Entering array mode calls the function `array-mode-hook'. ;;;*** -;;;### (autoloads nil "artist" "textmodes/artist.el" (22330 59913 -;;;;;; 988323 387000)) +;;;### (autoloads nil "artist" "textmodes/artist.el" (22150 28229 +;;;;;; 86072 702000)) ;;; Generated autoloads from textmodes/artist.el (push (purecopy '(artist 1 2 6)) package--builtin-versions) @@ -1455,8 +1455,8 @@ Keymap summary ;;;*** -;;;### (autoloads nil "asm-mode" "progmodes/asm-mode.el" (22330 59913 -;;;;;; 978323 418000)) +;;;### (autoloads nil "asm-mode" "progmodes/asm-mode.el" (22150 28228 +;;;;;; 758072 702000)) ;;; Generated autoloads from progmodes/asm-mode.el (autoload 'asm-mode "asm-mode" "\ @@ -1483,8 +1483,8 @@ Special commands: ;;;*** -;;;### (autoloads nil "auth-source" "gnus/auth-source.el" (22331 -;;;;;; 17372 13369 548000)) +;;;### (autoloads nil "auth-source" "gnus/auth-source.el" (22150 +;;;;;; 28227 658072 702000)) ;;; Generated autoloads from gnus/auth-source.el (defvar auth-source-cache-expiry 7200 "\ @@ -1496,8 +1496,8 @@ let-binding.") ;;;*** -;;;### (autoloads nil "autoarg" "autoarg.el" (22330 59913 751324 -;;;;;; 119000)) +;;;### (autoloads nil "autoarg" "autoarg.el" (22150 28226 946072 +;;;;;; 702000)) ;;; Generated autoloads from autoarg.el (defvar autoarg-mode nil "\ @@ -1559,8 +1559,8 @@ This is similar to `autoarg-mode' but rebinds the keypad keys ;;;*** -;;;### (autoloads nil "autoconf" "progmodes/autoconf.el" (22330 59913 -;;;;;; 978323 418000)) +;;;### (autoloads nil "autoconf" "progmodes/autoconf.el" (22150 28228 +;;;;;; 758072 702000)) ;;; Generated autoloads from progmodes/autoconf.el (autoload 'autoconf-mode "autoconf" "\ @@ -1570,8 +1570,8 @@ Major mode for editing Autoconf configure.ac files. ;;;*** -;;;### (autoloads nil "autoinsert" "autoinsert.el" (22330 59913 751324 -;;;;;; 119000)) +;;;### (autoloads nil "autoinsert" "autoinsert.el" (22192 2880 903382 +;;;;;; 391000)) ;;; Generated autoloads from autoinsert.el (autoload 'auto-insert "autoinsert" "\ @@ -1610,8 +1610,8 @@ insert a template for the file depending on the mode of the buffer. ;;;*** -;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (22331 -;;;;;; 17371 988369 637000)) +;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (22302 +;;;;;; 35693 265420 723000)) ;;; Generated autoloads from emacs-lisp/autoload.el (put 'generated-autoload-file 'safe-local-variable 'stringp) @@ -1662,8 +1662,8 @@ should be non-nil). ;;;*** -;;;### (autoloads nil "autorevert" "autorevert.el" (22331 17371 980369 -;;;;;; 665000)) +;;;### (autoloads nil "autorevert" "autorevert.el" (22292 49734 698738 +;;;;;; 351000)) ;;; Generated autoloads from autorevert.el (autoload 'auto-revert-mode "autorevert" "\ @@ -1752,7 +1752,7 @@ specifies in the mode line. ;;;*** -;;;### (autoloads nil "avoid" "avoid.el" (22330 59913 751324 119000)) +;;;### (autoloads nil "avoid" "avoid.el" (22150 28226 946072 702000)) ;;; Generated autoloads from avoid.el (defvar mouse-avoidance-mode nil "\ @@ -1790,8 +1790,8 @@ definition of \"random distance\".) ;;;*** -;;;### (autoloads nil "bat-mode" "progmodes/bat-mode.el" (22330 59913 -;;;;;; 978323 418000)) +;;;### (autoloads nil "bat-mode" "progmodes/bat-mode.el" (22150 28228 +;;;;;; 758072 702000)) ;;; Generated autoloads from progmodes/bat-mode.el (add-to-list 'auto-mode-alist '("\\.\\(bat\\|cmd\\)\\'" . bat-mode)) @@ -1809,8 +1809,8 @@ Run script using `bat-run' and `bat-run-args'. ;;;*** -;;;### (autoloads nil "battery" "battery.el" (22331 17371 980369 -;;;;;; 665000)) +;;;### (autoloads nil "battery" "battery.el" (22216 22852 972596 +;;;;;; 491000)) ;;; Generated autoloads from battery.el (put 'battery-mode-line-string 'risky-local-variable t) @@ -1846,8 +1846,8 @@ seconds. ;;;*** -;;;### (autoloads nil "benchmark" "emacs-lisp/benchmark.el" (22330 -;;;;;; 59913 928323 572000)) +;;;### (autoloads nil "benchmark" "emacs-lisp/benchmark.el" (22150 +;;;;;; 28227 338072 702000)) ;;; Generated autoloads from emacs-lisp/benchmark.el (autoload 'benchmark-run "benchmark" "\ @@ -1883,8 +1883,8 @@ For non-interactive use see also `benchmark-run' and ;;;*** -;;;### (autoloads nil "bibtex" "textmodes/bibtex.el" (22330 59913 -;;;;;; 990323 381000)) +;;;### (autoloads nil "bibtex" "textmodes/bibtex.el" (22150 28229 +;;;;;; 94072 702000)) ;;; Generated autoloads from textmodes/bibtex.el (autoload 'bibtex-initialize "bibtex" "\ @@ -1976,7 +1976,7 @@ A prefix arg negates the value of `bibtex-search-entry-globally'. ;;;*** ;;;### (autoloads nil "bibtex-style" "textmodes/bibtex-style.el" -;;;;;; (22330 59913 990323 381000)) +;;;;;; (22150 28229 86072 702000)) ;;; Generated autoloads from textmodes/bibtex-style.el (autoload 'bibtex-style-mode "bibtex-style" "\ @@ -1986,8 +1986,8 @@ Major mode for editing BibTeX style files. ;;;*** -;;;### (autoloads nil "binhex" "mail/binhex.el" (22330 59913 947323 -;;;;;; 514000)) +;;;### (autoloads nil "binhex" "mail/binhex.el" (22150 28228 226072 +;;;;;; 702000)) ;;; Generated autoloads from mail/binhex.el (defconst binhex-begin-line "^:...............................................................$" "\ @@ -2011,8 +2011,8 @@ Binhex decode region between START and END. ;;;*** -;;;### (autoloads nil "blackbox" "play/blackbox.el" (22330 59913 -;;;;;; 969323 446000)) +;;;### (autoloads nil "blackbox" "play/blackbox.el" (22150 28228 +;;;;;; 674072 702000)) ;;; Generated autoloads from play/blackbox.el (autoload 'blackbox "blackbox" "\ @@ -2131,8 +2131,8 @@ a reflection. ;;;*** -;;;### (autoloads nil "bookmark" "bookmark.el" (22330 59913 737324 -;;;;;; 162000)) +;;;### (autoloads nil "bookmark" "bookmark.el" (22301 64691 837087 +;;;;;; 484000)) ;;; Generated autoloads from bookmark.el (define-key ctl-x-r-map "b" 'bookmark-jump) (define-key ctl-x-r-map "m" 'bookmark-set) @@ -2356,8 +2356,8 @@ Incremental search of bookmarks, hiding the non-matches as we go. ;;;*** -;;;### (autoloads nil "browse-url" "net/browse-url.el" (22330 59913 -;;;;;; 952323 498000)) +;;;### (autoloads nil "browse-url" "net/browse-url.el" (22189 64323 +;;;;;; 280321 19000)) ;;; Generated autoloads from net/browse-url.el (defvar browse-url-browser-function 'browse-url-default-browser "\ @@ -2705,7 +2705,7 @@ from `browse-url-elinks-wrapper'. ;;;*** -;;;### (autoloads nil "bs" "bs.el" (22330 59913 751324 119000)) +;;;### (autoloads nil "bs" "bs.el" (22150 28226 950072 702000)) ;;; Generated autoloads from bs.el (push (purecopy '(bs 1 17)) package--builtin-versions) @@ -2746,8 +2746,8 @@ name of buffer configuration. ;;;*** -;;;### (autoloads nil "bubbles" "play/bubbles.el" (22330 59913 969323 -;;;;;; 446000)) +;;;### (autoloads nil "bubbles" "play/bubbles.el" (22150 28228 674072 +;;;;;; 702000)) ;;; Generated autoloads from play/bubbles.el (autoload 'bubbles "bubbles" "\ @@ -2769,7 +2769,7 @@ columns on its right towards the left. ;;;*** ;;;### (autoloads nil "bug-reference" "progmodes/bug-reference.el" -;;;;;; (22330 59913 978323 418000)) +;;;;;; (22150 28228 758072 702000)) ;;; 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))))) @@ -2789,8 +2789,8 @@ Like `bug-reference-mode', but only buttonize in comments and strings. ;;;*** -;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (22331 -;;;;;; 17371 989369 633000)) +;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (22195 +;;;;;; 16710 339344 967000)) ;;; 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) @@ -2910,16 +2910,16 @@ and corresponding effects. ;;;*** -;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (22330 -;;;;;; 59913 919323 600000)) +;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (22192 +;;;;;; 2880 911382 391000)) ;;; Generated autoloads from calendar/cal-china.el (put 'calendar-chinese-time-zone 'risky-local-variable t) ;;;*** -;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (22330 59913 -;;;;;; 919323 600000)) +;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (22150 28227 +;;;;;; 50072 702000)) ;;; Generated autoloads from calendar/cal-dst.el (put 'calendar-daylight-savings-starts 'risky-local-variable t) @@ -2930,8 +2930,8 @@ and corresponding effects. ;;;*** -;;;### (autoloads nil "cal-hebrew" "calendar/cal-hebrew.el" (22331 -;;;;;; 17371 981369 661000)) +;;;### (autoloads nil "cal-hebrew" "calendar/cal-hebrew.el" (22150 +;;;;;; 28227 50072 702000)) ;;; Generated autoloads from calendar/cal-hebrew.el (autoload 'calendar-hebrew-list-yahrzeits "cal-hebrew" "\ @@ -2943,7 +2943,7 @@ from the cursor position. ;;;*** -;;;### (autoloads nil "calc" "calc/calc.el" (22330 59913 918323 603000)) +;;;### (autoloads nil "calc" "calc/calc.el" (22150 28227 26072 702000)) ;;; Generated autoloads from calc/calc.el (define-key ctl-x-map "*" 'calc-dispatch) @@ -3029,8 +3029,8 @@ See Info node `(calc)Defining Functions'. ;;;*** -;;;### (autoloads nil "calc-undo" "calc/calc-undo.el" (22330 59913 -;;;;;; 918323 603000)) +;;;### (autoloads nil "calc-undo" "calc/calc-undo.el" (22150 28227 +;;;;;; 22072 702000)) ;;; Generated autoloads from calc/calc-undo.el (autoload 'calc-undo "calc-undo" "\ @@ -3040,8 +3040,8 @@ See Info node `(calc)Defining Functions'. ;;;*** -;;;### (autoloads nil "calculator" "calculator.el" (22331 17371 981369 -;;;;;; 661000)) +;;;### (autoloads nil "calculator" "calculator.el" (22222 61645 281665 +;;;;;; 355000)) ;;; Generated autoloads from calculator.el (autoload 'calculator "calculator" "\ @@ -3052,8 +3052,8 @@ See the documentation for `calculator-mode' for more information. ;;;*** -;;;### (autoloads nil "calendar" "calendar/calendar.el" (22330 59913 -;;;;;; 919323 600000)) +;;;### (autoloads nil "calendar" "calendar/calendar.el" (22192 2880 +;;;;;; 919382 391000)) ;;; Generated autoloads from calendar/calendar.el (autoload 'calendar "calendar" "\ @@ -3096,8 +3096,8 @@ This function is suitable for execution in an init file. ;;;*** -;;;### (autoloads nil "canlock" "gnus/canlock.el" (22331 17372 13369 -;;;;;; 548000)) +;;;### (autoloads nil "canlock" "gnus/canlock.el" (22150 28227 658072 +;;;;;; 702000)) ;;; Generated autoloads from gnus/canlock.el (autoload 'canlock-insert-header "canlock" "\ @@ -3114,8 +3114,8 @@ it fails. ;;;*** -;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (22331 -;;;;;; 17372 91369 271000)) +;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (22312 +;;;;;; 35002 232754 775000)) ;;; Generated autoloads from progmodes/cc-engine.el (autoload 'c-guess-basic-syntax "cc-engine" "\ @@ -3125,8 +3125,8 @@ Return the syntactic context of the current line. ;;;*** -;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (22330 59913 -;;;;;; 978323 418000)) +;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (22150 28228 +;;;;;; 790072 702000)) ;;; Generated autoloads from progmodes/cc-guess.el (defvar c-guess-guessed-offsets-alist nil "\ @@ -3224,8 +3224,8 @@ the absolute file name of the file if STYLE-NAME is nil. ;;;*** -;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (22331 17372 -;;;;;; 92369 267000)) +;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (22162 19398 +;;;;;; 889892 547000)) ;;; Generated autoloads from progmodes/cc-mode.el (autoload 'c-initialize-cc-mode "cc-mode" "\ @@ -3383,8 +3383,8 @@ Key bindings: ;;;*** -;;;### (autoloads nil "cc-styles" "progmodes/cc-styles.el" (22330 -;;;;;; 59913 978323 418000)) +;;;### (autoloads nil "cc-styles" "progmodes/cc-styles.el" (22150 +;;;;;; 28228 798072 702000)) ;;; Generated autoloads from progmodes/cc-styles.el (autoload 'c-set-style "cc-styles" "\ @@ -3435,8 +3435,8 @@ and exists only for compatibility reasons. ;;;*** -;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (22331 17377 -;;;;;; 953348 450000)) +;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (22321 49972 +;;;;;; 996789 707000)) ;;; Generated autoloads from progmodes/cc-vars.el (put 'c-basic-offset 'safe-local-variable 'integerp) (put 'c-backslash-column 'safe-local-variable 'integerp) @@ -3444,8 +3444,8 @@ and exists only for compatibility reasons. ;;;*** -;;;### (autoloads nil "ccl" "international/ccl.el" (22330 59913 939323 -;;;;;; 538000)) +;;;### (autoloads nil "ccl" "international/ccl.el" (22150 28228 106072 +;;;;;; 702000)) ;;; Generated autoloads from international/ccl.el (autoload 'ccl-compile "ccl" "\ @@ -3738,8 +3738,8 @@ See the documentation of `define-ccl-program' for the detail of CCL program. ;;;*** -;;;### (autoloads nil "cconv" "emacs-lisp/cconv.el" (22330 59913 -;;;;;; 929323 569000)) +;;;### (autoloads nil "cconv" "emacs-lisp/cconv.el" (22150 28227 +;;;;;; 358072 702000)) ;;; Generated autoloads from emacs-lisp/cconv.el (autoload 'cconv-closure-convert "cconv" "\ @@ -3758,15 +3758,15 @@ Add the warnings that closure conversion would encounter. ;;;*** -;;;### (autoloads nil "cedet" "cedet/cedet.el" (22330 59913 920323 -;;;;;; 597000)) +;;;### (autoloads nil "cedet" "cedet/cedet.el" (22150 28227 146072 +;;;;;; 702000)) ;;; Generated autoloads from cedet/cedet.el (push (purecopy '(cedet 2 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "cfengine" "progmodes/cfengine.el" (22330 59913 -;;;;;; 978323 418000)) +;;;### (autoloads nil "cfengine" "progmodes/cfengine.el" (22150 28228 +;;;;;; 802072 702000)) ;;; Generated autoloads from progmodes/cfengine.el (push (purecopy '(cfengine 1 4)) package--builtin-versions) @@ -3795,14 +3795,14 @@ Choose `cfengine2-mode' or `cfengine3-mode' by buffer contents. ;;;*** -;;;### (autoloads nil "character-fold" "character-fold.el" (22330 -;;;;;; 59913 751324 119000)) -;;; Generated autoloads from character-fold.el +;;;### (autoloads nil "char-fold" "char-fold.el" (22332 20294 657693 +;;;;;; 779000)) +;;; Generated autoloads from char-fold.el -(autoload 'character-fold-to-regexp "character-fold" "\ -Return a regexp matching anything that character-folds into STRING. +(autoload 'char-fold-to-regexp "char-fold" "\ +Return a regexp matching anything that char-folds into STRING. Any character in STRING that has an entry in -`character-fold-table' is replaced with that entry (which is a +`char-fold-table' is replaced with that entry (which is a regexp) and other characters are `regexp-quote'd. If the resulting regexp would be too long for Emacs to handle, @@ -3815,15 +3815,15 @@ from which to start. ;;;*** -;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (22330 59913 -;;;;;; 929323 569000)) +;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (22150 28227 +;;;;;; 358072 702000)) ;;; Generated autoloads from emacs-lisp/chart.el (push (purecopy '(chart 0 2)) package--builtin-versions) ;;;*** ;;;### (autoloads nil "check-declare" "emacs-lisp/check-declare.el" -;;;;;; (22331 17371 989369 633000)) +;;;;;; (22296 46772 428104 103000)) ;;; Generated autoloads from emacs-lisp/check-declare.el (autoload 'check-declare-file "check-declare" "\ @@ -3840,8 +3840,8 @@ Returns non-nil if any false statements are found. ;;;*** -;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (22331 -;;;;;; 17371 990369 629000)) +;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (22197 +;;;;;; 58438 127460 447000)) ;;; 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) @@ -4051,8 +4051,8 @@ Find package keywords that aren't in `finder-known-keywords'. ;;;*** -;;;### (autoloads nil "china-util" "language/china-util.el" (22330 -;;;;;; 59913 940323 535000)) +;;;### (autoloads nil "china-util" "language/china-util.el" (22150 +;;;;;; 28228 162072 702000)) ;;; Generated autoloads from language/china-util.el (autoload 'decode-hz-region "china-util" "\ @@ -4089,8 +4089,8 @@ Encode the text in the current buffer to HZ. ;;;*** -;;;### (autoloads nil "chistory" "chistory.el" (22330 59913 751324 -;;;;;; 119000)) +;;;### (autoloads nil "chistory" "chistory.el" (22150 28227 274072 +;;;;;; 702000)) ;;; Generated autoloads from chistory.el (autoload 'repeat-matching-complex-command "chistory" "\ @@ -4129,8 +4129,8 @@ and runs the normal hook `command-history-hook'. ;;;*** -;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (22330 -;;;;;; 59913 929323 569000)) +;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (22150 +;;;;;; 28227 366072 702000)) ;;; Generated autoloads from emacs-lisp/cl-indent.el (autoload 'common-lisp-indent-function "cl-indent" "\ @@ -4213,8 +4213,8 @@ instead. ;;;*** -;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (22330 59913 -;;;;;; 929323 569000)) +;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (22220 19926 +;;;;;; 380329 271000)) ;;; Generated autoloads from emacs-lisp/cl-lib.el (push (purecopy '(cl-lib 1 0)) package--builtin-versions) @@ -4232,8 +4232,8 @@ a future Emacs interpreter will be able to use it.") ;;;*** -;;;### (autoloads nil "cmacexp" "progmodes/cmacexp.el" (22330 59913 -;;;;;; 978323 418000)) +;;;### (autoloads nil "cmacexp" "progmodes/cmacexp.el" (22150 28228 +;;;;;; 802072 702000)) ;;; Generated autoloads from progmodes/cmacexp.el (autoload 'c-macro-expand "cmacexp" "\ @@ -4253,8 +4253,8 @@ For use inside Lisp programs, see also `c-macro-expansion'. ;;;*** -;;;### (autoloads nil "cmuscheme" "cmuscheme.el" (22330 59913 752324 -;;;;;; 116000)) +;;;### (autoloads nil "cmuscheme" "cmuscheme.el" (22150 28227 274072 +;;;;;; 702000)) ;;; Generated autoloads from cmuscheme.el (autoload 'run-scheme "cmuscheme" "\ @@ -4274,7 +4274,7 @@ is run). ;;;*** -;;;### (autoloads nil "color" "color.el" (22330 59913 752324 116000)) +;;;### (autoloads nil "color" "color.el" (22150 28227 274072 702000)) ;;; Generated autoloads from color.el (autoload 'color-name-to-rgb "color" "\ @@ -4293,7 +4293,7 @@ If FRAME cannot display COLOR, return nil. ;;;*** -;;;### (autoloads nil "comint" "comint.el" (22331 17371 984369 651000)) +;;;### (autoloads nil "comint" "comint.el" (22280 21348 921123 491000)) ;;; Generated autoloads from comint.el (defvar comint-output-filter-functions '(ansi-color-process-output comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\ @@ -4394,8 +4394,8 @@ REGEXP-GROUP is the regular expression group in REGEXP to use. ;;;*** -;;;### (autoloads nil "compare-w" "vc/compare-w.el" (22330 59914 -;;;;;; 8323 325000)) +;;;### (autoloads nil "compare-w" "vc/compare-w.el" (22150 28229 +;;;;;; 250072 702000)) ;;; Generated autoloads from vc/compare-w.el (autoload 'compare-windows "compare-w" "\ @@ -4431,8 +4431,8 @@ on third call it again advances points to the next difference and so on. ;;;*** -;;;### (autoloads nil "compile" "progmodes/compile.el" (22331 17372 -;;;;;; 94369 260000)) +;;;### (autoloads nil "compile" "progmodes/compile.el" (22311 14139 +;;;;;; 218375 715000)) ;;; Generated autoloads from progmodes/compile.el (defvar compilation-mode-hook nil "\ @@ -4613,8 +4613,8 @@ This is the value of `next-error-function' in Compilation buffers. ;;;*** -;;;### (autoloads nil "completion" "completion.el" (22330 59913 752324 -;;;;;; 116000)) +;;;### (autoloads nil "completion" "completion.el" (22197 58438 91460 +;;;;;; 447000)) ;;; Generated autoloads from completion.el (defvar dynamic-completion-mode nil "\ @@ -4637,8 +4637,8 @@ if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "conf-mode" "textmodes/conf-mode.el" (22330 -;;;;;; 59913 990323 381000)) +;;;### (autoloads nil "conf-mode" "textmodes/conf-mode.el" (22150 +;;;;;; 28229 94072 702000)) ;;; Generated autoloads from textmodes/conf-mode.el (autoload 'conf-mode "conf-mode" "\ @@ -4793,8 +4793,8 @@ For details see `conf-mode'. Example: ;;;*** -;;;### (autoloads nil "cookie1" "play/cookie1.el" (22330 59913 969323 -;;;;;; 446000)) +;;;### (autoloads nil "cookie1" "play/cookie1.el" (22150 28228 674072 +;;;;;; 702000)) ;;; Generated autoloads from play/cookie1.el (autoload 'cookie "cookie1" "\ @@ -4822,8 +4822,8 @@ and subsequent calls on the same file won't go to disk. ;;;*** -;;;### (autoloads nil "copyright" "emacs-lisp/copyright.el" (22330 -;;;;;; 59913 929323 569000)) +;;;### (autoloads nil "copyright" "emacs-lisp/copyright.el" (22150 +;;;;;; 28227 374072 702000)) ;;; Generated autoloads from emacs-lisp/copyright.el (put 'copyright-at-end-flag 'safe-local-variable 'booleanp) (put 'copyright-names-regexp 'safe-local-variable 'stringp) @@ -4861,8 +4861,8 @@ If FIX is non-nil, run `copyright-fix-years' instead. ;;;*** -;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (22330 -;;;;;; 59913 979323 415000)) +;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (22197 +;;;;;; 58438 427460 447000)) ;;; Generated autoloads from progmodes/cperl-mode.el (put 'cperl-indent-level 'safe-local-variable 'integerp) (put 'cperl-brace-offset 'safe-local-variable 'integerp) @@ -5060,8 +5060,8 @@ Run a `perldoc' on the word around point. ;;;*** -;;;### (autoloads nil "cpp" "progmodes/cpp.el" (22330 59913 979323 -;;;;;; 415000)) +;;;### (autoloads nil "cpp" "progmodes/cpp.el" (22150 28228 806072 +;;;;;; 702000)) ;;; Generated autoloads from progmodes/cpp.el (autoload 'cpp-highlight-buffer "cpp" "\ @@ -5079,8 +5079,8 @@ Edit display information for cpp conditionals. ;;;*** -;;;### (autoloads nil "crm" "emacs-lisp/crm.el" (22330 59913 929323 -;;;;;; 569000)) +;;;### (autoloads nil "crm" "emacs-lisp/crm.el" (22150 28227 374072 +;;;;;; 702000)) ;;; Generated autoloads from emacs-lisp/crm.el (autoload 'completing-read-multiple "crm" "\ @@ -5106,8 +5106,8 @@ with empty strings removed. ;;;*** -;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (22331 17372 -;;;;;; 112369 196000)) +;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (22192 2874 +;;;;;; 475382 391000)) ;;; Generated autoloads from textmodes/css-mode.el (autoload 'css-mode "css-mode" "\ @@ -5123,8 +5123,8 @@ Major mode to edit \"Sassy CSS\" files. ;;;*** -;;;### (autoloads nil "cua-base" "emulation/cua-base.el" (22330 59913 -;;;;;; 931323 563000)) +;;;### (autoloads nil "cua-base" "emulation/cua-base.el" (22311 14139 +;;;;;; 66375 715000)) ;;; Generated autoloads from emulation/cua-base.el (defvar cua-mode nil "\ @@ -5170,8 +5170,8 @@ Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings. ;;;*** -;;;### (autoloads nil "cua-rect" "emulation/cua-rect.el" (22330 59913 -;;;;;; 931323 563000)) +;;;### (autoloads nil "cua-rect" "emulation/cua-rect.el" (22150 28227 +;;;;;; 462072 702000)) ;;; Generated autoloads from emulation/cua-rect.el (autoload 'cua-rectangle-mark-mode "cua-rect" "\ @@ -5183,7 +5183,7 @@ Activates the region if needed. Only lasts until the region is deactivated. ;;;*** ;;;### (autoloads nil "cursor-sensor" "emacs-lisp/cursor-sensor.el" -;;;;;; (22330 59913 927323 575000)) +;;;;;; (22309 58853 326986 699000)) ;;; Generated autoloads from emacs-lisp/cursor-sensor.el (defvar cursor-sensor-inhibit nil) @@ -5205,8 +5205,8 @@ is entering the area covered by the text-property property or leaving it. ;;;*** -;;;### (autoloads nil "cus-edit" "cus-edit.el" (22331 17371 985369 -;;;;;; 647000)) +;;;### (autoloads nil "cus-edit" "cus-edit.el" (22311 14138 970375 +;;;;;; 715000)) ;;; Generated autoloads from cus-edit.el (defvar custom-browse-sort-alphabetically nil "\ @@ -5525,8 +5525,8 @@ The format is suitable for use with `easy-menu-define'. ;;;*** -;;;### (autoloads nil "cus-theme" "cus-theme.el" (22330 59913 752324 -;;;;;; 116000)) +;;;### (autoloads nil "cus-theme" "cus-theme.el" (22150 28227 290072 +;;;;;; 702000)) ;;; Generated autoloads from cus-theme.el (autoload 'customize-create-theme "cus-theme" "\ @@ -5559,8 +5559,8 @@ omitted, a buffer named *Custom Themes* is used. ;;;*** -;;;### (autoloads nil "cvs-status" "vc/cvs-status.el" (22330 59914 -;;;;;; 9323 322000)) +;;;### (autoloads nil "cvs-status" "vc/cvs-status.el" (22150 28229 +;;;;;; 250072 702000)) ;;; Generated autoloads from vc/cvs-status.el (autoload 'cvs-status-mode "cvs-status" "\ @@ -5570,8 +5570,8 @@ Mode used for cvs status output. ;;;*** -;;;### (autoloads nil "cwarn" "progmodes/cwarn.el" (22330 59913 980323 -;;;;;; 412000)) +;;;### (autoloads nil "cwarn" "progmodes/cwarn.el" (22150 28228 810072 +;;;;;; 702000)) ;;; Generated autoloads from progmodes/cwarn.el (push (purecopy '(cwarn 1 3 1)) package--builtin-versions) @@ -5616,8 +5616,8 @@ See `cwarn-mode' for more information on Cwarn mode. ;;;*** -;;;### (autoloads nil "cyril-util" "language/cyril-util.el" (22330 -;;;;;; 59913 940323 535000)) +;;;### (autoloads nil "cyril-util" "language/cyril-util.el" (22150 +;;;;;; 28228 162072 702000)) ;;; Generated autoloads from language/cyril-util.el (autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\ @@ -5645,8 +5645,8 @@ If the argument is nil, we return the display table to its standard state. ;;;*** -;;;### (autoloads nil "dabbrev" "dabbrev.el" (22330 59913 752324 -;;;;;; 116000)) +;;;### (autoloads nil "dabbrev" "dabbrev.el" (22232 11079 208267 +;;;;;; 636000)) ;;; Generated autoloads from dabbrev.el (put 'dabbrev-case-fold-search 'risky-local-variable t) (put 'dabbrev-case-replace 'risky-local-variable t) @@ -5692,8 +5692,8 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]. ;;;*** -;;;### (autoloads nil "data-debug" "cedet/data-debug.el" (22330 59913 -;;;;;; 920323 597000)) +;;;### (autoloads nil "data-debug" "cedet/data-debug.el" (22150 28227 +;;;;;; 146072 702000)) ;;; Generated autoloads from cedet/data-debug.el (autoload 'data-debug-new-buffer "data-debug" "\ @@ -5703,7 +5703,7 @@ Create a new data-debug buffer with NAME. ;;;*** -;;;### (autoloads nil "dbus" "net/dbus.el" (22330 59913 952323 498000)) +;;;### (autoloads nil "dbus" "net/dbus.el" (22150 28228 354072 702000)) ;;; Generated autoloads from net/dbus.el (autoload 'dbus-handle-event "dbus" "\ @@ -5716,8 +5716,8 @@ If the HANDLER returns a `dbus-error', it is propagated as return message. ;;;*** -;;;### (autoloads nil "dcl-mode" "progmodes/dcl-mode.el" (22330 59913 -;;;;;; 980323 412000)) +;;;### (autoloads nil "dcl-mode" "progmodes/dcl-mode.el" (22150 28228 +;;;;;; 810072 702000)) ;;; Generated autoloads from progmodes/dcl-mode.el (autoload 'dcl-mode "dcl-mode" "\ @@ -5843,8 +5843,8 @@ There is some minimal font-lock support (see vars ;;;*** -;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (22330 59913 -;;;;;; 929323 569000)) +;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (22150 28227 +;;;;;; 378072 702000)) ;;; Generated autoloads from emacs-lisp/debug.el (setq debugger 'debug) @@ -5887,8 +5887,8 @@ To specify a nil argument interactively, exit with an empty minibuffer. ;;;*** -;;;### (autoloads nil "decipher" "play/decipher.el" (22330 59913 -;;;;;; 969323 446000)) +;;;### (autoloads nil "decipher" "play/decipher.el" (22150 28228 +;;;;;; 674072 702000)) ;;; Generated autoloads from play/decipher.el (autoload 'decipher "decipher" "\ @@ -5916,8 +5916,8 @@ The most useful commands are: ;;;*** -;;;### (autoloads nil "delim-col" "delim-col.el" (22330 59913 752324 -;;;;;; 116000)) +;;;### (autoloads nil "delim-col" "delim-col.el" (22150 28227 290072 +;;;;;; 702000)) ;;; Generated autoloads from delim-col.el (push (purecopy '(delim-col 2 1)) package--builtin-versions) @@ -5942,7 +5942,7 @@ START and END delimits the corners of text rectangle. ;;;*** -;;;### (autoloads nil "delsel" "delsel.el" (22330 59913 737324 162000)) +;;;### (autoloads nil "delsel" "delsel.el" (22311 14138 978375 715000)) ;;; Generated autoloads from delsel.el (defalias 'pending-delete-mode 'delete-selection-mode) @@ -5975,8 +5975,8 @@ information on adapting behavior of commands in Delete Selection mode. ;;;*** -;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (22331 17371 -;;;;;; 991369 626000)) +;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (22229 34898 +;;;;;; 796051 395000)) ;;; Generated autoloads from emacs-lisp/derived.el (autoload 'define-derived-mode "derived" "\ @@ -6042,8 +6042,8 @@ the first time the mode is used. ;;;*** -;;;### (autoloads nil "descr-text" "descr-text.el" (22330 59913 737324 -;;;;;; 162000)) +;;;### (autoloads nil "descr-text" "descr-text.el" (22338 59064 750791 +;;;;;; 248000)) ;;; Generated autoloads from descr-text.el (autoload 'describe-text-properties "descr-text" "\ @@ -6092,8 +6092,7 @@ This function is meant to be used as a value of ;;;*** -;;;### (autoloads nil "desktop" "desktop.el" (22330 59913 752324 -;;;;;; 116000)) +;;;### (autoloads nil "desktop" "desktop.el" (22348 8503 57396 683000)) ;;; Generated autoloads from desktop.el (defvar desktop-save-mode nil "\ @@ -6321,8 +6320,8 @@ Revert to the last loaded desktop. ;;;*** -;;;### (autoloads nil "deuglify" "gnus/deuglify.el" (22330 59913 -;;;;;; 938323 541000)) +;;;### (autoloads nil "deuglify" "gnus/deuglify.el" (22150 28227 +;;;;;; 658072 702000)) ;;; Generated autoloads from gnus/deuglify.el (autoload 'gnus-article-outlook-unwrap-lines "deuglify" "\ @@ -6354,8 +6353,8 @@ Deuglify broken Outlook (Express) articles and redisplay. ;;;*** -;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (22330 -;;;;;; 59913 919323 600000)) +;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (22192 +;;;;;; 2880 939382 391000)) ;;; Generated autoloads from calendar/diary-lib.el (autoload 'diary "diary-lib" "\ @@ -6397,7 +6396,7 @@ Major mode for editing the diary file. ;;;*** -;;;### (autoloads nil "diff" "vc/diff.el" (22330 59913 993323 372000)) +;;;### (autoloads nil "diff" "vc/diff.el" (22308 37947 246422 527000)) ;;; Generated autoloads from vc/diff.el (defvar diff-switches (purecopy "-u") "\ @@ -6445,8 +6444,8 @@ This requires the external program `diff' to be in your `exec-path'. ;;;*** -;;;### (autoloads nil "diff-mode" "vc/diff-mode.el" (22330 59914 -;;;;;; 9323 322000)) +;;;### (autoloads nil "diff-mode" "vc/diff-mode.el" (22150 28229 +;;;;;; 250072 702000)) ;;; Generated autoloads from vc/diff-mode.el (autoload 'diff-mode "diff-mode" "\ @@ -6478,7 +6477,7 @@ the mode if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "dig" "net/dig.el" (22330 59913 952323 498000)) +;;;### (autoloads nil "dig" "net/dig.el" (22150 28228 354072 702000)) ;;; Generated autoloads from net/dig.el (autoload 'dig "dig" "\ @@ -6489,7 +6488,7 @@ Optional arguments are passed to `dig-invoke'. ;;;*** -;;;### (autoloads nil "dired" "dired.el" (22331 17371 987369 640000)) +;;;### (autoloads nil "dired" "dired.el" (22313 55864 533239 164000)) ;;; Generated autoloads from dired.el (defvar dired-listing-switches (purecopy "-al") "\ @@ -6615,8 +6614,8 @@ Keybindings: ;;;*** -;;;### (autoloads nil "dirtrack" "dirtrack.el" (22330 59913 752324 -;;;;;; 116000)) +;;;### (autoloads nil "dirtrack" "dirtrack.el" (22150 28227 310072 +;;;;;; 702000)) ;;; Generated autoloads from dirtrack.el (autoload 'dirtrack-mode "dirtrack" "\ @@ -6646,8 +6645,8 @@ from `default-directory'. ;;;*** -;;;### (autoloads nil "disass" "emacs-lisp/disass.el" (22330 59913 -;;;;;; 929323 569000)) +;;;### (autoloads nil "disass" "emacs-lisp/disass.el" (22270 22707 +;;;;;; 603851 575000)) ;;; Generated autoloads from emacs-lisp/disass.el (autoload 'disassemble "disass" "\ @@ -6661,8 +6660,8 @@ redefine OBJECT if it is a symbol. ;;;*** -;;;### (autoloads nil "disp-table" "disp-table.el" (22330 59913 752324 -;;;;;; 116000)) +;;;### (autoloads nil "disp-table" "disp-table.el" (22150 28227 310072 +;;;;;; 702000)) ;;; Generated autoloads from disp-table.el (autoload 'make-display-table "disp-table" "\ @@ -6783,8 +6782,8 @@ in `.emacs'. ;;;*** -;;;### (autoloads nil "dissociate" "play/dissociate.el" (22330 59913 -;;;;;; 969323 446000)) +;;;### (autoloads nil "dissociate" "play/dissociate.el" (22150 28228 +;;;;;; 674072 702000)) ;;; Generated autoloads from play/dissociate.el (autoload 'dissociated-press "dissociate" "\ @@ -6800,7 +6799,7 @@ Default is 2. ;;;*** -;;;### (autoloads nil "dnd" "dnd.el" (22330 59913 752324 116000)) +;;;### (autoloads nil "dnd" "dnd.el" (22150 28227 314072 702000)) ;;; 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)) "\ @@ -6820,8 +6819,8 @@ if some action was made, or nil if the URL is ignored.") ;;;*** -;;;### (autoloads nil "dns-mode" "textmodes/dns-mode.el" (22330 59913 -;;;;;; 990323 381000)) +;;;### (autoloads nil "dns-mode" "textmodes/dns-mode.el" (22150 28229 +;;;;;; 98072 702000)) ;;; Generated autoloads from textmodes/dns-mode.el (autoload 'dns-mode "dns-mode" "\ @@ -6844,8 +6843,8 @@ Locate SOA record and increment the serial field. ;;;*** -;;;### (autoloads nil "doc-view" "doc-view.el" (22330 59913 752324 -;;;;;; 116000)) +;;;### (autoloads nil "doc-view" "doc-view.el" (22253 13631 322961 +;;;;;; 36000)) ;;; Generated autoloads from doc-view.el (autoload 'doc-view-mode-p "doc-view" "\ @@ -6891,8 +6890,8 @@ See the command `doc-view-mode' for more information on this mode. ;;;*** -;;;### (autoloads nil "doctor" "play/doctor.el" (22330 59913 969323 -;;;;;; 446000)) +;;;### (autoloads nil "doctor" "play/doctor.el" (22150 28228 678072 +;;;;;; 702000)) ;;; Generated autoloads from play/doctor.el (autoload 'doctor "doctor" "\ @@ -6902,7 +6901,7 @@ Switch to *doctor* buffer and start giving psychotherapy. ;;;*** -;;;### (autoloads nil "double" "double.el" (22330 59913 753324 113000)) +;;;### (autoloads nil "double" "double.el" (22150 28227 318072 702000)) ;;; Generated autoloads from double.el (autoload 'double-mode "double" "\ @@ -6918,8 +6917,8 @@ strings when pressed twice. See `double-map' for details. ;;;*** -;;;### (autoloads nil "dunnet" "play/dunnet.el" (22330 59913 969323 -;;;;;; 446000)) +;;;### (autoloads nil "dunnet" "play/dunnet.el" (22160 10656 10679 +;;;;;; 927000)) ;;; Generated autoloads from play/dunnet.el (push (purecopy '(dunnet 2 2)) package--builtin-versions) @@ -6930,8 +6929,8 @@ Switch to *dungeon* buffer and start game. ;;;*** -;;;### (autoloads nil "easy-mmode" "emacs-lisp/easy-mmode.el" (22331 -;;;;;; 17371 991369 626000)) +;;;### (autoloads nil "easy-mmode" "emacs-lisp/easy-mmode.el" (22311 +;;;;;; 14139 6375 715000)) ;;; Generated autoloads from emacs-lisp/easy-mmode.el (defalias 'easy-mmode-define-minor-mode 'define-minor-mode) @@ -7073,8 +7072,8 @@ CSS contains a list of syntax specifications of the form (CHAR . SYNTAX). ;;;*** -;;;### (autoloads nil "easymenu" "emacs-lisp/easymenu.el" (22330 -;;;;;; 59913 929323 569000)) +;;;### (autoloads nil "easymenu" "emacs-lisp/easymenu.el" (22150 +;;;;;; 28227 398072 702000)) ;;; Generated autoloads from emacs-lisp/easymenu.el (autoload 'easy-menu-define "easymenu" "\ @@ -7212,8 +7211,8 @@ To implement dynamic menus, either call this from ;;;*** -;;;### (autoloads nil "ebnf2ps" "progmodes/ebnf2ps.el" (22330 59913 -;;;;;; 981323 409000)) +;;;### (autoloads nil "ebnf2ps" "progmodes/ebnf2ps.el" (22150 28228 +;;;;;; 814072 702000)) ;;; Generated autoloads from progmodes/ebnf2ps.el (push (purecopy '(ebnf2ps 4 4)) package--builtin-versions) @@ -7478,8 +7477,8 @@ See `ebnf-style-database' documentation. ;;;*** -;;;### (autoloads nil "ebrowse" "progmodes/ebrowse.el" (22330 59913 -;;;;;; 981323 409000)) +;;;### (autoloads nil "ebrowse" "progmodes/ebrowse.el" (22150 28228 +;;;;;; 814072 702000)) ;;; Generated autoloads from progmodes/ebrowse.el (autoload 'ebrowse-tree-mode "ebrowse" "\ @@ -7627,8 +7626,8 @@ Display statistics for a class tree. ;;;*** -;;;### (autoloads nil "ebuff-menu" "ebuff-menu.el" (22330 59913 912323 -;;;;;; 622000)) +;;;### (autoloads nil "ebuff-menu" "ebuff-menu.el" (22150 28227 318072 +;;;;;; 702000)) ;;; Generated autoloads from ebuff-menu.el (autoload 'electric-buffer-list "ebuff-menu" "\ @@ -7660,8 +7659,8 @@ Run hooks in `electric-buffer-menu-mode-hook' on entry. ;;;*** -;;;### (autoloads nil "echistory" "echistory.el" (22330 59913 912323 -;;;;;; 622000)) +;;;### (autoloads nil "echistory" "echistory.el" (22150 28227 318072 +;;;;;; 702000)) ;;; Generated autoloads from echistory.el (autoload 'Electric-command-history-redo-expression "echistory" "\ @@ -7672,8 +7671,8 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. ;;;*** -;;;### (autoloads nil "ecomplete" "gnus/ecomplete.el" (22331 17372 -;;;;;; 13369 548000)) +;;;### (autoloads nil "ecomplete" "gnus/ecomplete.el" (22150 28227 +;;;;;; 658072 702000)) ;;; Generated autoloads from gnus/ecomplete.el (autoload 'ecomplete-setup "ecomplete" "\ @@ -7683,7 +7682,7 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. ;;;*** -;;;### (autoloads nil "ede" "cedet/ede.el" (22330 59913 920323 597000)) +;;;### (autoloads nil "ede" "cedet/ede.el" (22189 64323 68321 19000)) ;;; Generated autoloads from cedet/ede.el (push (purecopy '(ede 1 2)) package--builtin-versions) @@ -7710,8 +7709,8 @@ an EDE controlled project. ;;;*** -;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (22331 17371 -;;;;;; 992369 622000)) +;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (22189 64323 +;;;;;; 92321 19000)) ;;; Generated autoloads from emacs-lisp/edebug.el (defvar edebug-all-defs nil "\ @@ -7775,7 +7774,7 @@ Toggle edebugging of all forms. ;;;*** -;;;### (autoloads nil "ediff" "vc/ediff.el" (22331 17372 122369 161000)) +;;;### (autoloads nil "ediff" "vc/ediff.el" (22150 28229 274072 702000)) ;;; Generated autoloads from vc/ediff.el (push (purecopy '(ediff 2 81 4)) package--builtin-versions) @@ -8047,8 +8046,8 @@ With optional NODE, goes to that node. ;;;*** -;;;### (autoloads nil "ediff-help" "vc/ediff-help.el" (22330 59914 -;;;;;; 9323 322000)) +;;;### (autoloads nil "ediff-help" "vc/ediff-help.el" (22150 28229 +;;;;;; 254072 702000)) ;;; Generated autoloads from vc/ediff-help.el (autoload 'ediff-customize "ediff-help" "\ @@ -8058,8 +8057,8 @@ With optional NODE, goes to that node. ;;;*** -;;;### (autoloads nil "ediff-mult" "vc/ediff-mult.el" (22330 59914 -;;;;;; 9323 322000)) +;;;### (autoloads nil "ediff-mult" "vc/ediff-mult.el" (22189 64323 +;;;;;; 332321 19000)) ;;; Generated autoloads from vc/ediff-mult.el (autoload 'ediff-show-registry "ediff-mult" "\ @@ -8071,8 +8070,8 @@ Display Ediff's registry. ;;;*** -;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (22331 17372 -;;;;;; 122369 161000)) +;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (22150 28229 +;;;;;; 270072 702000)) ;;; Generated autoloads from vc/ediff-util.el (autoload 'ediff-toggle-multiframe "ediff-util" "\ @@ -8091,8 +8090,8 @@ To change the default, set the variable `ediff-use-toolbar-p', which see. ;;;*** -;;;### (autoloads nil "edmacro" "edmacro.el" (22330 59913 912323 -;;;;;; 622000)) +;;;### (autoloads nil "edmacro" "edmacro.el" (22150 28227 318072 +;;;;;; 702000)) ;;; Generated autoloads from edmacro.el (push (purecopy '(edmacro 2 1)) package--builtin-versions) @@ -8141,8 +8140,8 @@ or nil, use a compact 80-column format. ;;;*** -;;;### (autoloads nil "edt" "emulation/edt.el" (22330 59913 931323 -;;;;;; 563000)) +;;;### (autoloads nil "edt" "emulation/edt.el" (22204 31687 809113 +;;;;;; 480000)) ;;; Generated autoloads from emulation/edt.el (autoload 'edt-set-scroll-margins "edt" "\ @@ -8159,7 +8158,7 @@ Turn on EDT Emulation. ;;;*** -;;;### (autoloads nil "ehelp" "ehelp.el" (22330 59913 912323 622000)) +;;;### (autoloads nil "ehelp" "ehelp.el" (22150 28227 318072 702000)) ;;; Generated autoloads from ehelp.el (autoload 'with-electric-help "ehelp" "\ @@ -8195,15 +8194,15 @@ BUFFER is put back into its original major mode. ;;;*** -;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (22331 17377 -;;;;;; 951348 457000)) +;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (22321 50034 +;;;;;; 860789 707000)) ;;; Generated autoloads from emacs-lisp/eieio.el (push (purecopy '(eieio 1 4)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (22331 -;;;;;; 17371 993369 619000)) +;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (22150 +;;;;;; 28612 762072 702000)) ;;; Generated autoloads from emacs-lisp/eieio-core.el (push (purecopy '(eieio-core 1 4)) package--builtin-versions) @@ -8219,8 +8218,8 @@ It creates an autoload function for CNAME's constructor. ;;;*** -;;;### (autoloads nil "elec-pair" "elec-pair.el" (22330 59913 912323 -;;;;;; 622000)) +;;;### (autoloads nil "elec-pair" "elec-pair.el" (22150 28227 322072 +;;;;;; 702000)) ;;; Generated autoloads from elec-pair.el (defvar electric-pair-text-pairs '((34 . 34)) "\ @@ -8262,8 +8261,8 @@ Toggle `electric-pair-mode' only in this buffer. ;;;*** -;;;### (autoloads nil "elide-head" "elide-head.el" (22330 59913 912323 -;;;;;; 622000)) +;;;### (autoloads nil "elide-head" "elide-head.el" (22150 28227 322072 +;;;;;; 702000)) ;;; Generated autoloads from elide-head.el (autoload 'elide-head "elide-head" "\ @@ -8278,8 +8277,8 @@ This is suitable as an entry on `find-file-hook' or appropriate mode hooks. ;;;*** -;;;### (autoloads nil "elint" "emacs-lisp/elint.el" (22330 59913 -;;;;;; 929323 569000)) +;;;### (autoloads nil "elint" "emacs-lisp/elint.el" (22150 28227 +;;;;;; 422072 702000)) ;;; Generated autoloads from emacs-lisp/elint.el (autoload 'elint-file "elint" "\ @@ -8314,8 +8313,8 @@ optional prefix argument REINIT is non-nil. ;;;*** -;;;### (autoloads nil "elp" "emacs-lisp/elp.el" (22330 59913 929323 -;;;;;; 569000)) +;;;### (autoloads nil "elp" "emacs-lisp/elp.el" (22150 28227 422072 +;;;;;; 702000)) ;;; Generated autoloads from emacs-lisp/elp.el (autoload 'elp-instrument-function "elp" "\ @@ -8349,8 +8348,8 @@ displayed. ;;;*** -;;;### (autoloads nil "emacs-lock" "emacs-lock.el" (22330 59913 912323 -;;;;;; 622000)) +;;;### (autoloads nil "emacs-lock" "emacs-lock.el" (22150 28227 458072 +;;;;;; 702000)) ;;; Generated autoloads from emacs-lock.el (autoload 'emacs-lock-mode "emacs-lock" "\ @@ -8377,8 +8376,8 @@ Other values are interpreted as usual. ;;;*** -;;;### (autoloads nil "emacsbug" "mail/emacsbug.el" (22331 17372 -;;;;;; 50369 416000)) +;;;### (autoloads nil "emacsbug" "mail/emacsbug.el" (22150 28228 +;;;;;; 226072 702000)) ;;; Generated autoloads from mail/emacsbug.el (autoload 'report-emacs-bug "emacsbug" "\ @@ -8391,7 +8390,8 @@ Prompts for bug subject. Leaves you in a mail buffer. ;;;*** -;;;### (autoloads nil "emerge" "vc/emerge.el" (22330 59914 9323 322000)) +;;;### (autoloads nil "emerge" "vc/emerge.el" (22086 11930 378062 +;;;;;; 731000)) ;;; Generated autoloads from vc/emerge.el (autoload 'emerge-files "emerge" "\ @@ -8451,8 +8451,8 @@ Emerge two RCS revisions of a file, with another revision as ancestor. ;;;*** -;;;### (autoloads nil "enriched" "textmodes/enriched.el" (22330 59913 -;;;;;; 990323 381000)) +;;;### (autoloads nil "enriched" "textmodes/enriched.el" (22150 28229 +;;;;;; 98072 702000)) ;;; Generated autoloads from textmodes/enriched.el (autoload 'enriched-mode "enriched" "\ @@ -8487,7 +8487,7 @@ Commands: ;;;*** -;;;### (autoloads nil "epa" "epa.el" (22331 17371 998369 601000)) +;;;### (autoloads nil "epa" "epa.el" (22150 28227 482072 702000)) ;;; Generated autoloads from epa.el (autoload 'epa-list-keys "epa" "\ @@ -8675,8 +8675,8 @@ Insert selected KEYS after the point. ;;;*** -;;;### (autoloads nil "epa-dired" "epa-dired.el" (22330 59913 912323 -;;;;;; 622000)) +;;;### (autoloads nil "epa-dired" "epa-dired.el" (22150 28227 478072 +;;;;;; 702000)) ;;; Generated autoloads from epa-dired.el (autoload 'epa-dired-do-decrypt "epa-dired" "\ @@ -8701,8 +8701,8 @@ Encrypt marked files. ;;;*** -;;;### (autoloads nil "epa-file" "epa-file.el" (22330 59913 912323 -;;;;;; 622000)) +;;;### (autoloads nil "epa-file" "epa-file.el" (22150 28227 482072 +;;;;;; 702000)) ;;; Generated autoloads from epa-file.el (autoload 'epa-file-handler "epa-file" "\ @@ -8722,8 +8722,8 @@ Encrypt marked files. ;;;*** -;;;### (autoloads nil "epa-mail" "epa-mail.el" (22330 59913 912323 -;;;;;; 622000)) +;;;### (autoloads nil "epa-mail" "epa-mail.el" (22150 28227 482072 +;;;;;; 702000)) ;;; Generated autoloads from epa-mail.el (autoload 'epa-mail-mode "epa-mail" "\ @@ -8801,7 +8801,7 @@ if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "epg" "epg.el" (22330 59913 912323 622000)) +;;;### (autoloads nil "epg" "epg.el" (22217 43732 468164 355000)) ;;; Generated autoloads from epg.el (push (purecopy '(epg 1 0 0)) package--builtin-versions) @@ -8812,8 +8812,8 @@ Return a context object. ;;;*** -;;;### (autoloads nil "epg-config" "epg-config.el" (22330 59913 912323 -;;;;;; 622000)) +;;;### (autoloads nil "epg-config" "epg-config.el" (22334 62023 634741 +;;;;;; 204000)) ;;; Generated autoloads from epg-config.el (autoload 'epg-find-configuration "epg-config" "\ @@ -8847,7 +8847,7 @@ Look at CONFIG and try to expand GROUP. ;;;*** -;;;### (autoloads nil "erc" "erc/erc.el" (22331 17372 1369 590000)) +;;;### (autoloads nil "erc" "erc/erc.el" (22197 58438 151460 447000)) ;;; Generated autoloads from erc/erc.el (push (purecopy '(erc 5 3)) package--builtin-versions) @@ -8896,36 +8896,36 @@ Otherwise, connect to HOST:PORT as USER and /join CHANNEL. ;;;*** -;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (22330 -;;;;;; 59913 933323 557000)) +;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (22150 +;;;;;; 28227 506072 702000)) ;;; Generated autoloads from erc/erc-autoaway.el (autoload 'erc-autoaway-mode "erc-autoaway") ;;;*** -;;;### (autoloads nil "erc-button" "erc/erc-button.el" (22331 17371 -;;;;;; 999369 597000)) +;;;### (autoloads nil "erc-button" "erc/erc-button.el" (22195 16710 +;;;;;; 391344 967000)) ;;; Generated autoloads from erc/erc-button.el (autoload 'erc-button-mode "erc-button" nil t) ;;;*** -;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (22331 17371 -;;;;;; 999369 597000)) +;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (22150 28227 +;;;;;; 510072 702000)) ;;; Generated autoloads from erc/erc-capab.el (autoload 'erc-capab-identify-mode "erc-capab" nil t) ;;;*** -;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (22331 17371 -;;;;;; 999369 597000)) +;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (22150 28227 +;;;;;; 510072 702000)) ;;; Generated autoloads from erc/erc-compat.el (autoload 'erc-define-minor-mode "erc-compat") ;;;*** -;;;### (autoloads nil "erc-dcc" "erc/erc-dcc.el" (22331 17371 999369 -;;;;;; 597000)) +;;;### (autoloads nil "erc-dcc" "erc/erc-dcc.el" (22150 28227 510072 +;;;;;; 702000)) ;;; Generated autoloads from erc/erc-dcc.el (autoload 'erc-dcc-mode "erc-dcc") @@ -8955,14 +8955,14 @@ that subcommand. ;;;*** ;;;### (autoloads nil "erc-desktop-notifications" "erc/erc-desktop-notifications.el" -;;;;;; (22330 59913 933323 557000)) +;;;;;; (22150 28227 510072 702000)) ;;; Generated autoloads from erc/erc-desktop-notifications.el (autoload 'erc-notifications-mode "erc-desktop-notifications" "" t) ;;;*** -;;;### (autoloads nil "erc-ezbounce" "erc/erc-ezbounce.el" (22330 -;;;;;; 59913 933323 557000)) +;;;### (autoloads nil "erc-ezbounce" "erc/erc-ezbounce.el" (22150 +;;;;;; 28227 510072 702000)) ;;; Generated autoloads from erc/erc-ezbounce.el (autoload 'erc-cmd-ezb "erc-ezbounce" "\ @@ -9024,8 +9024,8 @@ Add EZBouncer convenience functions to ERC. ;;;*** -;;;### (autoloads nil "erc-fill" "erc/erc-fill.el" (22330 59913 933323 -;;;;;; 557000)) +;;;### (autoloads nil "erc-fill" "erc/erc-fill.el" (22150 28227 510072 +;;;;;; 702000)) ;;; Generated autoloads from erc/erc-fill.el (autoload 'erc-fill-mode "erc-fill" nil t) @@ -9037,8 +9037,8 @@ You can put this on `erc-insert-modify-hook' and/or `erc-send-modify-hook'. ;;;*** -;;;### (autoloads nil "erc-identd" "erc/erc-identd.el" (22330 59913 -;;;;;; 933323 557000)) +;;;### (autoloads nil "erc-identd" "erc/erc-identd.el" (22150 28227 +;;;;;; 510072 702000)) ;;; Generated autoloads from erc/erc-identd.el (autoload 'erc-identd-mode "erc-identd") @@ -9059,8 +9059,8 @@ system. ;;;*** -;;;### (autoloads nil "erc-imenu" "erc/erc-imenu.el" (22330 59913 -;;;;;; 933323 557000)) +;;;### (autoloads nil "erc-imenu" "erc/erc-imenu.el" (22150 28227 +;;;;;; 514072 702000)) ;;; Generated autoloads from erc/erc-imenu.el (autoload 'erc-create-imenu-index "erc-imenu" "\ @@ -9070,22 +9070,22 @@ system. ;;;*** -;;;### (autoloads nil "erc-join" "erc/erc-join.el" (22330 59913 933323 -;;;;;; 557000)) +;;;### (autoloads nil "erc-join" "erc/erc-join.el" (22150 28227 514072 +;;;;;; 702000)) ;;; Generated autoloads from erc/erc-join.el (autoload 'erc-autojoin-mode "erc-join" nil t) ;;;*** -;;;### (autoloads nil "erc-list" "erc/erc-list.el" (22330 59913 933323 -;;;;;; 557000)) +;;;### (autoloads nil "erc-list" "erc/erc-list.el" (22150 28227 514072 +;;;;;; 702000)) ;;; Generated autoloads from erc/erc-list.el (autoload 'erc-list-mode "erc-list") ;;;*** -;;;### (autoloads nil "erc-log" "erc/erc-log.el" (22330 59913 933323 -;;;;;; 557000)) +;;;### (autoloads nil "erc-log" "erc/erc-log.el" (22150 28227 514072 +;;;;;; 702000)) ;;; Generated autoloads from erc/erc-log.el (autoload 'erc-log-mode "erc-log" nil t) @@ -9114,8 +9114,8 @@ You can save every individual message by putting this function on ;;;*** -;;;### (autoloads nil "erc-match" "erc/erc-match.el" (22331 17371 -;;;;;; 999369 597000)) +;;;### (autoloads nil "erc-match" "erc/erc-match.el" (22150 28227 +;;;;;; 514072 702000)) ;;; Generated autoloads from erc/erc-match.el (autoload 'erc-match-mode "erc-match") @@ -9161,15 +9161,15 @@ Delete dangerous-host interactively to `erc-dangerous-hosts'. ;;;*** -;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (22330 59913 933323 -;;;;;; 557000)) +;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (22150 28227 514072 +;;;;;; 702000)) ;;; Generated autoloads from erc/erc-menu.el (autoload 'erc-menu-mode "erc-menu" nil t) ;;;*** -;;;### (autoloads nil "erc-netsplit" "erc/erc-netsplit.el" (22330 -;;;;;; 59913 933323 557000)) +;;;### (autoloads nil "erc-netsplit" "erc/erc-netsplit.el" (22150 +;;;;;; 28227 514072 702000)) ;;; Generated autoloads from erc/erc-netsplit.el (autoload 'erc-netsplit-mode "erc-netsplit") @@ -9180,8 +9180,8 @@ Show who's gone. ;;;*** -;;;### (autoloads nil "erc-networks" "erc/erc-networks.el" (22330 -;;;;;; 59913 933323 557000)) +;;;### (autoloads nil "erc-networks" "erc/erc-networks.el" (22189 +;;;;;; 64323 128321 19000)) ;;; Generated autoloads from erc/erc-networks.el (autoload 'erc-determine-network "erc-networks" "\ @@ -9198,8 +9198,8 @@ Interactively select a server to connect to using `erc-server-alist'. ;;;*** -;;;### (autoloads nil "erc-notify" "erc/erc-notify.el" (22330 59913 -;;;;;; 933323 557000)) +;;;### (autoloads nil "erc-notify" "erc/erc-notify.el" (22150 28227 +;;;;;; 518072 702000)) ;;; Generated autoloads from erc/erc-notify.el (autoload 'erc-notify-mode "erc-notify" nil t) @@ -9217,36 +9217,36 @@ with args, toggle notify status of people. ;;;*** -;;;### (autoloads nil "erc-page" "erc/erc-page.el" (22330 59913 933323 -;;;;;; 557000)) +;;;### (autoloads nil "erc-page" "erc/erc-page.el" (22150 28227 518072 +;;;;;; 702000)) ;;; Generated autoloads from erc/erc-page.el (autoload 'erc-page-mode "erc-page") ;;;*** -;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (22330 -;;;;;; 59913 933323 557000)) +;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (22195 +;;;;;; 16710 595344 967000)) ;;; Generated autoloads from erc/erc-pcomplete.el (autoload 'erc-completion-mode "erc-pcomplete" nil t) ;;;*** -;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (22330 59913 -;;;;;; 933323 557000)) +;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (22150 28227 +;;;;;; 518072 702000)) ;;; Generated autoloads from erc/erc-replace.el (autoload 'erc-replace-mode "erc-replace") ;;;*** -;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (22330 59913 933323 -;;;;;; 557000)) +;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (22150 28227 518072 +;;;;;; 702000)) ;;; Generated autoloads from erc/erc-ring.el (autoload 'erc-ring-mode "erc-ring" nil t) ;;;*** -;;;### (autoloads nil "erc-services" "erc/erc-services.el" (22330 -;;;;;; 59913 933323 557000)) +;;;### (autoloads nil "erc-services" "erc/erc-services.el" (22150 +;;;;;; 28227 518072 702000)) ;;; Generated autoloads from erc/erc-services.el (autoload 'erc-services-mode "erc-services" nil t) @@ -9263,15 +9263,15 @@ When called interactively, read the password using `read-passwd'. ;;;*** -;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (22330 59913 -;;;;;; 933323 557000)) +;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (22150 28227 +;;;;;; 518072 702000)) ;;; Generated autoloads from erc/erc-sound.el (autoload 'erc-sound-mode "erc-sound") ;;;*** -;;;### (autoloads nil "erc-speedbar" "erc/erc-speedbar.el" (22330 -;;;;;; 59913 933323 557000)) +;;;### (autoloads nil "erc-speedbar" "erc/erc-speedbar.el" (22150 +;;;;;; 28227 518072 702000)) ;;; Generated autoloads from erc/erc-speedbar.el (autoload 'erc-speedbar-browser "erc-speedbar" "\ @@ -9282,22 +9282,22 @@ This will add a speedbar major display mode. ;;;*** -;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (22330 -;;;;;; 59913 933323 557000)) +;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (22150 +;;;;;; 28227 518072 702000)) ;;; Generated autoloads from erc/erc-spelling.el (autoload 'erc-spelling-mode "erc-spelling" nil t) ;;;*** -;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (22331 17372 -;;;;;; 369 594000)) +;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (22150 28227 +;;;;;; 518072 702000)) ;;; Generated autoloads from erc/erc-stamp.el (autoload 'erc-timestamp-mode "erc-stamp" nil t) ;;;*** -;;;### (autoloads nil "erc-track" "erc/erc-track.el" (22331 17372 -;;;;;; 369 594000)) +;;;### (autoloads nil "erc-track" "erc/erc-track.el" (22195 16710 +;;;;;; 599344 967000)) ;;; Generated autoloads from erc/erc-track.el (defvar erc-track-minor-mode nil "\ @@ -9323,8 +9323,8 @@ keybindings will not do anything useful. ;;;*** -;;;### (autoloads nil "erc-truncate" "erc/erc-truncate.el" (22330 -;;;;;; 59913 933323 557000)) +;;;### (autoloads nil "erc-truncate" "erc/erc-truncate.el" (22150 +;;;;;; 28227 522072 702000)) ;;; Generated autoloads from erc/erc-truncate.el (autoload 'erc-truncate-mode "erc-truncate" nil t) @@ -9343,8 +9343,8 @@ Meant to be used in hooks, like `erc-insert-post-hook'. ;;;*** -;;;### (autoloads nil "erc-xdcc" "erc/erc-xdcc.el" (22330 59913 933323 -;;;;;; 557000)) +;;;### (autoloads nil "erc-xdcc" "erc/erc-xdcc.el" (22150 28227 522072 +;;;;;; 702000)) ;;; Generated autoloads from erc/erc-xdcc.el (autoload 'erc-xdcc-mode "erc-xdcc") @@ -9355,8 +9355,8 @@ Add a file to `erc-xdcc-files'. ;;;*** -;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (22331 17371 995369 -;;;;;; 612000)) +;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (22182 4679 395463 +;;;;;; 499000)) ;;; Generated autoloads from emacs-lisp/ert.el (autoload 'ert-deftest "ert" "\ @@ -9425,8 +9425,8 @@ Display the documentation for TEST-OR-TEST-NAME (a symbol or ert-test). ;;;*** -;;;### (autoloads nil "ert-x" "emacs-lisp/ert-x.el" (22331 17371 -;;;;;; 994369 615000)) +;;;### (autoloads nil "ert-x" "emacs-lisp/ert-x.el" (22150 28227 +;;;;;; 426072 702000)) ;;; Generated autoloads from emacs-lisp/ert-x.el (put 'ert-with-test-buffer 'lisp-indent-function 1) @@ -9438,8 +9438,8 @@ Kill all test buffers that are still live. ;;;*** -;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (22331 17372 -;;;;;; 1369 590000)) +;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (22150 28227 +;;;;;; 542072 702000)) ;;; Generated autoloads from eshell/esh-mode.el (autoload 'eshell-mode "esh-mode" "\ @@ -9449,8 +9449,8 @@ Emacs shell interactive mode. ;;;*** -;;;### (autoloads nil "eshell" "eshell/eshell.el" (22331 17372 2369 -;;;;;; 587000)) +;;;### (autoloads nil "eshell" "eshell/eshell.el" (22150 28227 542072 +;;;;;; 702000)) ;;; Generated autoloads from eshell/eshell.el (push (purecopy '(eshell 2 4 2)) package--builtin-versions) @@ -9485,8 +9485,8 @@ corresponding to a successful execution. ;;;*** -;;;### (autoloads nil "etags" "progmodes/etags.el" (22330 59913 971323 -;;;;;; 440000)) +;;;### (autoloads nil "etags" "progmodes/etags.el" (22315 11204 909560 +;;;;;; 191000)) ;;; Generated autoloads from progmodes/etags.el (defvar tags-file-name nil "\ @@ -9801,8 +9801,8 @@ for \\[find-tag] (which see). ;;;*** -;;;### (autoloads nil "ethio-util" "language/ethio-util.el" (22330 -;;;;;; 59913 940323 535000)) +;;;### (autoloads nil "ethio-util" "language/ethio-util.el" (22150 +;;;;;; 28228 166072 702000)) ;;; Generated autoloads from language/ethio-util.el (autoload 'setup-ethiopic-environment-internal "ethio-util" "\ @@ -9970,7 +9970,7 @@ With ARG, insert that many delimiters. ;;;*** -;;;### (autoloads nil "eudc" "net/eudc.el" (22331 17372 58369 388000)) +;;;### (autoloads nil "eudc" "net/eudc.el" (22150 28228 354072 702000)) ;;; Generated autoloads from net/eudc.el (autoload 'eudc-set-server "eudc" "\ @@ -10024,8 +10024,8 @@ This does nothing except loading eudc by autoload side-effect. ;;;*** -;;;### (autoloads nil "eudc-bob" "net/eudc-bob.el" (22330 59913 952323 -;;;;;; 498000)) +;;;### (autoloads nil "eudc-bob" "net/eudc-bob.el" (22150 28228 354072 +;;;;;; 702000)) ;;; Generated autoloads from net/eudc-bob.el (autoload 'eudc-display-generic-binary "eudc-bob" "\ @@ -10060,8 +10060,8 @@ Display a button for the JPEG DATA. ;;;*** -;;;### (autoloads nil "eudc-export" "net/eudc-export.el" (22330 59913 -;;;;;; 952323 498000)) +;;;### (autoloads nil "eudc-export" "net/eudc-export.el" (22150 28228 +;;;;;; 354072 702000)) ;;; Generated autoloads from net/eudc-export.el (autoload 'eudc-insert-record-at-point-into-bbdb "eudc-export" "\ @@ -10077,8 +10077,8 @@ Call `eudc-insert-record-at-point-into-bbdb' if on a record. ;;;*** -;;;### (autoloads nil "eudc-hotlist" "net/eudc-hotlist.el" (22330 -;;;;;; 59913 953323 495000)) +;;;### (autoloads nil "eudc-hotlist" "net/eudc-hotlist.el" (22150 +;;;;;; 28228 354072 702000)) ;;; Generated autoloads from net/eudc-hotlist.el (autoload 'eudc-edit-hotlist "eudc-hotlist" "\ @@ -10088,8 +10088,8 @@ Edit the hotlist of directory servers in a specialized buffer. ;;;*** -;;;### (autoloads nil "ewoc" "emacs-lisp/ewoc.el" (22330 59913 929323 -;;;;;; 569000)) +;;;### (autoloads nil "ewoc" "emacs-lisp/ewoc.el" (22150 28227 430072 +;;;;;; 702000)) ;;; Generated autoloads from emacs-lisp/ewoc.el (autoload 'ewoc-create "ewoc" "\ @@ -10115,7 +10115,7 @@ fourth arg NOSEP non-nil inhibits this. ;;;*** -;;;### (autoloads nil "eww" "net/eww.el" (22331 17372 58369 388000)) +;;;### (autoloads nil "eww" "net/eww.el" (22229 34898 904051 395000)) ;;; Generated autoloads from net/eww.el (defvar eww-suggest-uris '(eww-links-at-point url-get-url-at-point eww-current-url) "\ @@ -10162,8 +10162,8 @@ Display the bookmarks. ;;;*** -;;;### (autoloads nil "executable" "progmodes/executable.el" (22330 -;;;;;; 59913 981323 409000)) +;;;### (autoloads nil "executable" "progmodes/executable.el" (22150 +;;;;;; 28228 818072 702000)) ;;; Generated autoloads from progmodes/executable.el (autoload 'executable-command-find-posix-p "executable" "\ @@ -10198,7 +10198,7 @@ file modes. ;;;*** -;;;### (autoloads nil "expand" "expand.el" (22330 59913 912323 622000)) +;;;### (autoloads nil "expand" "expand.el" (22150 28227 542072 702000)) ;;; Generated autoloads from expand.el (autoload 'expand-add-abbrevs "expand" "\ @@ -10247,8 +10247,8 @@ This is used only in conjunction with `expand-add-abbrevs'. ;;;*** -;;;### (autoloads nil "f90" "progmodes/f90.el" (22330 59913 981323 -;;;;;; 409000)) +;;;### (autoloads nil "f90" "progmodes/f90.el" (22197 58438 431460 +;;;;;; 447000)) ;;; Generated autoloads from progmodes/f90.el (autoload 'f90-mode "f90" "\ @@ -10315,8 +10315,8 @@ with no args, if that value is non-nil. ;;;*** -;;;### (autoloads nil "face-remap" "face-remap.el" (22330 59913 738324 -;;;;;; 159000)) +;;;### (autoloads nil "face-remap" "face-remap.el" (22283 34751 141333 +;;;;;; 844000)) ;;; Generated autoloads from face-remap.el (autoload 'face-remap-add-relative "face-remap" "\ @@ -10475,8 +10475,8 @@ Besides the choice of face, it is the same as `buffer-face-mode'. ;;;*** -;;;### (autoloads nil "feedmail" "mail/feedmail.el" (22330 59913 -;;;;;; 947323 514000)) +;;;### (autoloads nil "feedmail" "mail/feedmail.el" (22092 27717 +;;;;;; 880268 464000)) ;;; Generated autoloads from mail/feedmail.el (push (purecopy '(feedmail 11)) package--builtin-versions) @@ -10530,7 +10530,7 @@ you can set `feedmail-queue-reminder-alist' to nil. ;;;*** -;;;### (autoloads nil "ffap" "ffap.el" (22331 17372 3369 583000)) +;;;### (autoloads nil "ffap" "ffap.el" (22279 37684 340180 436000)) ;;; Generated autoloads from ffap.el (autoload 'ffap-next "ffap" "\ @@ -10593,8 +10593,8 @@ Evaluate the forms in variable `ffap-bindings'. ;;;*** -;;;### (autoloads nil "filecache" "filecache.el" (22330 59913 912323 -;;;;;; 622000)) +;;;### (autoloads nil "filecache" "filecache.el" (22150 28227 554072 +;;;;;; 702000)) ;;; Generated autoloads from filecache.el (autoload 'file-cache-add-directory "filecache" "\ @@ -10651,8 +10651,8 @@ the name is considered already unique; only the second substitution ;;;*** -;;;### (autoloads nil "filenotify" "filenotify.el" (22330 59913 912323 -;;;;;; 622000)) +;;;### (autoloads nil "filenotify" "filenotify.el" (22230 55750 327718 +;;;;;; 91000)) ;;; Generated autoloads from filenotify.el (autoload 'file-notify-handle-event "filenotify" "\ @@ -10667,7 +10667,8 @@ Otherwise, signal a `file-notify-error'. ;;;*** -;;;### (autoloads nil "files-x" "files-x.el" (22331 17372 3369 583000)) +;;;### (autoloads nil "files-x" "files-x.el" (22189 64323 128321 +;;;;;; 19000)) ;;; Generated autoloads from files-x.el (autoload 'add-file-local-variable "files-x" "\ @@ -10732,8 +10733,8 @@ Copy directory-local variables to the -*- line. ;;;*** -;;;### (autoloads nil "filesets" "filesets.el" (22330 59913 912323 -;;;;;; 622000)) +;;;### (autoloads nil "filesets" "filesets.el" (22150 28227 578072 +;;;;;; 702000)) ;;; Generated autoloads from filesets.el (autoload 'filesets-init "filesets" "\ @@ -10744,8 +10745,8 @@ Set up hooks, load the cache file -- if existing -- and build the menu. ;;;*** -;;;### (autoloads nil "find-cmd" "find-cmd.el" (22330 59913 913323 -;;;;;; 619000)) +;;;### (autoloads nil "find-cmd" "find-cmd.el" (22150 28227 578072 +;;;;;; 702000)) ;;; Generated autoloads from find-cmd.el (push (purecopy '(find-cmd 0 6)) package--builtin-versions) @@ -10765,8 +10766,8 @@ result is a string that should be ready for the command line. ;;;*** -;;;### (autoloads nil "find-dired" "find-dired.el" (22331 17372 5369 -;;;;;; 576000)) +;;;### (autoloads nil "find-dired" "find-dired.el" (22150 28227 578072 +;;;;;; 702000)) ;;; Generated autoloads from find-dired.el (autoload 'find-dired "find-dired" "\ @@ -10806,8 +10807,8 @@ use in place of \"-ls\" as the final argument. ;;;*** -;;;### (autoloads nil "find-file" "find-file.el" (22331 17372 5369 -;;;;;; 576000)) +;;;### (autoloads nil "find-file" "find-file.el" (22150 28227 578072 +;;;;;; 702000)) ;;; 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)))) "\ @@ -10897,8 +10898,8 @@ Visit the file you click on in another window. ;;;*** -;;;### (autoloads nil "find-func" "emacs-lisp/find-func.el" (22331 -;;;;;; 17377 951348 457000)) +;;;### (autoloads nil "find-func" "emacs-lisp/find-func.el" (22343 +;;;;;; 35624 796272 343000)) ;;; Generated autoloads from emacs-lisp/find-func.el (autoload 'find-library "find-func" "\ @@ -11068,8 +11069,8 @@ Define some key bindings for the find-function family of functions. ;;;*** -;;;### (autoloads nil "find-lisp" "find-lisp.el" (22330 59913 738324 -;;;;;; 159000)) +;;;### (autoloads nil "find-lisp" "find-lisp.el" (22311 14139 134375 +;;;;;; 715000)) ;;; Generated autoloads from find-lisp.el (autoload 'find-lisp-find-dired "find-lisp" "\ @@ -11089,7 +11090,7 @@ Change the filter on a `find-lisp-find-dired' buffer to REGEXP. ;;;*** -;;;### (autoloads nil "finder" "finder.el" (22330 59913 913323 619000)) +;;;### (autoloads nil "finder" "finder.el" (22150 28227 578072 702000)) ;;; Generated autoloads from finder.el (push (purecopy '(finder 1 0)) package--builtin-versions) @@ -11111,8 +11112,8 @@ Find packages matching a given keyword. ;;;*** -;;;### (autoloads nil "flow-ctrl" "flow-ctrl.el" (22330 59913 913323 -;;;;;; 619000)) +;;;### (autoloads nil "flow-ctrl" "flow-ctrl.el" (22150 28227 578072 +;;;;;; 702000)) ;;; Generated autoloads from flow-ctrl.el (autoload 'enable-flow-control "flow-ctrl" "\ @@ -11133,8 +11134,8 @@ to get the effect of a C-q. ;;;*** -;;;### (autoloads nil "flow-fill" "gnus/flow-fill.el" (22331 17372 -;;;;;; 13369 548000)) +;;;### (autoloads nil "flow-fill" "gnus/flow-fill.el" (22150 28227 +;;;;;; 658072 702000)) ;;; Generated autoloads from gnus/flow-fill.el (autoload 'fill-flowed-encode "flow-fill" "\ @@ -11149,8 +11150,8 @@ to get the effect of a C-q. ;;;*** -;;;### (autoloads nil "flymake" "progmodes/flymake.el" (22330 59913 -;;;;;; 981323 409000)) +;;;### (autoloads nil "flymake" "progmodes/flymake.el" (22150 28228 +;;;;;; 818072 702000)) ;;; Generated autoloads from progmodes/flymake.el (push (purecopy '(flymake 0 3)) package--builtin-versions) @@ -11180,8 +11181,8 @@ Turn flymake mode off. ;;;*** -;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (22331 17372 -;;;;;; 113369 193000)) +;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (22197 58438 +;;;;;; 711460 447000)) ;;; Generated autoloads from textmodes/flyspell.el (autoload 'flyspell-prog-mode "flyspell" "\ @@ -11251,14 +11252,14 @@ Flyspell whole buffer. ;;;*** -;;;### (autoloads nil "foldout" "foldout.el" (22330 59913 913323 -;;;;;; 619000)) +;;;### (autoloads nil "foldout" "foldout.el" (22150 28227 582072 +;;;;;; 702000)) ;;; Generated autoloads from foldout.el (push (purecopy '(foldout 1 10)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "follow" "follow.el" (22330 59913 738324 159000)) +;;;### (autoloads nil "follow" "follow.el" (22308 37947 126422 527000)) ;;; Generated autoloads from follow.el (autoload 'turn-on-follow-mode "follow" "\ @@ -11380,8 +11381,8 @@ selected if the original window is the first one in the frame. ;;;*** -;;;### (autoloads nil "footnote" "mail/footnote.el" (22330 59913 -;;;;;; 947323 514000)) +;;;### (autoloads nil "footnote" "mail/footnote.el" (22349 57434 +;;;;;; 509387 559000)) ;;; Generated autoloads from mail/footnote.el (push (purecopy '(footnote 0 19)) package--builtin-versions) @@ -11391,7 +11392,7 @@ With a prefix argument ARG, enable Footnote mode if ARG is positive, and disable it otherwise. If called from Lisp, enable the mode if ARG is omitted or nil. -Footnode mode is a buffer-local minor mode. If enabled, it +Footnote mode is a buffer-local minor mode. If enabled, it provides footnote support for `message-mode'. To get started, play around with the following keys: \\{footnote-minor-mode-map} @@ -11400,7 +11401,7 @@ play around with the following keys: ;;;*** -;;;### (autoloads nil "forms" "forms.el" (22330 59913 913323 619000)) +;;;### (autoloads nil "forms" "forms.el" (22253 13631 334961 36000)) ;;; Generated autoloads from forms.el (autoload 'forms-mode "forms" "\ @@ -11436,8 +11437,8 @@ Visit a file in Forms mode in other window. ;;;*** -;;;### (autoloads nil "fortran" "progmodes/fortran.el" (22330 59913 -;;;;;; 983323 402000)) +;;;### (autoloads nil "fortran" "progmodes/fortran.el" (22153 4424 +;;;;;; 620360 262000)) ;;; Generated autoloads from progmodes/fortran.el (autoload 'fortran-mode "fortran" "\ @@ -11514,8 +11515,8 @@ with no args, if that value is non-nil. ;;;*** -;;;### (autoloads nil "fortune" "play/fortune.el" (22331 17372 87369 -;;;;;; 285000)) +;;;### (autoloads nil "fortune" "play/fortune.el" (22150 28228 678072 +;;;;;; 702000)) ;;; Generated autoloads from play/fortune.el (autoload 'fortune-add-fortune "fortune" "\ @@ -11563,8 +11564,8 @@ and choose the directory as the fortune-file. ;;;*** -;;;### (autoloads nil "frameset" "frameset.el" (22330 59913 913323 -;;;;;; 619000)) +;;;### (autoloads nil "frameset" "frameset.el" (22182 4679 399463 +;;;;;; 499000)) ;;; Generated autoloads from frameset.el (defvar frameset-session-filter-alist '((name . :never) (left . frameset-filter-iconified) (minibuffer . frameset-filter-minibuffer) (top . frameset-filter-iconified)) "\ @@ -11750,15 +11751,15 @@ Interactively, reads the register using `register-read-with-preview'. ;;;*** -;;;### (autoloads nil "gamegrid" "play/gamegrid.el" (22330 59913 -;;;;;; 969323 446000)) +;;;### (autoloads nil "gamegrid" "play/gamegrid.el" (22182 4679 471463 +;;;;;; 499000)) ;;; Generated autoloads from play/gamegrid.el (push (purecopy '(gamegrid 1 2)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (22330 59913 -;;;;;; 983323 402000)) +;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (22150 28228 +;;;;;; 822072 702000)) ;;; Generated autoloads from progmodes/gdb-mi.el (defvar gdb-enable-debug nil "\ @@ -11836,8 +11837,8 @@ detailed description of this mode. ;;;*** -;;;### (autoloads nil "generic" "emacs-lisp/generic.el" (22330 59913 -;;;;;; 929323 569000)) +;;;### (autoloads nil "generic" "emacs-lisp/generic.el" (22150 28227 +;;;;;; 430072 702000)) ;;; Generated autoloads from emacs-lisp/generic.el (defvar generic-mode-list nil "\ @@ -11917,8 +11918,8 @@ regular expression that can be used as an element of ;;;*** -;;;### (autoloads nil "glasses" "progmodes/glasses.el" (22330 59913 -;;;;;; 983323 402000)) +;;;### (autoloads nil "glasses" "progmodes/glasses.el" (22150 28228 +;;;;;; 822072 702000)) ;;; Generated autoloads from progmodes/glasses.el (autoload 'glasses-mode "glasses" "\ @@ -11932,8 +11933,8 @@ add virtual separators (like underscores) at places they belong to. ;;;*** -;;;### (autoloads nil "gmm-utils" "gnus/gmm-utils.el" (22331 17372 -;;;;;; 14369 544000)) +;;;### (autoloads nil "gmm-utils" "gnus/gmm-utils.el" (22272 64438 +;;;;;; 224671 103000)) ;;; Generated autoloads from gnus/gmm-utils.el (autoload 'gmm-regexp-concat "gmm-utils" "\ @@ -11987,7 +11988,7 @@ DEFAULT-MAP specifies the default key map for ICON-LIST. ;;;*** -;;;### (autoloads nil "gnus" "gnus/gnus.el" (22331 17372 26369 502000)) +;;;### (autoloads nil "gnus" "gnus/gnus.el" (22165 43181 87854 955000)) ;;; Generated autoloads from gnus/gnus.el (push (purecopy '(gnus 5 13)) package--builtin-versions) (when (fboundp 'custom-autoload) @@ -12037,8 +12038,8 @@ prompt the user for the name of an NNTP server to use. ;;;*** -;;;### (autoloads nil "gnus-agent" "gnus/gnus-agent.el" (22331 17372 -;;;;;; 14369 544000)) +;;;### (autoloads nil "gnus-agent" "gnus/gnus-agent.el" (22182 4679 +;;;;;; 403463 499000)) ;;; Generated autoloads from gnus/gnus-agent.el (autoload 'gnus-unplugged "gnus-agent" "\ @@ -12128,8 +12129,8 @@ CLEAN is obsolete and ignored. ;;;*** -;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (22331 17372 -;;;;;; 16369 537000)) +;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (22284 55604 +;;;;;; 142845 171000)) ;;; Generated autoloads from gnus/gnus-art.el (autoload 'gnus-article-prepare-display "gnus-art" "\ @@ -12139,8 +12140,8 @@ Make the current buffer look like a nice article. ;;;*** -;;;### (autoloads nil "gnus-bookmark" "gnus/gnus-bookmark.el" (22331 -;;;;;; 17372 16369 537000)) +;;;### (autoloads nil "gnus-bookmark" "gnus/gnus-bookmark.el" (22150 +;;;;;; 28227 674072 702000)) ;;; Generated autoloads from gnus/gnus-bookmark.el (autoload 'gnus-bookmark-set "gnus-bookmark" "\ @@ -12163,8 +12164,8 @@ deletion, or > if it is flagged for displaying. ;;;*** -;;;### (autoloads nil "gnus-cache" "gnus/gnus-cache.el" (22331 17372 -;;;;;; 16369 537000)) +;;;### (autoloads nil "gnus-cache" "gnus/gnus-cache.el" (22150 28227 +;;;;;; 678072 702000)) ;;; Generated autoloads from gnus/gnus-cache.el (autoload 'gnus-jog-cache "gnus-cache" "\ @@ -12205,8 +12206,8 @@ supported. ;;;*** -;;;### (autoloads nil "gnus-delay" "gnus/gnus-delay.el" (22331 17372 -;;;;;; 17369 534000)) +;;;### (autoloads nil "gnus-delay" "gnus/gnus-delay.el" (22150 28227 +;;;;;; 682072 702000)) ;;; Generated autoloads from gnus/gnus-delay.el (autoload 'gnus-delay-article "gnus-delay" "\ @@ -12241,8 +12242,8 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil. ;;;*** -;;;### (autoloads nil "gnus-diary" "gnus/gnus-diary.el" (22331 17372 -;;;;;; 17369 534000)) +;;;### (autoloads nil "gnus-diary" "gnus/gnus-diary.el" (22150 28227 +;;;;;; 686072 702000)) ;;; Generated autoloads from gnus/gnus-diary.el (autoload 'gnus-user-format-function-d "gnus-diary" "\ @@ -12257,8 +12258,8 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil. ;;;*** -;;;### (autoloads nil "gnus-dired" "gnus/gnus-dired.el" (22331 17372 -;;;;;; 17369 534000)) +;;;### (autoloads nil "gnus-dired" "gnus/gnus-dired.el" (22150 28227 +;;;;;; 686072 702000)) ;;; Generated autoloads from gnus/gnus-dired.el (autoload 'turn-on-gnus-dired-mode "gnus-dired" "\ @@ -12268,8 +12269,8 @@ Convenience method to turn on gnus-dired-mode. ;;;*** -;;;### (autoloads nil "gnus-draft" "gnus/gnus-draft.el" (22331 17372 -;;;;;; 17369 534000)) +;;;### (autoloads nil "gnus-draft" "gnus/gnus-draft.el" (22150 28227 +;;;;;; 686072 702000)) ;;; Generated autoloads from gnus/gnus-draft.el (autoload 'gnus-draft-reminder "gnus-draft" "\ @@ -12279,8 +12280,8 @@ Reminder user if there are unsent drafts. ;;;*** -;;;### (autoloads nil "gnus-fun" "gnus/gnus-fun.el" (22331 17372 -;;;;;; 17369 534000)) +;;;### (autoloads nil "gnus-fun" "gnus/gnus-fun.el" (22165 43181 +;;;;;; 71854 955000)) ;;; Generated autoloads from gnus/gnus-fun.el (autoload 'gnus--random-face-with-type "gnus-fun" "\ @@ -12345,8 +12346,8 @@ Insert a random Face header from `gnus-face-directory'. ;;;*** -;;;### (autoloads nil "gnus-gravatar" "gnus/gnus-gravatar.el" (22331 -;;;;;; 17372 17369 534000)) +;;;### (autoloads nil "gnus-gravatar" "gnus/gnus-gravatar.el" (22192 +;;;;;; 2880 975382 391000)) ;;; Generated autoloads from gnus/gnus-gravatar.el (autoload 'gnus-treat-from-gravatar "gnus-gravatar" "\ @@ -12363,8 +12364,8 @@ If gravatars are already displayed, remove them. ;;;*** -;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (22331 17372 -;;;;;; 18369 530000)) +;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (22150 28227 +;;;;;; 694072 702000)) ;;; Generated autoloads from gnus/gnus-group.el (autoload 'gnus-fetch-group "gnus-group" "\ @@ -12381,8 +12382,8 @@ Pop up a frame and enter GROUP. ;;;*** -;;;### (autoloads nil "gnus-html" "gnus/gnus-html.el" (22331 17372 -;;;;;; 18369 530000)) +;;;### (autoloads nil "gnus-html" "gnus/gnus-html.el" (22150 28227 +;;;;;; 694072 702000)) ;;; Generated autoloads from gnus/gnus-html.el (autoload 'gnus-article-html "gnus-html" "\ @@ -12397,8 +12398,8 @@ Pop up a frame and enter GROUP. ;;;*** -;;;### (autoloads nil "gnus-kill" "gnus/gnus-kill.el" (22330 59913 -;;;;;; 938323 541000)) +;;;### (autoloads nil "gnus-kill" "gnus/gnus-kill.el" (22189 64323 +;;;;;; 180321 19000)) ;;; Generated autoloads from gnus/gnus-kill.el (defalias 'gnus-batch-kill 'gnus-batch-score) @@ -12411,8 +12412,8 @@ Usage: emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score ;;;*** -;;;### (autoloads nil "gnus-ml" "gnus/gnus-ml.el" (22331 17372 19369 -;;;;;; 526000)) +;;;### (autoloads nil "gnus-ml" "gnus/gnus-ml.el" (22150 28227 698072 +;;;;;; 702000)) ;;; Generated autoloads from gnus/gnus-ml.el (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" "\ @@ -12435,8 +12436,8 @@ Minor mode for providing mailing-list commands. ;;;*** -;;;### (autoloads nil "gnus-mlspl" "gnus/gnus-mlspl.el" (22330 59913 -;;;;;; 938323 541000)) +;;;### (autoloads nil "gnus-mlspl" "gnus/gnus-mlspl.el" (22150 28227 +;;;;;; 698072 702000)) ;;; Generated autoloads from gnus/gnus-mlspl.el (autoload 'gnus-group-split-setup "gnus-mlspl" "\ @@ -12536,8 +12537,8 @@ Calling (gnus-group-split-fancy nil nil \"mail.others\") returns: ;;;*** -;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (22331 17372 -;;;;;; 19369 526000)) +;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (22150 28227 +;;;;;; 702072 702000)) ;;; Generated autoloads from gnus/gnus-msg.el (autoload 'gnus-msg-mail "gnus-msg" "\ @@ -12564,7 +12565,7 @@ Like `message-reply'. ;;;*** ;;;### (autoloads nil "gnus-notifications" "gnus/gnus-notifications.el" -;;;;;; (22331 17372 19369 526000)) +;;;;;; (22150 28227 702072 702000)) ;;; Generated autoloads from gnus/gnus-notifications.el (autoload 'gnus-notifications "gnus-notifications" "\ @@ -12580,8 +12581,8 @@ This is typically a function to add in ;;;*** -;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (22331 17372 -;;;;;; 19369 526000)) +;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (22192 2880 +;;;;;; 983382 391000)) ;;; Generated autoloads from gnus/gnus-picon.el (autoload 'gnus-treat-from-picon "gnus-picon" "\ @@ -12604,8 +12605,8 @@ If picons are already displayed, remove them. ;;;*** -;;;### (autoloads nil "gnus-range" "gnus/gnus-range.el" (22330 59913 -;;;;;; 938323 541000)) +;;;### (autoloads nil "gnus-range" "gnus/gnus-range.el" (22150 28227 +;;;;;; 702072 702000)) ;;; Generated autoloads from gnus/gnus-range.el (autoload 'gnus-sorted-difference "gnus-range" "\ @@ -12672,8 +12673,8 @@ Add NUM into sorted LIST by side effect. ;;;*** -;;;### (autoloads nil "gnus-registry" "gnus/gnus-registry.el" (22331 -;;;;;; 17372 19369 526000)) +;;;### (autoloads nil "gnus-registry" "gnus/gnus-registry.el" (22150 +;;;;;; 28227 702072 702000)) ;;; Generated autoloads from gnus/gnus-registry.el (autoload 'gnus-registry-initialize "gnus-registry" "\ @@ -12688,8 +12689,8 @@ Install the registry hooks. ;;;*** -;;;### (autoloads nil "gnus-sieve" "gnus/gnus-sieve.el" (22330 59913 -;;;;;; 938323 541000)) +;;;### (autoloads nil "gnus-sieve" "gnus/gnus-sieve.el" (22150 28227 +;;;;;; 806072 702000)) ;;; Generated autoloads from gnus/gnus-sieve.el (autoload 'gnus-sieve-update "gnus-sieve" "\ @@ -12716,8 +12717,8 @@ See the documentation for these variables and functions for details. ;;;*** -;;;### (autoloads nil "gnus-spec" "gnus/gnus-spec.el" (22331 17372 -;;;;;; 20369 523000)) +;;;### (autoloads nil "gnus-spec" "gnus/gnus-spec.el" (22150 28227 +;;;;;; 806072 702000)) ;;; Generated autoloads from gnus/gnus-spec.el (autoload 'gnus-update-format "gnus-spec" "\ @@ -12727,8 +12728,8 @@ Update the format specification near point. ;;;*** -;;;### (autoloads nil "gnus-start" "gnus/gnus-start.el" (22331 17372 -;;;;;; 21369 519000)) +;;;### (autoloads nil "gnus-start" "gnus/gnus-start.el" (22197 58438 +;;;;;; 235460 447000)) ;;; Generated autoloads from gnus/gnus-start.el (autoload 'gnus-declare-backend "gnus-start" "\ @@ -12738,8 +12739,8 @@ Declare back end NAME with ABILITIES as a Gnus back end. ;;;*** -;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (22331 17372 -;;;;;; 24369 509000)) +;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (22199 13769 +;;;;;; 464900 836000)) ;;; Generated autoloads from gnus/gnus-sum.el (autoload 'gnus-summary-bookmark-jump "gnus-sum" "\ @@ -12750,8 +12751,8 @@ BOOKMARK is a bookmark name or a bookmark record. ;;;*** -;;;### (autoloads nil "gnus-sync" "gnus/gnus-sync.el" (22331 17372 -;;;;;; 24369 509000)) +;;;### (autoloads nil "gnus-sync" "gnus/gnus-sync.el" (22150 28227 +;;;;;; 862072 702000)) ;;; Generated autoloads from gnus/gnus-sync.el (autoload 'gnus-sync-initialize "gnus-sync" "\ @@ -12766,8 +12767,8 @@ Install the sync hooks. ;;;*** -;;;### (autoloads nil "gnus-win" "gnus/gnus-win.el" (22331 17372 -;;;;;; 25369 505000)) +;;;### (autoloads nil "gnus-win" "gnus/gnus-win.el" (22150 28227 +;;;;;; 938072 702000)) ;;; Generated autoloads from gnus/gnus-win.el (autoload 'gnus-add-configuration "gnus-win" "\ @@ -12777,8 +12778,8 @@ Add the window configuration CONF to `gnus-buffer-configuration'. ;;;*** -;;;### (autoloads nil "gnutls" "net/gnutls.el" (22331 17372 58369 -;;;;;; 388000)) +;;;### (autoloads nil "gnutls" "net/gnutls.el" (22150 28228 358072 +;;;;;; 702000)) ;;; Generated autoloads from net/gnutls.el (defvar gnutls-min-prime-bits 256 "\ @@ -12794,8 +12795,8 @@ A value of nil says to use the default GnuTLS value.") ;;;*** -;;;### (autoloads nil "gomoku" "play/gomoku.el" (22330 59913 969323 -;;;;;; 446000)) +;;;### (autoloads nil "gomoku" "play/gomoku.el" (22182 4679 471463 +;;;;;; 499000)) ;;; Generated autoloads from play/gomoku.el (autoload 'gomoku "gomoku" "\ @@ -12821,8 +12822,8 @@ Use \\[describe-mode] for more info. ;;;*** -;;;### (autoloads nil "goto-addr" "net/goto-addr.el" (22330 59913 -;;;;;; 953323 495000)) +;;;### (autoloads nil "goto-addr" "net/goto-addr.el" (22150 28228 +;;;;;; 358072 702000)) ;;; Generated autoloads from net/goto-addr.el (define-obsolete-function-alias 'goto-address-at-mouse 'goto-address-at-point "22.1") @@ -12863,8 +12864,8 @@ Like `goto-address-mode', but only for comments and strings. ;;;*** -;;;### (autoloads nil "gravatar" "gnus/gravatar.el" (22331 17372 -;;;;;; 26369 502000)) +;;;### (autoloads nil "gravatar" "gnus/gravatar.el" (22150 28227 +;;;;;; 942072 702000)) ;;; Generated autoloads from gnus/gravatar.el (autoload 'gravatar-retrieve "gravatar" "\ @@ -12880,8 +12881,8 @@ Retrieve MAIL-ADDRESS gravatar and returns it. ;;;*** -;;;### (autoloads nil "grep" "progmodes/grep.el" (22331 17372 94369 -;;;;;; 260000)) +;;;### (autoloads nil "grep" "progmodes/grep.el" (22296 46772 464104 +;;;;;; 103000)) ;;; Generated autoloads from progmodes/grep.el (defvar grep-window-height nil "\ @@ -13048,7 +13049,7 @@ file name to `*.gz', and sets `grep-highlight-matches' to `always'. ;;;*** -;;;### (autoloads nil "gs" "gs.el" (22330 59913 913323 619000)) +;;;### (autoloads nil "gs" "gs.el" (22150 28228 26072 702000)) ;;; Generated autoloads from gs.el (autoload 'gs-load-image "gs" "\ @@ -13061,8 +13062,8 @@ the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful. ;;;*** -;;;### (autoloads nil "gud" "progmodes/gud.el" (22331 17372 95369 -;;;;;; 256000)) +;;;### (autoloads nil "gud" "progmodes/gud.el" (22189 64323 288321 +;;;;;; 19000)) ;;; Generated autoloads from progmodes/gud.el (autoload 'gud-gdb "gud" "\ @@ -13158,8 +13159,8 @@ it if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (22330 59913 929323 -;;;;;; 569000)) +;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (22150 28227 434072 +;;;;;; 702000)) ;;; Generated autoloads from emacs-lisp/gv.el (autoload 'gv-get "gv" "\ @@ -13261,8 +13262,8 @@ binding mode. ;;;*** -;;;### (autoloads nil "handwrite" "play/handwrite.el" (22330 59913 -;;;;;; 969323 446000)) +;;;### (autoloads nil "handwrite" "play/handwrite.el" (22150 28228 +;;;;;; 678072 702000)) ;;; Generated autoloads from play/handwrite.el (autoload 'handwrite "handwrite" "\ @@ -13279,8 +13280,8 @@ Variables: `handwrite-linespace' (default 12) ;;;*** -;;;### (autoloads nil "hanoi" "play/hanoi.el" (22330 59913 969323 -;;;;;; 446000)) +;;;### (autoloads nil "hanoi" "play/hanoi.el" (22086 11930 130062 +;;;;;; 731000)) ;;; Generated autoloads from play/hanoi.el (autoload 'hanoi "hanoi" "\ @@ -13307,8 +13308,8 @@ to be updated. ;;;*** -;;;### (autoloads nil "hashcash" "mail/hashcash.el" (22330 59913 -;;;;;; 947323 514000)) +;;;### (autoloads nil "hashcash" "mail/hashcash.el" (22150 28228 +;;;;;; 230072 702000)) ;;; Generated autoloads from mail/hashcash.el (autoload 'hashcash-insert-payment "hashcash" "\ @@ -13350,8 +13351,8 @@ Prefix arg sets default accept amount temporarily. ;;;*** -;;;### (autoloads nil "help-at-pt" "help-at-pt.el" (22330 59913 913323 -;;;;;; 619000)) +;;;### (autoloads nil "help-at-pt" "help-at-pt.el" (22150 28228 26072 +;;;;;; 702000)) ;;; Generated autoloads from help-at-pt.el (autoload 'help-at-pt-string "help-at-pt" "\ @@ -13478,8 +13479,8 @@ different regions. With numeric argument ARG, behaves like ;;;*** -;;;### (autoloads nil "help-fns" "help-fns.el" (22331 17372 37369 -;;;;;; 462000)) +;;;### (autoloads nil "help-fns" "help-fns.el" (22211 4933 601358 +;;;;;; 144000)) ;;; Generated autoloads from help-fns.el (autoload 'describe-function "help-fns" "\ @@ -13566,8 +13567,8 @@ Produce a texinfo buffer with sorted doc-strings from the DOC file. ;;;*** -;;;### (autoloads nil "help-macro" "help-macro.el" (22330 59913 913323 -;;;;;; 619000)) +;;;### (autoloads nil "help-macro" "help-macro.el" (22150 28228 26072 +;;;;;; 702000)) ;;; Generated autoloads from help-macro.el (defvar three-step-help nil "\ @@ -13581,8 +13582,8 @@ gives the window that lists the options.") ;;;*** -;;;### (autoloads nil "help-mode" "help-mode.el" (22331 17372 37369 -;;;;;; 462000)) +;;;### (autoloads nil "help-mode" "help-mode.el" (22220 19926 384329 +;;;;;; 271000)) ;;; Generated autoloads from help-mode.el (autoload 'help-mode "help-mode" "\ @@ -13683,8 +13684,8 @@ BOOKMARK is a bookmark name or a bookmark record. ;;;*** -;;;### (autoloads nil "helper" "emacs-lisp/helper.el" (22330 59913 -;;;;;; 929323 569000)) +;;;### (autoloads nil "helper" "emacs-lisp/helper.el" (22150 28227 +;;;;;; 434072 702000)) ;;; Generated autoloads from emacs-lisp/helper.el (autoload 'Helper-describe-bindings "helper" "\ @@ -13699,7 +13700,7 @@ Provide help for current mode. ;;;*** -;;;### (autoloads nil "hexl" "hexl.el" (22330 59913 913323 619000)) +;;;### (autoloads nil "hexl" "hexl.el" (22150 28228 26072 702000)) ;;; Generated autoloads from hexl.el (autoload 'hexl-mode "hexl" "\ @@ -13793,8 +13794,8 @@ This discards the buffer's undo information. ;;;*** -;;;### (autoloads nil "hi-lock" "hi-lock.el" (22330 59913 739324 -;;;;;; 156000)) +;;;### (autoloads nil "hi-lock" "hi-lock.el" (22311 14139 174375 +;;;;;; 715000)) ;;; Generated autoloads from hi-lock.el (autoload 'hi-lock-mode "hi-lock" "\ @@ -13962,8 +13963,8 @@ be found in variable `hi-lock-interactive-patterns'. ;;;*** -;;;### (autoloads nil "hideif" "progmodes/hideif.el" (22330 59913 -;;;;;; 983323 402000)) +;;;### (autoloads nil "hideif" "progmodes/hideif.el" (22197 58438 +;;;;;; 447460 447000)) ;;; Generated autoloads from progmodes/hideif.el (autoload 'hide-ifdef-mode "hideif" "\ @@ -14010,8 +14011,8 @@ Several variables affect how the hiding is done: ;;;*** -;;;### (autoloads nil "hideshow" "progmodes/hideshow.el" (22331 17372 -;;;;;; 95369 256000)) +;;;### (autoloads nil "hideshow" "progmodes/hideshow.el" (22150 28228 +;;;;;; 830072 702000)) ;;; 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))) "\ @@ -14073,8 +14074,8 @@ Unconditionally turn off `hs-minor-mode'. ;;;*** -;;;### (autoloads nil "hilit-chg" "hilit-chg.el" (22330 59913 913323 -;;;;;; 619000)) +;;;### (autoloads nil "hilit-chg" "hilit-chg.el" (22150 28228 30072 +;;;;;; 702000)) ;;; Generated autoloads from hilit-chg.el (autoload 'highlight-changes-mode "hilit-chg" "\ @@ -14206,8 +14207,8 @@ See `highlight-changes-mode' for more information on Highlight-Changes mode. ;;;*** -;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (22330 59913 913323 -;;;;;; 619000)) +;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (22150 28228 30072 +;;;;;; 702000)) ;;; Generated autoloads from hippie-exp.el (push (purecopy '(hippie-exp 1 6)) package--builtin-versions) @@ -14239,8 +14240,7 @@ argument VERBOSE non-nil makes the function verbose. ;;;*** -;;;### (autoloads nil "hl-line" "hl-line.el" (22330 59913 913323 -;;;;;; 619000)) +;;;### (autoloads nil "hl-line" "hl-line.el" (22150 28228 30072 702000)) ;;; Generated autoloads from hl-line.el (autoload 'hl-line-mode "hl-line" "\ @@ -14290,8 +14290,8 @@ Global-Hl-Line mode uses the functions `global-hl-line-unhighlight' and ;;;*** -;;;### (autoloads nil "holidays" "calendar/holidays.el" (22330 59913 -;;;;;; 920323 597000)) +;;;### (autoloads nil "holidays" "calendar/holidays.el" (22150 28227 +;;;;;; 78072 702000)) ;;; 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"))) "\ @@ -14401,8 +14401,8 @@ The optional LABEL is used to label the buffer created. ;;;*** -;;;### (autoloads nil "html2text" "gnus/html2text.el" (22331 17372 -;;;;;; 26369 502000)) +;;;### (autoloads nil "html2text" "gnus/html2text.el" (22150 28227 +;;;;;; 946072 702000)) ;;; Generated autoloads from gnus/html2text.el (autoload 'html2text "html2text" "\ @@ -14412,8 +14412,8 @@ Convert HTML to plain text in the current buffer. ;;;*** -;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (22331 17372 -;;;;;; 38369 459000)) +;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (22174 41792 +;;;;;; 975867 435000)) ;;; Generated autoloads from htmlfontify.el (push (purecopy '(htmlfontify 0 21)) package--builtin-versions) @@ -14446,8 +14446,8 @@ You may also want to set `hfy-page-header' and `hfy-page-footer'. ;;;*** -;;;### (autoloads nil "ibuf-macs" "ibuf-macs.el" (22330 59913 913323 -;;;;;; 619000)) +;;;### (autoloads nil "ibuf-macs" "ibuf-macs.el" (22150 28228 50072 +;;;;;; 702000)) ;;; Generated autoloads from ibuf-macs.el (autoload 'define-ibuffer-column "ibuf-macs" "\ @@ -14549,7 +14549,8 @@ bound to the current value of the filter. ;;;*** -;;;### (autoloads nil "ibuffer" "ibuffer.el" (22331 17372 39369 455000)) +;;;### (autoloads nil "ibuffer" "ibuffer.el" (22150 28612 886072 +;;;;;; 702000)) ;;; Generated autoloads from ibuffer.el (autoload 'ibuffer-list-buffers "ibuffer" "\ @@ -14588,8 +14589,8 @@ FORMATS is the value to use for `ibuffer-formats'. ;;;*** -;;;### (autoloads nil "icalendar" "calendar/icalendar.el" (22330 -;;;;;; 59913 920323 597000)) +;;;### (autoloads nil "icalendar" "calendar/icalendar.el" (22150 +;;;;;; 28227 78072 702000)) ;;; Generated autoloads from calendar/icalendar.el (push (purecopy '(icalendar 0 19)) package--builtin-versions) @@ -14642,8 +14643,8 @@ buffer `*icalendar-errors*'. ;;;*** -;;;### (autoloads nil "icomplete" "icomplete.el" (22331 17372 39369 -;;;;;; 455000)) +;;;### (autoloads nil "icomplete" "icomplete.el" (22150 28228 54072 +;;;;;; 702000)) ;;; Generated autoloads from icomplete.el (defvar icomplete-mode nil "\ @@ -14683,8 +14684,8 @@ completions: ;;;*** -;;;### (autoloads nil "icon" "progmodes/icon.el" (22330 59913 983323 -;;;;;; 402000)) +;;;### (autoloads nil "icon" "progmodes/icon.el" (22197 58438 447460 +;;;;;; 447000)) ;;; Generated autoloads from progmodes/icon.el (autoload 'icon-mode "icon" "\ @@ -14724,8 +14725,8 @@ with no args, if that value is non-nil. ;;;*** -;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (22330 -;;;;;; 59913 984323 399000)) +;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (22150 +;;;;;; 28228 850072 702000)) ;;; Generated autoloads from progmodes/idlw-shell.el (autoload 'idlwave-shell "idlw-shell" "\ @@ -14750,8 +14751,8 @@ See also the variable `idlwave-shell-prompt-pattern'. ;;;*** -;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (22330 59913 -;;;;;; 984323 399000)) +;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (22197 58438 +;;;;;; 467460 447000)) ;;; Generated autoloads from progmodes/idlwave.el (push (purecopy '(idlwave 6 1 22)) package--builtin-versions) @@ -14880,7 +14881,7 @@ The main features of this mode are ;;;*** -;;;### (autoloads nil "ido" "ido.el" (22330 59913 913323 619000)) +;;;### (autoloads nil "ido" "ido.el" (22150 28228 82072 702000)) ;;; Generated autoloads from ido.el (defvar ido-mode nil "\ @@ -15142,7 +15143,7 @@ DEF, if non-nil, is the default value. ;;;*** -;;;### (autoloads nil "ielm" "ielm.el" (22330 59913 913323 619000)) +;;;### (autoloads nil "ielm" "ielm.el" (22150 28228 82072 702000)) ;;; Generated autoloads from ielm.el (autoload 'ielm "ielm" "\ @@ -15154,7 +15155,7 @@ See `inferior-emacs-lisp-mode' for details. ;;;*** -;;;### (autoloads nil "iimage" "iimage.el" (22330 59913 913323 619000)) +;;;### (autoloads nil "iimage" "iimage.el" (22150 28228 82072 702000)) ;;; Generated autoloads from iimage.el (define-obsolete-function-alias 'turn-on-iimage-mode 'iimage-mode "24.1") @@ -15170,7 +15171,7 @@ the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'. ;;;*** -;;;### (autoloads nil "image" "image.el" (22331 17372 40369 452000)) +;;;### (autoloads nil "image" "image.el" (22150 28228 86072 702000)) ;;; Generated autoloads from image.el (autoload 'image-type-from-data "image" "\ @@ -15363,8 +15364,8 @@ If Emacs is compiled without ImageMagick support, this does nothing. ;;;*** -;;;### (autoloads nil "image-dired" "image-dired.el" (22331 17372 -;;;;;; 39369 455000)) +;;;### (autoloads nil "image-dired" "image-dired.el" (22150 28228 +;;;;;; 86072 702000)) ;;; Generated autoloads from image-dired.el (push (purecopy '(image-dired 0 4 11)) package--builtin-versions) @@ -15501,8 +15502,8 @@ easy-to-use form. ;;;*** -;;;### (autoloads nil "image-file" "image-file.el" (22330 59913 913323 -;;;;;; 619000)) +;;;### (autoloads nil "image-file" "image-file.el" (22150 28228 86072 +;;;;;; 702000)) ;;; 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")) "\ @@ -15565,8 +15566,8 @@ An image file is one whose name has an extension in ;;;*** -;;;### (autoloads nil "image-mode" "image-mode.el" (22331 17372 40369 -;;;;;; 452000)) +;;;### (autoloads nil "image-mode" "image-mode.el" (22174 53239 753341 +;;;;;; 435000)) ;;; Generated autoloads from image-mode.el (autoload 'image-mode "image-mode" "\ @@ -15613,7 +15614,7 @@ on these modes. ;;;*** -;;;### (autoloads nil "imenu" "imenu.el" (22330 59913 739324 156000)) +;;;### (autoloads nil "imenu" "imenu.el" (22311 14139 174375 715000)) ;;; Generated autoloads from imenu.el (defvar imenu-sort-function nil "\ @@ -15751,8 +15752,8 @@ for more information. ;;;*** -;;;### (autoloads nil "ind-util" "language/ind-util.el" (22330 59913 -;;;;;; 941323 532000)) +;;;### (autoloads nil "ind-util" "language/ind-util.el" (22150 28228 +;;;;;; 190072 702000)) ;;; Generated autoloads from language/ind-util.el (autoload 'indian-compose-region "ind-util" "\ @@ -15782,8 +15783,8 @@ Convert old Emacs Devanagari characters to UCS. ;;;*** -;;;### (autoloads nil "inf-lisp" "progmodes/inf-lisp.el" (22330 59913 -;;;;;; 984323 399000)) +;;;### (autoloads nil "inf-lisp" "progmodes/inf-lisp.el" (22150 28228 +;;;;;; 862072 702000)) ;;; Generated autoloads from progmodes/inf-lisp.el (autoload 'inferior-lisp "inf-lisp" "\ @@ -15801,7 +15802,7 @@ of `inferior-lisp-program'). Runs the hooks from ;;;*** -;;;### (autoloads nil "info" "info.el" (22331 17372 41369 448000)) +;;;### (autoloads nil "info" "info.el" (22150 28228 98072 702000)) ;;; 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))))) "\ @@ -16013,8 +16014,8 @@ completion alternatives to currently visited manuals. ;;;*** -;;;### (autoloads nil "info-look" "info-look.el" (22330 59913 740324 -;;;;;; 153000)) +;;;### (autoloads nil "info-look" "info-look.el" (22291 28851 633608 +;;;;;; 847000)) ;;; Generated autoloads from info-look.el (autoload 'info-lookup-reset "info-look" "\ @@ -16061,8 +16062,8 @@ Perform completion on file preceding point. ;;;*** -;;;### (autoloads nil "info-xref" "info-xref.el" (22330 59913 914323 -;;;;;; 615000)) +;;;### (autoloads nil "info-xref" "info-xref.el" (22150 28228 94072 +;;;;;; 702000)) ;;; Generated autoloads from info-xref.el (push (purecopy '(info-xref 3)) package--builtin-versions) @@ -16145,8 +16146,8 @@ the sources handy. ;;;*** -;;;### (autoloads nil "informat" "informat.el" (22330 59913 914323 -;;;;;; 615000)) +;;;### (autoloads nil "informat" "informat.el" (22150 28228 102072 +;;;;;; 702000)) ;;; Generated autoloads from informat.el (autoload 'Info-tagify "informat" "\ @@ -16191,8 +16192,8 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\" ;;;*** -;;;### (autoloads nil "inline" "emacs-lisp/inline.el" (22330 59913 -;;;;;; 929323 569000)) +;;;### (autoloads nil "inline" "emacs-lisp/inline.el" (22171 34371 +;;;;;; 930658 796000)) ;;; Generated autoloads from emacs-lisp/inline.el (autoload 'define-inline "inline" "\ @@ -16206,8 +16207,8 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\" ;;;*** -;;;### (autoloads nil "inversion" "cedet/inversion.el" (22330 59913 -;;;;;; 920323 597000)) +;;;### (autoloads nil "inversion" "cedet/inversion.el" (22150 28227 +;;;;;; 218072 702000)) ;;; Generated autoloads from cedet/inversion.el (push (purecopy '(inversion 1 3)) package--builtin-versions) @@ -16219,8 +16220,8 @@ Only checks one based on which kind of Emacs is being run. ;;;*** -;;;### (autoloads nil "isearch-x" "international/isearch-x.el" (22330 -;;;;;; 59913 939323 538000)) +;;;### (autoloads nil "isearch-x" "international/isearch-x.el" (22150 +;;;;;; 28228 106072 702000)) ;;; Generated autoloads from international/isearch-x.el (autoload 'isearch-toggle-specified-input-method "isearch-x" "\ @@ -16240,8 +16241,8 @@ Toggle input method in interactive search. ;;;*** -;;;### (autoloads nil "isearchb" "isearchb.el" (22330 59913 914323 -;;;;;; 615000)) +;;;### (autoloads nil "isearchb" "isearchb.el" (22150 28228 154072 +;;;;;; 702000)) ;;; Generated autoloads from isearchb.el (push (purecopy '(isearchb 1 5)) package--builtin-versions) @@ -16255,8 +16256,8 @@ accessed via isearchb. ;;;*** -;;;### (autoloads nil "iso-cvt" "international/iso-cvt.el" (22330 -;;;;;; 59913 939323 538000)) +;;;### (autoloads nil "iso-cvt" "international/iso-cvt.el" (22150 +;;;;;; 28228 106072 702000)) ;;; Generated autoloads from international/iso-cvt.el (autoload 'iso-spanish "iso-cvt" "\ @@ -16347,15 +16348,15 @@ Add submenus to the File menu, to convert to and from various formats. ;;;*** ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" -;;;;;; (22330 59913 939323 538000)) +;;;;;; (22150 28228 106072 702000)) ;;; Generated autoloads from international/iso-transl.el (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) (autoload 'iso-transl-ctl-x-8-map "iso-transl" "Keymap for C-x 8 prefix." t 'keymap) ;;;*** -;;;### (autoloads nil "ispell" "textmodes/ispell.el" (22331 17372 -;;;;;; 114369 189000)) +;;;### (autoloads nil "ispell" "textmodes/ispell.el" (22308 37947 +;;;;;; 230422 527000)) ;;; Generated autoloads from textmodes/ispell.el (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) @@ -16588,8 +16589,8 @@ 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" (22330 -;;;;;; 59913 941323 532000)) +;;;### (autoloads nil "japan-util" "language/japan-util.el" (22150 +;;;;;; 28228 190072 702000)) ;;; Generated autoloads from language/japan-util.el (autoload 'setup-japanese-environment-internal "japan-util" "\ @@ -16666,8 +16667,8 @@ If non-nil, second arg INITIAL-INPUT is a string to insert before reading. ;;;*** -;;;### (autoloads nil "jka-compr" "jka-compr.el" (22330 59913 914323 -;;;;;; 615000)) +;;;### (autoloads nil "jka-compr" "jka-compr.el" (22150 28228 158072 +;;;;;; 702000)) ;;; Generated autoloads from jka-compr.el (defvar jka-compr-inhibit nil "\ @@ -16690,8 +16691,7 @@ by `jka-compr-installed'. ;;;*** -;;;### (autoloads nil "js" "progmodes/js.el" (22331 17377 954348 -;;;;;; 447000)) +;;;### (autoloads nil "js" "progmodes/js.el" (22323 5347 50589 123000)) ;;; Generated autoloads from progmodes/js.el (push (purecopy '(js 9)) package--builtin-versions) @@ -16718,14 +16718,14 @@ locally, like so: ;;;*** -;;;### (autoloads nil "json" "json.el" (22330 59913 914323 615000)) +;;;### (autoloads nil "json" "json.el" (22197 58438 339460 447000)) ;;; Generated autoloads from json.el (push (purecopy '(json 1 4)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "keypad" "emulation/keypad.el" (22330 59913 -;;;;;; 931323 563000)) +;;;### (autoloads nil "keypad" "emulation/keypad.el" (22150 28227 +;;;;;; 462072 702000)) ;;; Generated autoloads from emulation/keypad.el (defvar keypad-setup nil "\ @@ -16780,8 +16780,8 @@ the decimal key on the keypad is mapped to DECIMAL instead of `.' ;;;*** -;;;### (autoloads nil "kinsoku" "international/kinsoku.el" (22330 -;;;;;; 59913 939323 538000)) +;;;### (autoloads nil "kinsoku" "international/kinsoku.el" (22150 +;;;;;; 28228 106072 702000)) ;;; Generated autoloads from international/kinsoku.el (autoload 'kinsoku "kinsoku" "\ @@ -16802,8 +16802,8 @@ the context of text formatting. ;;;*** -;;;### (autoloads nil "kkc" "international/kkc.el" (22330 59913 940323 -;;;;;; 535000)) +;;;### (autoloads nil "kkc" "international/kkc.el" (22150 28228 106072 +;;;;;; 702000)) ;;; Generated autoloads from international/kkc.el (defvar kkc-after-update-conversion-functions nil "\ @@ -16825,7 +16825,7 @@ and the return value is the length of the conversion. ;;;*** -;;;### (autoloads nil "kmacro" "kmacro.el" (22331 17372 42369 445000)) +;;;### (autoloads nil "kmacro" "kmacro.el" (22150 28228 162072 702000)) ;;; Generated autoloads from kmacro.el (global-set-key "\C-x(" 'kmacro-start-macro) (global-set-key "\C-x)" 'kmacro-end-macro) @@ -16937,8 +16937,8 @@ If kbd macro currently being defined end it before activating it. ;;;*** -;;;### (autoloads nil "korea-util" "language/korea-util.el" (22330 -;;;;;; 59913 941323 532000)) +;;;### (autoloads nil "korea-util" "language/korea-util.el" (22150 +;;;;;; 28228 194072 702000)) ;;; Generated autoloads from language/korea-util.el (defvar default-korean-keyboard (purecopy (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "")) "\ @@ -16952,8 +16952,8 @@ The kind of Korean keyboard for Korean input method. ;;;*** -;;;### (autoloads nil "lao-util" "language/lao-util.el" (22330 59913 -;;;;;; 941323 532000)) +;;;### (autoloads nil "lao-util" "language/lao-util.el" (22150 28228 +;;;;;; 194072 702000)) ;;; Generated autoloads from language/lao-util.el (autoload 'lao-compose-string "lao-util" "\ @@ -16990,8 +16990,8 @@ Transcribe Romanized Lao string STR to Lao character string. ;;;*** -;;;### (autoloads nil "latexenc" "international/latexenc.el" (22330 -;;;;;; 59913 940323 535000)) +;;;### (autoloads nil "latexenc" "international/latexenc.el" (22150 +;;;;;; 28228 106072 702000)) ;;; 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))) "\ @@ -17023,7 +17023,7 @@ coding system names is determined from `latex-inputenc-coding-alist'. ;;;*** ;;;### (autoloads nil "latin1-disp" "international/latin1-disp.el" -;;;;;; (22330 59913 940323 535000)) +;;;;;; (22150 28228 110072 702000)) ;;; Generated autoloads from international/latin1-disp.el (defvar latin1-display nil "\ @@ -17064,8 +17064,8 @@ use either \\[customize] or the function `latin1-display'.") ;;;*** -;;;### (autoloads nil "ld-script" "progmodes/ld-script.el" (22330 -;;;;;; 59913 984323 399000)) +;;;### (autoloads nil "ld-script" "progmodes/ld-script.el" (22150 +;;;;;; 28228 866072 702000)) ;;; Generated autoloads from progmodes/ld-script.el (autoload 'ld-script-mode "ld-script" "\ @@ -17075,8 +17075,8 @@ A major mode to edit GNU ld script files ;;;*** -;;;### (autoloads nil "let-alist" "emacs-lisp/let-alist.el" (22331 -;;;;;; 17371 995369 612000)) +;;;### (autoloads nil "let-alist" "emacs-lisp/let-alist.el" (22150 +;;;;;; 28227 434072 702000)) ;;; Generated autoloads from emacs-lisp/let-alist.el (push (purecopy '(let-alist 1 0 4)) package--builtin-versions) @@ -17115,7 +17115,7 @@ displayed in the example above. ;;;*** -;;;### (autoloads nil "life" "play/life.el" (22330 59913 969323 446000)) +;;;### (autoloads nil "life" "play/life.el" (22150 28228 678072 702000)) ;;; Generated autoloads from play/life.el (autoload 'life "life" "\ @@ -17128,7 +17128,7 @@ generations (this defaults to 1). ;;;*** -;;;### (autoloads nil "linum" "linum.el" (22331 17372 49369 420000)) +;;;### (autoloads nil "linum" "linum.el" (22150 28228 210072 702000)) ;;; Generated autoloads from linum.el (push (purecopy '(linum 0 9 24)) package--builtin-versions) @@ -17166,8 +17166,8 @@ See `linum-mode' for more information on Linum mode. ;;;*** -;;;### (autoloads nil "loadhist" "loadhist.el" (22330 59913 914323 -;;;;;; 615000)) +;;;### (autoloads nil "loadhist" "loadhist.el" (22150 28228 210072 +;;;;;; 702000)) ;;; Generated autoloads from loadhist.el (autoload 'unload-feature "loadhist" "\ @@ -17198,7 +17198,7 @@ something strange, such as redefining an Emacs function. ;;;*** -;;;### (autoloads nil "locate" "locate.el" (22330 59913 914323 615000)) +;;;### (autoloads nil "locate" "locate.el" (22150 28228 210072 702000)) ;;; Generated autoloads from locate.el (defvar locate-ls-subdir-switches (purecopy "-al") "\ @@ -17250,8 +17250,8 @@ except that FILTER is not optional. ;;;*** -;;;### (autoloads nil "log-edit" "vc/log-edit.el" (22330 59914 9323 -;;;;;; 322000)) +;;;### (autoloads nil "log-edit" "vc/log-edit.el" (22150 28229 278072 +;;;;;; 702000)) ;;; Generated autoloads from vc/log-edit.el (autoload 'log-edit "log-edit" "\ @@ -17282,8 +17282,8 @@ done. Otherwise, it uses the current buffer. ;;;*** -;;;### (autoloads nil "log-view" "vc/log-view.el" (22330 59914 8323 -;;;;;; 325000)) +;;;### (autoloads nil "log-view" "vc/log-view.el" (22294 5044 399300 +;;;;;; 64000)) ;;; Generated autoloads from vc/log-view.el (autoload 'log-view-mode "log-view" "\ @@ -17293,7 +17293,7 @@ Major mode for browsing CVS log output. ;;;*** -;;;### (autoloads nil "lpr" "lpr.el" (22331 17372 50369 416000)) +;;;### (autoloads nil "lpr" "lpr.el" (22150 28228 210072 702000)) ;;; Generated autoloads from lpr.el (defvar lpr-windows-system (memq system-type '(ms-dos windows-nt)) "\ @@ -17388,7 +17388,8 @@ for further customization of the printer command. ;;;*** -;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (22331 17372 50369 416000)) +;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (22220 19926 384329 +;;;;;; 271000)) ;;; Generated autoloads from ls-lisp.el (defvar ls-lisp-support-shell-wildcards t "\ @@ -17399,8 +17400,8 @@ Otherwise they are treated as Emacs regexps (for backward compatibility).") ;;;*** -;;;### (autoloads nil "lunar" "calendar/lunar.el" (22330 59913 920323 -;;;;;; 597000)) +;;;### (autoloads nil "lunar" "calendar/lunar.el" (22150 28227 78072 +;;;;;; 702000)) ;;; Generated autoloads from calendar/lunar.el (autoload 'lunar-phases "lunar" "\ @@ -17412,8 +17413,8 @@ This function is suitable for execution in an init file. ;;;*** -;;;### (autoloads nil "m4-mode" "progmodes/m4-mode.el" (22330 59913 -;;;;;; 984323 399000)) +;;;### (autoloads nil "m4-mode" "progmodes/m4-mode.el" (22150 28228 +;;;;;; 866072 702000)) ;;; Generated autoloads from progmodes/m4-mode.el (autoload 'm4-mode "m4-mode" "\ @@ -17423,7 +17424,7 @@ A major mode to edit m4 macro files. ;;;*** -;;;### (autoloads nil "macros" "macros.el" (22330 59913 914323 615000)) +;;;### (autoloads nil "macros" "macros.el" (22150 28228 210072 702000)) ;;; Generated autoloads from macros.el (autoload 'name-last-kbd-macro "macros" "\ @@ -17512,8 +17513,8 @@ and then select the region of un-tablified names and use ;;;*** -;;;### (autoloads nil "mail-extr" "mail/mail-extr.el" (22331 17372 -;;;;;; 51369 413000)) +;;;### (autoloads nil "mail-extr" "mail/mail-extr.el" (22197 58438 +;;;;;; 343460 447000)) ;;; Generated autoloads from mail/mail-extr.el (autoload 'mail-extract-address-components "mail-extr" "\ @@ -17543,8 +17544,8 @@ Convert mail domain DOMAIN to the country it corresponds to. ;;;*** -;;;### (autoloads nil "mail-hist" "mail/mail-hist.el" (22330 59913 -;;;;;; 947323 514000)) +;;;### (autoloads nil "mail-hist" "mail/mail-hist.el" (22150 28228 +;;;;;; 230072 702000)) ;;; Generated autoloads from mail/mail-hist.el (autoload 'mail-hist-define-keys "mail-hist" "\ @@ -17573,8 +17574,8 @@ This function normally would be called when the message is sent. ;;;*** -;;;### (autoloads nil "mail-utils" "mail/mail-utils.el" (22330 59913 -;;;;;; 947323 514000)) +;;;### (autoloads nil "mail-utils" "mail/mail-utils.el" (22150 28228 +;;;;;; 230072 702000)) ;;; Generated autoloads from mail/mail-utils.el (defvar mail-use-rfc822 nil "\ @@ -17648,8 +17649,8 @@ matches may be returned from the message body. ;;;*** -;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (22330 59913 -;;;;;; 947323 514000)) +;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (22197 58438 +;;;;;; 343460 447000)) ;;; Generated autoloads from mail/mailabbrev.el (defvar mail-abbrevs-mode nil "\ @@ -17699,8 +17700,8 @@ double-quotes. ;;;*** -;;;### (autoloads nil "mailalias" "mail/mailalias.el" (22330 59913 -;;;;;; 947323 514000)) +;;;### (autoloads nil "mailalias" "mail/mailalias.el" (22189 64323 +;;;;;; 268321 19000)) ;;; Generated autoloads from mail/mailalias.el (defvar mail-complete-style 'angles "\ @@ -17753,8 +17754,8 @@ current header, calls `mail-complete-function' and passes prefix ARG if any. ;;;*** -;;;### (autoloads nil "mailclient" "mail/mailclient.el" (22330 59913 -;;;;;; 947323 514000)) +;;;### (autoloads nil "mailclient" "mail/mailclient.el" (22182 4679 +;;;;;; 423463 499000)) ;;; Generated autoloads from mail/mailclient.el (autoload 'mailclient-send-it "mailclient" "\ @@ -17766,8 +17767,8 @@ The mail client is taken to be the handler of mailto URLs. ;;;*** -;;;### (autoloads nil "make-mode" "progmodes/make-mode.el" (22330 -;;;;;; 59913 984323 399000)) +;;;### (autoloads nil "make-mode" "progmodes/make-mode.el" (22221 +;;;;;; 40772 751009 663000)) ;;; Generated autoloads from progmodes/make-mode.el (autoload 'makefile-mode "make-mode" "\ @@ -17884,8 +17885,8 @@ An adapted `makefile-mode' that knows about imake. ;;;*** -;;;### (autoloads nil "makesum" "makesum.el" (22330 59913 914323 -;;;;;; 615000)) +;;;### (autoloads nil "makesum" "makesum.el" (22150 28228 258072 +;;;;;; 702000)) ;;; Generated autoloads from makesum.el (autoload 'make-command-summary "makesum" "\ @@ -17896,7 +17897,7 @@ Previous contents of that buffer are killed first. ;;;*** -;;;### (autoloads nil "man" "man.el" (22330 59913 741324 150000)) +;;;### (autoloads nil "man" "man.el" (22316 32055 822608 108000)) ;;; Generated autoloads from man.el (defalias 'manual-entry 'man) @@ -17952,14 +17953,14 @@ Default bookmark handler for Man buffers. ;;;*** -;;;### (autoloads nil "map" "emacs-lisp/map.el" (22330 59913 930323 -;;;;;; 566000)) +;;;### (autoloads nil "map" "emacs-lisp/map.el" (22262 28597 583325 +;;;;;; 308000)) ;;; Generated autoloads from emacs-lisp/map.el (push (purecopy '(map 1 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "master" "master.el" (22330 59913 914323 615000)) +;;;### (autoloads nil "master" "master.el" (22150 28228 262072 702000)) ;;; Generated autoloads from master.el (push (purecopy '(master 1 0 2)) package--builtin-versions) @@ -17982,8 +17983,8 @@ yourself the value of `master-of' by calling `master-show-slave'. ;;;*** -;;;### (autoloads nil "mb-depth" "mb-depth.el" (22330 59913 914323 -;;;;;; 615000)) +;;;### (autoloads nil "mb-depth" "mb-depth.el" (22150 28228 262072 +;;;;;; 702000)) ;;; Generated autoloads from mb-depth.el (defvar minibuffer-depth-indicate-mode nil "\ @@ -18011,14 +18012,14 @@ recursion depth in the minibuffer prompt. This is only useful if ;;;*** -;;;### (autoloads nil "md4" "md4.el" (22330 59913 914323 615000)) +;;;### (autoloads nil "md4" "md4.el" (22150 28228 262072 702000)) ;;; Generated autoloads from md4.el (push (purecopy '(md4 1 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "message" "gnus/message.el" (22331 17372 28369 -;;;;;; 494000)) +;;;### (autoloads nil "message" "gnus/message.el" (22201 55498 114885 +;;;;;; 567000)) ;;; 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) @@ -18183,8 +18184,8 @@ which specify the range to operate on. ;;;*** -;;;### (autoloads nil "meta-mode" "progmodes/meta-mode.el" (22330 -;;;;;; 59913 984323 399000)) +;;;### (autoloads nil "meta-mode" "progmodes/meta-mode.el" (22150 +;;;;;; 28228 870072 702000)) ;;; Generated autoloads from progmodes/meta-mode.el (push (purecopy '(meta-mode 1 0)) package--builtin-versions) @@ -18200,8 +18201,8 @@ Major mode for editing MetaPost sources. ;;;*** -;;;### (autoloads nil "metamail" "mail/metamail.el" (22330 59913 -;;;;;; 947323 514000)) +;;;### (autoloads nil "metamail" "mail/metamail.el" (22150 28228 +;;;;;; 234072 702000)) ;;; Generated autoloads from mail/metamail.el (autoload 'metamail-interpret-header "metamail" "\ @@ -18244,8 +18245,8 @@ redisplayed as output is inserted. ;;;*** -;;;### (autoloads nil "mh-comp" "mh-e/mh-comp.el" (22331 17372 56369 -;;;;;; 395000)) +;;;### (autoloads nil "mh-comp" "mh-e/mh-comp.el" (22150 28228 294072 +;;;;;; 702000)) ;;; Generated autoloads from mh-e/mh-comp.el (autoload 'mh-smail "mh-comp" "\ @@ -18335,7 +18336,7 @@ delete the draft message. ;;;*** -;;;### (autoloads nil "mh-e" "mh-e/mh-e.el" (22331 17372 56369 395000)) +;;;### (autoloads nil "mh-e" "mh-e/mh-e.el" (22150 28228 298072 702000)) ;;; Generated autoloads from mh-e/mh-e.el (push (purecopy '(mh-e 8 6)) package--builtin-versions) @@ -18352,8 +18353,8 @@ Display version information about MH-E and the MH mail handling system. ;;;*** -;;;### (autoloads nil "mh-folder" "mh-e/mh-folder.el" (22330 59913 -;;;;;; 949323 508000)) +;;;### (autoloads nil "mh-folder" "mh-e/mh-folder.el" (22150 28228 +;;;;;; 302072 702000)) ;;; Generated autoloads from mh-e/mh-folder.el (autoload 'mh-rmail "mh-folder" "\ @@ -18434,8 +18435,8 @@ perform the operation on all messages in that region. ;;;*** -;;;### (autoloads nil "midnight" "midnight.el" (22330 59913 914323 -;;;;;; 615000)) +;;;### (autoloads nil "midnight" "midnight.el" (22265 4790 36806 +;;;;;; 924000)) ;;; Generated autoloads from midnight.el (defvar midnight-mode nil "\ @@ -18476,8 +18477,8 @@ to its second argument TM. ;;;*** -;;;### (autoloads nil "minibuf-eldef" "minibuf-eldef.el" (22330 59913 -;;;;;; 914323 615000)) +;;;### (autoloads nil "minibuf-eldef" "minibuf-eldef.el" (22150 28228 +;;;;;; 322072 702000)) ;;; Generated autoloads from minibuf-eldef.el (defvar minibuffer-electric-default-mode nil "\ @@ -18507,7 +18508,7 @@ is modified to remove the default indication. ;;;*** -;;;### (autoloads nil "misc" "misc.el" (22330 59913 914323 615000)) +;;;### (autoloads nil "misc" "misc.el" (22150 28228 326072 702000)) ;;; Generated autoloads from misc.el (autoload 'butterfly "misc" "\ @@ -18535,8 +18536,8 @@ The return value is always nil. ;;;*** -;;;### (autoloads nil "misearch" "misearch.el" (22330 59913 914323 -;;;;;; 615000)) +;;;### (autoloads nil "misearch" "misearch.el" (22150 28228 326072 +;;;;;; 702000)) ;;; Generated autoloads from misearch.el (add-hook 'isearch-mode-hook 'multi-isearch-setup) @@ -18624,8 +18625,8 @@ whose file names match the specified wildcard. ;;;*** -;;;### (autoloads nil "mixal-mode" "progmodes/mixal-mode.el" (22330 -;;;;;; 59913 984323 399000)) +;;;### (autoloads nil "mixal-mode" "progmodes/mixal-mode.el" (22150 +;;;;;; 28228 874072 702000)) ;;; Generated autoloads from progmodes/mixal-mode.el (push (purecopy '(mixal-mode 0 1)) package--builtin-versions) @@ -18636,8 +18637,8 @@ Major mode for the mixal asm language. ;;;*** -;;;### (autoloads nil "mm-encode" "gnus/mm-encode.el" (22330 59913 -;;;;;; 939323 538000)) +;;;### (autoloads nil "mm-encode" "gnus/mm-encode.el" (22150 28227 +;;;;;; 978072 702000)) ;;; Generated autoloads from gnus/mm-encode.el (autoload 'mm-default-file-encoding "mm-encode" "\ @@ -18647,8 +18648,8 @@ Return a default encoding for FILE. ;;;*** -;;;### (autoloads nil "mm-extern" "gnus/mm-extern.el" (22330 59913 -;;;;;; 939323 538000)) +;;;### (autoloads nil "mm-extern" "gnus/mm-extern.el" (22150 28227 +;;;;;; 978072 702000)) ;;; Generated autoloads from gnus/mm-extern.el (autoload 'mm-extern-cache-contents "mm-extern" "\ @@ -18666,8 +18667,8 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. ;;;*** -;;;### (autoloads nil "mm-partial" "gnus/mm-partial.el" (22331 17372 -;;;;;; 28369 494000)) +;;;### (autoloads nil "mm-partial" "gnus/mm-partial.el" (22150 28227 +;;;;;; 978072 702000)) ;;; Generated autoloads from gnus/mm-partial.el (autoload 'mm-inline-partial "mm-partial" "\ @@ -18680,8 +18681,8 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. ;;;*** -;;;### (autoloads nil "mm-url" "gnus/mm-url.el" (22331 17372 28369 -;;;;;; 494000)) +;;;### (autoloads nil "mm-url" "gnus/mm-url.el" (22150 28227 978072 +;;;;;; 702000)) ;;; Generated autoloads from gnus/mm-url.el (autoload 'mm-url-insert-file-contents "mm-url" "\ @@ -18697,8 +18698,8 @@ Insert file contents of URL using `mm-url-program'. ;;;*** -;;;### (autoloads nil "mm-uu" "gnus/mm-uu.el" (22331 17372 29369 -;;;;;; 491000)) +;;;### (autoloads nil "mm-uu" "gnus/mm-uu.el" (22150 28227 982072 +;;;;;; 702000)) ;;; Generated autoloads from gnus/mm-uu.el (autoload 'mm-uu-dissect "mm-uu" "\ @@ -18717,7 +18718,7 @@ Assume text has been decoded if DECODED is non-nil. ;;;*** -;;;### (autoloads nil "mml" "gnus/mml.el" (22331 17372 30369 487000)) +;;;### (autoloads nil "mml" "gnus/mml.el" (22150 28227 986072 702000)) ;;; Generated autoloads from gnus/mml.el (autoload 'mml-to-mime "mml" "\ @@ -18742,8 +18743,8 @@ body) or \"attachment\" (separate from the body). ;;;*** -;;;### (autoloads nil "mml1991" "gnus/mml1991.el" (22331 17372 30369 -;;;;;; 487000)) +;;;### (autoloads nil "mml1991" "gnus/mml1991.el" (22250 23504 507503 +;;;;;; 448000)) ;;; Generated autoloads from gnus/mml1991.el (autoload 'mml1991-encrypt "mml1991" "\ @@ -18758,8 +18759,8 @@ body) or \"attachment\" (separate from the body). ;;;*** -;;;### (autoloads nil "mml2015" "gnus/mml2015.el" (22331 17372 30369 -;;;;;; 487000)) +;;;### (autoloads nil "mml2015" "gnus/mml2015.el" (22250 23504 507503 +;;;;;; 448000)) ;;; Generated autoloads from gnus/mml2015.el (autoload 'mml2015-decrypt "mml2015" "\ @@ -18799,16 +18800,16 @@ body) or \"attachment\" (separate from the body). ;;;*** -;;;### (autoloads nil "mode-local" "cedet/mode-local.el" (22330 59913 -;;;;;; 920323 597000)) +;;;### (autoloads nil "mode-local" "cedet/mode-local.el" (22276 61491 +;;;;;; 202868 4000)) ;;; Generated autoloads from cedet/mode-local.el (put 'define-overloadable-function 'doc-string-elt 3) ;;;*** -;;;### (autoloads nil "modula2" "progmodes/modula2.el" (22330 59913 -;;;;;; 984323 399000)) +;;;### (autoloads nil "modula2" "progmodes/modula2.el" (22086 11930 +;;;;;; 214062 731000)) ;;; Generated autoloads from progmodes/modula2.el (defalias 'modula-2-mode 'm2-mode) @@ -18841,8 +18842,8 @@ followed by the first character of the construct. ;;;*** -;;;### (autoloads nil "morse" "play/morse.el" (22330 59913 969323 -;;;;;; 446000)) +;;;### (autoloads nil "morse" "play/morse.el" (22150 28228 682072 +;;;;;; 702000)) ;;; Generated autoloads from play/morse.el (autoload 'morse-region "morse" "\ @@ -18867,8 +18868,8 @@ Convert NATO phonetic alphabet in region to ordinary ASCII text. ;;;*** -;;;### (autoloads nil "mouse-drag" "mouse-drag.el" (22330 59913 914323 -;;;;;; 615000)) +;;;### (autoloads nil "mouse-drag" "mouse-drag.el" (22150 28228 326072 +;;;;;; 702000)) ;;; Generated autoloads from mouse-drag.el (autoload 'mouse-drag-throw "mouse-drag" "\ @@ -18915,7 +18916,7 @@ To test this function, evaluate: ;;;*** -;;;### (autoloads nil "mpc" "mpc.el" (22331 17372 57369 391000)) +;;;### (autoloads nil "mpc" "mpc.el" (22150 28228 326072 702000)) ;;; Generated autoloads from mpc.el (autoload 'mpc "mpc" "\ @@ -18925,7 +18926,7 @@ Main entry point for MPC. ;;;*** -;;;### (autoloads nil "mpuz" "play/mpuz.el" (22330 59913 969323 446000)) +;;;### (autoloads nil "mpuz" "play/mpuz.el" (22150 28228 682072 702000)) ;;; Generated autoloads from play/mpuz.el (autoload 'mpuz "mpuz" "\ @@ -18935,7 +18936,7 @@ Multiplication puzzle with GNU Emacs. ;;;*** -;;;### (autoloads nil "msb" "msb.el" (22330 59913 914323 615000)) +;;;### (autoloads nil "msb" "msb.el" (22150 28228 338072 702000)) ;;; Generated autoloads from msb.el (defvar msb-mode nil "\ @@ -18961,8 +18962,8 @@ different buffer menu using the function `msb'. ;;;*** -;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (22330 -;;;;;; 59913 940323 535000)) +;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (22150 +;;;;;; 28228 114072 702000)) ;;; Generated autoloads from international/mule-diag.el (autoload 'list-character-sets "mule-diag" "\ @@ -19094,8 +19095,8 @@ The default is 20. If LIMIT is negative, do not limit the listing. ;;;*** -;;;### (autoloads nil "mule-util" "international/mule-util.el" (22330 -;;;;;; 59913 940323 535000)) +;;;### (autoloads nil "mule-util" "international/mule-util.el" (22165 +;;;;;; 44248 411854 955000)) ;;; Generated autoloads from international/mule-util.el (defsubst string-to-list (string) "\ @@ -19254,8 +19255,8 @@ QUALITY can be: ;;;*** -;;;### (autoloads nil "net-utils" "net/net-utils.el" (22331 17372 -;;;;;; 58369 388000)) +;;;### (autoloads nil "net-utils" "net/net-utils.el" (22150 28228 +;;;;;; 378072 702000)) ;;; Generated autoloads from net/net-utils.el (autoload 'ifconfig "net-utils" "\ @@ -19349,8 +19350,8 @@ Open a network connection to HOST on PORT. ;;;*** -;;;### (autoloads nil "netrc" "net/netrc.el" (22330 59913 953323 -;;;;;; 495000)) +;;;### (autoloads nil "netrc" "net/netrc.el" (22150 28228 378072 +;;;;;; 702000)) ;;; Generated autoloads from net/netrc.el (autoload 'netrc-credentials "netrc" "\ @@ -19362,8 +19363,8 @@ listed in the PORTS list. ;;;*** -;;;### (autoloads nil "network-stream" "net/network-stream.el" (22331 -;;;;;; 17372 58369 388000)) +;;;### (autoloads nil "network-stream" "net/network-stream.el" (22150 +;;;;;; 28228 378072 702000)) ;;; Generated autoloads from net/network-stream.el (autoload 'open-network-stream "network-stream" "\ @@ -19459,8 +19460,8 @@ asynchronously, if possible. ;;;*** -;;;### (autoloads nil "newst-backend" "net/newst-backend.el" (22331 -;;;;;; 17372 59369 384000)) +;;;### (autoloads nil "newst-backend" "net/newst-backend.el" (22150 +;;;;;; 28228 378072 702000)) ;;; Generated autoloads from net/newst-backend.el (autoload 'newsticker-running-p "newst-backend" "\ @@ -19482,7 +19483,7 @@ Run `newsticker-start-hook' if newsticker was not running already. ;;;*** ;;;### (autoloads nil "newst-plainview" "net/newst-plainview.el" -;;;;;; (22330 59913 953323 495000)) +;;;;;; (22150 28228 382072 702000)) ;;; Generated autoloads from net/newst-plainview.el (autoload 'newsticker-plainview "newst-plainview" "\ @@ -19492,8 +19493,8 @@ Start newsticker plainview. ;;;*** -;;;### (autoloads nil "newst-reader" "net/newst-reader.el" (22330 -;;;;;; 59913 953323 495000)) +;;;### (autoloads nil "newst-reader" "net/newst-reader.el" (22165 +;;;;;; 41682 87102 999000)) ;;; Generated autoloads from net/newst-reader.el (autoload 'newsticker-show-news "newst-reader" "\ @@ -19503,8 +19504,8 @@ Start reading news. You may want to bind this to a key. ;;;*** -;;;### (autoloads nil "newst-ticker" "net/newst-ticker.el" (22330 -;;;;;; 59913 953323 495000)) +;;;### (autoloads nil "newst-ticker" "net/newst-ticker.el" (22150 +;;;;;; 28228 382072 702000)) ;;; Generated autoloads from net/newst-ticker.el (autoload 'newsticker-ticker-running-p "newst-ticker" "\ @@ -19524,8 +19525,8 @@ running already. ;;;*** -;;;### (autoloads nil "newst-treeview" "net/newst-treeview.el" (22330 -;;;;;; 59913 953323 495000)) +;;;### (autoloads nil "newst-treeview" "net/newst-treeview.el" (22196 +;;;;;; 37575 156683 383000)) ;;; Generated autoloads from net/newst-treeview.el (autoload 'newsticker-treeview "newst-treeview" "\ @@ -19535,8 +19536,8 @@ Start newsticker treeview. ;;;*** -;;;### (autoloads nil "nndiary" "gnus/nndiary.el" (22331 17372 30369 -;;;;;; 487000)) +;;;### (autoloads nil "nndiary" "gnus/nndiary.el" (22150 28227 990072 +;;;;;; 702000)) ;;; Generated autoloads from gnus/nndiary.el (autoload 'nndiary-generate-nov-databases "nndiary" "\ @@ -19546,8 +19547,8 @@ Generate NOV databases in all nndiary directories. ;;;*** -;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (22331 17372 31369 -;;;;;; 484000)) +;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (22150 28227 990072 +;;;;;; 702000)) ;;; Generated autoloads from gnus/nndoc.el (autoload 'nndoc-add-type "nndoc" "\ @@ -19561,8 +19562,8 @@ symbol in the alist. ;;;*** -;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (22331 17372 -;;;;;; 31369 484000)) +;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (22150 28227 +;;;;;; 994072 702000)) ;;; Generated autoloads from gnus/nnfolder.el (autoload 'nnfolder-generate-active-file "nnfolder" "\ @@ -19573,7 +19574,7 @@ This command does not work if you use short group names. ;;;*** -;;;### (autoloads nil "nnml" "gnus/nnml.el" (22331 17372 33369 477000)) +;;;### (autoloads nil "nnml" "gnus/nnml.el" (22150 28228 2072 702000)) ;;; Generated autoloads from gnus/nnml.el (autoload 'nnml-generate-nov-databases "nnml" "\ @@ -19583,7 +19584,7 @@ Generate NOV databases in all nnml directories. ;;;*** -;;;### (autoloads nil "novice" "novice.el" (22330 59913 914323 615000)) +;;;### (autoloads nil "novice" "novice.el" (22150 28228 446072 702000)) ;;; Generated autoloads from novice.el (define-obsolete-variable-alias 'disabled-command-hook 'disabled-command-function "22.1") @@ -19615,8 +19616,8 @@ future sessions. ;;;*** -;;;### (autoloads nil "nroff-mode" "textmodes/nroff-mode.el" (22330 -;;;;;; 59913 990323 381000)) +;;;### (autoloads nil "nroff-mode" "textmodes/nroff-mode.el" (22150 +;;;;;; 28229 102072 702000)) ;;; Generated autoloads from textmodes/nroff-mode.el (autoload 'nroff-mode "nroff-mode" "\ @@ -19630,14 +19631,14 @@ closing requests for requests that are used in matched pairs. ;;;*** -;;;### (autoloads nil "ntlm" "net/ntlm.el" (22330 59913 953323 495000)) +;;;### (autoloads nil "ntlm" "net/ntlm.el" (22150 28228 386072 702000)) ;;; Generated autoloads from net/ntlm.el (push (purecopy '(ntlm 2 0 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "nxml-glyph" "nxml/nxml-glyph.el" (22331 17372 -;;;;;; 65369 363000)) +;;;### (autoloads nil "nxml-glyph" "nxml/nxml-glyph.el" (22150 28228 +;;;;;; 450072 702000)) ;;; Generated autoloads from nxml/nxml-glyph.el (autoload 'nxml-glyph-display-string "nxml-glyph" "\ @@ -19649,8 +19650,8 @@ Return nil if the face cannot display a glyph for N. ;;;*** -;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (22331 17372 -;;;;;; 65369 363000)) +;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (22150 28228 +;;;;;; 450072 702000)) ;;; Generated autoloads from nxml/nxml-mode.el (autoload 'nxml-mode "nxml-mode" "\ @@ -19710,8 +19711,8 @@ Many aspects this mode can be customized using ;;;*** -;;;### (autoloads nil "nxml-uchnm" "nxml/nxml-uchnm.el" (22331 17372 -;;;;;; 66369 359000)) +;;;### (autoloads nil "nxml-uchnm" "nxml/nxml-uchnm.el" (22150 28228 +;;;;;; 454072 702000)) ;;; Generated autoloads from nxml/nxml-uchnm.el (autoload 'nxml-enable-unicode-char-name-sets "nxml-uchnm" "\ @@ -19723,8 +19724,8 @@ the variable `nxml-enabled-unicode-blocks'. ;;;*** -;;;### (autoloads nil "octave" "progmodes/octave.el" (22330 59913 -;;;;;; 985323 396000)) +;;;### (autoloads nil "octave" "progmodes/octave.el" (22197 58438 +;;;;;; 503460 447000)) ;;; Generated autoloads from progmodes/octave.el (autoload 'octave-mode "octave" "\ @@ -19761,8 +19762,8 @@ startup file, `~/.emacs-octave'. ;;;*** -;;;### (autoloads nil "opascal" "progmodes/opascal.el" (22330 59913 -;;;;;; 985323 396000)) +;;;### (autoloads nil "opascal" "progmodes/opascal.el" (22156 23699 +;;;;;; 542755 538000)) ;;; Generated autoloads from progmodes/opascal.el (define-obsolete-function-alias 'delphi-mode 'opascal-mode "24.4") @@ -19797,7 +19798,7 @@ Coloring: ;;;*** -;;;### (autoloads nil "org" "org/org.el" (22331 17372 87369 285000)) +;;;### (autoloads nil "org" "org/org.el" (22309 58853 550986 699000)) ;;; Generated autoloads from org/org.el (autoload 'org-babel-do-load-languages "org" "\ @@ -20018,8 +20019,8 @@ Call the customize function with org as argument. ;;;*** -;;;### (autoloads nil "org-agenda" "org/org-agenda.el" (22331 17372 -;;;;;; 77369 320000)) +;;;### (autoloads nil "org-agenda" "org/org-agenda.el" (22150 28228 +;;;;;; 558072 702000)) ;;; Generated autoloads from org/org-agenda.el (autoload 'org-toggle-sticky-agenda "org-agenda" "\ @@ -20292,8 +20293,8 @@ to override `appt-message-warning-time'. ;;;*** -;;;### (autoloads nil "org-capture" "org/org-capture.el" (22330 59913 -;;;;;; 965323 458000)) +;;;### (autoloads nil "org-capture" "org/org-capture.el" (22150 28228 +;;;;;; 558072 702000)) ;;; Generated autoloads from org/org-capture.el (autoload 'org-capture-string "org-capture" "\ @@ -20335,8 +20336,8 @@ Set `org-capture-templates' to be similar to `org-remember-templates'. ;;;*** -;;;### (autoloads nil "org-colview" "org/org-colview.el" (22331 17372 -;;;;;; 78369 317000)) +;;;### (autoloads nil "org-colview" "org/org-colview.el" (22150 28228 +;;;;;; 582072 702000)) ;;; Generated autoloads from org/org-colview.el (autoload 'org-columns-remove-overlays "org-colview" "\ @@ -20399,8 +20400,8 @@ Turn on or update column view in the agenda. ;;;*** -;;;### (autoloads nil "org-compat" "org/org-compat.el" (22331 17372 -;;;;;; 78369 317000)) +;;;### (autoloads nil "org-compat" "org/org-compat.el" (22192 2874 +;;;;;; 471382 391000)) ;;; Generated autoloads from org/org-compat.el (autoload 'org-check-version "org-compat" "\ @@ -20410,8 +20411,8 @@ Try very hard to provide sensible version strings. ;;;*** -;;;### (autoloads nil "org-macs" "org/org-macs.el" (22331 17372 79369 -;;;;;; 313000)) +;;;### (autoloads nil "org-macs" "org/org-macs.el" (22150 28228 602072 +;;;;;; 702000)) ;;; Generated autoloads from org/org-macs.el (autoload 'org-load-noerror-mustsuffix "org-macs" "\ @@ -20421,8 +20422,8 @@ Load FILE with optional arguments NOERROR and MUSTSUFFIX. Drop the MUSTSUFFIX a ;;;*** -;;;### (autoloads nil "org-version" "org/org-version.el" (22330 59913 -;;;;;; 966323 455000)) +;;;### (autoloads nil "org-version" "org/org-version.el" (22086 11930 +;;;;;; 98062 731000)) ;;; Generated autoloads from org/org-version.el (autoload 'org-release "org-version" "\ @@ -20439,8 +20440,8 @@ The Git version of org-mode. ;;;*** -;;;### (autoloads nil "outline" "outline.el" (22330 59913 914323 -;;;;;; 615000)) +;;;### (autoloads nil "outline" "outline.el" (22150 28228 666072 +;;;;;; 702000)) ;;; Generated autoloads from outline.el (put 'outline-regexp 'safe-local-variable 'stringp) (put 'outline-heading-end-regexp 'safe-local-variable 'stringp) @@ -20483,8 +20484,8 @@ See the command `outline-mode' for more information on this mode. ;;;*** -;;;### (autoloads nil "package" "emacs-lisp/package.el" (22331 17377 -;;;;;; 952348 454000)) +;;;### (autoloads nil "package" "emacs-lisp/package.el" (22338 59064 +;;;;;; 814791 248000)) ;;; Generated autoloads from emacs-lisp/package.el (push (purecopy '(package 1 1 0)) package--builtin-versions) @@ -20602,7 +20603,7 @@ The list is displayed in a buffer named `*Packages*'. ;;;*** -;;;### (autoloads nil "paren" "paren.el" (22330 59913 914323 615000)) +;;;### (autoloads nil "paren" "paren.el" (22150 28228 666072 702000)) ;;; Generated autoloads from paren.el (defvar show-paren-mode nil "\ @@ -20629,8 +20630,8 @@ matching parenthesis is highlighted in `show-paren-style' after ;;;*** -;;;### (autoloads nil "parse-time" "calendar/parse-time.el" (22331 -;;;;;; 17371 982369 658000)) +;;;### (autoloads nil "parse-time" "calendar/parse-time.el" (22226 +;;;;;; 58701 641313 948000)) ;;; Generated autoloads from calendar/parse-time.el (put 'parse-time-rules 'risky-local-variable t) @@ -20643,8 +20644,8 @@ unknown are returned as nil. ;;;*** -;;;### (autoloads nil "pascal" "progmodes/pascal.el" (22330 59913 -;;;;;; 985323 396000)) +;;;### (autoloads nil "pascal" "progmodes/pascal.el" (22197 58438 +;;;;;; 503460 447000)) ;;; Generated autoloads from progmodes/pascal.el (autoload 'pascal-mode "pascal" "\ @@ -20693,8 +20694,8 @@ See also the user variables `pascal-type-keywords', `pascal-start-keywords' and ;;;*** -;;;### (autoloads nil "password-cache" "password-cache.el" (22330 -;;;;;; 59913 914323 615000)) +;;;### (autoloads nil "password-cache" "password-cache.el" (22150 +;;;;;; 28228 666072 702000)) ;;; Generated autoloads from password-cache.el (defvar password-cache t "\ @@ -20715,8 +20716,8 @@ Check if KEY is in the cache. ;;;*** -;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (22330 59913 -;;;;;; 930323 566000)) +;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (22195 16710 +;;;;;; 371344 967000)) ;;; Generated autoloads from emacs-lisp/pcase.el (autoload 'pcase "pcase" "\ @@ -20836,8 +20837,8 @@ to this macro. ;;;*** -;;;### (autoloads nil "pcmpl-cvs" "pcmpl-cvs.el" (22330 59913 914323 -;;;;;; 615000)) +;;;### (autoloads nil "pcmpl-cvs" "pcmpl-cvs.el" (22150 28228 666072 +;;;;;; 702000)) ;;; Generated autoloads from pcmpl-cvs.el (autoload 'pcomplete/cvs "pcmpl-cvs" "\ @@ -20847,8 +20848,8 @@ Completion rules for the `cvs' command. ;;;*** -;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (22331 17372 87369 -;;;;;; 285000)) +;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (22150 28228 666072 +;;;;;; 702000)) ;;; Generated autoloads from pcmpl-gnu.el (autoload 'pcomplete/gzip "pcmpl-gnu" "\ @@ -20875,8 +20876,8 @@ Completion for the GNU tar utility. ;;;*** -;;;### (autoloads nil "pcmpl-linux" "pcmpl-linux.el" (22330 59913 -;;;;;; 914323 615000)) +;;;### (autoloads nil "pcmpl-linux" "pcmpl-linux.el" (22150 28228 +;;;;;; 670072 702000)) ;;; Generated autoloads from pcmpl-linux.el (autoload 'pcomplete/kill "pcmpl-linux" "\ @@ -20896,8 +20897,8 @@ Completion for GNU/Linux `mount'. ;;;*** -;;;### (autoloads nil "pcmpl-rpm" "pcmpl-rpm.el" (22330 59913 914323 -;;;;;; 615000)) +;;;### (autoloads nil "pcmpl-rpm" "pcmpl-rpm.el" (22150 28228 670072 +;;;;;; 702000)) ;;; Generated autoloads from pcmpl-rpm.el (autoload 'pcomplete/rpm "pcmpl-rpm" "\ @@ -20907,8 +20908,8 @@ Completion for the `rpm' command. ;;;*** -;;;### (autoloads nil "pcmpl-unix" "pcmpl-unix.el" (22330 59913 914323 -;;;;;; 615000)) +;;;### (autoloads nil "pcmpl-unix" "pcmpl-unix.el" (22150 28228 670072 +;;;;;; 702000)) ;;; Generated autoloads from pcmpl-unix.el (autoload 'pcomplete/cd "pcmpl-unix" "\ @@ -20963,8 +20964,8 @@ Includes files as well as host names followed by a colon. ;;;*** -;;;### (autoloads nil "pcmpl-x" "pcmpl-x.el" (22330 59913 914323 -;;;;;; 615000)) +;;;### (autoloads nil "pcmpl-x" "pcmpl-x.el" (22150 28228 670072 +;;;;;; 702000)) ;;; Generated autoloads from pcmpl-x.el (autoload 'pcomplete/tlmgr "pcmpl-x" "\ @@ -20988,8 +20989,8 @@ Completion for the `ag' command. ;;;*** -;;;### (autoloads nil "pcomplete" "pcomplete.el" (22330 59913 914323 -;;;;;; 615000)) +;;;### (autoloads nil "pcomplete" "pcomplete.el" (22150 28228 674072 +;;;;;; 702000)) ;;; Generated autoloads from pcomplete.el (autoload 'pcomplete "pcomplete" "\ @@ -21046,7 +21047,7 @@ Setup `shell-mode' to use pcomplete. ;;;*** -;;;### (autoloads nil "pcvs" "vc/pcvs.el" (22330 59914 12323 313000)) +;;;### (autoloads nil "pcvs" "vc/pcvs.el" (22182 4679 527463 499000)) ;;; Generated autoloads from vc/pcvs.el (autoload 'cvs-checkout "pcvs" "\ @@ -21121,8 +21122,8 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d ;;;*** -;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (22330 59914 -;;;;;; 9323 322000)) +;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (22150 28229 +;;;;;; 278072 702000)) ;;; 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)) "\ @@ -21130,8 +21131,8 @@ Global menu used by PCL-CVS.") ;;;*** -;;;### (autoloads nil "perl-mode" "progmodes/perl-mode.el" (22330 -;;;;;; 59913 985323 396000)) +;;;### (autoloads nil "perl-mode" "progmodes/perl-mode.el" (22197 +;;;;;; 58438 503460 447000)) ;;; Generated autoloads from progmodes/perl-mode.el (put 'perl-indent-level 'safe-local-variable 'integerp) (put 'perl-continued-statement-offset 'safe-local-variable 'integerp) @@ -21192,8 +21193,8 @@ Turning on Perl mode runs the normal hook `perl-mode-hook'. ;;;*** -;;;### (autoloads nil "picture" "textmodes/picture.el" (22330 59913 -;;;;;; 990323 381000)) +;;;### (autoloads nil "picture" "textmodes/picture.el" (22168 58180 +;;;;;; 311008 971000)) ;;; Generated autoloads from textmodes/picture.el (autoload 'picture-mode "picture" "\ @@ -21273,8 +21274,8 @@ they are not by default assigned to keys. ;;;*** -;;;### (autoloads nil "pinentry" "net/pinentry.el" (22330 59913 953323 -;;;;;; 495000)) +;;;### (autoloads nil "pinentry" "net/pinentry.el" (22218 64587 997919 +;;;;;; 743000)) ;;; Generated autoloads from net/pinentry.el (push (purecopy '(pinentry 0 1)) package--builtin-versions) @@ -21291,8 +21292,8 @@ will not be shown. ;;;*** -;;;### (autoloads nil "plstore" "gnus/plstore.el" (22331 17372 34369 -;;;;;; 473000)) +;;;### (autoloads nil "plstore" "gnus/plstore.el" (22150 28228 10072 +;;;;;; 702000)) ;;; Generated autoloads from gnus/plstore.el (autoload 'plstore-open "plstore" "\ @@ -21307,8 +21308,8 @@ Major mode for editing PLSTORE files. ;;;*** -;;;### (autoloads nil "po" "textmodes/po.el" (22330 59913 990323 -;;;;;; 381000)) +;;;### (autoloads nil "po" "textmodes/po.el" (22150 28229 106072 +;;;;;; 702000)) ;;; Generated autoloads from textmodes/po.el (autoload 'po-find-file-coding-system "po" "\ @@ -21319,7 +21320,7 @@ Called through `file-coding-system-alist', before the file is visited for real. ;;;*** -;;;### (autoloads nil "pong" "play/pong.el" (22330 59913 969323 446000)) +;;;### (autoloads nil "pong" "play/pong.el" (22150 28228 682072 702000)) ;;; Generated autoloads from play/pong.el (autoload 'pong "pong" "\ @@ -21335,7 +21336,7 @@ pong-mode keybindings:\\ ;;;*** -;;;### (autoloads nil "pop3" "gnus/pop3.el" (22331 17372 35369 469000)) +;;;### (autoloads nil "pop3" "gnus/pop3.el" (22150 28228 14072 702000)) ;;; Generated autoloads from gnus/pop3.el (autoload 'pop3-movemail "pop3" "\ @@ -21346,8 +21347,8 @@ Use streaming commands. ;;;*** -;;;### (autoloads nil "pp" "emacs-lisp/pp.el" (22330 59913 930323 -;;;;;; 566000)) +;;;### (autoloads nil "pp" "emacs-lisp/pp.el" (22150 28227 454072 +;;;;;; 702000)) ;;; Generated autoloads from emacs-lisp/pp.el (autoload 'pp-to-string "pp" "\ @@ -21397,8 +21398,8 @@ Ignores leading comment characters. ;;;*** -;;;### (autoloads nil "printing" "printing.el" (22330 59913 914323 -;;;;;; 615000)) +;;;### (autoloads nil "printing" "printing.el" (22338 59064 978791 +;;;;;; 248000)) ;;; Generated autoloads from printing.el (push (purecopy '(printing 6 9 3)) package--builtin-versions) @@ -21986,7 +21987,7 @@ are both set to t. ;;;*** -;;;### (autoloads nil "proced" "proced.el" (22331 17372 88369 281000)) +;;;### (autoloads nil "proced" "proced.el" (22150 28228 702072 702000)) ;;; Generated autoloads from proced.el (autoload 'proced "proced" "\ @@ -22004,8 +22005,8 @@ Proced buffers. ;;;*** -;;;### (autoloads nil "profiler" "profiler.el" (22330 59913 914323 -;;;;;; 615000)) +;;;### (autoloads nil "profiler" "profiler.el" (22150 28228 702072 +;;;;;; 702000)) ;;; Generated autoloads from profiler.el (autoload 'profiler-start "profiler" "\ @@ -22033,8 +22034,8 @@ Open profile FILENAME. ;;;*** -;;;### (autoloads nil "project" "progmodes/project.el" (22330 59913 -;;;;;; 975323 427000)) +;;;### (autoloads nil "project" "progmodes/project.el" (22315 11204 +;;;;;; 929560 191000)) ;;; Generated autoloads from progmodes/project.el (autoload 'project-current "project" "\ @@ -22076,8 +22077,8 @@ recognized. ;;;*** -;;;### (autoloads nil "prolog" "progmodes/prolog.el" (22331 17372 -;;;;;; 97369 249000)) +;;;### (autoloads nil "prolog" "progmodes/prolog.el" (22283 34751 +;;;;;; 181333 844000)) ;;; Generated autoloads from progmodes/prolog.el (autoload 'prolog-mode "prolog" "\ @@ -22110,7 +22111,7 @@ With prefix argument ARG, restart the Prolog process if running before. ;;;*** -;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (22330 59913 914323 615000)) +;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (22150 28228 986072 702000)) ;;; 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")) "\ @@ -22121,8 +22122,8 @@ The default value is (\"/usr/local/share/emacs/fonts/bdf\").") ;;;*** -;;;### (autoloads nil "ps-mode" "progmodes/ps-mode.el" (22331 17372 -;;;;;; 97369 249000)) +;;;### (autoloads nil "ps-mode" "progmodes/ps-mode.el" (22197 58438 +;;;;;; 507460 447000)) ;;; Generated autoloads from progmodes/ps-mode.el (push (purecopy '(ps-mode 1 1 9)) package--builtin-versions) @@ -22168,8 +22169,8 @@ Typing \\\\[ps-run-goto-error] when the cursor is at the number ;;;*** -;;;### (autoloads nil "ps-print" "ps-print.el" (22331 17372 104369 -;;;;;; 224000)) +;;;### (autoloads nil "ps-print" "ps-print.el" (22220 19926 440329 +;;;;;; 271000)) ;;; Generated autoloads from ps-print.el (push (purecopy '(ps-print 7 3 5)) package--builtin-versions) @@ -22366,8 +22367,8 @@ If EXTENSION is any other symbol, it is ignored. ;;;*** -;;;### (autoloads nil "pulse" "cedet/pulse.el" (22330 59913 920323 -;;;;;; 597000)) +;;;### (autoloads nil "pulse" "cedet/pulse.el" (22150 28227 222072 +;;;;;; 702000)) ;;; Generated autoloads from cedet/pulse.el (push (purecopy '(pulse 1 0)) package--builtin-versions) @@ -22385,8 +22386,8 @@ Optional argument FACE specifies the face to do the highlighting. ;;;*** -;;;### (autoloads nil "python" "progmodes/python.el" (22331 17372 -;;;;;; 98369 246000)) +;;;### (autoloads nil "python" "progmodes/python.el" (22304 40885 +;;;;;; 57243 884000)) ;;; Generated autoloads from progmodes/python.el (push (purecopy '(python 0 25 1)) package--builtin-versions) @@ -22423,7 +22424,7 @@ Major mode for editing Python files. ;;;*** -;;;### (autoloads nil "qp" "gnus/qp.el" (22331 17372 35369 469000)) +;;;### (autoloads nil "qp" "gnus/qp.el" (22150 28228 14072 702000)) ;;; Generated autoloads from gnus/qp.el (autoload 'quoted-printable-decode-region "qp" "\ @@ -22442,8 +22443,8 @@ them into characters should be done separately. ;;;*** -;;;### (autoloads nil "quail" "international/quail.el" (22330 59913 -;;;;;; 940323 535000)) +;;;### (autoloads nil "quail" "international/quail.el" (22174 10581 +;;;;;; 673112 520000)) ;;; Generated autoloads from international/quail.el (autoload 'quail-title "quail" "\ @@ -22673,8 +22674,8 @@ of each directory. ;;;*** -;;;### (autoloads nil "quail/hangul" "leim/quail/hangul.el" (22330 -;;;;;; 59913 945323 520000)) +;;;### (autoloads nil "quail/hangul" "leim/quail/hangul.el" (22150 +;;;;;; 28228 202072 702000)) ;;; Generated autoloads from leim/quail/hangul.el (autoload 'hangul-input-method-activate "quail/hangul" "\ @@ -22687,7 +22688,7 @@ HELP-TEXT is a text set in `hangul-input-method-help-text'. ;;;*** ;;;### (autoloads nil "quail/uni-input" "leim/quail/uni-input.el" -;;;;;; (22330 59913 945323 520000)) +;;;;;; (22150 28228 210072 702000)) ;;; Generated autoloads from leim/quail/uni-input.el (autoload 'ucs-input-activate "quail/uni-input" "\ @@ -22701,8 +22702,8 @@ While this input method is active, the variable ;;;*** -;;;### (autoloads nil "quickurl" "net/quickurl.el" (22330 59913 953323 -;;;;;; 495000)) +;;;### (autoloads nil "quickurl" "net/quickurl.el" (22197 58438 347460 +;;;;;; 447000)) ;;; 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" "\ @@ -22773,7 +22774,8 @@ Display `quickurl-list' as a formatted list using `quickurl-list-mode'. ;;;*** -;;;### (autoloads nil "rcirc" "net/rcirc.el" (22331 17372 59369 384000)) +;;;### (autoloads nil "rcirc" "net/rcirc.el" (22150 28228 390072 +;;;;;; 702000)) ;;; Generated autoloads from net/rcirc.el (autoload 'rcirc "rcirc" "\ @@ -22812,8 +22814,8 @@ if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "re-builder" "emacs-lisp/re-builder.el" (22330 -;;;;;; 59913 930323 566000)) +;;;### (autoloads nil "re-builder" "emacs-lisp/re-builder.el" (22150 +;;;;;; 28227 454072 702000)) ;;; Generated autoloads from emacs-lisp/re-builder.el (defalias 'regexp-builder 're-builder) @@ -22831,8 +22833,8 @@ matching parts of the target buffer will be highlighted. ;;;*** -;;;### (autoloads nil "recentf" "recentf.el" (22330 59913 915323 -;;;;;; 612000)) +;;;### (autoloads nil "recentf" "recentf.el" (22349 29365 690989 +;;;;;; 559000)) ;;; Generated autoloads from recentf.el (defvar recentf-mode nil "\ @@ -22859,7 +22861,7 @@ were operated on recently. ;;;*** -;;;### (autoloads nil "rect" "rect.el" (22331 17372 104369 224000)) +;;;### (autoloads nil "rect" "rect.el" (22311 14139 238375 715000)) ;;; Generated autoloads from rect.el (autoload 'delete-rectangle "rect" "\ @@ -22999,8 +23001,8 @@ Activates the region if needed. Only lasts until the region is deactivated. ;;;*** -;;;### (autoloads nil "refill" "textmodes/refill.el" (22330 59913 -;;;;;; 990323 381000)) +;;;### (autoloads nil "refill" "textmodes/refill.el" (22150 28229 +;;;;;; 106072 702000)) ;;; Generated autoloads from textmodes/refill.el (autoload 'refill-mode "refill" "\ @@ -23020,8 +23022,8 @@ For true \"word wrap\" behavior, use `visual-line-mode' instead. ;;;*** -;;;### (autoloads nil "reftex" "textmodes/reftex.el" (22331 17372 -;;;;;; 117369 178000)) +;;;### (autoloads nil "reftex" "textmodes/reftex.el" (22179 28801 +;;;;;; 466001 468000)) ;;; Generated autoloads from textmodes/reftex.el (autoload 'reftex-citation "reftex-cite" nil t) (autoload 'reftex-all-document-files "reftex-parse") @@ -23074,8 +23076,8 @@ This enforces rescanning the buffer on next use. ;;;*** -;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (22330 -;;;;;; 59913 990323 381000)) +;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (22182 +;;;;;; 44208 583853 279000)) ;;; 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)))) @@ -23084,8 +23086,8 @@ This enforces rescanning the buffer on next use. ;;;*** -;;;### (autoloads nil "regexp-opt" "emacs-lisp/regexp-opt.el" (22330 -;;;;;; 59913 930323 566000)) +;;;### (autoloads nil "regexp-opt" "emacs-lisp/regexp-opt.el" (22150 +;;;;;; 28227 454072 702000)) ;;; Generated autoloads from emacs-lisp/regexp-opt.el (autoload 'regexp-opt "regexp-opt" "\ @@ -23114,15 +23116,15 @@ This means the number of non-shy regexp grouping constructs ;;;*** -;;;### (autoloads nil "regi" "emacs-lisp/regi.el" (22330 59913 930323 -;;;;;; 566000)) +;;;### (autoloads nil "regi" "emacs-lisp/regi.el" (22150 28227 454072 +;;;;;; 702000)) ;;; Generated autoloads from emacs-lisp/regi.el (push (purecopy '(regi 1 8)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "remember" "textmodes/remember.el" (22330 59913 -;;;;;; 991323 378000)) +;;;### (autoloads nil "remember" "textmodes/remember.el" (22150 28229 +;;;;;; 130072 702000)) ;;; Generated autoloads from textmodes/remember.el (push (purecopy '(remember 2 0)) package--builtin-versions) @@ -23176,7 +23178,7 @@ to turn the *scratch* buffer into your notes buffer. ;;;*** -;;;### (autoloads nil "repeat" "repeat.el" (22330 59913 915323 612000)) +;;;### (autoloads nil "repeat" "repeat.el" (22150 28228 994072 702000)) ;;; Generated autoloads from repeat.el (push (purecopy '(repeat 0 51)) package--builtin-versions) @@ -23199,8 +23201,8 @@ recently executed command not bound to an input event\". ;;;*** -;;;### (autoloads nil "reporter" "mail/reporter.el" (22330 59913 -;;;;;; 947323 514000)) +;;;### (autoloads nil "reporter" "mail/reporter.el" (22150 28228 +;;;;;; 234072 702000)) ;;; Generated autoloads from mail/reporter.el (autoload 'reporter-submit-bug-report "reporter" "\ @@ -23231,8 +23233,8 @@ mail-sending package is used for editing and sending the message. ;;;*** -;;;### (autoloads nil "reposition" "reposition.el" (22330 59913 915323 -;;;;;; 612000)) +;;;### (autoloads nil "reposition" "reposition.el" (22150 28228 994072 +;;;;;; 702000)) ;;; Generated autoloads from reposition.el (autoload 'reposition-window "reposition" "\ @@ -23258,7 +23260,7 @@ first comment line visible (if point is in a comment). ;;;*** -;;;### (autoloads nil "reveal" "reveal.el" (22330 59913 915323 612000)) +;;;### (autoloads nil "reveal" "reveal.el" (22150 28228 994072 702000)) ;;; Generated autoloads from reveal.el (autoload 'reveal-mode "reveal" "\ @@ -23294,8 +23296,8 @@ the mode if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "ring" "emacs-lisp/ring.el" (22330 59913 930323 -;;;;;; 566000)) +;;;### (autoloads nil "ring" "emacs-lisp/ring.el" (22150 28227 454072 +;;;;;; 702000)) ;;; Generated autoloads from emacs-lisp/ring.el (autoload 'ring-p "ring" "\ @@ -23310,8 +23312,8 @@ Make a ring that can contain SIZE elements. ;;;*** -;;;### (autoloads nil "rlogin" "net/rlogin.el" (22330 59913 953323 -;;;;;; 495000)) +;;;### (autoloads nil "rlogin" "net/rlogin.el" (22150 28228 394072 +;;;;;; 702000)) ;;; Generated autoloads from net/rlogin.el (autoload 'rlogin "rlogin" "\ @@ -23355,8 +23357,8 @@ variable. ;;;*** -;;;### (autoloads nil "rmail" "mail/rmail.el" (22331 17372 51369 -;;;;;; 413000)) +;;;### (autoloads nil "rmail" "mail/rmail.el" (22250 56969 841825 +;;;;;; 171000)) ;;; Generated autoloads from mail/rmail.el (defvar rmail-file-name (purecopy "~/RMAIL") "\ @@ -23553,8 +23555,8 @@ Set PASSWORD to be used for retrieving mail from a POP or IMAP server. ;;;*** -;;;### (autoloads nil "rmailout" "mail/rmailout.el" (22330 59913 -;;;;;; 948323 511000)) +;;;### (autoloads nil "rmailout" "mail/rmailout.el" (22150 28228 +;;;;;; 246072 702000)) ;;; Generated autoloads from mail/rmailout.el (put 'rmail-output-file-alist 'risky-local-variable t) @@ -23618,8 +23620,8 @@ than appending to it. Deletes the message after writing if ;;;*** -;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (22331 17372 -;;;;;; 66369 359000)) +;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (22150 28228 +;;;;;; 454072 702000)) ;;; Generated autoloads from nxml/rng-cmpct.el (autoload 'rng-c-load-schema "rng-cmpct" "\ @@ -23630,8 +23632,8 @@ Return a pattern. ;;;*** -;;;### (autoloads nil "rng-nxml" "nxml/rng-nxml.el" (22331 17372 -;;;;;; 67369 356000)) +;;;### (autoloads nil "rng-nxml" "nxml/rng-nxml.el" (22150 28228 +;;;;;; 458072 702000)) ;;; Generated autoloads from nxml/rng-nxml.el (autoload 'rng-nxml-mode-init "rng-nxml" "\ @@ -23643,8 +23645,8 @@ Validation will be enabled if `rng-nxml-auto-validate-flag' is non-nil. ;;;*** -;;;### (autoloads nil "rng-valid" "nxml/rng-valid.el" (22331 17372 -;;;;;; 67369 356000)) +;;;### (autoloads nil "rng-valid" "nxml/rng-valid.el" (22150 28228 +;;;;;; 462072 702000)) ;;; Generated autoloads from nxml/rng-valid.el (autoload 'rng-validate-mode "rng-valid" "\ @@ -23674,8 +23676,8 @@ to use for finding the schema. ;;;*** -;;;### (autoloads nil "rng-xsd" "nxml/rng-xsd.el" (22331 17372 67369 -;;;;;; 356000)) +;;;### (autoloads nil "rng-xsd" "nxml/rng-xsd.el" (22150 28228 462072 +;;;;;; 702000)) ;;; Generated autoloads from nxml/rng-xsd.el (put 'http://www\.w3\.org/2001/XMLSchema-datatypes 'rng-dt-compile 'rng-xsd-compile) @@ -23702,8 +23704,8 @@ must be equal. ;;;*** -;;;### (autoloads nil "robin" "international/robin.el" (22330 59913 -;;;;;; 940323 535000)) +;;;### (autoloads nil "robin" "international/robin.el" (22086 11929 +;;;;;; 882062 731000)) ;;; Generated autoloads from international/robin.el (autoload 'robin-define-package "robin" "\ @@ -23735,7 +23737,7 @@ Start using robin package NAME, which is a string. ;;;*** -;;;### (autoloads nil "rot13" "rot13.el" (22330 59913 915323 612000)) +;;;### (autoloads nil "rot13" "rot13.el" (22150 28228 994072 702000)) ;;; Generated autoloads from rot13.el (autoload 'rot13 "rot13" "\ @@ -23772,8 +23774,8 @@ Toggle the use of ROT13 encoding for the current window. ;;;*** -;;;### (autoloads nil "rst" "textmodes/rst.el" (22330 59913 991323 -;;;;;; 378000)) +;;;### (autoloads nil "rst" "textmodes/rst.el" (22150 28229 146072 +;;;;;; 702000)) ;;; Generated autoloads from textmodes/rst.el (add-to-list 'auto-mode-alist (purecopy '("\\.re?st\\'" . rst-mode))) @@ -23803,8 +23805,8 @@ for modes derived from Text mode, like Mail mode. ;;;*** -;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (22331 -;;;;;; 17377 954348 447000)) +;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (22324 +;;;;;; 26168 770040 988000)) ;;; Generated autoloads from progmodes/ruby-mode.el (push (purecopy '(ruby-mode 1 2)) package--builtin-versions) @@ -23821,8 +23823,8 @@ Major mode for editing Ruby code. ;;;*** -;;;### (autoloads nil "ruler-mode" "ruler-mode.el" (22330 59913 915323 -;;;;;; 612000)) +;;;### (autoloads nil "ruler-mode" "ruler-mode.el" (22150 28228 994072 +;;;;;; 702000)) ;;; Generated autoloads from ruler-mode.el (push (purecopy '(ruler-mode 1 6)) package--builtin-versions) @@ -23840,8 +23842,8 @@ if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "rx" "emacs-lisp/rx.el" (22330 59913 930323 -;;;;;; 566000)) +;;;### (autoloads nil "rx" "emacs-lisp/rx.el" (22150 28227 454072 +;;;;;; 702000)) ;;; Generated autoloads from emacs-lisp/rx.el (autoload 'rx-to-string "rx" "\ @@ -24152,15 +24154,15 @@ enclosed in `(and ...)'. ;;;*** -;;;### (autoloads nil "sasl-ntlm" "net/sasl-ntlm.el" (22330 59913 -;;;;;; 953323 495000)) +;;;### (autoloads nil "sasl-ntlm" "net/sasl-ntlm.el" (22150 28228 +;;;;;; 394072 702000)) ;;; Generated autoloads from net/sasl-ntlm.el (push (purecopy '(sasl 1 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "savehist" "savehist.el" (22330 59913 915323 -;;;;;; 612000)) +;;;### (autoloads nil "savehist" "savehist.el" (22150 28228 994072 +;;;;;; 702000)) ;;; Generated autoloads from savehist.el (push (purecopy '(savehist 24)) package--builtin-versions) @@ -24193,8 +24195,8 @@ histories, which is probably undesirable. ;;;*** -;;;### (autoloads nil "saveplace" "saveplace.el" (22330 59913 915323 -;;;;;; 612000)) +;;;### (autoloads nil "saveplace" "saveplace.el" (22224 16978 400323 +;;;;;; 324000)) ;;; Generated autoloads from saveplace.el (defvar save-place-mode nil "\ @@ -24232,8 +24234,8 @@ file: ;;;*** -;;;### (autoloads nil "scheme" "progmodes/scheme.el" (22331 17372 -;;;;;; 98369 246000)) +;;;### (autoloads nil "scheme" "progmodes/scheme.el" (22150 28228 +;;;;;; 910072 702000)) ;;; Generated autoloads from progmodes/scheme.el (autoload 'scheme-mode "scheme" "\ @@ -24272,8 +24274,8 @@ that variable's value is a string. ;;;*** -;;;### (autoloads nil "score-mode" "gnus/score-mode.el" (22330 59913 -;;;;;; 939323 538000)) +;;;### (autoloads nil "score-mode" "gnus/score-mode.el" (22150 28228 +;;;;;; 18072 702000)) ;;; Generated autoloads from gnus/score-mode.el (autoload 'gnus-score-mode "score-mode" "\ @@ -24286,8 +24288,8 @@ This mode is an extended emacs-lisp mode. ;;;*** -;;;### (autoloads nil "scroll-all" "scroll-all.el" (22330 59913 915323 -;;;;;; 612000)) +;;;### (autoloads nil "scroll-all" "scroll-all.el" (22150 28228 994072 +;;;;;; 702000)) ;;; Generated autoloads from scroll-all.el (defvar scroll-all-mode nil "\ @@ -24313,8 +24315,8 @@ one window apply to all visible windows in the same frame. ;;;*** -;;;### (autoloads nil "scroll-lock" "scroll-lock.el" (22330 59913 -;;;;;; 915323 612000)) +;;;### (autoloads nil "scroll-lock" "scroll-lock.el" (22150 28228 +;;;;;; 994072 702000)) ;;; Generated autoloads from scroll-lock.el (autoload 'scroll-lock-mode "scroll-lock" "\ @@ -24330,16 +24332,16 @@ vertically fixed relative to window boundaries during scrolling. ;;;*** -;;;### (autoloads nil "secrets" "net/secrets.el" (22330 59913 954323 -;;;;;; 492000)) +;;;### (autoloads nil "secrets" "net/secrets.el" (22150 28228 394072 +;;;;;; 702000)) ;;; Generated autoloads from net/secrets.el (when (featurep 'dbusbind) (autoload 'secrets-show-secrets "secrets" nil t)) ;;;*** -;;;### (autoloads nil "semantic" "cedet/semantic.el" (22330 59913 -;;;;;; 920323 597000)) +;;;### (autoloads nil "semantic" "cedet/semantic.el" (22150 28227 +;;;;;; 222072 702000)) ;;; Generated autoloads from cedet/semantic.el (push (purecopy '(semantic 2 2)) package--builtin-versions) @@ -24398,7 +24400,7 @@ Semantic mode. ;;;*** ;;;### (autoloads nil "semantic/bovine/grammar" "cedet/semantic/bovine/grammar.el" -;;;;;; (22330 59913 922323 591000)) +;;;;;; (22150 28227 234072 702000)) ;;; Generated autoloads from cedet/semantic/bovine/grammar.el (autoload 'bovine-grammar-mode "semantic/bovine/grammar" "\ @@ -24409,7 +24411,7 @@ Major mode for editing Bovine grammars. ;;;*** ;;;### (autoloads nil "semantic/wisent/grammar" "cedet/semantic/wisent/grammar.el" -;;;;;; (22330 59913 923323 588000)) +;;;;;; (22150 28227 266072 702000)) ;;; Generated autoloads from cedet/semantic/wisent/grammar.el (autoload 'wisent-grammar-mode "semantic/wisent/grammar" "\ @@ -24419,8 +24421,8 @@ Major mode for editing Wisent grammars. ;;;*** -;;;### (autoloads nil "sendmail" "mail/sendmail.el" (22330 59913 -;;;;;; 948323 511000)) +;;;### (autoloads nil "sendmail" "mail/sendmail.el" (22224 36171 +;;;;;; 816467 383000)) ;;; Generated autoloads from mail/sendmail.el (defvar mail-from-style 'default "\ @@ -24701,14 +24703,14 @@ Like `mail' command, but display mail buffer in another frame. ;;;*** -;;;### (autoloads nil "seq" "emacs-lisp/seq.el" (22331 17371 996369 -;;;;;; 608000)) +;;;### (autoloads nil "seq" "emacs-lisp/seq.el" (22278 49573 67090 +;;;;;; 835000)) ;;; Generated autoloads from emacs-lisp/seq.el (push (purecopy '(seq 2 3)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "server" "server.el" (22331 17372 105369 221000)) +;;;### (autoloads nil "server" "server.el" (22150 28228 998072 702000)) ;;; Generated autoloads from server.el (put 'server-host 'risky-local-variable t) @@ -24776,7 +24778,7 @@ only these files will be asked to be saved. ;;;*** -;;;### (autoloads nil "ses" "ses.el" (22331 17372 106369 217000)) +;;;### (autoloads nil "ses" "ses.el" (22342 56118 896613 383000)) ;;; Generated autoloads from ses.el (autoload 'ses-mode "ses" "\ @@ -24820,8 +24822,8 @@ formula: ;;;*** -;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (22331 -;;;;;; 17372 117369 178000)) +;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (22150 +;;;;;; 28229 150072 702000)) ;;; Generated autoloads from textmodes/sgml-mode.el (autoload 'sgml-mode "sgml-mode" "\ @@ -24886,8 +24888,8 @@ To work around that, do: ;;;*** -;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (22331 -;;;;;; 17372 99369 242000)) +;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (22291 +;;;;;; 28851 657608 847000)) ;;; Generated autoloads from progmodes/sh-script.el (push (purecopy '(sh-script 2 0 6)) package--builtin-versions) (put 'sh-shell 'safe-local-variable 'symbolp) @@ -24952,8 +24954,8 @@ with your script for an edit-interpret-debug cycle. ;;;*** -;;;### (autoloads nil "shadow" "emacs-lisp/shadow.el" (22330 59913 -;;;;;; 930323 566000)) +;;;### (autoloads nil "shadow" "emacs-lisp/shadow.el" (22150 28227 +;;;;;; 454072 702000)) ;;; Generated autoloads from emacs-lisp/shadow.el (autoload 'list-load-path-shadows "shadow" "\ @@ -25002,8 +25004,8 @@ function, `load-path-shadows-find'. ;;;*** -;;;### (autoloads nil "shadowfile" "shadowfile.el" (22330 59913 915323 -;;;;;; 612000)) +;;;### (autoloads nil "shadowfile" "shadowfile.el" (22150 28229 14072 +;;;;;; 702000)) ;;; Generated autoloads from shadowfile.el (autoload 'shadow-define-cluster "shadowfile" "\ @@ -25041,7 +25043,7 @@ Set up file shadowing. ;;;*** -;;;### (autoloads nil "shell" "shell.el" (22330 59913 915323 612000)) +;;;### (autoloads nil "shell" "shell.el" (22150 28229 14072 702000)) ;;; Generated autoloads from shell.el (defvar shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe") "\ @@ -25089,7 +25091,7 @@ Otherwise, one argument `-i' is passed to the shell. ;;;*** -;;;### (autoloads nil "shr" "net/shr.el" (22331 17372 60369 381000)) +;;;### (autoloads nil "shr" "net/shr.el" (22255 55369 13338 944000)) ;;; Generated autoloads from net/shr.el (autoload 'shr-render-region "shr" "\ @@ -25106,8 +25108,8 @@ DOM should be a parse tree as generated by ;;;*** -;;;### (autoloads nil "sieve" "gnus/sieve.el" (22331 17372 35369 -;;;;;; 469000)) +;;;### (autoloads nil "sieve" "gnus/sieve.el" (22150 28228 18072 +;;;;;; 702000)) ;;; Generated autoloads from gnus/sieve.el (autoload 'sieve-manage "sieve" "\ @@ -25132,8 +25134,8 @@ DOM should be a parse tree as generated by ;;;*** -;;;### (autoloads nil "sieve-mode" "gnus/sieve-mode.el" (22331 17372 -;;;;;; 35369 469000)) +;;;### (autoloads nil "sieve-mode" "gnus/sieve-mode.el" (22150 28228 +;;;;;; 18072 702000)) ;;; Generated autoloads from gnus/sieve-mode.el (autoload 'sieve-mode "sieve-mode" "\ @@ -25148,8 +25150,8 @@ Turning on Sieve mode runs `sieve-mode-hook'. ;;;*** -;;;### (autoloads nil "simula" "progmodes/simula.el" (22330 59913 -;;;;;; 985323 396000)) +;;;### (autoloads nil "simula" "progmodes/simula.el" (22197 58438 +;;;;;; 563460 447000)) ;;; Generated autoloads from progmodes/simula.el (autoload 'simula-mode "simula" "\ @@ -25197,8 +25199,8 @@ with no arguments, if that value is non-nil. ;;;*** -;;;### (autoloads nil "skeleton" "skeleton.el" (22330 59913 915323 -;;;;;; 612000)) +;;;### (autoloads nil "skeleton" "skeleton.el" (22197 58438 667460 +;;;;;; 447000)) ;;; Generated autoloads from skeleton.el (defvar skeleton-filter-function 'identity "\ @@ -25317,8 +25319,8 @@ twice for the others. ;;;*** -;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (22331 17372 -;;;;;; 123369 157000)) +;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (22150 28229 +;;;;;; 286072 702000)) ;;; Generated autoloads from vc/smerge-mode.el (autoload 'smerge-ediff "smerge-mode" "\ @@ -25345,8 +25347,8 @@ If no conflict maker is found, turn off `smerge-mode'. ;;;*** -;;;### (autoloads nil "smiley" "gnus/smiley.el" (22331 17372 36369 -;;;;;; 466000)) +;;;### (autoloads nil "smiley" "gnus/smiley.el" (22150 28228 18072 +;;;;;; 702000)) ;;; Generated autoloads from gnus/smiley.el (autoload 'smiley-region "smiley" "\ @@ -25363,8 +25365,8 @@ interactively. If there's no argument, do it at the current buffer. ;;;*** -;;;### (autoloads nil "smtpmail" "mail/smtpmail.el" (22331 17372 -;;;;;; 53369 406000)) +;;;### (autoloads nil "smtpmail" "mail/smtpmail.el" (22150 28228 +;;;;;; 254072 702000)) ;;; Generated autoloads from mail/smtpmail.el (autoload 'smtpmail-send-it "smtpmail" "\ @@ -25379,8 +25381,8 @@ Send mail that was queued as a result of setting `smtpmail-queue-mail'. ;;;*** -;;;### (autoloads nil "snake" "play/snake.el" (22331 17372 87369 -;;;;;; 285000)) +;;;### (autoloads nil "snake" "play/snake.el" (22150 28228 682072 +;;;;;; 702000)) ;;; Generated autoloads from play/snake.el (autoload 'snake "snake" "\ @@ -25403,8 +25405,8 @@ Snake mode keybindings: ;;;*** -;;;### (autoloads nil "snmp-mode" "net/snmp-mode.el" (22330 59913 -;;;;;; 954323 492000)) +;;;### (autoloads nil "snmp-mode" "net/snmp-mode.el" (22150 28228 +;;;;;; 402072 702000)) ;;; Generated autoloads from net/snmp-mode.el (autoload 'snmp-mode "snmp-mode" "\ @@ -25433,15 +25435,15 @@ then `snmpv2-mode-hook'. ;;;*** -;;;### (autoloads nil "soap-client" "net/soap-client.el" (22331 17372 -;;;;;; 61369 377000)) +;;;### (autoloads nil "soap-client" "net/soap-client.el" (22249 52871 +;;;;;; 284284 99000)) ;;; Generated autoloads from net/soap-client.el (push (purecopy '(soap-client 3 0 2)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "solar" "calendar/solar.el" (22331 17371 982369 -;;;;;; 658000)) +;;;### (autoloads nil "solar" "calendar/solar.el" (22284 55604 54845 +;;;;;; 171000)) ;;; Generated autoloads from calendar/solar.el (autoload 'sunrise-sunset "solar" "\ @@ -25456,8 +25458,8 @@ This function is suitable for execution in an init file. ;;;*** -;;;### (autoloads nil "solitaire" "play/solitaire.el" (22330 59913 -;;;;;; 970323 443000)) +;;;### (autoloads nil "solitaire" "play/solitaire.el" (22150 28228 +;;;;;; 682072 702000)) ;;; Generated autoloads from play/solitaire.el (autoload 'solitaire "solitaire" "\ @@ -25532,7 +25534,7 @@ Pick your favorite shortcuts: ;;;*** -;;;### (autoloads nil "sort" "sort.el" (22330 59913 915323 612000)) +;;;### (autoloads nil "sort" "sort.el" (22150 28229 18072 702000)) ;;; Generated autoloads from sort.el (put 'sort-fold-case 'safe-local-variable 'booleanp) @@ -25707,7 +25709,7 @@ is non-nil, it also prints a message describing the number of deletions. ;;;*** -;;;### (autoloads nil "spam" "gnus/spam.el" (22331 17372 36369 466000)) +;;;### (autoloads nil "spam" "gnus/spam.el" (22150 28228 22072 702000)) ;;; Generated autoloads from gnus/spam.el (autoload 'spam-initialize "spam" "\ @@ -25721,8 +25723,8 @@ installed through `spam-necessary-extra-headers'. ;;;*** -;;;### (autoloads nil "spam-report" "gnus/spam-report.el" (22331 -;;;;;; 17372 36369 466000)) +;;;### (autoloads nil "spam-report" "gnus/spam-report.el" (22150 +;;;;;; 28228 22072 702000)) ;;; Generated autoloads from gnus/spam-report.el (autoload 'spam-report-process-queue "spam-report" "\ @@ -25764,8 +25766,8 @@ Spam reports will be queued with the method used when ;;;*** -;;;### (autoloads nil "speedbar" "speedbar.el" (22330 59913 915323 -;;;;;; 612000)) +;;;### (autoloads nil "speedbar" "speedbar.el" (22189 64323 312321 +;;;;;; 19000)) ;;; Generated autoloads from speedbar.el (defalias 'speedbar 'speedbar-frame-mode) @@ -25789,8 +25791,8 @@ selected. If the speedbar frame is active, then select the attached frame. ;;;*** -;;;### (autoloads nil "spook" "play/spook.el" (22330 59913 970323 -;;;;;; 443000)) +;;;### (autoloads nil "spook" "play/spook.el" (22150 28228 682072 +;;;;;; 702000)) ;;; Generated autoloads from play/spook.el (autoload 'spook "spook" "\ @@ -25805,8 +25807,8 @@ Return a vector containing the lines from `spook-phrases-file'. ;;;*** -;;;### (autoloads nil "sql" "progmodes/sql.el" (22331 17372 100369 -;;;;;; 239000)) +;;;### (autoloads nil "sql" "progmodes/sql.el" (22203 10834 812791 +;;;;;; 123000)) ;;; Generated autoloads from progmodes/sql.el (push (purecopy '(sql 3 5)) package--builtin-versions) @@ -26272,15 +26274,15 @@ Run vsql as an inferior process. ;;;*** -;;;### (autoloads nil "srecode" "cedet/srecode.el" (22330 59913 920323 -;;;;;; 597000)) +;;;### (autoloads nil "srecode" "cedet/srecode.el" (22150 28227 270072 +;;;;;; 702000)) ;;; Generated autoloads from cedet/srecode.el (push (purecopy '(srecode 1 2)) package--builtin-versions) ;;;*** ;;;### (autoloads nil "srecode/srt-mode" "cedet/srecode/srt-mode.el" -;;;;;; (22330 59913 926323 578000)) +;;;;;; (22150 28227 274072 702000)) ;;; Generated autoloads from cedet/srecode/srt-mode.el (autoload 'srecode-template-mode "srecode/srt-mode" "\ @@ -26292,8 +26294,8 @@ Major-mode for writing SRecode macros. ;;;*** -;;;### (autoloads nil "starttls" "gnus/starttls.el" (22331 17372 -;;;;;; 36369 466000)) +;;;### (autoloads nil "starttls" "gnus/starttls.el" (22150 28228 +;;;;;; 22072 702000)) ;;; Generated autoloads from gnus/starttls.el (autoload 'starttls-open-stream "starttls" "\ @@ -26316,8 +26318,7 @@ GnuTLS requires a port number. ;;;*** -;;;### (autoloads nil "strokes" "strokes.el" (22330 59913 915323 -;;;;;; 612000)) +;;;### (autoloads nil "strokes" "strokes.el" (22182 4679 511463 499000)) ;;; Generated autoloads from strokes.el (autoload 'strokes-global-set-stroke "strokes" "\ @@ -26431,8 +26432,8 @@ Read a complex stroke and insert its glyph into the current buffer. ;;;*** -;;;### (autoloads nil "studly" "play/studly.el" (22330 59913 969323 -;;;;;; 446000)) +;;;### (autoloads nil "studly" "play/studly.el" (22279 37684 392180 +;;;;;; 436000)) ;;; Generated autoloads from play/studly.el (autoload 'studlify-region "studly" "\ @@ -26452,8 +26453,8 @@ Studlify-case the current buffer. ;;;*** -;;;### (autoloads nil "subword" "progmodes/subword.el" (22330 59913 -;;;;;; 985323 396000)) +;;;### (autoloads nil "subword" "progmodes/subword.el" (22150 28228 +;;;;;; 930072 702000)) ;;; Generated autoloads from progmodes/subword.el (define-obsolete-function-alias 'capitalized-words-mode 'subword-mode "25.1") @@ -26547,8 +26548,8 @@ See `superword-mode' for more information on Superword mode. ;;;*** -;;;### (autoloads nil "supercite" "mail/supercite.el" (22330 59913 -;;;;;; 948323 511000)) +;;;### (autoloads nil "supercite" "mail/supercite.el" (22150 28228 +;;;;;; 254072 702000)) ;;; Generated autoloads from mail/supercite.el (autoload 'sc-cite-original "supercite" "\ @@ -26580,8 +26581,8 @@ and `sc-post-hook' is run after the guts of this function. ;;;*** -;;;### (autoloads nil "t-mouse" "t-mouse.el" (22330 59913 915323 -;;;;;; 612000)) +;;;### (autoloads nil "t-mouse" "t-mouse.el" (22204 31687 849113 +;;;;;; 480000)) ;;; Generated autoloads from t-mouse.el (define-obsolete-function-alias 't-mouse-mode 'gpm-mouse-mode "23.1") @@ -26614,7 +26615,7 @@ GPM. This is due to limitations in GPM and the Linux kernel. ;;;*** -;;;### (autoloads nil "tabify" "tabify.el" (22330 59913 915323 612000)) +;;;### (autoloads nil "tabify" "tabify.el" (22150 28229 26072 702000)) ;;; Generated autoloads from tabify.el (autoload 'untabify "tabify" "\ @@ -26643,8 +26644,8 @@ The variable `tab-width' controls the spacing of tab stops. ;;;*** -;;;### (autoloads nil "table" "textmodes/table.el" (22331 17372 118369 -;;;;;; 175000)) +;;;### (autoloads nil "table" "textmodes/table.el" (22186 51800 574004 +;;;;;; 628000)) ;;; Generated autoloads from textmodes/table.el (autoload 'table-insert "table" "\ @@ -27215,7 +27216,7 @@ converts a table into plain text without frames. It is a companion to ;;;*** -;;;### (autoloads nil "talk" "talk.el" (22330 59913 915323 612000)) +;;;### (autoloads nil "talk" "talk.el" (22150 28229 26072 702000)) ;;; Generated autoloads from talk.el (autoload 'talk-connect "talk" "\ @@ -27230,8 +27231,8 @@ Connect to the Emacs talk group from the current X display or tty frame. ;;;*** -;;;### (autoloads nil "tar-mode" "tar-mode.el" (22330 59913 915323 -;;;;;; 612000)) +;;;### (autoloads nil "tar-mode" "tar-mode.el" (22150 28229 26072 +;;;;;; 702000)) ;;; Generated autoloads from tar-mode.el (autoload 'tar-mode "tar-mode" "\ @@ -27254,8 +27255,8 @@ See also: variables `tar-update-datestamp' and `tar-anal-blocksize'. ;;;*** -;;;### (autoloads nil "tcl" "progmodes/tcl.el" (22330 59913 985323 -;;;;;; 396000)) +;;;### (autoloads nil "tcl" "progmodes/tcl.el" (22150 28228 934072 +;;;;;; 702000)) ;;; Generated autoloads from progmodes/tcl.el (autoload 'tcl-mode "tcl" "\ @@ -27303,8 +27304,8 @@ Prefix argument means invert sense of `tcl-use-smart-word-finder'. ;;;*** -;;;### (autoloads nil "telnet" "net/telnet.el" (22330 59913 954323 -;;;;;; 492000)) +;;;### (autoloads nil "telnet" "net/telnet.el" (22150 28228 406072 +;;;;;; 702000)) ;;; Generated autoloads from net/telnet.el (autoload 'telnet "telnet" "\ @@ -27329,7 +27330,7 @@ Normally input is edited in Emacs and sent a line at a time. ;;;*** -;;;### (autoloads nil "term" "term.el" (22331 17372 109369 207000)) +;;;### (autoloads nil "term" "term.el" (22305 18655 603719 883000)) ;;; Generated autoloads from term.el (autoload 'make-term "term" "\ @@ -27371,8 +27372,8 @@ use in that buffer. ;;;*** -;;;### (autoloads nil "testcover" "emacs-lisp/testcover.el" (22330 -;;;;;; 59913 930323 566000)) +;;;### (autoloads nil "testcover" "emacs-lisp/testcover.el" (22150 +;;;;;; 28227 458072 702000)) ;;; Generated autoloads from emacs-lisp/testcover.el (autoload 'testcover-this-defun "testcover" "\ @@ -27382,8 +27383,8 @@ Start coverage on function under point. ;;;*** -;;;### (autoloads nil "tetris" "play/tetris.el" (22330 59913 970323 -;;;;;; 443000)) +;;;### (autoloads nil "tetris" "play/tetris.el" (22189 64323 280321 +;;;;;; 19000)) ;;; Generated autoloads from play/tetris.el (push (purecopy '(tetris 2 1)) package--builtin-versions) @@ -27408,8 +27409,8 @@ tetris-mode keybindings: ;;;*** -;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (22331 17372 -;;;;;; 119369 171000)) +;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (22197 58438 +;;;;;; 727460 447000)) ;;; Generated autoloads from textmodes/tex-mode.el (defvar tex-shell-file-name nil "\ @@ -27710,8 +27711,8 @@ Major mode to edit DocTeX files. ;;;*** -;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (22330 59913 -;;;;;; 991323 378000)) +;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (22197 58438 +;;;;;; 759460 447000)) ;;; Generated autoloads from textmodes/texinfmt.el (autoload 'texinfo-format-buffer "texinfmt" "\ @@ -27750,8 +27751,8 @@ if large. You can use `Info-split' to do this manually. ;;;*** -;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (22331 17372 -;;;;;; 119369 171000)) +;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (22197 58438 +;;;;;; 759460 447000)) ;;; Generated autoloads from textmodes/texinfo.el (defvar texinfo-open-quote (purecopy "``") "\ @@ -27835,8 +27836,8 @@ value of `texinfo-mode-hook'. ;;;*** -;;;### (autoloads nil "thai-util" "language/thai-util.el" (22330 -;;;;;; 59913 941323 532000)) +;;;### (autoloads nil "thai-util" "language/thai-util.el" (22150 +;;;;;; 28228 198072 702000)) ;;; Generated autoloads from language/thai-util.el (autoload 'thai-compose-region "thai-util" "\ @@ -27863,8 +27864,8 @@ Compose Thai characters in the current buffer. ;;;*** -;;;### (autoloads nil "thingatpt" "thingatpt.el" (22331 17372 120369 -;;;;;; 168000)) +;;;### (autoloads nil "thingatpt" "thingatpt.el" (22225 37858 570976 +;;;;;; 240000)) ;;; Generated autoloads from thingatpt.el (autoload 'forward-thing "thingatpt" "\ @@ -27928,7 +27929,7 @@ Return the Lisp list at point, or nil if none is found. ;;;*** -;;;### (autoloads nil "thumbs" "thumbs.el" (22330 59913 915323 612000)) +;;;### (autoloads nil "thumbs" "thumbs.el" (22150 28229 198072 702000)) ;;; Generated autoloads from thumbs.el (autoload 'thumbs-find-thumb "thumbs" "\ @@ -27962,15 +27963,15 @@ In dired, call the setroot program on the image at point. ;;;*** -;;;### (autoloads nil "thunk" "emacs-lisp/thunk.el" (22330 59913 -;;;;;; 931323 563000)) +;;;### (autoloads nil "thunk" "emacs-lisp/thunk.el" (22150 28227 +;;;;;; 458072 702000)) ;;; Generated autoloads from emacs-lisp/thunk.el (push (purecopy '(thunk 1 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "tibet-util" "language/tibet-util.el" (22330 -;;;;;; 59913 941323 532000)) +;;;### (autoloads nil "tibet-util" "language/tibet-util.el" (22150 +;;;;;; 28228 198072 702000)) ;;; Generated autoloads from language/tibet-util.el (autoload 'tibetan-char-p "tibet-util" "\ @@ -28043,8 +28044,8 @@ See also docstring of the function tibetan-compose-region. ;;;*** -;;;### (autoloads nil "tildify" "textmodes/tildify.el" (22330 59913 -;;;;;; 991323 378000)) +;;;### (autoloads nil "tildify" "textmodes/tildify.el" (22165 43181 +;;;;;; 139854 955000)) ;;; Generated autoloads from textmodes/tildify.el (push (purecopy '(tildify 4 6 1)) package--builtin-versions) @@ -28110,7 +28111,7 @@ variable will be set to the representation. ;;;*** -;;;### (autoloads nil "time" "time.el" (22330 59913 743324 144000)) +;;;### (autoloads nil "time" "time.el" (22311 14139 302375 715000)) ;;; Generated autoloads from time.el (defvar display-time-day-and-date nil "\ @@ -28173,8 +28174,8 @@ Return a string giving the duration of the Emacs initialization. ;;;*** -;;;### (autoloads nil "time-date" "calendar/time-date.el" (22331 -;;;;;; 17371 982369 658000)) +;;;### (autoloads nil "time-date" "calendar/time-date.el" (22150 +;;;;;; 28227 82072 702000)) ;;; Generated autoloads from calendar/time-date.el (autoload 'date-to-time "time-date" "\ @@ -28277,8 +28278,8 @@ Convert the time interval in seconds to a short string. ;;;*** -;;;### (autoloads nil "time-stamp" "time-stamp.el" (22331 17372 120369 -;;;;;; 168000)) +;;;### (autoloads nil "time-stamp" "time-stamp.el" (22212 25823 511089 +;;;;;; 159000)) ;;; 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) @@ -28318,8 +28319,8 @@ With ARG, turn time stamping on if and only if arg is positive. ;;;*** -;;;### (autoloads nil "timeclock" "calendar/timeclock.el" (22331 -;;;;;; 17371 983369 654000)) +;;;### (autoloads nil "timeclock" "calendar/timeclock.el" (22150 +;;;;;; 28227 82072 702000)) ;;; Generated autoloads from calendar/timeclock.el (push (purecopy '(timeclock 2 6 1)) package--builtin-versions) @@ -28430,7 +28431,7 @@ relative only to the time worked today, and not to past time. ;;;*** ;;;### (autoloads nil "titdic-cnv" "international/titdic-cnv.el" -;;;;;; (22330 59913 940323 535000)) +;;;;;; (22150 28228 134072 702000)) ;;; Generated autoloads from international/titdic-cnv.el (autoload 'titdic-convert "titdic-cnv" "\ @@ -28452,7 +28453,7 @@ To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\". ;;;*** -;;;### (autoloads nil "tmm" "tmm.el" (22330 59913 743324 144000)) +;;;### (autoloads nil "tmm" "tmm.el" (22295 25908 202516 451000)) ;;; Generated autoloads from tmm.el (define-key global-map "\M-`" 'tmm-menubar) (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse) @@ -28494,8 +28495,8 @@ Its value should be an event that has a binding in MENU. ;;;*** -;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (22330 -;;;;;; 59913 919323 600000)) +;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (22315 +;;;;;; 11204 757560 191000)) ;;; Generated autoloads from calendar/todo-mode.el (autoload 'todo-show "todo-mode" "\ @@ -28560,8 +28561,8 @@ Mode for displaying and reprioritizing top priority Todo. ;;;*** -;;;### (autoloads nil "tool-bar" "tool-bar.el" (22330 59913 915323 -;;;;;; 612000)) +;;;### (autoloads nil "tool-bar" "tool-bar.el" (22150 28229 202072 +;;;;;; 702000)) ;;; Generated autoloads from tool-bar.el (autoload 'toggle-tool-bar-mode-from-frame "tool-bar" "\ @@ -28631,8 +28632,8 @@ holds a keymap. ;;;*** -;;;### (autoloads nil "tq" "emacs-lisp/tq.el" (22330 59913 931323 -;;;;;; 563000)) +;;;### (autoloads nil "tq" "emacs-lisp/tq.el" (22150 28227 458072 +;;;;;; 702000)) ;;; Generated autoloads from emacs-lisp/tq.el (autoload 'tq-create "tq" "\ @@ -28645,8 +28646,8 @@ to a tcp server on another machine. ;;;*** -;;;### (autoloads nil "trace" "emacs-lisp/trace.el" (22330 59913 -;;;;;; 931323 563000)) +;;;### (autoloads nil "trace" "emacs-lisp/trace.el" (22150 28227 +;;;;;; 458072 702000)) ;;; Generated autoloads from emacs-lisp/trace.el (defvar trace-buffer "*trace-output*" "\ @@ -28691,7 +28692,8 @@ the output buffer or changing the window configuration. ;;;*** -;;;### (autoloads nil "tramp" "net/tramp.el" (22331 17372 65369 363000)) +;;;### (autoloads nil "tramp" "net/tramp.el" (22272 64438 268671 +;;;;;; 103000)) ;;; Generated autoloads from net/tramp.el (defvar tramp-mode t "\ @@ -28806,8 +28808,8 @@ Discard Tramp from loading remote files. ;;;*** -;;;### (autoloads nil "tramp-ftp" "net/tramp-ftp.el" (22331 17372 -;;;;;; 61369 377000)) +;;;### (autoloads nil "tramp-ftp" "net/tramp-ftp.el" (22150 28228 +;;;;;; 410072 702000)) ;;; Generated autoloads from net/tramp-ftp.el (autoload 'tramp-ftp-enable-ange-ftp "tramp-ftp" "\ @@ -28817,15 +28819,15 @@ Discard Tramp from loading remote files. ;;;*** -;;;### (autoloads nil "trampver" "net/trampver.el" (22331 17372 65369 -;;;;;; 363000)) +;;;### (autoloads nil "trampver" "net/trampver.el" (22150 28228 442072 +;;;;;; 702000)) ;;; Generated autoloads from net/trampver.el (push (purecopy '(tramp 2 2 13 25 1)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "tutorial" "tutorial.el" (22330 59913 915323 -;;;;;; 612000)) +;;;### (autoloads nil "tutorial" "tutorial.el" (22150 28229 206072 +;;;;;; 702000)) ;;; Generated autoloads from tutorial.el (autoload 'help-with-tutorial "tutorial" "\ @@ -28849,8 +28851,8 @@ resumed later. ;;;*** -;;;### (autoloads nil "tv-util" "language/tv-util.el" (22330 59913 -;;;;;; 941323 532000)) +;;;### (autoloads nil "tv-util" "language/tv-util.el" (22086 11929 +;;;;;; 906062 731000)) ;;; Generated autoloads from language/tv-util.el (autoload 'tai-viet-composition-function "tv-util" "\ @@ -28860,8 +28862,8 @@ resumed later. ;;;*** -;;;### (autoloads nil "two-column" "textmodes/two-column.el" (22330 -;;;;;; 59913 991323 378000)) +;;;### (autoloads nil "two-column" "textmodes/two-column.el" (22150 +;;;;;; 28229 198072 702000)) ;;; Generated autoloads from textmodes/two-column.el (autoload '2C-command "two-column" () t 'keymap) (global-set-key "\C-x6" '2C-command) @@ -28908,8 +28910,8 @@ First column's text sSs Second column's text ;;;*** -;;;### (autoloads nil "type-break" "type-break.el" (22330 59913 915323 -;;;;;; 612000)) +;;;### (autoloads nil "type-break" "type-break.el" (22189 64323 316321 +;;;;;; 19000)) ;;; Generated autoloads from type-break.el (defvar type-break-mode nil "\ @@ -29042,7 +29044,7 @@ FRAC should be the inverse of the fractional value; for example, a value of ;;;*** -;;;### (autoloads nil "uce" "mail/uce.el" (22330 59913 948323 511000)) +;;;### (autoloads nil "uce" "mail/uce.el" (22150 28228 258072 702000)) ;;; Generated autoloads from mail/uce.el (autoload 'uce-reply-to-uce "uce" "\ @@ -29056,7 +29058,7 @@ You might need to set `uce-mail-reader' before using this. ;;;*** ;;;### (autoloads nil "ucs-normalize" "international/ucs-normalize.el" -;;;;;; (22330 59913 940323 535000)) +;;;;;; (22150 28228 134072 702000)) ;;; Generated autoloads from international/ucs-normalize.el (autoload 'ucs-normalize-NFD-region "ucs-normalize" "\ @@ -29121,8 +29123,8 @@ Normalize the string STR by the Unicode NFC and Mac OS's HFS Plus. ;;;*** -;;;### (autoloads nil "underline" "textmodes/underline.el" (22330 -;;;;;; 59913 991323 378000)) +;;;### (autoloads nil "underline" "textmodes/underline.el" (22150 +;;;;;; 28229 198072 702000)) ;;; Generated autoloads from textmodes/underline.el (autoload 'underline-region "underline" "\ @@ -29142,8 +29144,8 @@ which specify the range to operate on. ;;;*** -;;;### (autoloads nil "unrmail" "mail/unrmail.el" (22330 59913 948323 -;;;;;; 511000)) +;;;### (autoloads nil "unrmail" "mail/unrmail.el" (22150 28228 258072 +;;;;;; 702000)) ;;; Generated autoloads from mail/unrmail.el (autoload 'batch-unrmail "unrmail" "\ @@ -29163,8 +29165,8 @@ The variable `unrmail-mbox-format' controls which mbox format to use. ;;;*** -;;;### (autoloads nil "unsafep" "emacs-lisp/unsafep.el" (22330 59913 -;;;;;; 931323 563000)) +;;;### (autoloads nil "unsafep" "emacs-lisp/unsafep.el" (22150 28227 +;;;;;; 458072 702000)) ;;; Generated autoloads from emacs-lisp/unsafep.el (autoload 'unsafep "unsafep" "\ @@ -29176,7 +29178,7 @@ UNSAFEP-VARS is a list of symbols with local bindings. ;;;*** -;;;### (autoloads nil "url" "url/url.el" (22331 17372 121369 164000)) +;;;### (autoloads nil "url" "url/url.el" (22311 14139 302375 715000)) ;;; Generated autoloads from url/url.el (autoload 'url-retrieve "url" "\ @@ -29226,8 +29228,8 @@ to the server. ;;;*** -;;;### (autoloads nil "url-auth" "url/url-auth.el" (22330 59913 992323 -;;;;;; 375000)) +;;;### (autoloads nil "url-auth" "url/url-auth.el" (22150 28229 210072 +;;;;;; 702000)) ;;; Generated autoloads from url/url-auth.el (autoload 'url-get-authentication "url-auth" "\ @@ -29268,8 +29270,8 @@ RATING a rating between 1 and 10 of the strength of the authentication. ;;;*** -;;;### (autoloads nil "url-cache" "url/url-cache.el" (22330 59913 -;;;;;; 992323 375000)) +;;;### (autoloads nil "url-cache" "url/url-cache.el" (22150 28229 +;;;;;; 210072 702000)) ;;; Generated autoloads from url/url-cache.el (autoload 'url-store-in-cache "url-cache" "\ @@ -29290,8 +29292,8 @@ Extract FNAM from the local disk cache. ;;;*** -;;;### (autoloads nil "url-cid" "url/url-cid.el" (22330 59913 992323 -;;;;;; 375000)) +;;;### (autoloads nil "url-cid" "url/url-cid.el" (22150 28229 210072 +;;;;;; 702000)) ;;; Generated autoloads from url/url-cid.el (autoload 'url-cid "url-cid" "\ @@ -29301,8 +29303,8 @@ Extract FNAM from the local disk cache. ;;;*** -;;;### (autoloads nil "url-dav" "url/url-dav.el" (22330 59913 992323 -;;;;;; 375000)) +;;;### (autoloads nil "url-dav" "url/url-dav.el" (22150 28229 214072 +;;;;;; 702000)) ;;; Generated autoloads from url/url-dav.el (autoload 'url-dav-supported-p "url-dav" "\ @@ -29336,8 +29338,8 @@ added to this list, so most requests can just pass in nil. ;;;*** -;;;### (autoloads nil "url-file" "url/url-file.el" (22330 59913 992323 -;;;;;; 375000)) +;;;### (autoloads nil "url-file" "url/url-file.el" (22150 28229 214072 +;;;;;; 702000)) ;;; Generated autoloads from url/url-file.el (autoload 'url-file "url-file" "\ @@ -29347,8 +29349,8 @@ Handle file: and ftp: URLs. ;;;*** -;;;### (autoloads nil "url-gw" "url/url-gw.el" (22331 17372 120369 -;;;;;; 168000)) +;;;### (autoloads nil "url-gw" "url/url-gw.el" (22150 28229 218072 +;;;;;; 702000)) ;;; Generated autoloads from url/url-gw.el (autoload 'url-gateway-nslookup-host "url-gw" "\ @@ -29369,8 +29371,8 @@ overriding the value of `url-gateway-method'. ;;;*** -;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (22331 -;;;;;; 17372 120369 168000)) +;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (22150 +;;;;;; 28229 218072 702000)) ;;; Generated autoloads from url/url-handlers.el (defvar url-handler-mode nil "\ @@ -29432,8 +29434,8 @@ if it had been inserted from a file named URL. ;;;*** -;;;### (autoloads nil "url-http" "url/url-http.el" (22331 17372 121369 -;;;;;; 164000)) +;;;### (autoloads nil "url-http" "url/url-http.el" (22229 34898 908051 +;;;;;; 395000)) ;;; Generated autoloads from url/url-http.el (autoload 'url-default-expander "url-expand") @@ -29445,8 +29447,8 @@ if it had been inserted from a file named URL. ;;;*** -;;;### (autoloads nil "url-irc" "url/url-irc.el" (22330 59913 992323 -;;;;;; 375000)) +;;;### (autoloads nil "url-irc" "url/url-irc.el" (22150 28229 222072 +;;;;;; 702000)) ;;; Generated autoloads from url/url-irc.el (autoload 'url-irc "url-irc" "\ @@ -29456,8 +29458,8 @@ if it had been inserted from a file named URL. ;;;*** -;;;### (autoloads nil "url-ldap" "url/url-ldap.el" (22330 59913 992323 -;;;;;; 375000)) +;;;### (autoloads nil "url-ldap" "url/url-ldap.el" (22150 28229 222072 +;;;;;; 702000)) ;;; Generated autoloads from url/url-ldap.el (autoload 'url-ldap "url-ldap" "\ @@ -29470,8 +29472,8 @@ URL can be a URL string, or a URL vector of the type returned by ;;;*** -;;;### (autoloads nil "url-mailto" "url/url-mailto.el" (22330 59913 -;;;;;; 992323 375000)) +;;;### (autoloads nil "url-mailto" "url/url-mailto.el" (22150 28229 +;;;;;; 222072 702000)) ;;; Generated autoloads from url/url-mailto.el (autoload 'url-mail "url-mailto" "\ @@ -29486,8 +29488,8 @@ Handle the mailto: URL syntax. ;;;*** -;;;### (autoloads nil "url-misc" "url/url-misc.el" (22330 59913 992323 -;;;;;; 375000)) +;;;### (autoloads nil "url-misc" "url/url-misc.el" (22150 28229 222072 +;;;;;; 702000)) ;;; Generated autoloads from url/url-misc.el (autoload 'url-man "url-misc" "\ @@ -29518,8 +29520,8 @@ Fetch a data URL (RFC 2397). ;;;*** -;;;### (autoloads nil "url-news" "url/url-news.el" (22330 59913 992323 -;;;;;; 375000)) +;;;### (autoloads nil "url-news" "url/url-news.el" (22150 28229 222072 +;;;;;; 702000)) ;;; Generated autoloads from url/url-news.el (autoload 'url-news "url-news" "\ @@ -29534,8 +29536,8 @@ Fetch a data URL (RFC 2397). ;;;*** -;;;### (autoloads nil "url-ns" "url/url-ns.el" (22330 59913 992323 -;;;;;; 375000)) +;;;### (autoloads nil "url-ns" "url/url-ns.el" (22150 28229 222072 +;;;;;; 702000)) ;;; Generated autoloads from url/url-ns.el (autoload 'isPlainHostName "url-ns" "\ @@ -29575,8 +29577,8 @@ Fetch a data URL (RFC 2397). ;;;*** -;;;### (autoloads nil "url-parse" "url/url-parse.el" (22330 59913 -;;;;;; 992323 375000)) +;;;### (autoloads nil "url-parse" "url/url-parse.el" (22150 28229 +;;;;;; 222072 702000)) ;;; Generated autoloads from url/url-parse.el (autoload 'url-recreate-url "url-parse" "\ @@ -29627,8 +29629,8 @@ parses to ;;;*** -;;;### (autoloads nil "url-privacy" "url/url-privacy.el" (22330 59913 -;;;;;; 992323 375000)) +;;;### (autoloads nil "url-privacy" "url/url-privacy.el" (22150 28229 +;;;;;; 222072 702000)) ;;; Generated autoloads from url/url-privacy.el (autoload 'url-setup-privacy-info "url-privacy" "\ @@ -29638,8 +29640,8 @@ Setup variables that expose info about you and your system. ;;;*** -;;;### (autoloads nil "url-queue" "url/url-queue.el" (22331 17372 -;;;;;; 121369 164000)) +;;;### (autoloads nil "url-queue" "url/url-queue.el" (22150 28229 +;;;;;; 226072 702000)) ;;; Generated autoloads from url/url-queue.el (autoload 'url-queue-retrieve "url-queue" "\ @@ -29653,8 +29655,8 @@ The variable `url-queue-timeout' sets a timeout. ;;;*** -;;;### (autoloads nil "url-tramp" "url/url-tramp.el" (22330 59913 -;;;;;; 992323 375000)) +;;;### (autoloads nil "url-tramp" "url/url-tramp.el" (22165 43181 +;;;;;; 143854 955000)) ;;; Generated autoloads from url/url-tramp.el (defvar url-tramp-protocols '("ftp" "ssh" "scp" "rsync" "telnet") "\ @@ -29672,8 +29674,8 @@ would have been passed to OPERATION. ;;;*** -;;;### (autoloads nil "url-util" "url/url-util.el" (22331 17372 121369 -;;;;;; 164000)) +;;;### (autoloads nil "url-util" "url/url-util.el" (22150 28229 234072 +;;;;;; 702000)) ;;; Generated autoloads from url/url-util.el (defvar url-debug nil "\ @@ -29841,8 +29843,8 @@ This uses `url-current-object', set locally to the buffer. ;;;*** -;;;### (autoloads nil "userlock" "userlock.el" (22330 59913 915323 -;;;;;; 612000)) +;;;### (autoloads nil "userlock" "userlock.el" (22150 28229 234072 +;;;;;; 702000)) ;;; Generated autoloads from userlock.el (autoload 'ask-user-about-lock "userlock" "\ @@ -29870,8 +29872,8 @@ The buffer in question is current when this function is called. ;;;*** -;;;### (autoloads nil "utf-7" "international/utf-7.el" (22330 59913 -;;;;;; 940323 535000)) +;;;### (autoloads nil "utf-7" "international/utf-7.el" (22150 28228 +;;;;;; 134072 702000)) ;;; Generated autoloads from international/utf-7.el (autoload 'utf-7-post-read-conversion "utf-7" "\ @@ -29896,7 +29898,7 @@ The buffer in question is current when this function is called. ;;;*** -;;;### (autoloads nil "utf7" "gnus/utf7.el" (22331 17372 37369 462000)) +;;;### (autoloads nil "utf7" "gnus/utf7.el" (22150 28228 26072 702000)) ;;; Generated autoloads from gnus/utf7.el (autoload 'utf7-encode "utf7" "\ @@ -29906,8 +29908,8 @@ Encode UTF-7 STRING. Use IMAP modification if FOR-IMAP is non-nil. ;;;*** -;;;### (autoloads nil "uudecode" "mail/uudecode.el" (22330 59913 -;;;;;; 948323 511000)) +;;;### (autoloads nil "uudecode" "mail/uudecode.el" (22150 28228 +;;;;;; 258072 702000)) ;;; Generated autoloads from mail/uudecode.el (autoload 'uudecode-decode-region-external "uudecode" "\ @@ -29931,7 +29933,7 @@ If FILE-NAME is non-nil, save the result to FILE-NAME. ;;;*** -;;;### (autoloads nil "vc" "vc/vc.el" (22330 59914 13323 310000)) +;;;### (autoloads nil "vc" "vc/vc.el" (22341 35254 403552 371000)) ;;; Generated autoloads from vc/vc.el (defvar vc-checkout-hook nil "\ @@ -30247,8 +30249,8 @@ Return the branch part of a revision number REV. ;;;*** -;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (22330 59914 -;;;;;; 13323 310000)) +;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (22271 43574 +;;;;;; 247751 139000)) ;;; Generated autoloads from vc/vc-annotate.el (autoload 'vc-annotate "vc-annotate" "\ @@ -30287,8 +30289,8 @@ should be applied to the background or to the foreground. ;;;*** -;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (22331 17372 123369 -;;;;;; 157000)) +;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (22150 28229 290072 +;;;;;; 702000)) ;;; Generated autoloads from vc/vc-bzr.el (defconst vc-bzr-admin-dirname ".bzr" "\ @@ -30304,8 +30306,8 @@ Name of the format file in a .bzr directory.") ;;;*** -;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (22331 17372 123369 -;;;;;; 157000)) +;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (22341 35254 355552 +;;;;;; 371000)) ;;; Generated autoloads from vc/vc-cvs.el (defun vc-cvs-registered (f) "Return non-nil if file F is registered with CVS." @@ -30316,8 +30318,8 @@ Name of the format file in a .bzr directory.") ;;;*** -;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (22330 59914 13323 -;;;;;; 310000)) +;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (22150 28229 294072 +;;;;;; 702000)) ;;; Generated autoloads from vc/vc-dir.el (autoload 'vc-dir "vc-dir" "\ @@ -30341,8 +30343,8 @@ These are the commands available for use in the file status buffer: ;;;*** -;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (22331 -;;;;;; 17372 124369 153000)) +;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (22150 +;;;;;; 28229 294072 702000)) ;;; Generated autoloads from vc/vc-dispatcher.el (autoload 'vc-do-command "vc-dispatcher" "\ @@ -30365,8 +30367,8 @@ case, and the process object in the asynchronous case. ;;;*** -;;;### (autoloads nil "vc-git" "vc/vc-git.el" (22331 17372 124369 -;;;;;; 153000)) +;;;### (autoloads nil "vc-git" "vc/vc-git.el" (22305 18655 607719 +;;;;;; 883000)) ;;; Generated autoloads from vc/vc-git.el (defun vc-git-registered (file) "Return non-nil if FILE is registered with git." @@ -30377,7 +30379,7 @@ case, and the process object in the asynchronous case. ;;;*** -;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (22331 17372 124369 153000)) +;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (22188 43494 205543 203000)) ;;; Generated autoloads from vc/vc-hg.el (defun vc-hg-registered (file) "Return non-nil if FILE is registered with hg." @@ -30388,8 +30390,8 @@ case, and the process object in the asynchronous case. ;;;*** -;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (22330 59914 13323 -;;;;;; 310000)) +;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (22188 43494 205543 +;;;;;; 203000)) ;;; Generated autoloads from vc/vc-mtn.el (defconst vc-mtn-admin-dir "_MTN" "\ @@ -30405,8 +30407,8 @@ Name of the monotone directory's format file.") ;;;*** -;;;### (autoloads nil "vc-rcs" "vc/vc-rcs.el" (22331 17372 125369 -;;;;;; 150000)) +;;;### (autoloads nil "vc-rcs" "vc/vc-rcs.el" (22150 28229 302072 +;;;;;; 702000)) ;;; Generated autoloads from vc/vc-rcs.el (defvar vc-rcs-master-templates (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ @@ -30419,8 +30421,8 @@ For a description of possible values, see `vc-check-master-templates'.") ;;;*** -;;;### (autoloads nil "vc-sccs" "vc/vc-sccs.el" (22330 59914 13323 -;;;;;; 310000)) +;;;### (autoloads nil "vc-sccs" "vc/vc-sccs.el" (22150 28229 302072 +;;;;;; 702000)) ;;; Generated autoloads from vc/vc-sccs.el (defvar vc-sccs-master-templates (purecopy '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ @@ -30438,8 +30440,8 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) ;;;*** -;;;### (autoloads nil "vc-src" "vc/vc-src.el" (22331 17372 125369 -;;;;;; 150000)) +;;;### (autoloads nil "vc-src" "vc/vc-src.el" (22150 28229 302072 +;;;;;; 702000)) ;;; Generated autoloads from vc/vc-src.el (defvar vc-src-master-templates (purecopy '("%s.src/%s,v")) "\ @@ -30452,8 +30454,8 @@ For a description of possible values, see `vc-check-master-templates'.") ;;;*** -;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (22330 59914 13323 -;;;;;; 310000)) +;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (22150 28229 302072 +;;;;;; 702000)) ;;; Generated autoloads from vc/vc-svn.el (defun vc-svn-registered (f) (let ((admin-dir (cond ((and (eq system-type 'windows-nt) @@ -30466,8 +30468,8 @@ For a description of possible values, see `vc-check-master-templates'.") ;;;*** -;;;### (autoloads nil "vera-mode" "progmodes/vera-mode.el" (22330 -;;;;;; 59913 985323 396000)) +;;;### (autoloads nil "vera-mode" "progmodes/vera-mode.el" (22197 +;;;;;; 58438 563460 447000)) ;;; 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)) @@ -30526,7 +30528,7 @@ Key bindings: ;;;*** ;;;### (autoloads nil "verilog-mode" "progmodes/verilog-mode.el" -;;;;;; (22331 17372 102369 231000)) +;;;;;; (22197 58438 615460 447000)) ;;; Generated autoloads from progmodes/verilog-mode.el (autoload 'verilog-mode "verilog-mode" "\ @@ -30665,8 +30667,8 @@ Key bindings specific to `verilog-mode-map' are: ;;;*** -;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (22330 -;;;;;; 59913 977323 421000)) +;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (22292 +;;;;;; 49734 746738 351000)) ;;; Generated autoloads from progmodes/vhdl-mode.el (autoload 'vhdl-mode "vhdl-mode" "\ @@ -31220,8 +31222,8 @@ Key bindings: ;;;*** -;;;### (autoloads nil "viet-util" "language/viet-util.el" (22330 -;;;;;; 59913 941323 532000)) +;;;### (autoloads nil "viet-util" "language/viet-util.el" (22150 +;;;;;; 28228 198072 702000)) ;;; Generated autoloads from language/viet-util.el (autoload 'viet-encode-viscii-char "viet-util" "\ @@ -31265,7 +31267,7 @@ Convert Vietnamese characters of the current buffer to `VIQR' mnemonics. ;;;*** -;;;### (autoloads nil "view" "view.el" (22330 59913 915323 612000)) +;;;### (autoloads nil "view" "view.el" (22150 28229 322072 702000)) ;;; Generated autoloads from view.el (defvar view-remove-frame-by-deleting t "\ @@ -31521,8 +31523,8 @@ Exit View mode and make the current buffer editable. ;;;*** -;;;### (autoloads nil "viper" "emulation/viper.el" (22331 17371 998369 -;;;;;; 601000)) +;;;### (autoloads nil "viper" "emulation/viper.el" (22150 28227 478072 +;;;;;; 702000)) ;;; Generated autoloads from emulation/viper.el (push (purecopy '(viper 3 14 1)) package--builtin-versions) @@ -31539,8 +31541,8 @@ Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Top'. ;;;*** -;;;### (autoloads nil "warnings" "emacs-lisp/warnings.el" (22330 -;;;;;; 59913 931323 563000)) +;;;### (autoloads nil "warnings" "emacs-lisp/warnings.el" (22150 +;;;;;; 28227 458072 702000)) ;;; Generated autoloads from emacs-lisp/warnings.el (defvar warning-prefix-function nil "\ @@ -31630,7 +31632,7 @@ this is equivalent to `display-warning', using ;;;*** -;;;### (autoloads nil "wdired" "wdired.el" (22331 17372 126369 146000)) +;;;### (autoloads nil "wdired" "wdired.el" (22240 5212 92626 379000)) ;;; Generated autoloads from wdired.el (push (purecopy '(wdired 2 0)) package--builtin-versions) @@ -31648,8 +31650,8 @@ See `wdired-mode'. ;;;*** -;;;### (autoloads nil "webjump" "net/webjump.el" (22330 59913 954323 -;;;;;; 492000)) +;;;### (autoloads nil "webjump" "net/webjump.el" (22150 28228 442072 +;;;;;; 702000)) ;;; Generated autoloads from net/webjump.el (autoload 'webjump "webjump" "\ @@ -31665,8 +31667,8 @@ Please submit bug reports and other feedback to the author, Neil W. Van Dyke ;;;*** -;;;### (autoloads nil "which-func" "progmodes/which-func.el" (22331 -;;;;;; 17372 103369 228000)) +;;;### (autoloads nil "which-func" "progmodes/which-func.el" (22150 +;;;;;; 28228 986072 702000)) ;;; Generated autoloads from progmodes/which-func.el (put 'which-func-format 'risky-local-variable t) (put 'which-func-current 'risky-local-variable t) @@ -31697,8 +31699,8 @@ in certain major modes. ;;;*** -;;;### (autoloads nil "whitespace" "whitespace.el" (22330 59913 743324 -;;;;;; 144000)) +;;;### (autoloads nil "whitespace" "whitespace.el" (22311 14139 310375 +;;;;;; 715000)) ;;; Generated autoloads from whitespace.el (push (purecopy '(whitespace 13 2 2)) package--builtin-versions) @@ -32068,8 +32070,8 @@ cleaning up these problems. ;;;*** -;;;### (autoloads nil "wid-browse" "wid-browse.el" (22330 59913 916323 -;;;;;; 609000)) +;;;### (autoloads nil "wid-browse" "wid-browse.el" (22150 28229 326072 +;;;;;; 702000)) ;;; Generated autoloads from wid-browse.el (autoload 'widget-browse-at "wid-browse" "\ @@ -32097,8 +32099,8 @@ if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "wid-edit" "wid-edit.el" (22331 17372 126369 -;;;;;; 146000)) +;;;### (autoloads nil "wid-edit" "wid-edit.el" (22150 28229 330072 +;;;;;; 702000)) ;;; Generated autoloads from wid-edit.el (autoload 'widgetp "wid-edit" "\ @@ -32140,8 +32142,8 @@ Setup current buffer so editing string widgets works. ;;;*** -;;;### (autoloads nil "windmove" "windmove.el" (22330 59913 916323 -;;;;;; 609000)) +;;;### (autoloads nil "windmove" "windmove.el" (22150 28229 330072 +;;;;;; 702000)) ;;; Generated autoloads from windmove.el (autoload 'windmove-left "windmove" "\ @@ -32193,7 +32195,7 @@ Default MODIFIER is `shift'. ;;;*** -;;;### (autoloads nil "winner" "winner.el" (22330 59913 743324 144000)) +;;;### (autoloads nil "winner" "winner.el" (22311 14139 326375 715000)) ;;; Generated autoloads from winner.el (defvar winner-mode nil "\ @@ -32223,7 +32225,7 @@ you can press `C-c ' (calling `winner-redo'). ;;;*** -;;;### (autoloads nil "woman" "woman.el" (22330 59913 916323 609000)) +;;;### (autoloads nil "woman" "woman.el" (22216 22853 52596 491000)) ;;; Generated autoloads from woman.el (push (purecopy '(woman 0 551)) package--builtin-versions) @@ -32272,7 +32274,7 @@ Default bookmark handler for Woman buffers. ;;;*** -;;;### (autoloads nil "xml" "xml.el" (22330 59913 916323 609000)) +;;;### (autoloads nil "xml" "xml.el" (22249 52924 872284 99000)) ;;; Generated autoloads from xml.el (autoload 'xml-parse-file "xml" "\ @@ -32328,8 +32330,8 @@ Both features can be combined by providing a cons cell ;;;*** -;;;### (autoloads nil "xmltok" "nxml/xmltok.el" (22331 17372 67369 -;;;;;; 356000)) +;;;### (autoloads nil "xmltok" "nxml/xmltok.el" (22150 28228 462072 +;;;;;; 702000)) ;;; Generated autoloads from nxml/xmltok.el (autoload 'xmltok-get-declared-encoding-position "xmltok" "\ @@ -32347,8 +32349,8 @@ If LIMIT is non-nil, then do not consider characters beyond LIMIT. ;;;*** -;;;### (autoloads nil "xref" "progmodes/xref.el" (22330 59913 977323 -;;;;;; 421000)) +;;;### (autoloads nil "xref" "progmodes/xref.el" (22319 8247 203689 +;;;;;; 39000)) ;;; Generated autoloads from progmodes/xref.el (autoload 'xref-find-backend "xref" "\ @@ -32415,8 +32417,8 @@ IGNORES is a list of glob patterns. ;;;*** -;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (22330 59913 743324 -;;;;;; 144000)) +;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (22290 7990 504790 +;;;;;; 288000)) ;;; Generated autoloads from xt-mouse.el (defvar xterm-mouse-mode nil "\ @@ -32446,8 +32448,7 @@ down the SHIFT key while pressing the mouse button. ;;;*** -;;;### (autoloads nil "xwidget" "xwidget.el" (22331 17377 954348 -;;;;;; 447000)) +;;;### (autoloads nil "xwidget" "xwidget.el" (22327 2357 177818 859000)) ;;; Generated autoloads from xwidget.el (autoload 'xwidget-webkit-browse-url "xwidget" "\ @@ -32459,7 +32460,7 @@ Interactively, URL defaults to the string looking like a url around point. ;;;*** -;;;### (autoloads nil "yenc" "gnus/yenc.el" (22331 17372 37369 462000)) +;;;### (autoloads nil "yenc" "gnus/yenc.el" (22150 28228 26072 702000)) ;;; Generated autoloads from gnus/yenc.el (autoload 'yenc-decode-region "yenc" "\ @@ -32474,7 +32475,7 @@ Extract file name from an yenc header. ;;;*** -;;;### (autoloads nil "zone" "play/zone.el" (22330 59913 970323 443000)) +;;;### (autoloads nil "zone" "play/zone.el" (22150 28228 682072 702000)) ;;; Generated autoloads from play/zone.el (autoload 'zone "zone" "\ @@ -32490,46 +32491,44 @@ 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.el" "cedet/semantic/bovine/debug.el" +;;;;;; "cedet/semantic/bovine/el.el" "cedet/semantic/bovine/gcc.el" +;;;;;; "cedet/semantic/bovine/make.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" @@ -32537,91 +32536,82 @@ 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" -;;;;;; "cedet/semantic/wisent/javat-wy.el" "cedet/semantic/wisent/js-wy.el" -;;;;;; "cedet/semantic/wisent/python-wy.el" "cedet/semantic/wisent/python.el" -;;;;;; "cedet/semantic/wisent/wisent.el" "cedet/srecode/args.el" -;;;;;; "cedet/srecode/compile.el" "cedet/srecode/cpp.el" "cedet/srecode/ctxt.el" -;;;;;; "cedet/srecode/dictionary.el" "cedet/srecode/document.el" +;;;;;; "cedet/semantic/wisent/python.el" "cedet/semantic/wisent/wisent.el" +;;;;;; "cedet/srecode/args.el" "cedet/srecode/compile.el" "cedet/srecode/cpp.el" +;;;;;; "cedet/srecode/ctxt.el" "cedet/srecode/dictionary.el" "cedet/srecode/document.el" ;;;;;; "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/loaddefs.el" "cedet/srecode/map.el" "cedet/srecode/mode.el" +;;;;;; "cedet/srecode/semantic.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-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-opt.el" -;;;;;; "emacs-lisp/eieio-speedbar.el" "emacs-lisp/generator.el" -;;;;;; "emacs-lisp/lisp-mnt.el" "emacs-lisp/package-x.el" "emacs-lisp/smie.el" -;;;;;; "emacs-lisp/subr-x.el" "emacs-lisp/tcover-ses.el" "emacs-lisp/tcover-unsafep.el" -;;;;;; "emulation/cua-gmrk.el" "emulation/edt-lk201.el" "emulation/edt-mapper.el" -;;;;;; "emulation/edt-pc.el" "emulation/edt-vt100.el" "emulation/viper-cmd.el" -;;;;;; "emulation/viper-ex.el" "emulation/viper-init.el" "emulation/viper-keym.el" -;;;;;; "emulation/viper-macs.el" "emulation/viper-mous.el" "emulation/viper-util.el" -;;;;;; "erc/erc-backend.el" "erc/erc-goodies.el" "erc/erc-ibuffer.el" -;;;;;; "erc/erc-lang.el" "eshell/em-alias.el" "eshell/em-banner.el" -;;;;;; "eshell/em-basic.el" "eshell/em-cmpl.el" "eshell/em-dirs.el" -;;;;;; "eshell/em-glob.el" "eshell/em-hist.el" "eshell/em-ls.el" -;;;;;; "eshell/em-pred.el" "eshell/em-prompt.el" "eshell/em-rebind.el" -;;;;;; "eshell/em-script.el" "eshell/em-smart.el" "eshell/em-term.el" -;;;;;; "eshell/em-tramp.el" "eshell/em-unix.el" "eshell/em-xtra.el" -;;;;;; "eshell/esh-arg.el" "eshell/esh-cmd.el" "eshell/esh-ext.el" -;;;;;; "eshell/esh-io.el" "eshell/esh-module.el" "eshell/esh-opt.el" -;;;;;; "eshell/esh-proc.el" "eshell/esh-util.el" "eshell/esh-var.el" -;;;;;; "ezimage.el" "format-spec.el" "fringe.el" "generic-x.el" -;;;;;; "gnus/compface.el" "gnus/gnus-async.el" "gnus/gnus-bcklg.el" -;;;;;; "gnus/gnus-cite.el" "gnus/gnus-cloud.el" "gnus/gnus-cus.el" -;;;;;; "gnus/gnus-demon.el" "gnus/gnus-dup.el" "gnus/gnus-eform.el" -;;;;;; "gnus/gnus-ems.el" "gnus/gnus-icalendar.el" "gnus/gnus-int.el" -;;;;;; "gnus/gnus-logic.el" "gnus/gnus-mh.el" "gnus/gnus-salt.el" -;;;;;; "gnus/gnus-score.el" "gnus/gnus-srvr.el" "gnus/gnus-topic.el" -;;;;;; "gnus/gnus-undo.el" "gnus/gnus-util.el" "gnus/gnus-uu.el" -;;;;;; "gnus/gnus-vm.el" "gnus/gssapi.el" "gnus/ietf-drums.el" "gnus/legacy-gnus-agent.el" -;;;;;; "gnus/mail-parse.el" "gnus/mail-prsvr.el" "gnus/mail-source.el" -;;;;;; "gnus/mailcap.el" "gnus/messcompat.el" "gnus/mm-archive.el" -;;;;;; "gnus/mm-bodies.el" "gnus/mm-decode.el" "gnus/mm-util.el" -;;;;;; "gnus/mm-view.el" "gnus/mml-sec.el" "gnus/mml-smime.el" "gnus/nnagent.el" -;;;;;; "gnus/nnbabyl.el" "gnus/nndir.el" "gnus/nndraft.el" "gnus/nneething.el" -;;;;;; "gnus/nngateway.el" "gnus/nnheader.el" "gnus/nnimap.el" "gnus/nnir.el" -;;;;;; "gnus/nnmail.el" "gnus/nnmaildir.el" "gnus/nnmairix.el" "gnus/nnmbox.el" -;;;;;; "gnus/nnmh.el" "gnus/nnnil.el" "gnus/nnoo.el" "gnus/nnregistry.el" -;;;;;; "gnus/nnrss.el" "gnus/nnspool.el" "gnus/nntp.el" "gnus/nnvirtual.el" -;;;;;; "gnus/nnweb.el" "gnus/registry.el" "gnus/rfc1843.el" "gnus/rfc2045.el" -;;;;;; "gnus/rfc2047.el" "gnus/rfc2231.el" "gnus/rtree.el" "gnus/sieve-manage.el" -;;;;;; "gnus/smime.el" "gnus/spam-stat.el" "gnus/spam-wash.el" "hex-util.el" -;;;;;; "hfy-cmap.el" "ibuf-ext.el" "international/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" -;;;;;; "international/uni-decimal.el" "international/uni-decomposition.el" -;;;;;; "international/uni-digit.el" "international/uni-lowercase.el" -;;;;;; "international/uni-mirrored.el" "international/uni-name.el" -;;;;;; "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" +;;;;;; "emacs-lisp/cl-loaddefs.el" "emacs-lisp/cl-macs.el" "emacs-lisp/cl-seq.el" +;;;;;; "emacs-lisp/cl.el" "emacs-lisp/eieio-base.el" "emacs-lisp/eieio-compat.el" +;;;;;; "emacs-lisp/eieio-custom.el" "emacs-lisp/eieio-datadebug.el" +;;;;;; "emacs-lisp/eieio-opt.el" "emacs-lisp/eieio-speedbar.el" +;;;;;; "emacs-lisp/generator.el" "emacs-lisp/lisp-mnt.el" "emacs-lisp/package-x.el" +;;;;;; "emacs-lisp/smie.el" "emacs-lisp/subr-x.el" "emacs-lisp/tcover-ses.el" +;;;;;; "emacs-lisp/tcover-unsafep.el" "emulation/cua-gmrk.el" "emulation/edt-lk201.el" +;;;;;; "emulation/edt-mapper.el" "emulation/edt-pc.el" "emulation/edt-vt100.el" +;;;;;; "emulation/viper-cmd.el" "emulation/viper-ex.el" "emulation/viper-init.el" +;;;;;; "emulation/viper-keym.el" "emulation/viper-macs.el" "emulation/viper-mous.el" +;;;;;; "emulation/viper-util.el" "erc/erc-backend.el" "erc/erc-goodies.el" +;;;;;; "erc/erc-ibuffer.el" "erc/erc-lang.el" "eshell/em-alias.el" +;;;;;; "eshell/em-banner.el" "eshell/em-basic.el" "eshell/em-cmpl.el" +;;;;;; "eshell/em-dirs.el" "eshell/em-glob.el" "eshell/em-hist.el" +;;;;;; "eshell/em-ls.el" "eshell/em-pred.el" "eshell/em-prompt.el" +;;;;;; "eshell/em-rebind.el" "eshell/em-script.el" "eshell/em-smart.el" +;;;;;; "eshell/em-term.el" "eshell/em-tramp.el" "eshell/em-unix.el" +;;;;;; "eshell/em-xtra.el" "eshell/esh-arg.el" "eshell/esh-cmd.el" +;;;;;; "eshell/esh-ext.el" "eshell/esh-groups.el" "eshell/esh-io.el" +;;;;;; "eshell/esh-module.el" "eshell/esh-opt.el" "eshell/esh-proc.el" +;;;;;; "eshell/esh-util.el" "eshell/esh-var.el" "ezimage.el" "format-spec.el" +;;;;;; "fringe.el" "generic-x.el" "gnus/compface.el" "gnus/gnus-async.el" +;;;;;; "gnus/gnus-bcklg.el" "gnus/gnus-cite.el" "gnus/gnus-cloud.el" +;;;;;; "gnus/gnus-cus.el" "gnus/gnus-demon.el" "gnus/gnus-dup.el" +;;;;;; "gnus/gnus-eform.el" "gnus/gnus-ems.el" "gnus/gnus-icalendar.el" +;;;;;; "gnus/gnus-int.el" "gnus/gnus-logic.el" "gnus/gnus-mh.el" +;;;;;; "gnus/gnus-salt.el" "gnus/gnus-score.el" "gnus/gnus-srvr.el" +;;;;;; "gnus/gnus-topic.el" "gnus/gnus-undo.el" "gnus/gnus-util.el" +;;;;;; "gnus/gnus-uu.el" "gnus/gnus-vm.el" "gnus/gssapi.el" "gnus/ietf-drums.el" +;;;;;; "gnus/legacy-gnus-agent.el" "gnus/mail-parse.el" "gnus/mail-prsvr.el" +;;;;;; "gnus/mail-source.el" "gnus/mailcap.el" "gnus/messcompat.el" +;;;;;; "gnus/mm-archive.el" "gnus/mm-bodies.el" "gnus/mm-decode.el" +;;;;;; "gnus/mm-util.el" "gnus/mm-view.el" "gnus/mml-sec.el" "gnus/mml-smime.el" +;;;;;; "gnus/nnagent.el" "gnus/nnbabyl.el" "gnus/nndir.el" "gnus/nndraft.el" +;;;;;; "gnus/nneething.el" "gnus/nngateway.el" "gnus/nnheader.el" +;;;;;; "gnus/nnimap.el" "gnus/nnir.el" "gnus/nnmail.el" "gnus/nnmaildir.el" +;;;;;; "gnus/nnmairix.el" "gnus/nnmbox.el" "gnus/nnmh.el" "gnus/nnnil.el" +;;;;;; "gnus/nnoo.el" "gnus/nnregistry.el" "gnus/nnrss.el" "gnus/nnspool.el" +;;;;;; "gnus/nntp.el" "gnus/nnvirtual.el" "gnus/nnweb.el" "gnus/registry.el" +;;;;;; "gnus/rfc1843.el" "gnus/rfc2045.el" "gnus/rfc2047.el" "gnus/rfc2231.el" +;;;;;; "gnus/rtree.el" "gnus/sieve-manage.el" "gnus/smime.el" "gnus/spam-stat.el" +;;;;;; "gnus/spam-wash.el" "hex-util.el" "hfy-cmap.el" "ibuf-ext.el" +;;;;;; "international/charscript.el" "international/fontset.el" +;;;;;; "international/iso-ascii.el" "international/ja-dic-cnv.el" +;;;;;; "international/ja-dic-utl.el" "international/ogonek.el" "kermit.el" +;;;;;; "language/hanja-util.el" "language/thai-word.el" "ldefs-boot.el" +;;;;;; "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" @@ -32672,14 +32662,14 @@ 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" @@ -32702,7 +32692,7 @@ Zone out, completely. ;;;;;; "vc/ediff-vers.el" "vc/ediff-wind.el" "vc/pcvs-info.el" "vc/pcvs-parse.el" ;;;;;; "vc/pcvs-util.el" "vc/vc-dav.el" "vc/vc-filewise.el" "vcursor.el" ;;;;;; "vt-control.el" "vt100-led.el" "w32-fns.el" "w32-vars.el" -;;;;;; "x-dnd.el") (22331 19288 214877 938000)) +;;;;;; "x-dnd.el") (22349 29401 586989 559000)) ;;;*** commit 604f6568312aef8287d7a3ac1dbeb71577089bec Author: Glenn Morris Date: Tue May 31 18:24:07 2016 -0400 * test/automated/viper-tests.el (viper-test-undo-kmacro): Delete temp-file at end. diff --git a/test/automated/viper-tests.el b/test/automated/viper-tests.el index e2c39b3..074dd63 100644 --- a/test/automated/viper-tests.el +++ b/test/automated/viper-tests.el @@ -65,6 +65,7 @@ after itself, although it will leave a buffer called rtn)) ;; Switch everything off and restore the buffer. (toggle-viper-mode) + (delete-file viper-custom-file-name) (switch-to-buffer before-buffer)))) (ert-deftest viper-test-go () commit 20eb53185dbe71c5d4162476bbe7dbe3e808184a Author: Glenn Morris Date: Tue May 31 15:05:20 2016 -0400 * lisp/mail/footnote.el (footnote-mode): Fix doc typo. diff --git a/lisp/mail/footnote.el b/lisp/mail/footnote.el index 57c3be0..a90f370 100644 --- a/lisp/mail/footnote.el +++ b/lisp/mail/footnote.el @@ -793,7 +793,7 @@ With a prefix argument ARG, enable Footnote mode if ARG is positive, and disable it otherwise. If called from Lisp, enable the mode if ARG is omitted or nil. -Footnode mode is a buffer-local minor mode. If enabled, it +Footnote mode is a buffer-local minor mode. If enabled, it provides footnote support for `message-mode'. To get started, play around with the following keys: \\{footnote-minor-mode-map}" commit a7a22442a4efcd431d99b8929dbbad7253b070a5 Author: Glenn Morris Date: Tue May 31 14:58:05 2016 -0400 * doc/misc/smtpmail.texi (Encryption): Fix 2012-12-22 typo. diff --git a/doc/misc/smtpmail.texi b/doc/misc/smtpmail.texi index 2647331..d9a68c4 100644 --- a/doc/misc/smtpmail.texi +++ b/doc/misc/smtpmail.texi @@ -285,7 +285,7 @@ connection the SMTP library uses. The default value is @code{nil}, which means to use a plain connection, but try to switch to a STARTTLS encrypted connection if the server supports it. Other possible values are: @code{starttls} to insist on STARTTLS; @code{ssl} to use TLS/SSL; -and @code{plain} for encryption. +and @code{plain} for no encryption. Use of any form of TLS/SSL requires support in Emacs. You can either use the built-in support (in Emacs 24.1 and later), or the commit 07bd97217b94aa0eb0e351f0adb7286b63756910 Author: Glenn Morris Date: Tue May 31 14:50:52 2016 -0400 * lisp/emacs-lisp/lisp-mode.el (lisp--mode-syntax-table): Fix typo. (Bug#23654) diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 315b3d5..cfec05c 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -58,7 +58,7 @@ (setq i (1+ i))) (modify-syntax-entry ?\s " " table) ;; Non-break space acts as whitespace. - (modify-syntax-entry ?\x8a0 " " table) + (modify-syntax-entry ?\xa0 " " table) (modify-syntax-entry ?\t " " table) (modify-syntax-entry ?\f " " table) (modify-syntax-entry ?\n "> " table)