------------------------------------------------------------ revno: 116240 committer: Daniel Colascione branch nick: trunk timestamp: Sat 2014-02-01 23:51:26 -0800 message: Tweak comint docstring to suggest remap bindings diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-02-02 03:42:20 +0000 +++ lisp/ChangeLog 2014-02-02 07:51:26 +0000 @@ -1,3 +1,7 @@ +2014-02-02 Daniel Colascione + + * comint.el (comint-prompt-read-only): Change doc to suggest remap keybinding. + 2014-02-02 Glenn Morris * register.el (register-read-with-preview, point-to-register) === modified file 'lisp/comint.el' --- lisp/comint.el 2014-01-17 16:45:45 +0000 +++ lisp/comint.el 2014-02-02 07:51:26 +0000 @@ -186,8 +186,8 @@ \(add-hook 'comint-mode-hook (lambda () - (define-key comint-mode-map \"\\C-w\" 'comint-kill-region) - (define-key comint-mode-map [C-S-backspace] + (define-key comint-mode-map [remap kill-region] 'comint-kill-region) + (define-key comint-mode-map [remap kill-whole-line] 'comint-kill-whole-line))) If you sometimes use comint-mode on text-only terminals or with `emacs -nw', ------------------------------------------------------------ revno: 116239 committer: Glenn Morris branch nick: trunk timestamp: Sat 2014-02-01 19:42:20 -0800 message: register.el doc fixes * lisp/register.el (register-read-with-preview, point-to-register) (window-configuration-to-register, frame-configuration-to-register) (jump-to-register, number-to-register, view-register, insert-register) (copy-to-register, append-to-register, prepend-to-register) (copy-rectangle-to-register): Doc fixes. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-02-02 02:25:05 +0000 +++ lisp/ChangeLog 2014-02-02 03:42:20 +0000 @@ -1,3 +1,11 @@ +2014-02-02 Glenn Morris + + * register.el (register-read-with-preview, point-to-register) + (window-configuration-to-register, frame-configuration-to-register) + (jump-to-register, number-to-register, view-register, insert-register) + (copy-to-register, append-to-register, prepend-to-register) + (copy-rectangle-to-register): Doc fixes. + 2014-02-02 Stefan Monnier * help-fns.el (help-C-file-name): Handle advised functions (bug#16478). === modified file 'lisp/register.el' --- lisp/register.el 2014-02-02 01:04:08 +0000 +++ lisp/register.el 2014-02-02 03:42:20 +0000 @@ -145,11 +145,12 @@ (insert (mapconcat register-preview-function register-alist "")))))) (defun register-read-with-preview (prompt) - "Read and return an event, prompting with PROMPT, possibly showing a preview. -If `register-alist' and `register-preview-delay' are both non-nil, -display a window listing registers after `register-preview-delay' seconds. -If `help-char' (or a member of `help-event-list') is pressed, display -such a window regardless." + "Read and return a register name, possibly showing existing registers. +Prompt with the string PROMPT. If `register-alist' and +`register-preview-delay' are both non-nil, display a window +listing existing registers after `register-preview-delay' seconds. +If `help-char' (or a member of `help-event-list') is pressed, +display such a window regardless." (let* ((buffer "*Register Preview*") (timer (when (numberp register-preview-delay) (run-with-timer register-preview-delay nil @@ -176,7 +177,9 @@ "Store current location of point in register REGISTER. With prefix argument, store current frame configuration. Use \\[jump-to-register] to go to that location or restore that configuration. -Argument is a character, naming the register." +Argument is a character, naming the register. + +Interactively, reads the register using `register-read-with-preview'." (interactive (list (register-read-with-preview "Point to register: ") current-prefix-arg)) ;; Turn the marker into a file-ref if the buffer is killed. @@ -188,7 +191,9 @@ (defun window-configuration-to-register (register &optional _arg) "Store the window configuration of the selected frame in register REGISTER. Use \\[jump-to-register] to restore the configuration. -Argument is a character, naming the register." +Argument is a character, naming the register. + +Interactively, reads the register using `register-read-with-preview'." (interactive (list (register-read-with-preview "Window configuration to register: ") current-prefix-arg)) @@ -199,7 +204,9 @@ (defun frame-configuration-to-register (register &optional _arg) "Store the window configuration of all frames in register REGISTER. Use \\[jump-to-register] to restore the configuration. -Argument is a character, naming the register." +Argument is a character, naming the register. + +Interactively, reads the register using `register-read-with-preview'." (interactive (list (register-read-with-preview "Frame configuration to register: ") current-prefix-arg)) @@ -217,7 +224,9 @@ First argument is a character, naming the register. Optional second arg non-nil (interactively, prefix argument) says to delete any existing frames that the frameset doesn't mention. -\(Otherwise, these frames are iconified.)" +\(Otherwise, these frames are iconified.) + +Interactively, reads the register using `register-read-with-preview'." (interactive (list (register-read-with-preview "Jump to register: ") current-prefix-arg)) (let ((val (get-register register))) @@ -265,7 +274,9 @@ Two args, NUMBER and REGISTER (a character, naming the register). If NUMBER is nil, a decimal number is read from the buffer starting at point, and point moves to the end of that number. -Interactively, NUMBER is the prefix arg (none means nil)." +Interactively, NUMBER is the prefix arg (none means nil). + +Interactively, reads the register using `register-read-with-preview'." (interactive (list current-prefix-arg (register-read-with-preview "Number to register: "))) (set-register register @@ -298,7 +309,9 @@ (defun view-register (register) "Display what is contained in register named REGISTER. -The Lisp value REGISTER is a character." +The Lisp value REGISTER is a character. + +Interactively, reads the register using `register-read-with-preview'." (interactive (list (register-read-with-preview "View register: "))) (let ((val (get-register register))) (if (null val) @@ -400,7 +413,9 @@ "Insert contents of register REGISTER. (REGISTER is a character.) Normally puts point before and mark after the inserted text. If optional second arg is non-nil, puts mark before and point after. -Interactively, second arg is non-nil if prefix arg is supplied." +Interactively, second arg is non-nil if prefix arg is supplied. + +Interactively, reads the register using `register-read-with-preview'." (interactive (progn (barf-if-buffer-read-only) (list (register-read-with-preview "Insert register: ") @@ -431,7 +446,9 @@ Called from program, takes four args: REGISTER, START, END and DELETE-FLAG. START and END are buffer positions indicating what to copy. The optional argument REGION if non-nil, indicates that we're not just copying -some text between START and END, but we're copying the region." +some text between START and END, but we're copying the region. + +Interactively, reads the register using `register-read-with-preview'." (interactive (list (register-read-with-preview "Copy to register: ") (region-beginning) (region-end) @@ -450,7 +467,9 @@ "Append region to text in register REGISTER. With prefix arg, delete as well. Called from program, takes four args: REGISTER, START, END and DELETE-FLAG. -START and END are buffer positions indicating what to append." +START and END are buffer positions indicating what to append. + +Interactively, reads the register using `register-read-with-preview'." (interactive (list (register-read-with-preview "Append to register: ") (region-beginning) (region-end) @@ -472,7 +491,9 @@ "Prepend region to text in register REGISTER. With prefix arg, delete as well. Called from program, takes four args: REGISTER, START, END and DELETE-FLAG. -START and END are buffer positions indicating what to prepend." +START and END are buffer positions indicating what to prepend. + +Interactively, reads the register using `register-read-with-preview'." (interactive (list (register-read-with-preview "Prepend to register: ") (region-beginning) (region-end) @@ -496,7 +517,9 @@ To insert this register in the buffer, use \\[insert-register]. Called from a program, takes four args: REGISTER, START, END and DELETE-FLAG. -START and END are buffer positions giving two corners of rectangle." +START and END are buffer positions giving two corners of rectangle. + +Interactively, reads the register using `register-read-with-preview'." (interactive (list (register-read-with-preview "Copy rectangle to register: ") (region-beginning) ------------------------------------------------------------ revno: 116238 fixes bug: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16478 committer: Stefan Monnier branch nick: trunk timestamp: Sat 2014-02-01 21:25:05 -0500 message: * lisp/help-fns.el (help-C-file-name): Handle advised functions. * lisp/emacs-lisp/find-func.el (find-function-C-source): Idem. * lisp/emacs-lisp/nadvice.el (advice--cd*r): New function. * help-fns.el (describe-function-1): Use it. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-02-02 01:04:08 +0000 +++ lisp/ChangeLog 2014-02-02 02:25:05 +0000 @@ -1,3 +1,10 @@ +2014-02-02 Stefan Monnier + + * help-fns.el (help-C-file-name): Handle advised functions (bug#16478). + * emacs-lisp/find-func.el (find-function-C-source): Idem. + * emacs-lisp/nadvice.el (advice--cd*r): New function. + * help-fns.el (describe-function-1): Use it. + 2014-02-02 Glenn Morris * register.el (register-preview-default): New function, @@ -35,8 +42,8 @@ (ruby-smie-grammar): Make "." right-associative. Make its priority lower than the ternary and all binary operators. (ruby-smie-rules): Indent "(" relative to the first non-"." - parent, or the first "." parent at indentation. Use - `ruby-align-chained-calls' for indentation of "." tokens. + parent, or the first "." parent at indentation. + Use `ruby-align-chained-calls' for indentation of "." tokens. (Bug#16593) 2014-01-31 Juri Linkov === modified file 'lisp/emacs-lisp/find-func.el' --- lisp/emacs-lisp/find-func.el 2014-01-01 07:43:34 +0000 +++ lisp/emacs-lisp/find-func.el 2014-02-02 02:25:05 +0000 @@ -219,7 +219,7 @@ (regexp-quote (symbol-name fun-or-var)) "\"") (concat "DEFUN[ \t\n]*([ \t\n]*\"" - (regexp-quote (subr-name fun-or-var)) + (regexp-quote (subr-name (advice--cd*r fun-or-var))) "\"")) nil t) (error "Can't find source for %s" fun-or-var)) === modified file 'lisp/emacs-lisp/nadvice.el' --- lisp/emacs-lisp/nadvice.el 2014-01-03 05:37:58 +0000 +++ lisp/emacs-lisp/nadvice.el 2014-02-02 02:25:05 +0000 @@ -67,6 +67,11 @@ (defsubst advice--cdr (f) (aref (aref f 2) 2)) (defsubst advice--props (f) (aref (aref f 2) 3)) +(defun advice--cd*r (f) + (while (advice--p f) + (setq f (advice--cdr f))) + f) + (defun advice--make-docstring (function) "Build the raw docstring for FUNCTION, presumably advised." (let ((flist (indirect-function function)) === modified file 'lisp/help-fns.el' --- lisp/help-fns.el 2014-01-07 20:40:44 +0000 +++ lisp/help-fns.el 2014-02-02 02:25:05 +0000 @@ -187,7 +187,7 @@ (let ((docbuf (get-buffer-create " *DOC*")) (name (if (eq 'var kind) (concat "V" (symbol-name subr-or-var)) - (concat "F" (subr-name subr-or-var))))) + (concat "F" (subr-name (advice--cd*r subr-or-var)))))) (with-current-buffer docbuf (goto-char (point-min)) (if (eobp) @@ -542,11 +542,7 @@ ;; real definition, if that symbol is already set up. (real-function (or (and advised - (let* ((advised-fn (advice--cdr - (advice--symbol-function function)))) - (while (advice--p advised-fn) - (setq advised-fn (advice--cdr advised-fn))) - advised-fn)) + (advice--cd*r (advice--symbol-function function))) function)) ;; Get the real definition. (def (if (symbolp real-function) @@ -660,9 +656,9 @@ (or doc "Not documented."))))))) ;; Add defaults to `help-fns-describe-function-functions'. -(add-hook 'help-fns-describe-function-functions 'help-fns--obsolete) -(add-hook 'help-fns-describe-function-functions 'help-fns--parent-mode) -(add-hook 'help-fns-describe-function-functions 'help-fns--compiler-macro) +(add-hook 'help-fns-describe-function-functions #'help-fns--obsolete) +(add-hook 'help-fns-describe-function-functions #'help-fns--parent-mode) +(add-hook 'help-fns-describe-function-functions #'help-fns--compiler-macro) ;; Variables ------------------------------------------------------------ revno: 116237 committer: Glenn Morris branch nick: trunk timestamp: Sat 2014-02-01 17:16:18 -0800 message: * doc/misc/efaq-w32.texi (Tramp ssh): Remove deleted tramp methods. * etc/NEWS: Related edits. diff: === modified file 'doc/misc/ChangeLog' --- doc/misc/ChangeLog 2014-01-31 07:28:17 +0000 +++ doc/misc/ChangeLog 2014-02-02 01:16:18 +0000 @@ -1,3 +1,7 @@ +2014-02-02 Glenn Morris + + * efaq-w32.texi (Tramp ssh): Remove deleted tramp methods. + 2014-01-31 Glenn Morris * efaq.texi (Replacing highlighted text): === modified file 'doc/misc/efaq-w32.texi' --- doc/misc/efaq-w32.texi 2014-01-05 02:56:08 +0000 +++ doc/misc/efaq-w32.texi 2014-02-02 01:16:18 +0000 @@ -1774,11 +1774,7 @@ openssh @itemize @item @code{scp} Uses scp for copying, ssh for shell operations. -@item @code{scp1} scp with forced SSH protocol version 1 -@item @code{scp2} scp with forced SSH protocol version 2 @item @code{ssh} Uses ssh with encoding on stdin/stdout for file transfer. -@item @code{ssh1} ssh with forced SSH protocol version 1 -@item @code{ssh2} ssh with forced SSH protocol version 2 @end itemize @item @@ -1788,8 +1784,6 @@ @item @code{pscp1} pscp, with forced SSH protocol version 1 @item @code{pscp2} pscp, with forced SSH protocol version 2 @item @code{plink} Uses plink with encoding on stdin/stdout for file transfer. -@item @code{plink1} plink with forced SSH protocol version 1 -@item @code{plink2} plink with forced SSH protocol version 2 @end itemize @end itemize === modified file 'etc/NEWS' --- etc/NEWS 2014-02-02 01:04:08 +0000 +++ etc/NEWS 2014-02-02 01:16:18 +0000 @@ -833,6 +833,7 @@ ** Tramp ++++ *** The experimental url syntax for remote file names has been removed. +++ @@ -840,10 +841,11 @@ devices by the Android Debug Bridge. The variable `tramp-adb-program' can be used to adapt the path of the "adb" program, if needed. ++++ *** The connection methods "plink1", "ssh1", "ssh2", "scp1", "scp2", "scpc" and "rsyncc" are discontinued. The ssh option "ControlMaster=auto" is set automatically in all ssh-based methods, -when possible. +when possible. See `tramp-use-ssh-controlmaster-options'. +++ *** Handlers for `file-acl' and `set-file-acl' for remote machines ------------------------------------------------------------ revno: 116236 fixes bug: http://debbugs.gnu.org/16595 committer: Glenn Morris branch nick: trunk timestamp: Sat 2014-02-01 17:04:08 -0800 message: register preview fixes * doc/emacs/regs.texi (Registers): Mention previewing. * lisp/register.el (register-preview-default): New function, split from register-preview. (register-preview-function): Rename from register-preview-functions, make it not a hook. (register-preview): Use register-preview-function. (register-read-with-preview): Error on non-character event. * etc/NEWS: Related markup. diff: === modified file 'doc/emacs/ChangeLog' --- doc/emacs/ChangeLog 2014-01-29 08:27:55 +0000 +++ doc/emacs/ChangeLog 2014-02-02 01:04:08 +0000 @@ -1,3 +1,7 @@ +2014-02-02 Glenn Morris + + * regs.texi (Registers): Mention previewing. + 2014-01-29 Glenn Morris * killing.texi (Deletion): Mention cycle-spacing. === modified file 'doc/emacs/regs.texi' --- doc/emacs/regs.texi 2014-01-01 07:43:34 +0000 +++ doc/emacs/regs.texi 2014-02-02 01:04:08 +0000 @@ -29,6 +29,15 @@ Display a description of what register @var{r} contains. @end table +@vindex register-preview-delay +@cindex preview of registers + All of the commands that prompt for a register will display a +``preview'' window that lists the existing registers (if there are +any) after a short delay. To change the length of the delay, +customize @code{register-preview-delay}. To prevent this display, set +that option to @code{nil}. You can explicitly request a preview +window by pressing @kbd{C-h} or @key{F1}. + @dfn{Bookmarks} record files and positions in them, so you can return to those positions when you look at the file again. Bookmarks are similar in spirit to registers, so they are also documented in === modified file 'etc/NEWS' --- etc/NEWS 2014-01-31 17:33:12 +0000 +++ etc/NEWS 2014-02-02 01:04:08 +0000 @@ -301,6 +301,7 @@ ** Register changes ++++ *** All interactive commands that read a register (`copy-to-register', etc.) now display a temporary window after `register-preview-delay' seconds that summarizes existing registers. To disable this, set that option to nil. @@ -930,7 +931,7 @@ function-carrying place, such as process-filters or `-function' hooks. *** advice-add/advice-remove to add/remove a piece of advice on a named -function,much like `defadvice' does. +function, much like `defadvice' does. ** New package frameset.el. It provides a set of operations to save a frameset (the state of all === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-02-01 17:06:08 +0000 +++ lisp/ChangeLog 2014-02-02 01:04:08 +0000 @@ -1,3 +1,12 @@ +2014-02-02 Glenn Morris + + * register.el (register-preview-default): New function, + split from register-preview. + (register-preview-function): Rename from register-preview-functions, + make it not a hook. + (register-preview): Use register-preview-function. + (register-read-with-preview): Error on non-character event. (Bug#16595) + 2014-02-01 Dmitry Gutov * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Check for === modified file 'lisp/register.el' --- lisp/register.el 2014-01-31 06:20:29 +0000 +++ lisp/register.el 2014-02-02 01:04:08 +0000 @@ -119,11 +119,21 @@ (substring d (match-end 0)) d))) -(defvar register-preview-functions nil) +(defun register-preview-default (r) + "Default function for the variable `register-preview-function'." + (format "%s %s\n" + (concat (single-key-description (car r)) ":") + (register-describe-oneline (car r)))) + +(defvar register-preview-function #'register-preview-default + "Function to format a register for previewing. +Takes one argument, a cons (NAME . CONTENTS) as found in `register-alist'. +Returns a string.") (defun register-preview (buffer &optional show-empty) "Pop up a window to show register preview in BUFFER. -If SHOW-EMPTY is non-nil show the window even if no registers." +If SHOW-EMPTY is non-nil show the window even if no registers. +Format of each entry is controlled by the variable `register-preview-function'." (when (or show-empty (consp register-alist)) (with-temp-buffer-window buffer @@ -132,14 +142,7 @@ nil (with-current-buffer standard-output (setq cursor-in-non-selected-windows nil) - (mapc - (lambda (r) - (insert (or (run-hook-with-args-until-success - 'register-preview-functions r) - (format "%s %s\n" - (concat (single-key-description (car r)) ":") - (register-describe-oneline (car r)))))) - register-alist))))) + (insert (mapconcat register-preview-function register-alist "")))))) (defun register-read-with-preview (prompt) "Read and return an event, prompting with PROMPT, possibly showing a preview. @@ -162,7 +165,8 @@ help-chars) (unless (get-buffer-window buffer) (register-preview buffer 'show-empty))) - last-input-event) + (if (characterp last-input-event) last-input-event + (error "Non-character input-event"))) (and (timerp timer) (cancel-timer timer)) (let ((w (get-buffer-window buffer))) (and (window-live-p w) (delete-window w))) ------------------------------------------------------------ revno: 116235 fixes bug: http://debbugs.gnu.org/16615 committer: Eli Zaretskii branch nick: trunk timestamp: Sat 2014-02-01 22:10:37 +0200 message: Attempt to solve bug #16615 by using a more accurate function prototype. src/w32fns.c (Ffile_system_info): Use WINAPI in the function pointers that get the address of GetDiskFreeSpaceEx. diff: === modified file 'src/ChangeLog' --- src/ChangeLog 2014-02-01 11:53:10 +0000 +++ src/ChangeLog 2014-02-01 20:10:37 +0000 @@ -1,5 +1,8 @@ 2014-02-01 Eli Zaretskii + * w32fns.c (Ffile_system_info): Use WINAPI in the function + pointers that get the address of GetDiskFreeSpaceEx. (Bug#16615) + * print.c (Fexternal_debugging_output): If the argument character is non-ASCII, encode it with the current locale's encoding before writing the result to the terminal. (Bug#16448) === modified file 'src/w32fns.c' --- src/w32fns.c 2014-02-01 09:22:51 +0000 +++ src/w32fns.c 2014-02-01 20:10:37 +0000 @@ -7461,12 +7461,12 @@ added rather late on. */ { HMODULE hKernel = GetModuleHandle ("kernel32"); - BOOL (*pfn_GetDiskFreeSpaceExW) + BOOL (WINAPI *pfn_GetDiskFreeSpaceExW) (wchar_t *, PULARGE_INTEGER, PULARGE_INTEGER, PULARGE_INTEGER) - = (void *) GetProcAddress (hKernel, "GetDiskFreeSpaceExW"); - BOOL (*pfn_GetDiskFreeSpaceExA) + = GetProcAddress (hKernel, "GetDiskFreeSpaceExW"); + BOOL (WINAPI *pfn_GetDiskFreeSpaceExA) (char *, PULARGE_INTEGER, PULARGE_INTEGER, PULARGE_INTEGER) - = (void *) GetProcAddress (hKernel, "GetDiskFreeSpaceExA"); + = GetProcAddress (hKernel, "GetDiskFreeSpaceExA"); bool have_pfn_GetDiskFreeSpaceEx = (w32_unicode_filenames && pfn_GetDiskFreeSpaceExW || !w32_unicode_filenames && pfn_GetDiskFreeSpaceExA); ------------------------------------------------------------ revno: 116234 fixes bug: http://debbugs.gnu.org/16610 committer: Dmitry Gutov branch nick: trunk timestamp: Sat 2014-02-01 19:06:08 +0200 message: Fix bug#16610 * lisp/progmodes/ruby-mode.el (ruby-font-lock-keywords): For built-ins that require arguments, check that they're followed by something that looks like argument. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-02-01 14:54:58 +0000 +++ lisp/ChangeLog 2014-02-01 17:06:08 +0000 @@ -4,6 +4,9 @@ `:' before binary operators (bug#16609). Don't check for `:' before `[' and `(', or their syntax status. A percent literal can't end with either. + (ruby-font-lock-keywords): For built-ins that require arguments, + check that they're followed by something that looks like argument + (bug#16610). 2014-02-01 Lars Ingebrigtsen === modified file 'lisp/progmodes/ruby-mode.el' --- lisp/progmodes/ruby-mode.el 2014-02-01 14:54:58 +0000 +++ lisp/progmodes/ruby-mode.el 2014-02-01 17:06:08 +0000 @@ -2017,27 +2017,17 @@ "yield") 'symbols)) (1 font-lock-keyword-face)) - ;; Some core methods. + ;; Core methods that have required arguments. (,(concat ruby-font-lock-keyword-beg-re (regexp-opt '( ;; built-in methods on Kernel - "__callee__" - "__dir__" - "__method__" - "abort" "at_exit" "autoload" "autoload?" - "binding" - "block_given?" - "caller" "catch" "eval" "exec" - "exit" - "exit!" - "fail" "fork" "format" "lambda" @@ -2050,19 +2040,12 @@ "proc" "putc" "puts" - "raise" - "rand" - "readline" - "readlines" "require" "require_relative" - "sleep" "spawn" "sprintf" - "srand" "syscall" "system" - "throw" "trap" "warn" ;; keyword-like private methods on Module @@ -2082,6 +2065,31 @@ "refine" "using") 'symbols)) + (1 (unless (looking-at " *\\(?:[]|,.)}]\\|$\\)") + font-lock-builtin-face))) + ;; Kernel methods that have no required arguments. + (,(concat + ruby-font-lock-keyword-beg-re + (regexp-opt + '("__callee__" + "__dir__" + "__method__" + "abort" + "at_exit" + "binding" + "block_given?" + "caller" + "exit" + "exit!" + "fail" + "raise" + "rand" + "readline" + "readlines" + "sleep" + "srand" + "throw") + 'symbols)) (1 font-lock-builtin-face)) ;; Here-doc beginnings. (,ruby-here-doc-beg-re ------------------------------------------------------------ revno: 116233 fixes bug: http://debbugs.gnu.org/16609 committer: Dmitry Gutov branch nick: trunk timestamp: Sat 2014-02-01 16:54:58 +0200 message: Fix bug#16609 * lisp/progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Check for `:' before binary operators. Don't check for `:' before `[' and `(', or their syntax status. A percent literal can't end with either. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-02-01 07:55:57 +0000 +++ lisp/ChangeLog 2014-02-01 14:54:58 +0000 @@ -1,3 +1,10 @@ +2014-02-01 Dmitry Gutov + + * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Check for + `:' before binary operators (bug#16609). Don't check for `:' + before `[' and `(', or their syntax status. A percent literal + can't end with either. + 2014-02-01 Lars Ingebrigtsen * subr.el (butlast): Document what an omitted N means (bug#13437). === modified file 'lisp/progmodes/ruby-mode.el' --- lisp/progmodes/ruby-mode.el 2014-01-31 17:33:12 +0000 +++ lisp/progmodes/ruby-mode.el 2014-02-01 14:54:58 +0000 @@ -422,14 +422,17 @@ (save-excursion (skip-chars-backward " \t") (not (or (bolp) + (memq (char-before) '(?\[ ?\()) (and (memq (char-before) - '(?\; ?- ?+ ?* ?/ ?: ?. ?, ?\[ ?\( ?\\ ?& ?> ?< ?% - ?~ ?^)) + '(?\; ?- ?+ ?* ?/ ?: ?. ?, ?\\ ?& ?> ?< ?% ?~ ?^)) + ;; Not a binary operator symbol. + (not (eq (char-before (1- (point))) ?:)) ;; Not the end of a regexp or a percent literal. (not (memq (car (syntax-after (1- (point)))) '(7 15)))) (and (eq (char-before) ?\?) (equal (save-excursion (ruby-smie--backward-token)) "?")) (and (eq (char-before) ?=) + ;; Not a symbol :==, :!=, or a foo= method. (string-match "\\`\\s." (save-excursion (ruby-smie--backward-token)))) (and (eq (char-before) ?|) === modified file 'test/indent/ruby.rb' --- test/indent/ruby.rb 2014-01-31 17:13:49 +0000 +++ test/indent/ruby.rb 2014-02-01 14:54:58 +0000 @@ -135,6 +135,13 @@ # Bug#15208 if something == :== do_something + + return false unless method == :+ + x = y + z # Bug#16609 + + a = 1 ? 2 :( + 2 + 3 + ) end # Example from http://www.ruby-doc.org/docs/ProgrammingRuby/html/language.html ------------------------------------------------------------ revno: 116232 fixes bug: http://debbugs.gnu.org/16448 committer: Eli Zaretskii branch nick: trunk timestamp: Sat 2014-02-01 13:53:10 +0200 message: Fix bug #16448 with non-ASCII error messages in batch mode. src/print.c (Fexternal_debugging_output): If the argument character is non-ASCII, encode it with the current locale's encoding before writing the result to the terminal. diff: === modified file 'src/ChangeLog' --- src/ChangeLog 2014-02-01 09:22:51 +0000 +++ src/ChangeLog 2014-02-01 11:53:10 +0000 @@ -1,5 +1,9 @@ 2014-02-01 Eli Zaretskii + * print.c (Fexternal_debugging_output): If the argument character + is non-ASCII, encode it with the current locale's encoding before + writing the result to the terminal. (Bug#16448) + * w32fns.c (Fw32_shell_execute): Don't call file-exists-p for DOCUMENT that is a "remote" file name, i.e. a file-handler exists for it. (Bug#16558) === modified file 'src/print.c' --- src/print.c 2014-01-29 17:52:16 +0000 +++ src/print.c 2014-02-01 11:53:10 +0000 @@ -709,17 +709,36 @@ to make it write to the debugging output. */) (Lisp_Object character) { + unsigned int ch; + CHECK_NUMBER (character); - putc (XINT (character) & 0xFF, stderr); + ch = XINT (character); + if (ASCII_CHAR_P (ch)) + { + putc (ch, stderr); +#ifdef WINDOWSNT + /* Send the output to a debugger (nothing happens if there isn't + one). */ + if (print_output_debug_flag) + { + char buf[2] = {(char) XINT (character), '\0'}; + OutputDebugString (buf); + } +#endif + } + else + { + unsigned char mbstr[MAX_MULTIBYTE_LENGTH]; + ptrdiff_t len = CHAR_STRING (ch, mbstr); + Lisp_Object encoded_ch = + ENCODE_SYSTEM (make_multibyte_string (mbstr, 1, len)); + fwrite (SSDATA (encoded_ch), SBYTES (encoded_ch), 1, stderr); #ifdef WINDOWSNT - /* Send the output to a debugger (nothing happens if there isn't one). */ - if (print_output_debug_flag) - { - char buf[2] = {(char) XINT (character), '\0'}; - OutputDebugString (buf); + if (print_output_debug_flag) + OutputDebugString (SSDATA (encoded_ch)); +#endif } -#endif return character; } ------------------------------------------------------------ revno: 116231 committer: Glenn Morris branch nick: trunk timestamp: Sat 2014-02-01 06:17:37 -0500 message: Auto-commit of loaddefs files. diff: === modified file 'lisp/ldefs-boot.el' --- lisp/ldefs-boot.el 2013-12-28 00:00:54 +0000 +++ lisp/ldefs-boot.el 2014-02-01 11:17:37 +0000 @@ -3,7 +3,7 @@ ;;; Code: -;;;### (autoloads nil "5x5" "play/5x5.el" (21040 17194 398147 0)) +;;;### (autoloads nil "5x5" "play/5x5.el" (21187 63826 213216 0)) ;;; Generated autoloads from play/5x5.el (autoload '5x5 "5x5" "\ @@ -65,8 +65,8 @@ ;;;*** -;;;### (autoloads nil "ada-mode" "progmodes/ada-mode.el" (20998 4934 -;;;;;; 952905 0)) +;;;### (autoloads nil "ada-mode" "progmodes/ada-mode.el" (21220 61111 +;;;;;; 156047 0)) ;;; Generated autoloads from progmodes/ada-mode.el (autoload 'ada-add-extensions "ada-mode" "\ @@ -85,8 +85,8 @@ ;;;*** -;;;### (autoloads nil "ada-stmt" "progmodes/ada-stmt.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "ada-stmt" "progmodes/ada-stmt.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/ada-stmt.el (autoload 'ada-header "ada-stmt" "\ @@ -96,8 +96,8 @@ ;;;*** -;;;### (autoloads nil "ada-xref" "progmodes/ada-xref.el" (21024 28968 -;;;;;; 738399 0)) +;;;### (autoloads nil "ada-xref" "progmodes/ada-xref.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/ada-xref.el (autoload 'ada-find-file "ada-xref" "\ @@ -108,7 +108,7 @@ ;;;*** -;;;### (autoloads nil "add-log" "vc/add-log.el" (20992 52525 458637 +;;;### (autoloads nil "add-log" "vc/add-log.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from vc/add-log.el @@ -238,8 +238,8 @@ ;;;*** -;;;### (autoloads nil "advice" "emacs-lisp/advice.el" (21180 4150 -;;;;;; 280102 0)) +;;;### (autoloads nil "advice" "emacs-lisp/advice.el" (21190 39993 +;;;;;; 744837 0)) ;;; Generated autoloads from emacs-lisp/advice.el (defvar ad-redefinition-action 'warn "\ @@ -377,7 +377,7 @@ ;;;*** -;;;### (autoloads nil "align" "align.el" (21012 37798 962028 0)) +;;;### (autoloads nil "align" "align.el" (21187 63826 213216 0)) ;;; Generated autoloads from align.el (autoload 'align "align" "\ @@ -480,7 +480,7 @@ ;;;*** -;;;### (autoloads nil "allout" "allout.el" (20996 49577 892030 0)) +;;;### (autoloads nil "allout" "allout.el" (21187 63826 213216 0)) ;;; Generated autoloads from allout.el (push (purecopy '(allout 2 3)) package--builtin-versions) @@ -840,8 +840,8 @@ ;;;*** -;;;### (autoloads nil "allout-widgets" "allout-widgets.el" (21124 -;;;;;; 45367 88860 0)) +;;;### (autoloads nil "allout-widgets" "allout-widgets.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from allout-widgets.el (push (purecopy '(allout-widgets 1 0)) package--builtin-versions) @@ -899,7 +899,7 @@ ;;;*** -;;;### (autoloads nil "ange-ftp" "net/ange-ftp.el" (21032 23080 765139 +;;;### (autoloads nil "ange-ftp" "net/ange-ftp.el" (21204 37210 187838 ;;;;;; 0)) ;;; Generated autoloads from net/ange-ftp.el @@ -921,7 +921,7 @@ ;;;*** -;;;### (autoloads nil "animate" "play/animate.el" (20709 26818 907104 +;;;### (autoloads nil "animate" "play/animate.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from play/animate.el @@ -954,7 +954,7 @@ ;;;*** -;;;### (autoloads nil "ansi-color" "ansi-color.el" (21086 26537 509049 +;;;### (autoloads nil "ansi-color" "ansi-color.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from ansi-color.el (push (purecopy '(ansi-color 3 4 2)) package--builtin-versions) @@ -981,8 +981,8 @@ ;;;*** -;;;### (autoloads nil "antlr-mode" "progmodes/antlr-mode.el" (21022 -;;;;;; 34805 522289 827000)) +;;;### (autoloads nil "antlr-mode" "progmodes/antlr-mode.el" (21208 +;;;;;; 39903 471297 312000)) ;;; Generated autoloads from progmodes/antlr-mode.el (push (purecopy '(antlr-mode 2 2 3)) package--builtin-versions) @@ -1018,7 +1018,7 @@ ;;;*** -;;;### (autoloads nil "appt" "calendar/appt.el" (20992 52525 458637 +;;;### (autoloads nil "appt" "calendar/appt.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from calendar/appt.el @@ -1040,7 +1040,7 @@ ;;;*** -;;;### (autoloads nil "apropos" "apropos.el" (21169 33848 692645 +;;;### (autoloads nil "apropos" "apropos.el" (21195 23530 495420 ;;;;;; 0)) ;;; Generated autoloads from apropos.el @@ -1156,7 +1156,7 @@ ;;;*** -;;;### (autoloads nil "arc-mode" "arc-mode.el" (21168 62144 266424 +;;;### (autoloads nil "arc-mode" "arc-mode.el" (21207 49087 974317 ;;;;;; 0)) ;;; Generated autoloads from arc-mode.el @@ -1177,7 +1177,7 @@ ;;;*** -;;;### (autoloads nil "array" "array.el" (21040 17194 398147 0)) +;;;### (autoloads nil "array" "array.el" (21187 63826 213216 0)) ;;; Generated autoloads from array.el (autoload 'array-mode "array" "\ @@ -1248,8 +1248,8 @@ ;;;*** -;;;### (autoloads nil "artist" "textmodes/artist.el" (20891 18859 -;;;;;; 893295 0)) +;;;### (autoloads nil "artist" "textmodes/artist.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from textmodes/artist.el (push (purecopy '(artist 1 2 6)) package--builtin-versions) @@ -1455,8 +1455,8 @@ ;;;*** -;;;### (autoloads nil "asm-mode" "progmodes/asm-mode.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "asm-mode" "progmodes/asm-mode.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/asm-mode.el (autoload 'asm-mode "asm-mode" "\ @@ -1483,8 +1483,8 @@ ;;;*** -;;;### (autoloads nil "auth-source" "gnus/auth-source.el" (20953 -;;;;;; 16424 151515 0)) +;;;### (autoloads nil "auth-source" "gnus/auth-source.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from gnus/auth-source.el (defvar auth-source-cache-expiry 7200 "\ @@ -1496,7 +1496,8 @@ ;;;*** -;;;### (autoloads nil "autoarg" "autoarg.el" (21056 5418 85093 0)) +;;;### (autoloads nil "autoarg" "autoarg.el" (21187 63826 213216 +;;;;;; 0)) ;;; Generated autoloads from autoarg.el (defvar autoarg-mode nil "\ @@ -1556,8 +1557,8 @@ ;;;*** -;;;### (autoloads nil "autoconf" "progmodes/autoconf.el" (21116 51266 -;;;;;; 54795 0)) +;;;### (autoloads nil "autoconf" "progmodes/autoconf.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/autoconf.el (autoload 'autoconf-mode "autoconf" "\ @@ -1567,7 +1568,7 @@ ;;;*** -;;;### (autoloads nil "autoinsert" "autoinsert.el" (21056 5418 85093 +;;;### (autoloads nil "autoinsert" "autoinsert.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from autoinsert.el @@ -1606,8 +1607,8 @@ ;;;*** -;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (21105 -;;;;;; 27518 41539 966000)) +;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from emacs-lisp/autoload.el (put 'generated-autoload-file 'safe-local-variable 'stringp) @@ -1656,7 +1657,7 @@ ;;;*** -;;;### (autoloads nil "autorevert" "autorevert.el" (21158 63543 410490 +;;;### (autoloads nil "autorevert" "autorevert.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from autorevert.el @@ -1745,7 +1746,7 @@ ;;;*** -;;;### (autoloads nil "avoid" "avoid.el" (21028 26023 305371 0)) +;;;### (autoloads nil "avoid" "avoid.el" (21187 63826 213216 0)) ;;; Generated autoloads from avoid.el (defvar mouse-avoidance-mode nil "\ @@ -1785,8 +1786,8 @@ ;;;*** -;;;### (autoloads nil "bat-mode" "progmodes/bat-mode.el" (21024 28968 -;;;;;; 738399 0)) +;;;### (autoloads nil "bat-mode" "progmodes/bat-mode.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/bat-mode.el (add-to-list 'auto-mode-alist '("\\.\\(bat\\|cmd\\)\\'" . bat-mode)) @@ -1804,7 +1805,8 @@ ;;;*** -;;;### (autoloads nil "battery" "battery.el" (21096 9821 480125 690000)) +;;;### (autoloads nil "battery" "battery.el" (21187 63826 213216 +;;;;;; 0)) ;;; Generated autoloads from battery.el (put 'battery-mode-line-string 'risky-local-variable t) @@ -1839,8 +1841,8 @@ ;;;*** -;;;### (autoloads nil "benchmark" "emacs-lisp/benchmark.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "benchmark" "emacs-lisp/benchmark.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from emacs-lisp/benchmark.el (autoload 'benchmark-run "benchmark" "\ @@ -1876,8 +1878,8 @@ ;;;*** -;;;### (autoloads nil "bibtex" "textmodes/bibtex.el" (21036 20141 -;;;;;; 396718 0)) +;;;### (autoloads nil "bibtex" "textmodes/bibtex.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from textmodes/bibtex.el (autoload 'bibtex-initialize "bibtex" "\ @@ -1969,7 +1971,7 @@ ;;;*** ;;;### (autoloads nil "bibtex-style" "textmodes/bibtex-style.el" -;;;;;; (20709 26818 907104 0)) +;;;;;; (21187 63826 213216 0)) ;;; Generated autoloads from textmodes/bibtex-style.el (autoload 'bibtex-style-mode "bibtex-style" "\ @@ -1979,7 +1981,7 @@ ;;;*** -;;;### (autoloads nil "binhex" "mail/binhex.el" (20709 26818 907104 +;;;### (autoloads nil "binhex" "mail/binhex.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from mail/binhex.el @@ -2004,8 +2006,8 @@ ;;;*** -;;;### (autoloads nil "blackbox" "play/blackbox.el" (21040 17194 -;;;;;; 398147 0)) +;;;### (autoloads nil "blackbox" "play/blackbox.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from play/blackbox.el (autoload 'blackbox "blackbox" "\ @@ -2124,7 +2126,7 @@ ;;;*** -;;;### (autoloads nil "bookmark" "bookmark.el" (21040 17194 398147 +;;;### (autoloads nil "bookmark" "bookmark.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from bookmark.el (define-key ctl-x-r-map "b" 'bookmark-jump) @@ -2318,8 +2320,8 @@ ;;;*** -;;;### (autoloads nil "browse-url" "net/browse-url.el" (21168 62144 -;;;;;; 266424 0)) +;;;### (autoloads nil "browse-url" "net/browse-url.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from net/browse-url.el (defvar browse-url-browser-function 'browse-url-default-browser "\ @@ -2634,7 +2636,7 @@ ;;;*** -;;;### (autoloads nil "bs" "bs.el" (20992 52525 458637 0)) +;;;### (autoloads nil "bs" "bs.el" (21187 63826 213216 0)) ;;; Generated autoloads from bs.el (push (purecopy '(bs 1 17)) package--builtin-versions) @@ -2675,7 +2677,7 @@ ;;;*** -;;;### (autoloads nil "bubbles" "play/bubbles.el" (21041 38058 75002 +;;;### (autoloads nil "bubbles" "play/bubbles.el" (21202 31159 541460 ;;;;;; 0)) ;;; Generated autoloads from play/bubbles.el @@ -2698,7 +2700,7 @@ ;;;*** ;;;### (autoloads nil "bug-reference" "progmodes/bug-reference.el" -;;;;;; (20709 26818 907104 0)) +;;;;;; (21187 63826 213216 0)) ;;; Generated autoloads from progmodes/bug-reference.el (put 'bug-reference-url-format 'safe-local-variable (lambda (s) (or (stringp s) (and (symbolp s) (get s 'bug-reference-url-format))))) @@ -2718,8 +2720,8 @@ ;;;*** -;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (21145 -;;;;;; 51520 109004 0)) +;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (21218 +;;;;;; 19382 890650 0)) ;;; 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) @@ -2839,8 +2841,8 @@ ;;;*** -;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (21023 -;;;;;; 8104 618865 0)) +;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from calendar/cal-china.el (put 'calendar-chinese-time-zone 'risky-local-variable t) @@ -2849,8 +2851,8 @@ ;;;*** -;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from calendar/cal-dst.el (put 'calendar-daylight-savings-starts 'risky-local-variable t) @@ -2861,8 +2863,8 @@ ;;;*** -;;;### (autoloads nil "cal-hebrew" "calendar/cal-hebrew.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "cal-hebrew" "calendar/cal-hebrew.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from calendar/cal-hebrew.el (autoload 'calendar-hebrew-list-yahrzeits "cal-hebrew" "\ @@ -2876,7 +2878,7 @@ ;;;*** -;;;### (autoloads nil "calc" "calc/calc.el" (21172 10041 427978 0)) +;;;### (autoloads nil "calc" "calc/calc.el" (21187 63826 213216 0)) ;;; Generated autoloads from calc/calc.el (define-key ctl-x-map "*" 'calc-dispatch) @@ -2960,8 +2962,8 @@ ;;;*** -;;;### (autoloads nil "calc-undo" "calc/calc-undo.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "calc-undo" "calc/calc-undo.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from calc/calc-undo.el (autoload 'calc-undo "calc-undo" "\ @@ -2971,7 +2973,7 @@ ;;;*** -;;;### (autoloads nil "calculator" "calculator.el" (21031 2230 839140 +;;;### (autoloads nil "calculator" "calculator.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from calculator.el @@ -2983,8 +2985,8 @@ ;;;*** -;;;### (autoloads nil "calendar" "calendar/calendar.el" (20993 36675 -;;;;;; 840108 928000)) +;;;### (autoloads nil "calendar" "calendar/calendar.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from calendar/calendar.el (autoload 'calendar "calendar" "\ @@ -3027,7 +3029,7 @@ ;;;*** -;;;### (autoloads nil "canlock" "gnus/canlock.el" (20709 26818 907104 +;;;### (autoloads nil "canlock" "gnus/canlock.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from gnus/canlock.el @@ -3045,8 +3047,8 @@ ;;;*** -;;;### (autoloads nil "cap-words" "progmodes/cap-words.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "cap-words" "progmodes/cap-words.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from progmodes/cap-words.el (autoload 'capitalized-words-mode "cap-words" "\ @@ -3085,15 +3087,15 @@ ;;;*** -;;;### (autoloads nil "cc-compat" "progmodes/cc-compat.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "cc-compat" "progmodes/cc-compat.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from progmodes/cc-compat.el (put 'c-indent-level 'safe-local-variable 'integerp) ;;;*** -;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (21102 -;;;;;; 14759 136845 0)) +;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (21213 +;;;;;; 1461 513511 0)) ;;; Generated autoloads from progmodes/cc-engine.el (autoload 'c-guess-basic-syntax "cc-engine" "\ @@ -3103,8 +3105,8 @@ ;;;*** -;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/cc-guess.el (defvar c-guess-guessed-offsets-alist nil "\ @@ -3202,8 +3204,8 @@ ;;;*** -;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (21040 17194 -;;;;;; 398147 0)) +;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (21227 3180 +;;;;;; 84924 320000)) ;;; Generated autoloads from progmodes/cc-mode.el (autoload 'c-initialize-cc-mode "cc-mode" "\ @@ -3360,8 +3362,8 @@ ;;;*** -;;;### (autoloads nil "cc-styles" "progmodes/cc-styles.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "cc-styles" "progmodes/cc-styles.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from progmodes/cc-styles.el (autoload 'c-set-style "cc-styles" "\ @@ -3412,8 +3414,8 @@ ;;;*** -;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (20907 7082 -;;;;;; 901087 0)) +;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/cc-vars.el (put 'c-basic-offset 'safe-local-variable 'integerp) (put 'c-backslash-column 'safe-local-variable 'integerp) @@ -3421,8 +3423,8 @@ ;;;*** -;;;### (autoloads nil "ccl" "international/ccl.el" (20884 7264 412929 -;;;;;; 442000)) +;;;### (autoloads nil "ccl" "international/ccl.el" (21187 63826 213216 +;;;;;; 0)) ;;; Generated autoloads from international/ccl.el (autoload 'ccl-compile "ccl" "\ @@ -3682,8 +3684,8 @@ ;;;*** -;;;### (autoloads nil "cconv" "emacs-lisp/cconv.el" (21120 48308 -;;;;;; 922449 0)) +;;;### (autoloads nil "cconv" "emacs-lisp/cconv.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from emacs-lisp/cconv.el (autoload 'cconv-closure-convert "cconv" "\ @@ -3702,15 +3704,15 @@ ;;;*** -;;;### (autoloads nil "cedet" "cedet/cedet.el" (20983 37555 279226 +;;;### (autoloads nil "cedet" "cedet/cedet.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from cedet/cedet.el (push (purecopy '(cedet 2 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "cfengine" "progmodes/cfengine.el" (21168 12983 -;;;;;; 828381 0)) +;;;### (autoloads nil "cfengine" "progmodes/cfengine.el" (21226 13501 +;;;;;; 706948 0)) ;;; Generated autoloads from progmodes/cfengine.el (push (purecopy '(cfengine 1 3)) package--builtin-versions) @@ -3740,15 +3742,15 @@ ;;;*** -;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (21049 14338 -;;;;;; 391345 0)) +;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from emacs-lisp/chart.el (push (purecopy '(chart 0 2)) package--builtin-versions) ;;;*** ;;;### (autoloads nil "check-declare" "emacs-lisp/check-declare.el" -;;;;;; (20709 26818 907104 0)) +;;;;;; (21187 63826 213216 0)) ;;; Generated autoloads from emacs-lisp/check-declare.el (autoload 'check-declare-file "check-declare" "\ @@ -3765,8 +3767,8 @@ ;;;*** -;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (20996 -;;;;;; 49577 892030 0)) +;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (21187 +;;;;;; 63826 213216 0)) ;;; 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) @@ -3966,8 +3968,8 @@ ;;;*** -;;;### (autoloads nil "china-util" "language/china-util.el" (20799 -;;;;;; 169 640767 0)) +;;;### (autoloads nil "china-util" "language/china-util.el" (21197 +;;;;;; 43194 200483 0)) ;;; Generated autoloads from language/china-util.el (autoload 'decode-hz-region "china-util" "\ @@ -4004,7 +4006,7 @@ ;;;*** -;;;### (autoloads nil "chistory" "chistory.el" (21040 17194 398147 +;;;### (autoloads nil "chistory" "chistory.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from chistory.el @@ -4044,8 +4046,8 @@ ;;;*** -;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (21112 -;;;;;; 20657 455367 0)) +;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from emacs-lisp/cl-indent.el (autoload 'common-lisp-indent-function "cl-indent" "\ @@ -4123,8 +4125,8 @@ ;;;*** -;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (20998 4934 -;;;;;; 952905 0)) +;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from emacs-lisp/cl-lib.el (push (purecopy '(cl-lib 1 0)) package--builtin-versions) @@ -4154,8 +4156,8 @@ ;;;*** -;;;### (autoloads nil "cmacexp" "progmodes/cmacexp.el" (21082 29482 -;;;;;; 330637 0)) +;;;### (autoloads nil "cmacexp" "progmodes/cmacexp.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/cmacexp.el (autoload 'c-macro-expand "cmacexp" "\ @@ -4175,7 +4177,7 @@ ;;;*** -;;;### (autoloads nil "cmuscheme" "cmuscheme.el" (20932 61699 522706 +;;;### (autoloads nil "cmuscheme" "cmuscheme.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from cmuscheme.el @@ -4196,7 +4198,7 @@ ;;;*** -;;;### (autoloads nil "color" "color.el" (20721 17977 14204 0)) +;;;### (autoloads nil "color" "color.el" (21187 63826 213216 0)) ;;; Generated autoloads from color.el (autoload 'color-name-to-rgb "color" "\ @@ -4215,7 +4217,7 @@ ;;;*** -;;;### (autoloads nil "comint" "comint.el" (21172 10041 427978 0)) +;;;### (autoloads nil "comint" "comint.el" (21209 55410 356925 0)) ;;; Generated autoloads from comint.el (defvar comint-output-filter-functions '(ansi-color-process-output comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\ @@ -4314,8 +4316,8 @@ ;;;*** -;;;### (autoloads nil "compare-w" "vc/compare-w.el" (20992 52525 -;;;;;; 458637 0)) +;;;### (autoloads nil "compare-w" "vc/compare-w.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from vc/compare-w.el (autoload 'compare-windows "compare-w" "\ @@ -4348,8 +4350,8 @@ ;;;*** -;;;### (autoloads nil "compile" "progmodes/compile.el" (21166 57660 -;;;;;; 911600 0)) +;;;### (autoloads nil "compile" "progmodes/compile.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/compile.el (defvar compilation-mode-hook nil "\ @@ -4530,7 +4532,7 @@ ;;;*** -;;;### (autoloads nil "completion" "completion.el" (20999 25770 522517 +;;;### (autoloads nil "completion" "completion.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from completion.el @@ -4553,8 +4555,8 @@ ;;;*** -;;;### (autoloads nil "conf-mode" "textmodes/conf-mode.el" (20791 -;;;;;; 9657 561026 0)) +;;;### (autoloads nil "conf-mode" "textmodes/conf-mode.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from textmodes/conf-mode.el (autoload 'conf-mode "conf-mode" "\ @@ -4709,8 +4711,8 @@ ;;;*** -;;;### (autoloads nil "cookie1" "play/cookie1.el" (20932 61824 204300 -;;;;;; 748000)) +;;;### (autoloads nil "cookie1" "play/cookie1.el" (21187 63826 213216 +;;;;;; 0)) ;;; Generated autoloads from play/cookie1.el (autoload 'cookie "cookie1" "\ @@ -4738,8 +4740,8 @@ ;;;*** -;;;### (autoloads nil "copyright" "emacs-lisp/copyright.el" (21041 -;;;;;; 38058 75002 0)) +;;;### (autoloads nil "copyright" "emacs-lisp/copyright.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from emacs-lisp/copyright.el (put 'copyright-at-end-flag 'safe-local-variable 'booleanp) (put 'copyright-names-regexp 'safe-local-variable 'stringp) @@ -4777,8 +4779,8 @@ ;;;*** -;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (21111 -;;;;;; 33338 390427 0)) +;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (21207 +;;;;;; 49087 974317 0)) ;;; Generated autoloads from progmodes/cperl-mode.el (put 'cperl-indent-level 'safe-local-variable 'integerp) (put 'cperl-brace-offset 'safe-local-variable 'integerp) @@ -4976,8 +4978,8 @@ ;;;*** -;;;### (autoloads nil "cpp" "progmodes/cpp.el" (20874 65006 672942 -;;;;;; 217000)) +;;;### (autoloads nil "cpp" "progmodes/cpp.el" (21187 63826 213216 +;;;;;; 0)) ;;; Generated autoloads from progmodes/cpp.el (autoload 'cpp-highlight-buffer "cpp" "\ @@ -4995,7 +4997,7 @@ ;;;*** -;;;### (autoloads nil "crisp" "emulation/crisp.el" (20709 26818 907104 +;;;### (autoloads nil "crisp" "emulation/crisp.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from emulation/crisp.el @@ -5021,7 +5023,7 @@ ;;;*** -;;;### (autoloads nil "crm" "emacs-lisp/crm.el" (21034 64808 616539 +;;;### (autoloads nil "crm" "emacs-lisp/crm.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from emacs-lisp/crm.el @@ -5058,8 +5060,8 @@ ;;;*** -;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (21075 56234 -;;;;;; 349623 0)) +;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from textmodes/css-mode.el (autoload 'css-mode "css-mode" "\ @@ -5069,8 +5071,8 @@ ;;;*** -;;;### (autoloads nil "cua-base" "emulation/cua-base.el" (21166 57660 -;;;;;; 911600 0)) +;;;### (autoloads nil "cua-base" "emulation/cua-base.el" (21222 52808 +;;;;;; 160149 187000)) ;;; Generated autoloads from emulation/cua-base.el (defvar cua-mode nil "\ @@ -5106,11 +5108,6 @@ CUA bindings, or `cua-prefix-override-inhibit-delay' to change the prefix fallback behavior. -CUA mode manages Transient Mark mode internally. Trying to disable -Transient Mark mode while CUA mode is enabled does not work; if you -only want to highlight the region when it is selected using a -shifted movement key, set `cua-highlight-region-shift-only'. - \(fn &optional ARG)" t nil) (autoload 'cua-selection-mode "cua-base" "\ @@ -5120,8 +5117,8 @@ ;;;*** -;;;### (autoloads nil "cua-rect" "emulation/cua-rect.el" (21166 57660 -;;;;;; 911600 0)) +;;;### (autoloads nil "cua-rect" "emulation/cua-rect.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from emulation/cua-rect.el (autoload 'cua-rectangle-mark-mode "cua-rect" "\ @@ -5132,7 +5129,7 @@ ;;;*** -;;;### (autoloads nil "cus-edit" "cus-edit.el" (21169 33848 692645 +;;;### (autoloads nil "cus-edit" "cus-edit.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from cus-edit.el @@ -5444,7 +5441,7 @@ ;;;*** -;;;### (autoloads nil "cus-theme" "cus-theme.el" (21169 33848 692645 +;;;### (autoloads nil "cus-theme" "cus-theme.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from cus-theme.el @@ -5478,8 +5475,8 @@ ;;;*** -;;;### (autoloads nil "cvs-status" "vc/cvs-status.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "cvs-status" "vc/cvs-status.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from vc/cvs-status.el (autoload 'cvs-status-mode "cvs-status" "\ @@ -5489,7 +5486,7 @@ ;;;*** -;;;### (autoloads nil "cwarn" "progmodes/cwarn.el" (20709 26818 907104 +;;;### (autoloads nil "cwarn" "progmodes/cwarn.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from progmodes/cwarn.el (push (purecopy '(cwarn 1 3 1)) package--builtin-versions) @@ -5534,8 +5531,8 @@ ;;;*** -;;;### (autoloads nil "cyril-util" "language/cyril-util.el" (20826 -;;;;;; 45095 436233 0)) +;;;### (autoloads nil "cyril-util" "language/cyril-util.el" (21193 +;;;;;; 16180 875828 0)) ;;; Generated autoloads from language/cyril-util.el (autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\ @@ -5563,7 +5560,7 @@ ;;;*** -;;;### (autoloads nil "dabbrev" "dabbrev.el" (20992 52525 458637 +;;;### (autoloads nil "dabbrev" "dabbrev.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from dabbrev.el (put 'dabbrev-case-fold-search 'risky-local-variable t) @@ -5610,8 +5607,8 @@ ;;;*** -;;;### (autoloads nil "data-debug" "cedet/data-debug.el" (21040 17194 -;;;;;; 398147 0)) +;;;### (autoloads nil "data-debug" "cedet/data-debug.el" (21197 43194 +;;;;;; 200483 0)) ;;; Generated autoloads from cedet/data-debug.el (autoload 'data-debug-new-buffer "data-debug" "\ @@ -5621,7 +5618,7 @@ ;;;*** -;;;### (autoloads nil "dbus" "net/dbus.el" (21153 45624 746041 0)) +;;;### (autoloads nil "dbus" "net/dbus.el" (21187 63826 213216 0)) ;;; Generated autoloads from net/dbus.el (autoload 'dbus-handle-event "dbus" "\ @@ -5634,8 +5631,8 @@ ;;;*** -;;;### (autoloads nil "dcl-mode" "progmodes/dcl-mode.el" (20763 30266 -;;;;;; 231060 0)) +;;;### (autoloads nil "dcl-mode" "progmodes/dcl-mode.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/dcl-mode.el (autoload 'dcl-mode "dcl-mode" "\ @@ -5761,8 +5758,8 @@ ;;;*** -;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (21162 14870 -;;;;;; 257953 0)) +;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (21194 37048 +;;;;;; 599945 0)) ;;; Generated autoloads from emacs-lisp/debug.el (setq debugger 'debug) @@ -5805,8 +5802,8 @@ ;;;*** -;;;### (autoloads nil "decipher" "play/decipher.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "decipher" "play/decipher.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from play/decipher.el (autoload 'decipher "decipher" "\ @@ -5834,7 +5831,7 @@ ;;;*** -;;;### (autoloads nil "delim-col" "delim-col.el" (20709 26818 907104 +;;;### (autoloads nil "delim-col" "delim-col.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from delim-col.el (push (purecopy '(delim-col 2 1)) package--builtin-versions) @@ -5860,7 +5857,7 @@ ;;;*** -;;;### (autoloads nil "delsel" "delsel.el" (21160 54638 30774 0)) +;;;### (autoloads nil "delsel" "delsel.el" (21227 34360 69622 0)) ;;; Generated autoloads from delsel.el (defalias 'pending-delete-mode 'delete-selection-mode) @@ -5880,17 +5877,16 @@ is positive, and disable it otherwise. If called from Lisp, enable the mode if ARG is omitted or nil. -When Delete Selection mode is enabled, Transient Mark mode is also -enabled and typed text replaces the selection if the selection is -active. Otherwise, typed text is just inserted at point regardless of -any selection. +When Delete Selection mode is enabled, typed text replaces the selection +if the selection is active. Otherwise, typed text is just inserted at +point regardless of any selection. \(fn &optional ARG)" t nil) ;;;*** -;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (20900 33838 -;;;;;; 319219 0)) +;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from emacs-lisp/derived.el (autoload 'define-derived-mode "derived" "\ @@ -5956,7 +5952,7 @@ ;;;*** -;;;### (autoloads nil "descr-text" "descr-text.el" (21024 28968 738399 +;;;### (autoloads nil "descr-text" "descr-text.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from descr-text.el @@ -5991,7 +5987,7 @@ ;;;*** -;;;### (autoloads nil "desktop" "desktop.el" (21168 12983 828381 +;;;### (autoloads nil "desktop" "desktop.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from desktop.el @@ -6182,8 +6178,8 @@ ;;;*** -;;;### (autoloads nil "deuglify" "gnus/deuglify.el" (20791 9657 561026 -;;;;;; 0)) +;;;### (autoloads nil "deuglify" "gnus/deuglify.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/deuglify.el (autoload 'gnus-article-outlook-unwrap-lines "deuglify" "\ @@ -6215,8 +6211,8 @@ ;;;*** -;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (20992 -;;;;;; 52525 458637 0)) +;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from calendar/diary-lib.el (autoload 'diary "diary-lib" "\ @@ -6258,7 +6254,7 @@ ;;;*** -;;;### (autoloads nil "diff" "vc/diff.el" (20760 54070 584283 0)) +;;;### (autoloads nil "diff" "vc/diff.el" (21187 63826 213216 0)) ;;; Generated autoloads from vc/diff.el (defvar diff-switches (purecopy "-c") "\ @@ -6306,8 +6302,8 @@ ;;;*** -;;;### (autoloads nil "diff-mode" "vc/diff-mode.el" (21136 36544 -;;;;;; 158478 0)) +;;;### (autoloads nil "diff-mode" "vc/diff-mode.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from vc/diff-mode.el (autoload 'diff-mode "diff-mode" "\ @@ -6339,7 +6335,7 @@ ;;;*** -;;;### (autoloads nil "dig" "net/dig.el" (20709 26818 907104 0)) +;;;### (autoloads nil "dig" "net/dig.el" (21187 63826 213216 0)) ;;; Generated autoloads from net/dig.el (autoload 'dig "dig" "\ @@ -6350,7 +6346,7 @@ ;;;*** -;;;### (autoloads nil "dired" "dired.el" (21173 31085 798700 0)) +;;;### (autoloads nil "dired" "dired.el" (21222 53814 660119 962000)) ;;; Generated autoloads from dired.el (defvar dired-listing-switches (purecopy "-al") "\ @@ -6468,14 +6464,9 @@ \(fn &optional DIRNAME SWITCHES)" nil nil) (put 'dired-find-alternate-file 'disabled t) -(autoload 'dired-hide-details-mode "dired" "\ -Hide details in Dired mode. - -\(fn &optional ARG)" t nil) - ;;;*** -;;;### (autoloads nil "dirtrack" "dirtrack.el" (20709 26818 907104 +;;;### (autoloads nil "dirtrack" "dirtrack.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from dirtrack.el @@ -6506,8 +6497,8 @@ ;;;*** -;;;### (autoloads nil "disass" "emacs-lisp/disass.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "disass" "emacs-lisp/disass.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from emacs-lisp/disass.el (autoload 'disassemble "disass" "\ @@ -6521,7 +6512,7 @@ ;;;*** -;;;### (autoloads nil "disp-table" "disp-table.el" (20992 52525 458637 +;;;### (autoloads nil "disp-table" "disp-table.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from disp-table.el @@ -6643,8 +6634,8 @@ ;;;*** -;;;### (autoloads nil "dissociate" "play/dissociate.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "dissociate" "play/dissociate.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from play/dissociate.el (autoload 'dissociated-press "dissociate" "\ @@ -6660,7 +6651,7 @@ ;;;*** -;;;### (autoloads nil "dnd" "dnd.el" (21162 14870 257953 0)) +;;;### (autoloads nil "dnd" "dnd.el" (21187 63826 213216 0)) ;;; Generated autoloads from dnd.el (defvar dnd-protocol-alist `((,(purecopy "^file:///") . dnd-open-local-file) (,(purecopy "^file://") . dnd-open-file) (,(purecopy "^file:") . dnd-open-local-file) (,(purecopy "^\\(https?\\|ftp\\|file\\|nfs\\)://") . dnd-open-file)) "\ @@ -6680,8 +6671,8 @@ ;;;*** -;;;### (autoloads nil "dns-mode" "textmodes/dns-mode.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "dns-mode" "textmodes/dns-mode.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from textmodes/dns-mode.el (autoload 'dns-mode "dns-mode" "\ @@ -6704,7 +6695,7 @@ ;;;*** -;;;### (autoloads nil "doc-view" "doc-view.el" (21144 30651 337793 +;;;### (autoloads nil "doc-view" "doc-view.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from doc-view.el @@ -6751,7 +6742,7 @@ ;;;*** -;;;### (autoloads nil "doctor" "play/doctor.el" (20709 26818 907104 +;;;### (autoloads nil "doctor" "play/doctor.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from play/doctor.el @@ -6762,7 +6753,7 @@ ;;;*** -;;;### (autoloads nil "double" "double.el" (20709 26818 907104 0)) +;;;### (autoloads nil "double" "double.el" (21187 63826 213216 0)) ;;; Generated autoloads from double.el (autoload 'double-mode "double" "\ @@ -6778,7 +6769,7 @@ ;;;*** -;;;### (autoloads nil "dunnet" "play/dunnet.el" (20900 33838 319219 +;;;### (autoloads nil "dunnet" "play/dunnet.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from play/dunnet.el (push (purecopy '(dunnet 2 1)) package--builtin-versions) @@ -6790,8 +6781,8 @@ ;;;*** -;;;### (autoloads nil "easy-mmode" "emacs-lisp/easy-mmode.el" (20992 -;;;;;; 52525 458637 0)) +;;;### (autoloads nil "easy-mmode" "emacs-lisp/easy-mmode.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from emacs-lisp/easy-mmode.el (defalias 'easy-mmode-define-minor-mode 'define-minor-mode) @@ -6930,8 +6921,8 @@ ;;;*** -;;;### (autoloads nil "easymenu" "emacs-lisp/easymenu.el" (21074 -;;;;;; 35375 473679 0)) +;;;### (autoloads nil "easymenu" "emacs-lisp/easymenu.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from emacs-lisp/easymenu.el (autoload 'easy-menu-define "easymenu" "\ @@ -7069,8 +7060,8 @@ ;;;*** -;;;### (autoloads nil "ebnf2ps" "progmodes/ebnf2ps.el" (21093 51745 -;;;;;; 752738 587000)) +;;;### (autoloads nil "ebnf2ps" "progmodes/ebnf2ps.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/ebnf2ps.el (push (purecopy '(ebnf2ps 4 4)) package--builtin-versions) @@ -7335,8 +7326,8 @@ ;;;*** -;;;### (autoloads nil "ebrowse" "progmodes/ebrowse.el" (20992 52525 -;;;;;; 458637 0)) +;;;### (autoloads nil "ebrowse" "progmodes/ebrowse.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/ebrowse.el (autoload 'ebrowse-tree-mode "ebrowse" "\ @@ -7484,7 +7475,7 @@ ;;;*** -;;;### (autoloads nil "ebuff-menu" "ebuff-menu.el" (20992 52525 458637 +;;;### (autoloads nil "ebuff-menu" "ebuff-menu.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from ebuff-menu.el @@ -7517,8 +7508,8 @@ ;;;*** -;;;### (autoloads nil "echistory" "echistory.el" (21040 46773 613700 -;;;;;; 854000)) +;;;### (autoloads nil "echistory" "echistory.el" (21187 63826 213216 +;;;;;; 0)) ;;; Generated autoloads from echistory.el (autoload 'Electric-command-history-redo-expression "echistory" "\ @@ -7529,8 +7520,8 @@ ;;;*** -;;;### (autoloads nil "ecomplete" "gnus/ecomplete.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "ecomplete" "gnus/ecomplete.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/ecomplete.el (autoload 'ecomplete-setup "ecomplete" "\ @@ -7540,7 +7531,7 @@ ;;;*** -;;;### (autoloads nil "ede" "cedet/ede.el" (20908 27948 216644 0)) +;;;### (autoloads nil "ede" "cedet/ede.el" (21187 63826 213216 0)) ;;; Generated autoloads from cedet/ede.el (push (purecopy '(ede 1 2)) package--builtin-versions) @@ -7566,22 +7557,22 @@ ;;;*** -;;;### (autoloads nil "ede/dired" "cedet/ede/dired.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "ede/dired" "cedet/ede/dired.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from cedet/ede/dired.el (push (purecopy '(dired 0 4)) package--builtin-versions) ;;;*** ;;;### (autoloads nil "ede/project-am" "cedet/ede/project-am.el" -;;;;;; (20881 10343 547564 552000)) +;;;;;; (21187 63826 213216 0)) ;;; Generated autoloads from cedet/ede/project-am.el (push (purecopy '(project-am 0 0 3)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (21172 10041 -;;;;;; 427978 0)) +;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (21205 7349 +;;;;;; 58947 0)) ;;; Generated autoloads from emacs-lisp/edebug.el (defvar edebug-all-defs nil "\ @@ -7645,7 +7636,7 @@ ;;;*** -;;;### (autoloads nil "ediff" "vc/ediff.el" (21041 38058 75002 0)) +;;;### (autoloads nil "ediff" "vc/ediff.el" (21187 63826 213216 0)) ;;; Generated autoloads from vc/ediff.el (push (purecopy '(ediff 2 81 4)) package--builtin-versions) @@ -7917,8 +7908,8 @@ ;;;*** -;;;### (autoloads nil "ediff-help" "vc/ediff-help.el" (20992 52525 -;;;;;; 458637 0)) +;;;### (autoloads nil "ediff-help" "vc/ediff-help.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from vc/ediff-help.el (autoload 'ediff-customize "ediff-help" "\ @@ -7928,8 +7919,8 @@ ;;;*** -;;;### (autoloads nil "ediff-mult" "vc/ediff-mult.el" (21032 23080 -;;;;;; 765139 0)) +;;;### (autoloads nil "ediff-mult" "vc/ediff-mult.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from vc/ediff-mult.el (autoload 'ediff-show-registry "ediff-mult" "\ @@ -7941,8 +7932,8 @@ ;;;*** -;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (21032 23080 -;;;;;; 765139 0)) +;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from vc/ediff-util.el (autoload 'ediff-toggle-multiframe "ediff-util" "\ @@ -7961,8 +7952,8 @@ ;;;*** -;;;### (autoloads nil "edmacro" "edmacro.el" (20964 20753 310858 -;;;;;; 446000)) +;;;### (autoloads nil "edmacro" "edmacro.el" (21187 63826 213216 +;;;;;; 0)) ;;; Generated autoloads from edmacro.el (push (purecopy '(edmacro 2 1)) package--builtin-versions) @@ -8011,7 +8002,7 @@ ;;;*** -;;;### (autoloads nil "edt" "emulation/edt.el" (20709 26818 907104 +;;;### (autoloads nil "edt" "emulation/edt.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from emulation/edt.el @@ -8029,7 +8020,7 @@ ;;;*** -;;;### (autoloads nil "ehelp" "ehelp.el" (20992 52525 458637 0)) +;;;### (autoloads nil "ehelp" "ehelp.el" (21187 63826 213216 0)) ;;; Generated autoloads from ehelp.el (autoload 'with-electric-help "ehelp" "\ @@ -8065,15 +8056,15 @@ ;;;*** -;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (21051 23094 -;;;;;; 730130 282000)) +;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (21226 13617 +;;;;;; 810122 433000)) ;;; Generated autoloads from emacs-lisp/eieio.el (push (purecopy '(eieio 1 4)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (20908 -;;;;;; 27948 216644 0)) +;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from emacs-lisp/eieio-core.el (push (purecopy '(eieio-core 1 4)) package--builtin-versions) @@ -8089,54 +8080,8 @@ ;;;*** -;;;### (autoloads nil "eieio-custom" "emacs-lisp/eieio-custom.el" -;;;;;; (20929 34089 117790 0)) -;;; Generated autoloads from emacs-lisp/eieio-custom.el - -(autoload 'customize-object "eieio-custom" "\ -Customize OBJ in a custom buffer. -Optional argument GROUP is the sub-group of slots to display. - -\(fn OBJ &optional GROUP)" nil nil) - -;;;*** - -;;;### (autoloads nil "eieio-opt" "emacs-lisp/eieio-opt.el" (20892 -;;;;;; 39729 858825 0)) -;;; Generated autoloads from emacs-lisp/eieio-opt.el - -(autoload 'eieio-browse "eieio-opt" "\ -Create an object browser window to show all objects. -If optional ROOT-CLASS, then start with that, otherwise start with -variable `eieio-default-superclass'. - -\(fn &optional ROOT-CLASS)" t nil) -(defalias 'describe-class 'eieio-describe-class) - -(autoload 'eieio-describe-class "eieio-opt" "\ -Describe a CLASS defined by a string or symbol. -If CLASS is actually an object, then also display current values of that object. -Optional HEADERFCN should be called to insert a few bits of info first. - -\(fn CLASS &optional HEADERFCN)" t nil) - -(autoload 'eieio-describe-constructor "eieio-opt" "\ -Describe the constructor function FCN. -Uses `eieio-describe-class' to describe the class being constructed. - -\(fn FCN)" t nil) -(defalias 'describe-generic 'eieio-describe-generic) - -(autoload 'eieio-describe-generic "eieio-opt" "\ -Describe the generic function GENERIC. -Also extracts information about all methods specific to this generic. - -\(fn GENERIC)" t nil) - -;;;*** - -;;;### (autoloads nil "eldoc" "emacs-lisp/eldoc.el" (21151 3895 80024 -;;;;;; 0)) +;;;### (autoloads nil "eldoc" "emacs-lisp/eldoc.el" (21226 13501 +;;;;;; 706948 0)) ;;; Generated autoloads from emacs-lisp/eldoc.el (defvar eldoc-minor-mode-string (purecopy " ElDoc") "\ @@ -8159,19 +8104,7 @@ \(fn &optional ARG)" t nil) -(autoload 'eldoc-post-insert-mode "eldoc" "\ -Toggle Eldoc-Post-Insert mode on or off. -With a prefix argument ARG, enable Eldoc-Post-Insert mode if ARG is -positive, and disable it otherwise. If called from Lisp, enable -the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'. -\\{eldoc-post-insert-mode-map} - -\(fn &optional ARG)" t nil) - -(autoload 'turn-on-eldoc-mode "eldoc" "\ -Unequivocally turn on ElDoc mode (see command `eldoc-mode'). - -\(fn)" t nil) +(define-obsolete-function-alias 'turn-on-eldoc-mode 'eldoc-mode "24.4") (defvar eldoc-documentation-function nil "\ If non-nil, function to call to return doc string. @@ -8191,7 +8124,7 @@ ;;;*** -;;;### (autoloads nil "elec-pair" "elec-pair.el" (21182 3308 974772 +;;;### (autoloads nil "elec-pair" "elec-pair.el" (21193 16180 875828 ;;;;;; 0)) ;;; Generated autoloads from elec-pair.el @@ -8227,7 +8160,7 @@ ;;;*** -;;;### (autoloads nil "elide-head" "elide-head.el" (20709 26818 907104 +;;;### (autoloads nil "elide-head" "elide-head.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from elide-head.el @@ -8243,8 +8176,8 @@ ;;;*** -;;;### (autoloads nil "elint" "emacs-lisp/elint.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "elint" "emacs-lisp/elint.el" (21195 23530 +;;;;;; 495420 0)) ;;; Generated autoloads from emacs-lisp/elint.el (autoload 'elint-file "elint" "\ @@ -8279,7 +8212,7 @@ ;;;*** -;;;### (autoloads nil "elp" "emacs-lisp/elp.el" (21162 14870 257953 +;;;### (autoloads nil "elp" "emacs-lisp/elp.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from emacs-lisp/elp.el @@ -8314,7 +8247,7 @@ ;;;*** -;;;### (autoloads nil "emacs-lock" "emacs-lock.el" (21148 27704 136341 +;;;### (autoloads nil "emacs-lock" "emacs-lock.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from emacs-lock.el @@ -8342,8 +8275,8 @@ ;;;*** -;;;### (autoloads nil "emacsbug" "mail/emacsbug.el" (21168 62143 -;;;;;; 582255 88000)) +;;;### (autoloads nil "emacsbug" "mail/emacsbug.el" (21198 34110 +;;;;;; 565653 0)) ;;; Generated autoloads from mail/emacsbug.el (autoload 'report-emacs-bug "emacsbug" "\ @@ -8415,8 +8348,8 @@ ;;;*** -;;;### (autoloads nil "enriched" "textmodes/enriched.el" (21136 36544 -;;;;;; 158478 0)) +;;;### (autoloads nil "enriched" "textmodes/enriched.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from textmodes/enriched.el (autoload 'enriched-mode "enriched" "\ @@ -8451,7 +8384,7 @@ ;;;*** -;;;### (autoloads nil "epa" "epa.el" (21034 64808 616539 0)) +;;;### (autoloads nil "epa" "epa.el" (21220 61111 156047 0)) ;;; Generated autoloads from epa.el (autoload 'epa-list-keys "epa" "\ @@ -8629,7 +8562,7 @@ ;;;*** -;;;### (autoloads nil "epa-dired" "epa-dired.el" (20709 26818 907104 +;;;### (autoloads nil "epa-dired" "epa-dired.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from epa-dired.el @@ -8655,7 +8588,7 @@ ;;;*** -;;;### (autoloads nil "epa-file" "epa-file.el" (21149 48568 226247 +;;;### (autoloads nil "epa-file" "epa-file.el" (21205 7349 58947 ;;;;;; 0)) ;;; Generated autoloads from epa-file.el @@ -8676,7 +8609,7 @@ ;;;*** -;;;### (autoloads nil "epa-mail" "epa-mail.el" (20978 19624 657047 +;;;### (autoloads nil "epa-mail" "epa-mail.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from epa-mail.el @@ -8754,7 +8687,7 @@ ;;;*** -;;;### (autoloads nil "epg" "epg.el" (21069 17449 167398 0)) +;;;### (autoloads nil "epg" "epg.el" (21194 37048 599945 0)) ;;; Generated autoloads from epg.el (push (purecopy '(epg 1 0 0)) package--builtin-versions) @@ -8765,7 +8698,7 @@ ;;;*** -;;;### (autoloads nil "epg-config" "epg-config.el" (20709 26818 907104 +;;;### (autoloads nil "epg-config" "epg-config.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from epg-config.el @@ -8786,7 +8719,7 @@ ;;;*** -;;;### (autoloads nil "erc" "erc/erc.el" (21053 29224 547064 0)) +;;;### (autoloads nil "erc" "erc/erc.el" (21227 34360 69622 0)) ;;; Generated autoloads from erc/erc.el (push (purecopy '(erc 5 3)) package--builtin-versions) @@ -8835,35 +8768,35 @@ ;;;*** -;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from erc/erc-autoaway.el (autoload 'erc-autoaway-mode "erc-autoaway") ;;;*** -;;;### (autoloads nil "erc-button" "erc/erc-button.el" (21139 12727 -;;;;;; 345232 0)) +;;;### (autoloads nil "erc-button" "erc/erc-button.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from erc/erc-button.el (autoload 'erc-button-mode "erc-button" nil t) ;;;*** -;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from erc/erc-capab.el (autoload 'erc-capab-identify-mode "erc-capab" nil t) ;;;*** -;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from erc/erc-compat.el (autoload 'erc-define-minor-mode "erc-compat") ;;;*** -;;;### (autoloads nil "erc-dcc" "erc/erc-dcc.el" (20759 33211 414988 +;;;### (autoloads nil "erc-dcc" "erc/erc-dcc.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from erc/erc-dcc.el (autoload 'erc-dcc-mode "erc-dcc") @@ -8894,14 +8827,14 @@ ;;;*** ;;;### (autoloads nil "erc-desktop-notifications" "erc/erc-desktop-notifications.el" -;;;;;; (21042 58928 39127 0)) +;;;;;; (21187 63826 213216 0)) ;;; Generated autoloads from erc/erc-desktop-notifications.el (autoload 'erc-notifications-mode "erc-desktop-notifications" "" t) ;;;*** -;;;### (autoloads nil "erc-ezbounce" "erc/erc-ezbounce.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "erc-ezbounce" "erc/erc-ezbounce.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from erc/erc-ezbounce.el (autoload 'erc-cmd-ezb "erc-ezbounce" "\ @@ -8963,7 +8896,7 @@ ;;;*** -;;;### (autoloads nil "erc-fill" "erc/erc-fill.el" (20709 26818 907104 +;;;### (autoloads nil "erc-fill" "erc/erc-fill.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from erc/erc-fill.el (autoload 'erc-fill-mode "erc-fill" nil t) @@ -8976,8 +8909,8 @@ ;;;*** -;;;### (autoloads nil "erc-identd" "erc/erc-identd.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "erc-identd" "erc/erc-identd.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from erc/erc-identd.el (autoload 'erc-identd-mode "erc-identd") @@ -8998,8 +8931,8 @@ ;;;*** -;;;### (autoloads nil "erc-imenu" "erc/erc-imenu.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "erc-imenu" "erc/erc-imenu.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from erc/erc-imenu.el (autoload 'erc-create-imenu-index "erc-imenu" "\ @@ -9009,21 +8942,21 @@ ;;;*** -;;;### (autoloads nil "erc-join" "erc/erc-join.el" (20709 26818 907104 +;;;### (autoloads nil "erc-join" "erc/erc-join.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from erc/erc-join.el (autoload 'erc-autojoin-mode "erc-join" nil t) ;;;*** -;;;### (autoloads nil "erc-lang" "erc/erc-lang.el" (20709 26818 907104 +;;;### (autoloads nil "erc-lang" "erc/erc-lang.el" (21193 16180 875828 ;;;;;; 0)) ;;; Generated autoloads from erc/erc-lang.el (push (purecopy '(erc-lang 1 0 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "erc-list" "erc/erc-list.el" (21050 53033 774595 +;;;### (autoloads nil "erc-list" "erc/erc-list.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from erc/erc-list.el (push (purecopy '(erc-list 0 1)) package--builtin-versions) @@ -9031,7 +8964,7 @@ ;;;*** -;;;### (autoloads nil "erc-log" "erc/erc-log.el" (20891 18859 893295 +;;;### (autoloads nil "erc-log" "erc/erc-log.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from erc/erc-log.el (autoload 'erc-log-mode "erc-log" nil t) @@ -9061,8 +8994,8 @@ ;;;*** -;;;### (autoloads nil "erc-match" "erc/erc-match.el" (20763 30266 -;;;;;; 231060 0)) +;;;### (autoloads nil "erc-match" "erc/erc-match.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from erc/erc-match.el (autoload 'erc-match-mode "erc-match") @@ -9108,15 +9041,15 @@ ;;;*** -;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (20884 7264 412929 -;;;;;; 442000)) +;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (21187 63826 213216 +;;;;;; 0)) ;;; Generated autoloads from erc/erc-menu.el (autoload 'erc-menu-mode "erc-menu" nil t) ;;;*** -;;;### (autoloads nil "erc-netsplit" "erc/erc-netsplit.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "erc-netsplit" "erc/erc-netsplit.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from erc/erc-netsplit.el (autoload 'erc-netsplit-mode "erc-netsplit") @@ -9127,8 +9060,8 @@ ;;;*** -;;;### (autoloads nil "erc-networks" "erc/erc-networks.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "erc-networks" "erc/erc-networks.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from erc/erc-networks.el (autoload 'erc-determine-network "erc-networks" "\ @@ -9145,8 +9078,8 @@ ;;;*** -;;;### (autoloads nil "erc-notify" "erc/erc-notify.el" (21013 58662 -;;;;;; 278539 0)) +;;;### (autoloads nil "erc-notify" "erc/erc-notify.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from erc/erc-notify.el (autoload 'erc-notify-mode "erc-notify" nil t) @@ -9164,36 +9097,36 @@ ;;;*** -;;;### (autoloads nil "erc-page" "erc/erc-page.el" (20709 26818 907104 +;;;### (autoloads nil "erc-page" "erc/erc-page.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from erc/erc-page.el (autoload 'erc-page-mode "erc-page") ;;;*** -;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (21112 -;;;;;; 20657 455367 0)) +;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from erc/erc-pcomplete.el (autoload 'erc-completion-mode "erc-pcomplete" nil t) ;;;*** -;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from erc/erc-replace.el (autoload 'erc-replace-mode "erc-replace") ;;;*** -;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (20884 7264 412929 -;;;;;; 442000)) +;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (21187 63826 213216 +;;;;;; 0)) ;;; Generated autoloads from erc/erc-ring.el (autoload 'erc-ring-mode "erc-ring" nil t) ;;;*** -;;;### (autoloads nil "erc-services" "erc/erc-services.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "erc-services" "erc/erc-services.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from erc/erc-services.el (autoload 'erc-services-mode "erc-services" nil t) @@ -9210,15 +9143,15 @@ ;;;*** -;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from erc/erc-sound.el (autoload 'erc-sound-mode "erc-sound") ;;;*** -;;;### (autoloads nil "erc-speedbar" "erc/erc-speedbar.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "erc-speedbar" "erc/erc-speedbar.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from erc/erc-speedbar.el (autoload 'erc-speedbar-browser "erc-speedbar" "\ @@ -9229,22 +9162,22 @@ ;;;*** -;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from erc/erc-spelling.el (autoload 'erc-spelling-mode "erc-spelling" nil t) ;;;*** -;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from erc/erc-stamp.el (autoload 'erc-timestamp-mode "erc-stamp" nil t) ;;;*** -;;;### (autoloads nil "erc-track" "erc/erc-track.el" (21013 58662 -;;;;;; 278539 0)) +;;;### (autoloads nil "erc-track" "erc/erc-track.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from erc/erc-track.el (defvar erc-track-minor-mode nil "\ @@ -9269,8 +9202,8 @@ ;;;*** -;;;### (autoloads nil "erc-truncate" "erc/erc-truncate.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "erc-truncate" "erc/erc-truncate.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from erc/erc-truncate.el (autoload 'erc-truncate-mode "erc-truncate" nil t) @@ -9289,7 +9222,7 @@ ;;;*** -;;;### (autoloads nil "erc-xdcc" "erc/erc-xdcc.el" (20709 26818 907104 +;;;### (autoloads nil "erc-xdcc" "erc/erc-xdcc.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from erc/erc-xdcc.el (autoload 'erc-xdcc-mode "erc-xdcc") @@ -9301,7 +9234,7 @@ ;;;*** -;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (21170 54711 780344 +;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from emacs-lisp/ert.el @@ -9367,8 +9300,8 @@ ;;;*** -;;;### (autoloads nil "ert-x" "emacs-lisp/ert-x.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "ert-x" "emacs-lisp/ert-x.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from emacs-lisp/ert-x.el (put 'ert-with-test-buffer 'lisp-indent-function 1) @@ -9380,8 +9313,8 @@ ;;;*** -;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (21048 47760 -;;;;;; 436258 0)) +;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (21213 1461 +;;;;;; 513511 0)) ;;; Generated autoloads from eshell/esh-mode.el (autoload 'eshell-mode "esh-mode" "\ @@ -9391,7 +9324,7 @@ ;;;*** -;;;### (autoloads nil "eshell" "eshell/eshell.el" (21042 9718 407372 +;;;### (autoloads nil "eshell" "eshell/eshell.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from eshell/eshell.el (push (purecopy '(eshell 2 4 2)) package--builtin-versions) @@ -9427,7 +9360,7 @@ ;;;*** -;;;### (autoloads nil "etags" "progmodes/etags.el" (20992 52525 458637 +;;;### (autoloads nil "etags" "progmodes/etags.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from progmodes/etags.el @@ -9736,8 +9669,8 @@ ;;;*** -;;;### (autoloads nil "ethio-util" "language/ethio-util.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "ethio-util" "language/ethio-util.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from language/ethio-util.el (autoload 'setup-ethiopic-environment-internal "ethio-util" "\ @@ -9905,7 +9838,7 @@ ;;;*** -;;;### (autoloads nil "eudc" "net/eudc.el" (21040 17194 398147 0)) +;;;### (autoloads nil "eudc" "net/eudc.el" (21187 63826 213216 0)) ;;; Generated autoloads from net/eudc.el (autoload 'eudc-set-server "eudc" "\ @@ -9959,7 +9892,7 @@ ;;;*** -;;;### (autoloads nil "eudc-bob" "net/eudc-bob.el" (20791 9657 561026 +;;;### (autoloads nil "eudc-bob" "net/eudc-bob.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from net/eudc-bob.el @@ -9995,8 +9928,8 @@ ;;;*** -;;;### (autoloads nil "eudc-export" "net/eudc-export.el" (20871 33574 -;;;;;; 214287 0)) +;;;### (autoloads nil "eudc-export" "net/eudc-export.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from net/eudc-export.el (autoload 'eudc-insert-record-at-point-into-bbdb "eudc-export" "\ @@ -10012,8 +9945,8 @@ ;;;*** -;;;### (autoloads nil "eudc-hotlist" "net/eudc-hotlist.el" (21040 -;;;;;; 17194 398147 0)) +;;;### (autoloads nil "eudc-hotlist" "net/eudc-hotlist.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from net/eudc-hotlist.el (autoload 'eudc-edit-hotlist "eudc-hotlist" "\ @@ -10023,7 +9956,7 @@ ;;;*** -;;;### (autoloads nil "ewoc" "emacs-lisp/ewoc.el" (20709 26818 907104 +;;;### (autoloads nil "ewoc" "emacs-lisp/ewoc.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from emacs-lisp/ewoc.el @@ -10050,7 +9983,7 @@ ;;;*** -;;;### (autoloads nil "eww" "net/eww.el" (21180 4150 280102 0)) +;;;### (autoloads nil "eww" "net/eww.el" (21220 61111 156047 0)) ;;; Generated autoloads from net/eww.el (autoload 'eww "eww" "\ @@ -10073,8 +10006,8 @@ ;;;*** -;;;### (autoloads nil "executable" "progmodes/executable.el" (21041 -;;;;;; 38058 75002 0)) +;;;### (autoloads nil "executable" "progmodes/executable.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from progmodes/executable.el (autoload 'executable-command-find-posix-p "executable" "\ @@ -10115,7 +10048,7 @@ ;;;*** -;;;### (autoloads nil "expand" "expand.el" (20709 26818 907104 0)) +;;;### (autoloads nil "expand" "expand.el" (21187 63826 213216 0)) ;;; Generated autoloads from expand.el (autoload 'expand-add-abbrevs "expand" "\ @@ -10164,7 +10097,7 @@ ;;;*** -;;;### (autoloads nil "f90" "progmodes/f90.el" (21176 7093 848315 +;;;### (autoloads nil "f90" "progmodes/f90.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from progmodes/f90.el @@ -10232,7 +10165,7 @@ ;;;*** -;;;### (autoloads nil "face-remap" "face-remap.el" (21176 7093 848315 +;;;### (autoloads nil "face-remap" "face-remap.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from face-remap.el @@ -10447,7 +10380,7 @@ ;;;*** -;;;### (autoloads nil "ffap" "ffap.el" (21090 23592 994673 0)) +;;;### (autoloads nil "ffap" "ffap.el" (21187 63826 213216 0)) ;;; Generated autoloads from ffap.el (autoload 'ffap-next "ffap" "\ @@ -10510,7 +10443,7 @@ ;;;*** -;;;### (autoloads nil "filecache" "filecache.el" (20998 4934 952905 +;;;### (autoloads nil "filecache" "filecache.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from filecache.el @@ -10568,7 +10501,7 @@ ;;;*** -;;;### (autoloads nil "filenotify" "filenotify.el" (21142 14078 948441 +;;;### (autoloads nil "filenotify" "filenotify.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from filenotify.el @@ -10581,7 +10514,7 @@ ;;;*** -;;;### (autoloads nil "files-x" "files-x.el" (20938 49065 383398 +;;;### (autoloads nil "files-x" "files-x.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from files-x.el @@ -10647,7 +10580,7 @@ ;;;*** -;;;### (autoloads nil "filesets" "filesets.el" (20999 25770 522517 +;;;### (autoloads nil "filesets" "filesets.el" (21194 37048 599945 ;;;;;; 0)) ;;; Generated autoloads from filesets.el @@ -10659,7 +10592,7 @@ ;;;*** -;;;### (autoloads nil "find-cmd" "find-cmd.el" (20709 26818 907104 +;;;### (autoloads nil "find-cmd" "find-cmd.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from find-cmd.el (push (purecopy '(find-cmd 0 6)) package--builtin-versions) @@ -10680,7 +10613,7 @@ ;;;*** -;;;### (autoloads nil "find-dired" "find-dired.el" (20763 30266 231060 +;;;### (autoloads nil "find-dired" "find-dired.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from find-dired.el @@ -10719,7 +10652,7 @@ ;;;*** -;;;### (autoloads nil "find-file" "find-file.el" (20999 25770 522517 +;;;### (autoloads nil "find-file" "find-file.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from find-file.el @@ -10810,8 +10743,8 @@ ;;;*** -;;;### (autoloads nil "find-func" "emacs-lisp/find-func.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "find-func" "emacs-lisp/find-func.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from emacs-lisp/find-func.el (autoload 'find-library "find-func" "\ @@ -10969,7 +10902,7 @@ ;;;*** -;;;### (autoloads nil "find-lisp" "find-lisp.el" (20993 35788 926781 +;;;### (autoloads nil "find-lisp" "find-lisp.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from find-lisp.el @@ -10990,7 +10923,7 @@ ;;;*** -;;;### (autoloads nil "finder" "finder.el" (21031 2230 839140 0)) +;;;### (autoloads nil "finder" "finder.el" (21187 63826 213216 0)) ;;; Generated autoloads from finder.el (push (purecopy '(finder 1 0)) package--builtin-versions) @@ -11012,7 +10945,7 @@ ;;;*** -;;;### (autoloads nil "flow-ctrl" "flow-ctrl.el" (20709 26818 907104 +;;;### (autoloads nil "flow-ctrl" "flow-ctrl.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from flow-ctrl.el @@ -11034,8 +10967,8 @@ ;;;*** -;;;### (autoloads nil "flow-fill" "gnus/flow-fill.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "flow-fill" "gnus/flow-fill.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/flow-fill.el (autoload 'fill-flowed-encode "flow-fill" "\ @@ -11050,8 +10983,8 @@ ;;;*** -;;;### (autoloads nil "flymake" "progmodes/flymake.el" (21156 21817 -;;;;;; 133919 0)) +;;;### (autoloads nil "flymake" "progmodes/flymake.el" (21220 61111 +;;;;;; 156047 0)) ;;; Generated autoloads from progmodes/flymake.el (push (purecopy '(flymake 0 3)) package--builtin-versions) @@ -11081,8 +11014,8 @@ ;;;*** -;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (20847 51240 -;;;;;; 240216 0)) +;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from textmodes/flyspell.el (autoload 'flyspell-prog-mode "flyspell" "\ @@ -11152,14 +11085,14 @@ ;;;*** -;;;### (autoloads nil "foldout" "foldout.el" (20709 26818 907104 +;;;### (autoloads nil "foldout" "foldout.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from foldout.el (push (purecopy '(foldout 1 10)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "follow" "follow.el" (21049 14338 391345 0)) +;;;### (autoloads nil "follow" "follow.el" (21207 49087 974317 0)) ;;; Generated autoloads from follow.el (autoload 'turn-on-follow-mode "follow" "\ @@ -11185,7 +11118,7 @@ This means that whenever one window is moved, all the others will follow. (Hence the name Follow mode.) -* Should the point (cursor) end up outside a window, another +* Should point (cursor) end up outside a window, another window displaying that point is selected, if possible. This makes it possible to walk between windows using normal cursor movement commands. @@ -11227,8 +11160,8 @@ ;;;*** -;;;### (autoloads nil "footnote" "mail/footnote.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "footnote" "mail/footnote.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from mail/footnote.el (push (purecopy '(footnote 0 19)) package--builtin-versions) @@ -11247,7 +11180,7 @@ ;;;*** -;;;### (autoloads nil "forms" "forms.el" (20999 25770 522517 0)) +;;;### (autoloads nil "forms" "forms.el" (21187 63826 213216 0)) ;;; Generated autoloads from forms.el (autoload 'forms-mode "forms" "\ @@ -11283,8 +11216,8 @@ ;;;*** -;;;### (autoloads nil "fortran" "progmodes/fortran.el" (20992 52525 -;;;;;; 458637 0)) +;;;### (autoloads nil "fortran" "progmodes/fortran.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/fortran.el (autoload 'fortran-mode "fortran" "\ @@ -11361,8 +11294,8 @@ ;;;*** -;;;### (autoloads nil "fortune" "play/fortune.el" (20765 36517 595445 -;;;;;; 191000)) +;;;### (autoloads nil "fortune" "play/fortune.el" (21187 63826 213216 +;;;;;; 0)) ;;; Generated autoloads from play/fortune.el (autoload 'fortune-add-fortune "fortune" "\ @@ -11410,7 +11343,7 @@ ;;;*** -;;;### (autoloads nil "frameset" "frameset.el" (21005 64551 555603 +;;;### (autoloads nil "frameset" "frameset.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from frameset.el @@ -11571,15 +11504,15 @@ ;;;*** -;;;### (autoloads nil "gamegrid" "play/gamegrid.el" (20752 26925 -;;;;;; 124734 677000)) +;;;### (autoloads nil "gamegrid" "play/gamegrid.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from play/gamegrid.el (push (purecopy '(gamegrid 1 2)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (21148 27704 -;;;;;; 136341 0)) +;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/gdb-mi.el (defvar gdb-enable-debug nil "\ @@ -11656,8 +11589,8 @@ ;;;*** -;;;### (autoloads nil "generic" "emacs-lisp/generic.el" (20928 13222 -;;;;;; 500272 0)) +;;;### (autoloads nil "generic" "emacs-lisp/generic.el" (21202 31159 +;;;;;; 541460 0)) ;;; Generated autoloads from emacs-lisp/generic.el (defvar generic-mode-list nil "\ @@ -11737,8 +11670,8 @@ ;;;*** -;;;### (autoloads nil "glasses" "progmodes/glasses.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "glasses" "progmodes/glasses.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/glasses.el (autoload 'glasses-mode "glasses" "\ @@ -11752,8 +11685,8 @@ ;;;*** -;;;### (autoloads nil "gmm-utils" "gnus/gmm-utils.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "gmm-utils" "gnus/gmm-utils.el" (21197 43194 +;;;;;; 200483 0)) ;;; Generated autoloads from gnus/gmm-utils.el (autoload 'gmm-regexp-concat "gmm-utils" "\ @@ -11807,7 +11740,7 @@ ;;;*** -;;;### (autoloads nil "gnus" "gnus/gnus.el" (21180 4150 280102 0)) +;;;### (autoloads nil "gnus" "gnus/gnus.el" (21187 63826 213216 0)) ;;; Generated autoloads from gnus/gnus.el (push (purecopy '(gnus 5 13)) package--builtin-versions) (when (fboundp 'custom-autoload) @@ -11857,8 +11790,8 @@ ;;;*** -;;;### (autoloads nil "gnus-agent" "gnus/gnus-agent.el" (21048 47760 -;;;;;; 436258 0)) +;;;### (autoloads nil "gnus-agent" "gnus/gnus-agent.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/gnus-agent.el (autoload 'gnus-unplugged "gnus-agent" "\ @@ -11948,8 +11881,8 @@ ;;;*** -;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (21172 10041 -;;;;;; 427978 0)) +;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (21227 851 585414 +;;;;;; 0)) ;;; Generated autoloads from gnus/gnus-art.el (autoload 'gnus-article-prepare-display "gnus-art" "\ @@ -11959,8 +11892,8 @@ ;;;*** -;;;### (autoloads nil "gnus-bookmark" "gnus/gnus-bookmark.el" (21040 -;;;;;; 17194 398147 0)) +;;;### (autoloads nil "gnus-bookmark" "gnus/gnus-bookmark.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from gnus/gnus-bookmark.el (autoload 'gnus-bookmark-set "gnus-bookmark" "\ @@ -11983,8 +11916,8 @@ ;;;*** -;;;### (autoloads nil "gnus-cache" "gnus/gnus-cache.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "gnus-cache" "gnus/gnus-cache.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/gnus-cache.el (autoload 'gnus-jog-cache "gnus-cache" "\ @@ -12025,8 +11958,8 @@ ;;;*** -;;;### (autoloads nil "gnus-delay" "gnus/gnus-delay.el" (20988 22031 -;;;;;; 837044 0)) +;;;### (autoloads nil "gnus-delay" "gnus/gnus-delay.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/gnus-delay.el (autoload 'gnus-delay-article "gnus-delay" "\ @@ -12061,8 +11994,8 @@ ;;;*** -;;;### (autoloads nil "gnus-diary" "gnus/gnus-diary.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "gnus-diary" "gnus/gnus-diary.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/gnus-diary.el (autoload 'gnus-user-format-function-d "gnus-diary" "\ @@ -12077,8 +12010,8 @@ ;;;*** -;;;### (autoloads nil "gnus-dired" "gnus/gnus-dired.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "gnus-dired" "gnus/gnus-dired.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/gnus-dired.el (autoload 'turn-on-gnus-dired-mode "gnus-dired" "\ @@ -12088,8 +12021,8 @@ ;;;*** -;;;### (autoloads nil "gnus-draft" "gnus/gnus-draft.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "gnus-draft" "gnus/gnus-draft.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/gnus-draft.el (autoload 'gnus-draft-reminder "gnus-draft" "\ @@ -12099,8 +12032,8 @@ ;;;*** -;;;### (autoloads nil "gnus-fun" "gnus/gnus-fun.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "gnus-fun" "gnus/gnus-fun.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/gnus-fun.el (autoload 'gnus-random-x-face "gnus-fun" "\ @@ -12144,8 +12077,8 @@ ;;;*** -;;;### (autoloads nil "gnus-gravatar" "gnus/gnus-gravatar.el" (20874 -;;;;;; 65006 176325 548000)) +;;;### (autoloads nil "gnus-gravatar" "gnus/gnus-gravatar.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from gnus/gnus-gravatar.el (autoload 'gnus-treat-from-gravatar "gnus-gravatar" "\ @@ -12162,8 +12095,8 @@ ;;;*** -;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (21172 10041 -;;;;;; 427978 0)) +;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/gnus-group.el (autoload 'gnus-fetch-group "gnus-group" "\ @@ -12180,8 +12113,8 @@ ;;;*** -;;;### (autoloads nil "gnus-html" "gnus/gnus-html.el" (21141 54458 -;;;;;; 609734 0)) +;;;### (autoloads nil "gnus-html" "gnus/gnus-html.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/gnus-html.el (autoload 'gnus-article-html "gnus-html" "\ @@ -12196,8 +12129,8 @@ ;;;*** -;;;### (autoloads nil "gnus-kill" "gnus/gnus-kill.el" (21040 17194 -;;;;;; 398147 0)) +;;;### (autoloads nil "gnus-kill" "gnus/gnus-kill.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/gnus-kill.el (defalias 'gnus-batch-kill 'gnus-batch-score) @@ -12210,7 +12143,7 @@ ;;;*** -;;;### (autoloads nil "gnus-ml" "gnus/gnus-ml.el" (20709 26818 907104 +;;;### (autoloads nil "gnus-ml" "gnus/gnus-ml.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from gnus/gnus-ml.el @@ -12234,8 +12167,8 @@ ;;;*** -;;;### (autoloads nil "gnus-mlspl" "gnus/gnus-mlspl.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "gnus-mlspl" "gnus/gnus-mlspl.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/gnus-mlspl.el (autoload 'gnus-group-split-setup "gnus-mlspl" "\ @@ -12335,8 +12268,8 @@ ;;;*** -;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (21157 42680 -;;;;;; 708839 0)) +;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/gnus-msg.el (autoload 'gnus-msg-mail "gnus-msg" "\ @@ -12363,7 +12296,7 @@ ;;;*** ;;;### (autoloads nil "gnus-notifications" "gnus/gnus-notifications.el" -;;;;;; (20886 939 575794 0)) +;;;;;; (21187 63826 213216 0)) ;;; Generated autoloads from gnus/gnus-notifications.el (autoload 'gnus-notifications "gnus-notifications" "\ @@ -12379,8 +12312,8 @@ ;;;*** -;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (20874 65006 -;;;;;; 672942 217000)) +;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/gnus-picon.el (autoload 'gnus-treat-from-picon "gnus-picon" "\ @@ -12403,8 +12336,8 @@ ;;;*** -;;;### (autoloads nil "gnus-range" "gnus/gnus-range.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "gnus-range" "gnus/gnus-range.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/gnus-range.el (autoload 'gnus-sorted-difference "gnus-range" "\ @@ -12471,8 +12404,8 @@ ;;;*** -;;;### (autoloads nil "gnus-registry" "gnus/gnus-registry.el" (20955 -;;;;;; 58152 201869 0)) +;;;### (autoloads nil "gnus-registry" "gnus/gnus-registry.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from gnus/gnus-registry.el (autoload 'gnus-registry-initialize "gnus-registry" "\ @@ -12487,8 +12420,8 @@ ;;;*** -;;;### (autoloads nil "gnus-sieve" "gnus/gnus-sieve.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "gnus-sieve" "gnus/gnus-sieve.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/gnus-sieve.el (autoload 'gnus-sieve-update "gnus-sieve" "\ @@ -12515,8 +12448,8 @@ ;;;*** -;;;### (autoloads nil "gnus-spec" "gnus/gnus-spec.el" (21172 10041 -;;;;;; 427978 0)) +;;;### (autoloads nil "gnus-spec" "gnus/gnus-spec.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/gnus-spec.el (autoload 'gnus-update-format "gnus-spec" "\ @@ -12526,8 +12459,8 @@ ;;;*** -;;;### (autoloads nil "gnus-start" "gnus/gnus-start.el" (20986 60038 -;;;;;; 720063 0)) +;;;### (autoloads nil "gnus-start" "gnus/gnus-start.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/gnus-start.el (autoload 'gnus-declare-backend "gnus-start" "\ @@ -12537,8 +12470,8 @@ ;;;*** -;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (21181 25015 -;;;;;; 517479 0)) +;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (21227 851 585414 +;;;;;; 0)) ;;; Generated autoloads from gnus/gnus-sum.el (autoload 'gnus-summary-bookmark-jump "gnus-sum" "\ @@ -12549,8 +12482,8 @@ ;;;*** -;;;### (autoloads nil "gnus-sync" "gnus/gnus-sync.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "gnus-sync" "gnus/gnus-sync.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/gnus-sync.el (autoload 'gnus-sync-initialize "gnus-sync" "\ @@ -12565,8 +12498,8 @@ ;;;*** -;;;### (autoloads nil "gnus-win" "gnus/gnus-win.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "gnus-win" "gnus/gnus-win.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/gnus-win.el (autoload 'gnus-add-configuration "gnus-win" "\ @@ -12576,7 +12509,7 @@ ;;;*** -;;;### (autoloads nil "gnutls" "net/gnutls.el" (21177 27957 288172 +;;;### (autoloads nil "gnutls" "net/gnutls.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from net/gnutls.el @@ -12593,7 +12526,7 @@ ;;;*** -;;;### (autoloads nil "gomoku" "play/gomoku.el" (21139 62016 336404 +;;;### (autoloads nil "gomoku" "play/gomoku.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from play/gomoku.el @@ -12620,8 +12553,8 @@ ;;;*** -;;;### (autoloads nil "goto-addr" "net/goto-addr.el" (20766 6456 -;;;;;; 368550 0)) +;;;### (autoloads nil "goto-addr" "net/goto-addr.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from net/goto-addr.el (define-obsolete-function-alias 'goto-address-at-mouse 'goto-address-at-point "22.1") @@ -12662,8 +12595,8 @@ ;;;*** -;;;### (autoloads nil "gravatar" "gnus/gravatar.el" (20901 54695 -;;;;;; 989166 0)) +;;;### (autoloads nil "gravatar" "gnus/gravatar.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/gravatar.el (autoload 'gravatar-retrieve "gravatar" "\ @@ -12679,7 +12612,7 @@ ;;;*** -;;;### (autoloads nil "grep" "progmodes/grep.el" (21173 31085 798700 +;;;### (autoloads nil "grep" "progmodes/grep.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from progmodes/grep.el @@ -12843,7 +12776,7 @@ ;;;*** -;;;### (autoloads nil "gs" "gs.el" (20709 26818 907104 0)) +;;;### (autoloads nil "gs" "gs.el" (21187 63826 213216 0)) ;;; Generated autoloads from gs.el (autoload 'gs-load-image "gs" "\ @@ -12856,7 +12789,7 @@ ;;;*** -;;;### (autoloads nil "gud" "progmodes/gud.el" (21126 691 872266 +;;;### (autoloads nil "gud" "progmodes/gud.el" (21207 49087 974317 ;;;;;; 0)) ;;; Generated autoloads from progmodes/gud.el @@ -12945,7 +12878,7 @@ ;;;*** -;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (21168 12983 828381 +;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from emacs-lisp/gv.el @@ -13048,8 +12981,8 @@ ;;;*** -;;;### (autoloads nil "handwrite" "play/handwrite.el" (20791 9657 -;;;;;; 561026 0)) +;;;### (autoloads nil "handwrite" "play/handwrite.el" (21207 49087 +;;;;;; 974317 0)) ;;; Generated autoloads from play/handwrite.el (autoload 'handwrite "handwrite" "\ @@ -13094,8 +13027,8 @@ ;;;*** -;;;### (autoloads nil "hashcash" "mail/hashcash.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "hashcash" "mail/hashcash.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from mail/hashcash.el (autoload 'hashcash-insert-payment "hashcash" "\ @@ -13137,7 +13070,7 @@ ;;;*** -;;;### (autoloads nil "help-at-pt" "help-at-pt.el" (20709 26818 907104 +;;;### (autoloads nil "help-at-pt" "help-at-pt.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from help-at-pt.el @@ -13265,7 +13198,7 @@ ;;;*** -;;;### (autoloads nil "help-fns" "help-fns.el" (21156 21817 133919 +;;;### (autoloads nil "help-fns" "help-fns.el" (21198 34110 565653 ;;;;;; 0)) ;;; Generated autoloads from help-fns.el @@ -13345,7 +13278,7 @@ ;;;*** -;;;### (autoloads nil "help-macro" "help-macro.el" (20992 52525 458637 +;;;### (autoloads nil "help-macro" "help-macro.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from help-macro.el @@ -13360,7 +13293,7 @@ ;;;*** -;;;### (autoloads nil "help-mode" "help-mode.el" (21170 54711 780344 +;;;### (autoloads nil "help-mode" "help-mode.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from help-mode.el @@ -13460,8 +13393,8 @@ ;;;*** -;;;### (autoloads nil "helper" "emacs-lisp/helper.el" (20992 52525 -;;;;;; 458637 0)) +;;;### (autoloads nil "helper" "emacs-lisp/helper.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from emacs-lisp/helper.el (autoload 'Helper-describe-bindings "helper" "\ @@ -13476,7 +13409,7 @@ ;;;*** -;;;### (autoloads nil "hexl" "hexl.el" (20763 30266 231060 0)) +;;;### (autoloads nil "hexl" "hexl.el" (21226 13501 706948 0)) ;;; Generated autoloads from hexl.el (autoload 'hexl-mode "hexl" "\ @@ -13570,7 +13503,7 @@ ;;;*** -;;;### (autoloads nil "hi-lock" "hi-lock.el" (21173 31085 798700 +;;;### (autoloads nil "hi-lock" "hi-lock.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from hi-lock.el @@ -13741,8 +13674,8 @@ ;;;*** -;;;### (autoloads nil "hideif" "progmodes/hideif.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "hideif" "progmodes/hideif.el" (21223 37302 +;;;;;; 81938 0)) ;;; Generated autoloads from progmodes/hideif.el (autoload 'hide-ifdef-mode "hideif" "\ @@ -13785,8 +13718,8 @@ ;;;*** -;;;### (autoloads nil "hideshow" "progmodes/hideshow.el" (20791 9657 -;;;;;; 561026 0)) +;;;### (autoloads nil "hideshow" "progmodes/hideshow.el" (21187 63826 +;;;;;; 213216 0)) ;;; 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))) "\ @@ -13848,7 +13781,7 @@ ;;;*** -;;;### (autoloads nil "hilit-chg" "hilit-chg.el" (20992 52525 458637 +;;;### (autoloads nil "hilit-chg" "hilit-chg.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from hilit-chg.el @@ -13980,7 +13913,7 @@ ;;;*** -;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (20992 52525 458637 +;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (21224 58166 697544 ;;;;;; 0)) ;;; Generated autoloads from hippie-exp.el (push (purecopy '(hippie-exp 1 6)) package--builtin-versions) @@ -14013,7 +13946,7 @@ ;;;*** -;;;### (autoloads nil "hl-line" "hl-line.el" (21172 10041 427978 +;;;### (autoloads nil "hl-line" "hl-line.el" (21195 23530 495420 ;;;;;; 0)) ;;; Generated autoloads from hl-line.el @@ -14063,8 +13996,8 @@ ;;;*** -;;;### (autoloads nil "holidays" "calendar/holidays.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "holidays" "calendar/holidays.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from calendar/holidays.el (define-obsolete-variable-alias 'general-holidays 'holiday-general-holidays "23.1") @@ -14212,8 +14145,8 @@ ;;;*** -;;;### (autoloads nil "html2text" "gnus/html2text.el" (20791 9657 -;;;;;; 561026 0)) +;;;### (autoloads nil "html2text" "gnus/html2text.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/html2text.el (autoload 'html2text "html2text" "\ @@ -14223,8 +14156,8 @@ ;;;*** -;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (21124 45614 -;;;;;; 800155 912000)) +;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (21220 61111 +;;;;;; 156047 0)) ;;; Generated autoloads from htmlfontify.el (push (purecopy '(htmlfontify 0 21)) package--builtin-versions) @@ -14257,7 +14190,7 @@ ;;;*** -;;;### (autoloads nil "ibuf-macs" "ibuf-macs.el" (20709 26818 907104 +;;;### (autoloads nil "ibuf-macs" "ibuf-macs.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from ibuf-macs.el @@ -14346,7 +14279,7 @@ ;;;*** -;;;### (autoloads nil "ibuffer" "ibuffer.el" (21105 26139 752484 +;;;### (autoloads nil "ibuffer" "ibuffer.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from ibuffer.el @@ -14386,8 +14319,8 @@ ;;;*** -;;;### (autoloads nil "icalendar" "calendar/icalendar.el" (21077 -;;;;;; 65494 651556 676000)) +;;;### (autoloads nil "icalendar" "calendar/icalendar.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from calendar/icalendar.el (push (purecopy '(icalendar 0 19)) package--builtin-versions) @@ -14440,7 +14373,7 @@ ;;;*** -;;;### (autoloads nil "icomplete" "icomplete.el" (21182 3308 974772 +;;;### (autoloads nil "icomplete" "icomplete.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from icomplete.el @@ -14463,7 +14396,7 @@ ;;;*** -;;;### (autoloads nil "icon" "progmodes/icon.el" (20709 26818 907104 +;;;### (autoloads nil "icon" "progmodes/icon.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from progmodes/icon.el @@ -14504,8 +14437,8 @@ ;;;*** -;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (20938 -;;;;;; 49065 383398 0)) +;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (21195 +;;;;;; 23530 495420 0)) ;;; Generated autoloads from progmodes/idlw-shell.el (autoload 'idlwave-shell "idlw-shell" "\ @@ -14530,8 +14463,8 @@ ;;;*** -;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (20929 34089 -;;;;;; 117790 0)) +;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (21222 16439 +;;;;;; 978802 0)) ;;; Generated autoloads from progmodes/idlwave.el (push (purecopy '(idlwave 6 1 22)) package--builtin-versions) @@ -14659,7 +14592,7 @@ ;;;*** -;;;### (autoloads nil "ido" "ido.el" (21103 35626 321341 0)) +;;;### (autoloads nil "ido" "ido.el" (21227 34360 69622 0)) ;;; Generated autoloads from ido.el (defvar ido-mode nil "\ @@ -14918,7 +14851,7 @@ ;;;*** -;;;### (autoloads nil "ielm" "ielm.el" (21172 10041 427978 0)) +;;;### (autoloads nil "ielm" "ielm.el" (21226 13501 706948 0)) ;;; Generated autoloads from ielm.el (autoload 'ielm "ielm" "\ @@ -14930,7 +14863,7 @@ ;;;*** -;;;### (autoloads nil "iimage" "iimage.el" (20709 26818 907104 0)) +;;;### (autoloads nil "iimage" "iimage.el" (21187 63826 213216 0)) ;;; Generated autoloads from iimage.el (define-obsolete-function-alias 'turn-on-iimage-mode 'iimage-mode "24.1") @@ -14946,7 +14879,7 @@ ;;;*** -;;;### (autoloads nil "image" "image.el" (21107 32686 465643 0)) +;;;### (autoloads nil "image" "image.el" (21215 43189 822371 0)) ;;; Generated autoloads from image.el (autoload 'image-type-from-data "image" "\ @@ -15139,8 +15072,8 @@ ;;;*** -;;;### (autoloads nil "image-dired" "image-dired.el" (20971 46377 -;;;;;; 737658 0)) +;;;### (autoloads nil "image-dired" "image-dired.el" (21194 37048 +;;;;;; 599945 0)) ;;; Generated autoloads from image-dired.el (push (purecopy '(image-dired 0 4 11)) package--builtin-versions) @@ -15277,7 +15210,7 @@ ;;;*** -;;;### (autoloads nil "image-file" "image-file.el" (20709 26818 907104 +;;;### (autoloads nil "image-file" "image-file.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from image-file.el @@ -15340,7 +15273,7 @@ ;;;*** -;;;### (autoloads nil "image-mode" "image-mode.el" (21005 64551 555603 +;;;### (autoloads nil "image-mode" "image-mode.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from image-mode.el @@ -15388,7 +15321,7 @@ ;;;*** -;;;### (autoloads nil "imenu" "imenu.el" (21145 51520 109004 0)) +;;;### (autoloads nil "imenu" "imenu.el" (21187 63826 213216 0)) ;;; Generated autoloads from imenu.el (defvar imenu-sort-function nil "\ @@ -15526,8 +15459,8 @@ ;;;*** -;;;### (autoloads nil "ind-util" "language/ind-util.el" (20826 45095 -;;;;;; 436233 0)) +;;;### (autoloads nil "ind-util" "language/ind-util.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from language/ind-util.el (autoload 'indian-compose-region "ind-util" "\ @@ -15557,8 +15490,8 @@ ;;;*** -;;;### (autoloads nil "inf-lisp" "progmodes/inf-lisp.el" (21098 17703 -;;;;;; 588969 0)) +;;;### (autoloads nil "inf-lisp" "progmodes/inf-lisp.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/inf-lisp.el (autoload 'inferior-lisp "inf-lisp" "\ @@ -15576,7 +15509,7 @@ ;;;*** -;;;### (autoloads nil "info" "info.el" (21040 17194 398147 0)) +;;;### (autoloads nil "info" "info.el" (21203 52022 581300 0)) ;;; Generated autoloads from info.el (defcustom Info-default-directory-list (let* ((config-dir (file-name-as-directory (or (and (featurep 'ns) (let ((dir (expand-file-name "../info" data-directory))) (if (file-directory-p dir) dir))) configure-info-directory))) (prefixes (prune-directory-list '("/usr/local/" "/usr/" "/opt/" "/"))) (suffixes '("share/" "" "gnu/" "gnu/lib/" "gnu/lib/emacs/" "emacs/" "lib/" "lib/emacs/")) (standard-info-dirs (apply #'nconc (mapcar (lambda (pfx) (let ((dirs (mapcar (lambda (sfx) (concat pfx sfx "info/")) suffixes))) (prune-directory-list dirs))) prefixes))) (dirs (if (member config-dir standard-info-dirs) (nconc standard-info-dirs (list config-dir)) (cons config-dir standard-info-dirs)))) (if (not (eq system-type 'windows-nt)) dirs (let* ((instdir (file-name-directory invocation-directory)) (dir1 (expand-file-name "../info/" instdir)) (dir2 (expand-file-name "../../../info/" instdir))) (cond ((file-exists-p dir1) (append dirs (list dir1))) ((file-exists-p dir2) (append dirs (list dir2))) (t dirs))))) "\ @@ -15787,7 +15720,7 @@ ;;;*** -;;;### (autoloads nil "info-look" "info-look.el" (20854 24486 190633 +;;;### (autoloads nil "info-look" "info-look.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from info-look.el @@ -15835,7 +15768,7 @@ ;;;*** -;;;### (autoloads nil "info-xref" "info-xref.el" (20947 64044 876888 +;;;### (autoloads nil "info-xref" "info-xref.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from info-xref.el (push (purecopy '(info-xref 3)) package--builtin-versions) @@ -15919,7 +15852,7 @@ ;;;*** -;;;### (autoloads nil "informat" "informat.el" (20774 566 676067 +;;;### (autoloads nil "informat" "informat.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from informat.el @@ -15965,8 +15898,8 @@ ;;;*** -;;;### (autoloads nil "inversion" "cedet/inversion.el" (20745 310 -;;;;;; 425822 0)) +;;;### (autoloads nil "inversion" "cedet/inversion.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from cedet/inversion.el (push (purecopy '(inversion 1 3)) package--builtin-versions) @@ -15978,8 +15911,8 @@ ;;;*** -;;;### (autoloads nil "isearch-x" "international/isearch-x.el" (20922 -;;;;;; 60838 997229 0)) +;;;### (autoloads nil "isearch-x" "international/isearch-x.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from international/isearch-x.el (autoload 'isearch-toggle-specified-input-method "isearch-x" "\ @@ -15999,7 +15932,7 @@ ;;;*** -;;;### (autoloads nil "isearchb" "isearchb.el" (21172 10041 427978 +;;;### (autoloads nil "isearchb" "isearchb.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from isearchb.el (push (purecopy '(isearchb 1 5)) package--builtin-versions) @@ -16014,8 +15947,8 @@ ;;;*** -;;;### (autoloads nil "iso-cvt" "international/iso-cvt.el" (20791 -;;;;;; 9657 561026 0)) +;;;### (autoloads nil "iso-cvt" "international/iso-cvt.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from international/iso-cvt.el (autoload 'iso-spanish "iso-cvt" "\ @@ -16106,15 +16039,15 @@ ;;;*** ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" -;;;;;; (20791 9657 561026 0)) +;;;;;; (21187 63826 213216 0)) ;;; Generated autoloads from international/iso-transl.el (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) (autoload 'iso-transl-ctl-x-8-map "iso-transl" "Keymap for C-x 8 prefix." t 'keymap) ;;;*** -;;;### (autoloads nil "ispell" "textmodes/ispell.el" (21118 6587 -;;;;;; 141205 0)) +;;;### (autoloads nil "ispell" "textmodes/ispell.el" (21227 34360 +;;;;;; 69622 0)) ;;; Generated autoloads from textmodes/ispell.el (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) @@ -16347,7 +16280,7 @@ ;;;*** -;;;### (autoloads nil "iswitchb" "iswitchb.el" (21162 14870 257953 +;;;### (autoloads nil "iswitchb" "iswitchb.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from iswitchb.el @@ -16373,8 +16306,8 @@ ;;;*** -;;;### (autoloads nil "japan-util" "language/japan-util.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "japan-util" "language/japan-util.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from language/japan-util.el (autoload 'setup-japanese-environment-internal "japan-util" "\ @@ -16451,8 +16384,8 @@ ;;;*** -;;;### (autoloads nil "jka-compr" "jka-compr.el" (20998 4934 952905 -;;;;;; 0)) +;;;### (autoloads nil "jka-compr" "jka-compr.el" (21208 39894 970127 +;;;;;; 901000)) ;;; Generated autoloads from jka-compr.el (defvar jka-compr-inhibit nil "\ @@ -16475,7 +16408,7 @@ ;;;*** -;;;### (autoloads nil "js" "progmodes/js.el" (21157 42680 708839 +;;;### (autoloads nil "js" "progmodes/js.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from progmodes/js.el (push (purecopy '(js 9)) package--builtin-versions) @@ -16488,14 +16421,14 @@ ;;;*** -;;;### (autoloads nil "json" "json.el" (21139 12727 345232 0)) +;;;### (autoloads nil "json" "json.el" (21187 63826 213216 0)) ;;; Generated autoloads from json.el (push (purecopy '(json 1 4)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "keypad" "emulation/keypad.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "keypad" "emulation/keypad.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from emulation/keypad.el (defvar keypad-setup nil "\ @@ -16550,8 +16483,8 @@ ;;;*** -;;;### (autoloads nil "kinsoku" "international/kinsoku.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "kinsoku" "international/kinsoku.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from international/kinsoku.el (autoload 'kinsoku "kinsoku" "\ @@ -16572,7 +16505,7 @@ ;;;*** -;;;### (autoloads nil "kkc" "international/kkc.el" (20998 4934 952905 +;;;### (autoloads nil "kkc" "international/kkc.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from international/kkc.el @@ -16595,7 +16528,7 @@ ;;;*** -;;;### (autoloads nil "kmacro" "kmacro.el" (21176 7093 848315 0)) +;;;### (autoloads nil "kmacro" "kmacro.el" (21187 63826 213216 0)) ;;; Generated autoloads from kmacro.el (global-set-key "\C-x(" 'kmacro-start-macro) (global-set-key "\C-x)" 'kmacro-end-macro) @@ -16706,8 +16639,8 @@ ;;;*** -;;;### (autoloads nil "korea-util" "language/korea-util.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "korea-util" "language/korea-util.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from language/korea-util.el (defvar default-korean-keyboard (purecopy (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "")) "\ @@ -16721,8 +16654,8 @@ ;;;*** -;;;### (autoloads nil "landmark" "play/landmark.el" (21040 47148 -;;;;;; 604043 521000)) +;;;### (autoloads nil "landmark" "play/landmark.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from play/landmark.el (defalias 'landmark-repeat 'landmark-test-run) @@ -16752,8 +16685,8 @@ ;;;*** -;;;### (autoloads nil "lao-util" "language/lao-util.el" (20826 45095 -;;;;;; 436233 0)) +;;;### (autoloads nil "lao-util" "language/lao-util.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from language/lao-util.el (autoload 'lao-compose-string "lao-util" "\ @@ -16790,8 +16723,8 @@ ;;;*** -;;;### (autoloads nil "latexenc" "international/latexenc.el" (20799 -;;;;;; 169 640767 0)) +;;;### (autoloads nil "latexenc" "international/latexenc.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from international/latexenc.el (defvar latex-inputenc-coding-alist (purecopy '(("ansinew" . windows-1252) ("applemac" . mac-roman) ("ascii" . us-ascii) ("cp1250" . windows-1250) ("cp1252" . windows-1252) ("cp1257" . cp1257) ("cp437de" . cp437) ("cp437" . cp437) ("cp850" . cp850) ("cp852" . cp852) ("cp858" . cp858) ("cp865" . cp865) ("latin1" . iso-8859-1) ("latin2" . iso-8859-2) ("latin3" . iso-8859-3) ("latin4" . iso-8859-4) ("latin5" . iso-8859-5) ("latin9" . iso-8859-15) ("next" . next) ("utf8" . utf-8) ("utf8x" . utf-8))) "\ @@ -16823,7 +16756,7 @@ ;;;*** ;;;### (autoloads nil "latin1-disp" "international/latin1-disp.el" -;;;;;; (20826 45095 436233 0)) +;;;;;; (21187 63826 213216 0)) ;;; Generated autoloads from international/latin1-disp.el (defvar latin1-display nil "\ @@ -16864,8 +16797,8 @@ ;;;*** -;;;### (autoloads nil "ld-script" "progmodes/ld-script.el" (20874 -;;;;;; 62962 290468 0)) +;;;### (autoloads nil "ld-script" "progmodes/ld-script.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from progmodes/ld-script.el (autoload 'ld-script-mode "ld-script" "\ @@ -16875,7 +16808,7 @@ ;;;*** -;;;### (autoloads nil "life" "play/life.el" (21048 47760 436258 0)) +;;;### (autoloads nil "life" "play/life.el" (21187 63826 213216 0)) ;;; Generated autoloads from play/life.el (autoload 'life "life" "\ @@ -16888,7 +16821,7 @@ ;;;*** -;;;### (autoloads nil "linum" "linum.el" (21100 59431 520894 0)) +;;;### (autoloads nil "linum" "linum.el" (21187 63826 213216 0)) ;;; Generated autoloads from linum.el (push (purecopy '(linum 0 9 24)) package--builtin-versions) @@ -16925,7 +16858,7 @@ ;;;*** -;;;### (autoloads nil "loadhist" "loadhist.el" (21126 691 872266 +;;;### (autoloads nil "loadhist" "loadhist.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from loadhist.el @@ -16957,7 +16890,7 @@ ;;;*** -;;;### (autoloads nil "locate" "locate.el" (21040 17194 398147 0)) +;;;### (autoloads nil "locate" "locate.el" (21187 63826 213216 0)) ;;; Generated autoloads from locate.el (defvar locate-ls-subdir-switches (purecopy "-al") "\ @@ -17009,7 +16942,7 @@ ;;;*** -;;;### (autoloads nil "log-edit" "vc/log-edit.el" (21172 10041 427978 +;;;### (autoloads nil "log-edit" "vc/log-edit.el" (21204 16865 279294 ;;;;;; 0)) ;;; Generated autoloads from vc/log-edit.el @@ -17041,7 +16974,7 @@ ;;;*** -;;;### (autoloads nil "log-view" "vc/log-view.el" (20986 13739 89657 +;;;### (autoloads nil "log-view" "vc/log-view.el" (21195 57908 940910 ;;;;;; 0)) ;;; Generated autoloads from vc/log-view.el @@ -17052,7 +16985,7 @@ ;;;*** -;;;### (autoloads nil "lpr" "lpr.el" (21104 56491 538513 0)) +;;;### (autoloads nil "lpr" "lpr.el" (21194 37048 599945 0)) ;;; Generated autoloads from lpr.el (defvar lpr-windows-system (memq system-type '(ms-dos windows-nt)) "\ @@ -17147,7 +17080,7 @@ ;;;*** -;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (21170 54711 780344 +;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from ls-lisp.el @@ -17159,7 +17092,7 @@ ;;;*** -;;;### (autoloads nil "lunar" "calendar/lunar.el" (20709 26818 907104 +;;;### (autoloads nil "lunar" "calendar/lunar.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from calendar/lunar.el @@ -17174,8 +17107,8 @@ ;;;*** -;;;### (autoloads nil "m4-mode" "progmodes/m4-mode.el" (20874 62962 -;;;;;; 290468 0)) +;;;### (autoloads nil "m4-mode" "progmodes/m4-mode.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/m4-mode.el (autoload 'm4-mode "m4-mode" "\ @@ -17185,7 +17118,7 @@ ;;;*** -;;;### (autoloads nil "macros" "macros.el" (20709 26818 907104 0)) +;;;### (autoloads nil "macros" "macros.el" (21187 63826 213216 0)) ;;; Generated autoloads from macros.el (autoload 'name-last-kbd-macro "macros" "\ @@ -17273,8 +17206,8 @@ ;;;*** -;;;### (autoloads nil "mail-extr" "mail/mail-extr.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "mail-extr" "mail/mail-extr.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from mail/mail-extr.el (autoload 'mail-extract-address-components "mail-extr" "\ @@ -17304,8 +17237,8 @@ ;;;*** -;;;### (autoloads nil "mail-hist" "mail/mail-hist.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "mail-hist" "mail/mail-hist.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from mail/mail-hist.el (autoload 'mail-hist-define-keys "mail-hist" "\ @@ -17334,8 +17267,8 @@ ;;;*** -;;;### (autoloads nil "mail-utils" "mail/mail-utils.el" (20891 18859 -;;;;;; 893295 0)) +;;;### (autoloads nil "mail-utils" "mail/mail-utils.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from mail/mail-utils.el (defvar mail-use-rfc822 nil "\ @@ -17409,8 +17342,8 @@ ;;;*** -;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (20847 51240 -;;;;;; 240216 0)) +;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from mail/mailabbrev.el (defvar mail-abbrevs-mode nil "\ @@ -17459,8 +17392,8 @@ ;;;*** -;;;### (autoloads nil "mailalias" "mail/mailalias.el" (20970 25513 -;;;;;; 362767 0)) +;;;### (autoloads nil "mailalias" "mail/mailalias.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from mail/mailalias.el (defvar mail-complete-style 'angles "\ @@ -17513,8 +17446,8 @@ ;;;*** -;;;### (autoloads nil "mailclient" "mail/mailclient.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "mailclient" "mail/mailclient.el" (21215 8898 +;;;;;; 840126 623000)) ;;; Generated autoloads from mail/mailclient.el (autoload 'mailclient-send-it "mailclient" "\ @@ -17526,8 +17459,8 @@ ;;;*** -;;;### (autoloads nil "make-mode" "progmodes/make-mode.el" (21169 -;;;;;; 33848 692645 0)) +;;;### (autoloads nil "make-mode" "progmodes/make-mode.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from progmodes/make-mode.el (autoload 'makefile-mode "make-mode" "\ @@ -17644,7 +17577,7 @@ ;;;*** -;;;### (autoloads nil "makesum" "makesum.el" (20709 26818 907104 +;;;### (autoloads nil "makesum" "makesum.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from makesum.el @@ -17656,7 +17589,7 @@ ;;;*** -;;;### (autoloads nil "man" "man.el" (21116 51266 54795 0)) +;;;### (autoloads nil "man" "man.el" (21187 63826 213216 0)) ;;; Generated autoloads from man.el (defalias 'manual-entry 'man) @@ -17710,7 +17643,7 @@ ;;;*** -;;;### (autoloads nil "master" "master.el" (20884 7264 912957 506000)) +;;;### (autoloads nil "master" "master.el" (21187 63826 213216 0)) ;;; Generated autoloads from master.el (push (purecopy '(master 1 0 2)) package--builtin-versions) @@ -17733,7 +17666,7 @@ ;;;*** -;;;### (autoloads nil "mb-depth" "mb-depth.el" (20709 26818 907104 +;;;### (autoloads nil "mb-depth" "mb-depth.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from mb-depth.el @@ -17761,14 +17694,14 @@ ;;;*** -;;;### (autoloads nil "md4" "md4.el" (20709 26818 907104 0)) +;;;### (autoloads nil "md4" "md4.el" (21187 63826 213216 0)) ;;; Generated autoloads from md4.el (push (purecopy '(md4 1 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "message" "gnus/message.el" (21149 48568 226247 -;;;;;; 0)) +;;;### (autoloads nil "message" "gnus/message.el" (21199 204 550114 +;;;;;; 319000)) ;;; 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) @@ -17933,8 +17866,8 @@ ;;;*** -;;;### (autoloads nil "meta-mode" "progmodes/meta-mode.el" (20874 -;;;;;; 62962 290468 0)) +;;;### (autoloads nil "meta-mode" "progmodes/meta-mode.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from progmodes/meta-mode.el (push (purecopy '(meta-mode 1 0)) package--builtin-versions) @@ -17950,8 +17883,8 @@ ;;;*** -;;;### (autoloads nil "metamail" "mail/metamail.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "metamail" "mail/metamail.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from mail/metamail.el (autoload 'metamail-interpret-header "metamail" "\ @@ -17994,8 +17927,8 @@ ;;;*** -;;;### (autoloads nil "mh-comp" "mh-e/mh-comp.el" (20890 54503 125088 -;;;;;; 852000)) +;;;### (autoloads nil "mh-comp" "mh-e/mh-comp.el" (21187 63826 213216 +;;;;;; 0)) ;;; Generated autoloads from mh-e/mh-comp.el (autoload 'mh-smail "mh-comp" "\ @@ -18085,7 +18018,7 @@ ;;;*** -;;;### (autoloads nil "mh-e" "mh-e/mh-e.el" (20987 34598 970563 0)) +;;;### (autoloads nil "mh-e" "mh-e/mh-e.el" (21187 63826 213216 0)) ;;; Generated autoloads from mh-e/mh-e.el (push (purecopy '(mh-e 8 5)) package--builtin-versions) @@ -18102,8 +18035,8 @@ ;;;*** -;;;### (autoloads nil "mh-folder" "mh-e/mh-folder.el" (20787 12616 -;;;;;; 976036 0)) +;;;### (autoloads nil "mh-folder" "mh-e/mh-folder.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from mh-e/mh-folder.el (autoload 'mh-rmail "mh-folder" "\ @@ -18184,7 +18117,7 @@ ;;;*** -;;;### (autoloads nil "midnight" "midnight.el" (21058 47149 742317 +;;;### (autoloads nil "midnight" "midnight.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from midnight.el @@ -18211,8 +18144,8 @@ ;;;*** -;;;### (autoloads nil "minibuf-eldef" "minibuf-eldef.el" (20760 54070 -;;;;;; 584283 0)) +;;;### (autoloads nil "minibuf-eldef" "minibuf-eldef.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from minibuf-eldef.el (defvar minibuffer-electric-default-mode nil "\ @@ -18241,7 +18174,7 @@ ;;;*** -;;;### (autoloads nil "misc" "misc.el" (20709 26818 907104 0)) +;;;### (autoloads nil "misc" "misc.el" (21187 63826 213216 0)) ;;; Generated autoloads from misc.el (autoload 'butterfly "misc" "\ @@ -18269,7 +18202,7 @@ ;;;*** -;;;### (autoloads nil "misearch" "misearch.el" (21160 18870 883359 +;;;### (autoloads nil "misearch" "misearch.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from misearch.el (add-hook 'isearch-mode-hook 'multi-isearch-setup) @@ -18351,8 +18284,8 @@ ;;;*** -;;;### (autoloads nil "mixal-mode" "progmodes/mixal-mode.el" (21002 -;;;;;; 1963 769129 0)) +;;;### (autoloads nil "mixal-mode" "progmodes/mixal-mode.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from progmodes/mixal-mode.el (push (purecopy '(mixal-mode 0 1)) package--builtin-versions) @@ -18363,8 +18296,8 @@ ;;;*** -;;;### (autoloads nil "mm-encode" "gnus/mm-encode.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "mm-encode" "gnus/mm-encode.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/mm-encode.el (autoload 'mm-default-file-encoding "mm-encode" "\ @@ -18374,8 +18307,8 @@ ;;;*** -;;;### (autoloads nil "mm-extern" "gnus/mm-extern.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "mm-extern" "gnus/mm-extern.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/mm-extern.el (autoload 'mm-extern-cache-contents "mm-extern" "\ @@ -18393,8 +18326,8 @@ ;;;*** -;;;### (autoloads nil "mm-partial" "gnus/mm-partial.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "mm-partial" "gnus/mm-partial.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/mm-partial.el (autoload 'mm-inline-partial "mm-partial" "\ @@ -18407,7 +18340,7 @@ ;;;*** -;;;### (autoloads nil "mm-url" "gnus/mm-url.el" (20709 26818 907104 +;;;### (autoloads nil "mm-url" "gnus/mm-url.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from gnus/mm-url.el @@ -18424,7 +18357,7 @@ ;;;*** -;;;### (autoloads nil "mm-uu" "gnus/mm-uu.el" (20709 26818 907104 +;;;### (autoloads nil "mm-uu" "gnus/mm-uu.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from gnus/mm-uu.el @@ -18444,7 +18377,7 @@ ;;;*** -;;;### (autoloads nil "mml" "gnus/mml.el" (20829 21286 719109 0)) +;;;### (autoloads nil "mml" "gnus/mml.el" (21187 63826 213216 0)) ;;; Generated autoloads from gnus/mml.el (autoload 'mml-to-mime "mml" "\ @@ -18469,7 +18402,7 @@ ;;;*** -;;;### (autoloads nil "mml1991" "gnus/mml1991.el" (20875 30633 412173 +;;;### (autoloads nil "mml1991" "gnus/mml1991.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from gnus/mml1991.el @@ -18485,7 +18418,7 @@ ;;;*** -;;;### (autoloads nil "mml2015" "gnus/mml2015.el" (21042 58928 39127 +;;;### (autoloads nil "mml2015" "gnus/mml2015.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from gnus/mml2015.el @@ -18526,8 +18459,8 @@ ;;;*** -;;;### (autoloads nil "mode-local" "cedet/mode-local.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "mode-local" "cedet/mode-local.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from cedet/mode-local.el (put 'define-overloadable-function 'doc-string-elt 3) @@ -18568,7 +18501,7 @@ ;;;*** -;;;### (autoloads nil "morse" "play/morse.el" (20709 26818 907104 +;;;### (autoloads nil "morse" "play/morse.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from play/morse.el @@ -18594,7 +18527,7 @@ ;;;*** -;;;### (autoloads nil "mouse-drag" "mouse-drag.el" (20992 52525 458637 +;;;### (autoloads nil "mouse-drag" "mouse-drag.el" (21202 31159 541460 ;;;;;; 0)) ;;; Generated autoloads from mouse-drag.el @@ -18642,7 +18575,7 @@ ;;;*** -;;;### (autoloads nil "mpc" "mpc.el" (21075 56234 349623 0)) +;;;### (autoloads nil "mpc" "mpc.el" (21187 63826 213216 0)) ;;; Generated autoloads from mpc.el (autoload 'mpc "mpc" "\ @@ -18652,7 +18585,7 @@ ;;;*** -;;;### (autoloads nil "mpuz" "play/mpuz.el" (21040 17194 398147 0)) +;;;### (autoloads nil "mpuz" "play/mpuz.el" (21187 63826 213216 0)) ;;; Generated autoloads from play/mpuz.el (autoload 'mpuz "mpuz" "\ @@ -18662,7 +18595,7 @@ ;;;*** -;;;### (autoloads nil "msb" "msb.el" (20999 25770 522517 0)) +;;;### (autoloads nil "msb" "msb.el" (21187 63826 213216 0)) ;;; Generated autoloads from msb.el (defvar msb-mode nil "\ @@ -18687,8 +18620,8 @@ ;;;*** -;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (20891 -;;;;;; 18859 893295 0)) +;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from international/mule-diag.el (autoload 'list-character-sets "mule-diag" "\ @@ -18820,8 +18753,8 @@ ;;;*** -;;;### (autoloads nil "mule-util" "international/mule-util.el" (20991 -;;;;;; 31656 363459 0)) +;;;### (autoloads nil "mule-util" "international/mule-util.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from international/mule-util.el (defsubst string-to-list (string) "\ @@ -18952,8 +18885,8 @@ ;;;*** -;;;### (autoloads nil "net-utils" "net/net-utils.el" (20903 10024 -;;;;;; 645978 0)) +;;;### (autoloads nil "net-utils" "net/net-utils.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from net/net-utils.el (autoload 'ifconfig "net-utils" "\ @@ -19047,7 +18980,7 @@ ;;;*** -;;;### (autoloads nil "netrc" "net/netrc.el" (20709 26818 907104 +;;;### (autoloads nil "netrc" "net/netrc.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from net/netrc.el @@ -19060,8 +18993,8 @@ ;;;*** -;;;### (autoloads nil "network-stream" "net/network-stream.el" (21074 -;;;;;; 35375 473679 0)) +;;;### (autoloads nil "network-stream" "net/network-stream.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from net/network-stream.el (autoload 'open-network-stream "network-stream" "\ @@ -19154,8 +19087,8 @@ ;;;*** -;;;### (autoloads nil "newst-backend" "net/newst-backend.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "newst-backend" "net/newst-backend.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from net/newst-backend.el (autoload 'newsticker-running-p "newst-backend" "\ @@ -19177,7 +19110,7 @@ ;;;*** ;;;### (autoloads nil "newst-plainview" "net/newst-plainview.el" -;;;;;; (20992 52525 458637 0)) +;;;;;; (21187 63826 213216 0)) ;;; Generated autoloads from net/newst-plainview.el (autoload 'newsticker-plainview "newst-plainview" "\ @@ -19187,8 +19120,8 @@ ;;;*** -;;;### (autoloads nil "newst-reader" "net/newst-reader.el" (21145 -;;;;;; 51520 109004 0)) +;;;### (autoloads nil "newst-reader" "net/newst-reader.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from net/newst-reader.el (autoload 'newsticker-show-news "newst-reader" "\ @@ -19198,8 +19131,8 @@ ;;;*** -;;;### (autoloads nil "newst-ticker" "net/newst-ticker.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "newst-ticker" "net/newst-ticker.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from net/newst-ticker.el (autoload 'newsticker-ticker-running-p "newst-ticker" "\ @@ -19219,8 +19152,8 @@ ;;;*** -;;;### (autoloads nil "newst-treeview" "net/newst-treeview.el" (21040 -;;;;;; 17194 398147 0)) +;;;### (autoloads nil "newst-treeview" "net/newst-treeview.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from net/newst-treeview.el (autoload 'newsticker-treeview "newst-treeview" "\ @@ -19230,14 +19163,14 @@ ;;;*** -;;;### (autoloads nil "newsticker" "net/newsticker.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "newsticker" "net/newsticker.el" (21194 37048 +;;;;;; 599945 0)) ;;; Generated autoloads from net/newsticker.el (push (purecopy '(newsticker 1 99)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "nndiary" "gnus/nndiary.el" (20709 26818 907104 +;;;### (autoloads nil "nndiary" "gnus/nndiary.el" (21204 37210 187838 ;;;;;; 0)) ;;; Generated autoloads from gnus/nndiary.el @@ -19248,7 +19181,7 @@ ;;;*** -;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (21135 15680 63905 +;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from gnus/nndoc.el @@ -19263,8 +19196,8 @@ ;;;*** -;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/nnfolder.el (autoload 'nnfolder-generate-active-file "nnfolder" "\ @@ -19275,14 +19208,14 @@ ;;;*** -;;;### (autoloads nil "nnmairix" "gnus/nnmairix.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "nnmairix" "gnus/nnmairix.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/nnmairix.el (push (purecopy '(nnmairix 0 6)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "nnml" "gnus/nnml.el" (20955 58152 201869 0)) +;;;### (autoloads nil "nnml" "gnus/nnml.el" (21187 63826 213216 0)) ;;; Generated autoloads from gnus/nnml.el (autoload 'nnml-generate-nov-databases "nnml" "\ @@ -19292,7 +19225,7 @@ ;;;*** -;;;### (autoloads nil "novice" "novice.el" (20709 26818 907104 0)) +;;;### (autoloads nil "novice" "novice.el" (21187 63826 213216 0)) ;;; Generated autoloads from novice.el (define-obsolete-variable-alias 'disabled-command-hook 'disabled-command-function "22.1") @@ -19324,8 +19257,8 @@ ;;;*** -;;;### (autoloads nil "nroff-mode" "textmodes/nroff-mode.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "nroff-mode" "textmodes/nroff-mode.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from textmodes/nroff-mode.el (autoload 'nroff-mode "nroff-mode" "\ @@ -19339,14 +19272,14 @@ ;;;*** -;;;### (autoloads nil "ntlm" "net/ntlm.el" (20709 26818 907104 0)) +;;;### (autoloads nil "ntlm" "net/ntlm.el" (21187 63826 213216 0)) ;;; Generated autoloads from net/ntlm.el (push (purecopy '(ntlm 1 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "nxml-glyph" "nxml/nxml-glyph.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "nxml-glyph" "nxml/nxml-glyph.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from nxml/nxml-glyph.el (autoload 'nxml-glyph-display-string "nxml-glyph" "\ @@ -19358,8 +19291,8 @@ ;;;*** -;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (21075 56234 -;;;;;; 349623 0)) +;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (21220 61111 +;;;;;; 156047 0)) ;;; Generated autoloads from nxml/nxml-mode.el (autoload 'nxml-mode "nxml-mode" "\ @@ -19420,8 +19353,8 @@ ;;;*** -;;;### (autoloads nil "nxml-uchnm" "nxml/nxml-uchnm.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "nxml-uchnm" "nxml/nxml-uchnm.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from nxml/nxml-uchnm.el (autoload 'nxml-enable-unicode-char-name-sets "nxml-uchnm" "\ @@ -19433,8 +19366,8 @@ ;;;*** -;;;### (autoloads nil "octave" "progmodes/octave.el" (21172 10041 -;;;;;; 427978 0)) +;;;### (autoloads nil "octave" "progmodes/octave.el" (21202 31159 +;;;;;; 541460 0)) ;;; Generated autoloads from progmodes/octave.el (autoload 'octave-mode "octave" "\ @@ -19471,8 +19404,8 @@ ;;;*** -;;;### (autoloads nil "opascal" "progmodes/opascal.el" (20858 21542 -;;;;;; 723007 0)) +;;;### (autoloads nil "opascal" "progmodes/opascal.el" (21220 61111 +;;;;;; 156047 0)) ;;; Generated autoloads from progmodes/opascal.el (define-obsolete-function-alias 'delphi-mode 'opascal-mode "24.4") @@ -19493,9 +19426,6 @@ Extra indentation for blocks in compound statements. `opascal-case-label-indent' (default 0) Extra indentation for case statement labels. - `opascal-tab-always-indents' (default `tab-always-indents') - Non-nil means TAB in OPascal mode should always reindent the current line, - regardless of where in the line point is when the TAB command is used. `opascal-search-path' (default .) Directories to search when finding external units. `opascal-verbose' (default nil) @@ -19513,7 +19443,7 @@ ;;;*** -;;;### (autoloads nil "org" "org/org.el" (21176 7093 848315 0)) +;;;### (autoloads nil "org" "org/org.el" (21196 19423 102965 0)) ;;; Generated autoloads from org/org.el (autoload 'org-babel-do-load-languages "org" "\ @@ -19734,8 +19664,8 @@ ;;;*** -;;;### (autoloads nil "org-agenda" "org/org-agenda.el" (21153 57242 -;;;;;; 533082 0)) +;;;### (autoloads nil "org-agenda" "org/org-agenda.el" (21197 43194 +;;;;;; 200483 0)) ;;; Generated autoloads from org/org-agenda.el (autoload 'org-toggle-sticky-agenda "org-agenda" "\ @@ -20008,8 +19938,8 @@ ;;;*** -;;;### (autoloads nil "org-capture" "org/org-capture.el" (21123 24503 -;;;;;; 570934 0)) +;;;### (autoloads nil "org-capture" "org/org-capture.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from org/org-capture.el (autoload 'org-capture-string "org-capture" "\ @@ -20051,8 +19981,8 @@ ;;;*** -;;;### (autoloads nil "org-colview" "org/org-colview.el" (21153 57242 -;;;;;; 533082 0)) +;;;### (autoloads nil "org-colview" "org/org-colview.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from org/org-colview.el (autoload 'org-columns-remove-overlays "org-colview" "\ @@ -20115,8 +20045,8 @@ ;;;*** -;;;### (autoloads nil "org-compat" "org/org-compat.el" (21153 57242 -;;;;;; 533082 0)) +;;;### (autoloads nil "org-compat" "org/org-compat.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from org/org-compat.el (autoload 'org-check-version "org-compat" "\ @@ -20126,7 +20056,7 @@ ;;;*** -;;;### (autoloads nil "org-macs" "org/org-macs.el" (21153 57242 533082 +;;;### (autoloads nil "org-macs" "org/org-macs.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from org/org-macs.el @@ -20137,8 +20067,8 @@ ;;;*** -;;;### (autoloads nil "org-version" "org/org-version.el" (21123 24503 -;;;;;; 570934 0)) +;;;### (autoloads nil "org-version" "org/org-version.el" (21196 19423 +;;;;;; 102965 0)) ;;; Generated autoloads from org/org-version.el (autoload 'org-release "org-version" "\ @@ -20158,7 +20088,7 @@ ;;;*** -;;;### (autoloads nil "outline" "outline.el" (20773 35190 350513 +;;;### (autoloads nil "outline" "outline.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from outline.el (put 'outline-regexp 'safe-local-variable 'stringp) @@ -20220,8 +20150,8 @@ ;;;*** -;;;### (autoloads nil "package" "emacs-lisp/package.el" (21165 36792 -;;;;;; 444792 0)) +;;;### (autoloads nil "package" "emacs-lisp/package.el" (21216 7010 +;;;;;; 238506 0)) ;;; Generated autoloads from emacs-lisp/package.el (push (purecopy '(package 1 0 1)) package--builtin-versions) @@ -20293,7 +20223,7 @@ ;;;*** -;;;### (autoloads nil "paren" "paren.el" (21162 60599 136523 0)) +;;;### (autoloads nil "paren" "paren.el" (21187 63826 213216 0)) ;;; Generated autoloads from paren.el (defvar show-paren-mode nil "\ @@ -20319,8 +20249,8 @@ ;;;*** -;;;### (autoloads nil "parse-time" "calendar/parse-time.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "parse-time" "calendar/parse-time.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from calendar/parse-time.el (put 'parse-time-rules 'risky-local-variable t) @@ -20333,8 +20263,8 @@ ;;;*** -;;;### (autoloads nil "pascal" "progmodes/pascal.el" (20870 12718 -;;;;;; 549931 0)) +;;;### (autoloads nil "pascal" "progmodes/pascal.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/pascal.el (autoload 'pascal-mode "pascal" "\ @@ -20386,8 +20316,8 @@ ;;;*** -;;;### (autoloads nil "password-cache" "password-cache.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "password-cache" "password-cache.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from password-cache.el (defvar password-cache t "\ @@ -20408,8 +20338,8 @@ ;;;*** -;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (20991 31656 -;;;;;; 363459 0)) +;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (21190 39993 +;;;;;; 744837 0)) ;;; Generated autoloads from emacs-lisp/pcase.el (autoload 'pcase "pcase" "\ @@ -20470,7 +20400,7 @@ ;;;*** -;;;### (autoloads nil "pcmpl-cvs" "pcmpl-cvs.el" (20709 26818 907104 +;;;### (autoloads nil "pcmpl-cvs" "pcmpl-cvs.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from pcmpl-cvs.el @@ -20481,7 +20411,7 @@ ;;;*** -;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (20907 7082 901087 +;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from pcmpl-gnu.el @@ -20509,8 +20439,8 @@ ;;;*** -;;;### (autoloads nil "pcmpl-linux" "pcmpl-linux.el" (20884 7264 -;;;;;; 912957 506000)) +;;;### (autoloads nil "pcmpl-linux" "pcmpl-linux.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from pcmpl-linux.el (autoload 'pcomplete/kill "pcmpl-linux" "\ @@ -20530,7 +20460,7 @@ ;;;*** -;;;### (autoloads nil "pcmpl-rpm" "pcmpl-rpm.el" (20709 26818 907104 +;;;### (autoloads nil "pcmpl-rpm" "pcmpl-rpm.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from pcmpl-rpm.el @@ -20541,7 +20471,7 @@ ;;;*** -;;;### (autoloads nil "pcmpl-unix" "pcmpl-unix.el" (20709 26818 907104 +;;;### (autoloads nil "pcmpl-unix" "pcmpl-unix.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from pcmpl-unix.el @@ -20597,7 +20527,8 @@ ;;;*** -;;;### (autoloads nil "pcmpl-x" "pcmpl-x.el" (21135 15680 63905 0)) +;;;### (autoloads nil "pcmpl-x" "pcmpl-x.el" (21187 63826 213216 +;;;;;; 0)) ;;; Generated autoloads from pcmpl-x.el (autoload 'pcomplete/tlmgr "pcmpl-x" "\ @@ -20621,7 +20552,7 @@ ;;;*** -;;;### (autoloads nil "pcomplete" "pcomplete.el" (20709 26818 907104 +;;;### (autoloads nil "pcomplete" "pcomplete.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from pcomplete.el @@ -20679,7 +20610,7 @@ ;;;*** -;;;### (autoloads nil "pcvs" "vc/pcvs.el" (21104 56491 538513 0)) +;;;### (autoloads nil "pcvs" "vc/pcvs.el" (21222 64465 21576 403000)) ;;; Generated autoloads from vc/pcvs.el (autoload 'cvs-checkout "pcvs" "\ @@ -20754,8 +20685,8 @@ ;;;*** -;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (21075 56234 -;;;;;; 349623 0)) +;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from vc/pcvs-defs.el (defvar cvs-global-menu (let ((m (make-sparse-keymap "PCL-CVS"))) (define-key m [status] `(menu-item ,(purecopy "Directory Status") cvs-status :help ,(purecopy "A more verbose status of a workarea"))) (define-key m [checkout] `(menu-item ,(purecopy "Checkout Module") cvs-checkout :help ,(purecopy "Check out a module from the repository"))) (define-key m [update] `(menu-item ,(purecopy "Update Directory") cvs-update :help ,(purecopy "Fetch updates from the repository"))) (define-key m [examine] `(menu-item ,(purecopy "Examine Directory") cvs-examine :help ,(purecopy "Examine the current state of a workarea"))) (fset 'cvs-global-menu m)) "\ @@ -20763,8 +20694,8 @@ ;;;*** -;;;### (autoloads nil "perl-mode" "progmodes/perl-mode.el" (21075 -;;;;;; 56234 349623 0)) +;;;### (autoloads nil "perl-mode" "progmodes/perl-mode.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from progmodes/perl-mode.el (put 'perl-indent-level 'safe-local-variable 'integerp) (put 'perl-continued-statement-offset 'safe-local-variable 'integerp) @@ -20825,8 +20756,8 @@ ;;;*** -;;;### (autoloads nil "picture" "textmodes/picture.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "picture" "textmodes/picture.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from textmodes/picture.el (autoload 'picture-mode "picture" "\ @@ -20906,7 +20837,7 @@ ;;;*** -;;;### (autoloads nil "plstore" "gnus/plstore.el" (20709 26818 907104 +;;;### (autoloads nil "plstore" "gnus/plstore.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from gnus/plstore.el @@ -20922,7 +20853,8 @@ ;;;*** -;;;### (autoloads nil "po" "textmodes/po.el" (20791 9657 561026 0)) +;;;### (autoloads nil "po" "textmodes/po.el" (21187 63826 213216 +;;;;;; 0)) ;;; Generated autoloads from textmodes/po.el (autoload 'po-find-file-coding-system "po" "\ @@ -20933,7 +20865,7 @@ ;;;*** -;;;### (autoloads nil "pong" "play/pong.el" (20709 26818 907104 0)) +;;;### (autoloads nil "pong" "play/pong.el" (21187 63826 213216 0)) ;;; Generated autoloads from play/pong.el (autoload 'pong "pong" "\ @@ -20949,7 +20881,7 @@ ;;;*** -;;;### (autoloads nil "pop3" "gnus/pop3.el" (20709 26818 907104 0)) +;;;### (autoloads nil "pop3" "gnus/pop3.el" (21193 16180 875828 0)) ;;; Generated autoloads from gnus/pop3.el (autoload 'pop3-movemail "pop3" "\ @@ -20960,7 +20892,7 @@ ;;;*** -;;;### (autoloads nil "pp" "emacs-lisp/pp.el" (21013 58662 278539 +;;;### (autoloads nil "pp" "emacs-lisp/pp.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from emacs-lisp/pp.el @@ -21011,7 +20943,7 @@ ;;;*** -;;;### (autoloads nil "printing" "printing.el" (21032 23080 765139 +;;;### (autoloads nil "printing" "printing.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from printing.el (push (purecopy '(printing 6 9 3)) package--builtin-versions) @@ -21600,7 +21532,7 @@ ;;;*** -;;;### (autoloads nil "proced" "proced.el" (20709 26818 907104 0)) +;;;### (autoloads nil "proced" "proced.el" (21187 63826 213216 0)) ;;; Generated autoloads from proced.el (autoload 'proced "proced" "\ @@ -21618,7 +21550,7 @@ ;;;*** -;;;### (autoloads nil "profiler" "profiler.el" (21077 11573 151993 +;;;### (autoloads nil "profiler" "profiler.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from profiler.el @@ -21647,8 +21579,8 @@ ;;;*** -;;;### (autoloads nil "prolog" "progmodes/prolog.el" (21112 54200 -;;;;;; 857404 0)) +;;;### (autoloads nil "prolog" "progmodes/prolog.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/prolog.el (autoload 'prolog-mode "prolog" "\ @@ -21681,7 +21613,7 @@ ;;;*** -;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (20799 169 640767 0)) +;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (21187 63826 213216 0)) ;;; Generated autoloads from ps-bdf.el (defvar bdf-directory-list (if (memq system-type '(ms-dos windows-nt)) (list (expand-file-name "fonts/bdf" installation-directory)) '("/usr/local/share/emacs/fonts/bdf")) "\ @@ -21692,8 +21624,8 @@ ;;;*** -;;;### (autoloads nil "ps-mode" "progmodes/ps-mode.el" (20777 63161 -;;;;;; 848428 0)) +;;;### (autoloads nil "ps-mode" "progmodes/ps-mode.el" (21195 57908 +;;;;;; 940910 0)) ;;; Generated autoloads from progmodes/ps-mode.el (push (purecopy '(ps-mode 1 1 9)) package--builtin-versions) @@ -21740,7 +21672,7 @@ ;;;*** -;;;### (autoloads nil "ps-print" "ps-print.el" (21122 3638 533479 +;;;### (autoloads nil "ps-print" "ps-print.el" (21207 49087 974317 ;;;;;; 0)) ;;; Generated autoloads from ps-print.el (push (purecopy '(ps-print 7 3 5)) package--builtin-versions) @@ -21938,15 +21870,15 @@ ;;;*** -;;;### (autoloads nil "pulse" "cedet/pulse.el" (21106 11815 370918 +;;;### (autoloads nil "pulse" "cedet/pulse.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from cedet/pulse.el (push (purecopy '(pulse 1 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "python" "progmodes/python.el" (21181 25015 -;;;;;; 517479 0)) +;;;### (autoloads nil "python" "progmodes/python.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/python.el (push (purecopy '(python 0 24 2)) package--builtin-versions) @@ -21980,7 +21912,7 @@ ;;;*** -;;;### (autoloads nil "qp" "gnus/qp.el" (20709 26818 907104 0)) +;;;### (autoloads nil "qp" "gnus/qp.el" (21187 63826 213216 0)) ;;; Generated autoloads from gnus/qp.el (autoload 'quoted-printable-decode-region "qp" "\ @@ -21999,8 +21931,8 @@ ;;;*** -;;;### (autoloads nil "quail" "international/quail.el" (21113 26590 -;;;;;; 654875 0)) +;;;### (autoloads nil "quail" "international/quail.el" (21215 43189 +;;;;;; 822371 0)) ;;; Generated autoloads from international/quail.el (autoload 'quail-title "quail" "\ @@ -22061,10 +21993,11 @@ documentation of `quail-keyboard-layout' and `quail-keyboard-layout-standard' for more detail. -SHOW-LAYOUT non-nil means the `quail-help' command should show -the user's keyboard layout visually with translated characters. -If KBD-TRANSLATE is set, it is desirable to set also this flag unless -this package defines no translations for single character keys. +SHOW-LAYOUT non-nil means the function `quail-help' (as used by +the command `describe-input-method') should show the user's keyboard +layout visually with translated characters. If KBD-TRANSLATE is +set, it is desirable to also set this flag, unless this package +defines no translations for single character keys. CREATE-DECODE-MAP non-nil means decode map is also created. A decode map is an alist of translations and corresponding original keys. @@ -22229,8 +22162,8 @@ ;;;*** -;;;### (autoloads nil "quail/hangul" "leim/quail/hangul.el" (21141 -;;;;;; 54458 609734 0)) +;;;### (autoloads nil "quail/hangul" "leim/quail/hangul.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from leim/quail/hangul.el (autoload 'hangul-input-method-activate "quail/hangul" "\ @@ -22243,7 +22176,7 @@ ;;;*** ;;;### (autoloads nil "quail/uni-input" "leim/quail/uni-input.el" -;;;;;; (21141 54458 609734 0)) +;;;;;; (21187 63826 213216 0)) ;;; Generated autoloads from leim/quail/uni-input.el (autoload 'ucs-input-activate "quail/uni-input" "\ @@ -22257,7 +22190,7 @@ ;;;*** -;;;### (autoloads nil "quickurl" "net/quickurl.el" (21040 17194 398147 +;;;### (autoloads nil "quickurl" "net/quickurl.el" (21222 16439 978802 ;;;;;; 0)) ;;; Generated autoloads from net/quickurl.el @@ -22329,7 +22262,7 @@ ;;;*** -;;;### (autoloads nil "rcirc" "net/rcirc.el" (21168 62144 266424 +;;;### (autoloads nil "rcirc" "net/rcirc.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from net/rcirc.el @@ -22368,8 +22301,8 @@ ;;;*** -;;;### (autoloads nil "re-builder" "emacs-lisp/re-builder.el" (20984 -;;;;;; 58408 354075 0)) +;;;### (autoloads nil "re-builder" "emacs-lisp/re-builder.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from emacs-lisp/re-builder.el (defalias 'regexp-builder 're-builder) @@ -22387,7 +22320,7 @@ ;;;*** -;;;### (autoloads nil "recentf" "recentf.el" (20871 33574 214287 +;;;### (autoloads nil "recentf" "recentf.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from recentf.el @@ -22414,7 +22347,7 @@ ;;;*** -;;;### (autoloads nil "rect" "rect.el" (21166 57660 911600 0)) +;;;### (autoloads nil "rect" "rect.el" (21203 52022 581300 0)) ;;; Generated autoloads from rect.el (autoload 'delete-rectangle "rect" "\ @@ -22554,8 +22487,8 @@ ;;;*** -;;;### (autoloads nil "refill" "textmodes/refill.el" (20884 7264 -;;;;;; 912957 506000)) +;;;### (autoloads nil "refill" "textmodes/refill.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from textmodes/refill.el (autoload 'refill-mode "refill" "\ @@ -22575,8 +22508,8 @@ ;;;*** -;;;### (autoloads nil "reftex" "textmodes/reftex.el" (20928 13222 -;;;;;; 500272 0)) +;;;### (autoloads nil "reftex" "textmodes/reftex.el" (21214 22326 +;;;;;; 616729 0)) ;;; Generated autoloads from textmodes/reftex.el (autoload 'turn-on-reftex "reftex" "\ @@ -22625,8 +22558,8 @@ ;;;*** -;;;### (autoloads nil "reftex-cite" "textmodes/reftex-cite.el" (20921 -;;;;;; 39978 248467 0)) +;;;### (autoloads nil "reftex-cite" "textmodes/reftex-cite.el" (21214 +;;;;;; 22326 616729 0)) ;;; Generated autoloads from textmodes/reftex-cite.el (autoload 'reftex-citation "reftex-cite" "\ @@ -22656,7 +22589,7 @@ ;;;*** ;;;### (autoloads nil "reftex-global" "textmodes/reftex-global.el" -;;;;;; (20709 26818 907104 0)) +;;;;;; (21187 63826 213216 0)) ;;; Generated autoloads from textmodes/reftex-global.el (autoload 'reftex-isearch-minor-mode "reftex-global" "\ @@ -22673,7 +22606,7 @@ ;;;*** ;;;### (autoloads nil "reftex-index" "textmodes/reftex-index.el" -;;;;;; (20709 26818 907104 0)) +;;;;;; (21193 16180 875828 0)) ;;; Generated autoloads from textmodes/reftex-index.el (autoload 'reftex-index-phrases-mode "reftex-index" "\ @@ -22706,7 +22639,7 @@ ;;;*** ;;;### (autoloads nil "reftex-parse" "textmodes/reftex-parse.el" -;;;;;; (21107 58096 588457 0)) +;;;;;; (21187 63826 213216 0)) ;;; Generated autoloads from textmodes/reftex-parse.el (autoload 'reftex-all-document-files "reftex-parse" "\ @@ -22718,8 +22651,8 @@ ;;;*** -;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (21170 -;;;;;; 54711 780344 0)) +;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (21194 +;;;;;; 37048 599945 0)) ;;; Generated autoloads from textmodes/reftex-vars.el (put 'reftex-vref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) (put 'reftex-fref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) @@ -22728,8 +22661,8 @@ ;;;*** -;;;### (autoloads nil "regexp-opt" "emacs-lisp/regexp-opt.el" (21153 -;;;;;; 45624 746041 0)) +;;;### (autoloads nil "regexp-opt" "emacs-lisp/regexp-opt.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from emacs-lisp/regexp-opt.el (autoload 'regexp-opt "regexp-opt" "\ @@ -22758,15 +22691,15 @@ ;;;*** -;;;### (autoloads nil "regi" "emacs-lisp/regi.el" (20709 26818 907104 +;;;### (autoloads nil "regi" "emacs-lisp/regi.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from emacs-lisp/regi.el (push (purecopy '(regi 1 8)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "remember" "textmodes/remember.el" (21093 51772 -;;;;;; 844670 0)) +;;;### (autoloads nil "remember" "textmodes/remember.el" (21222 16439 +;;;;;; 978802 0)) ;;; Generated autoloads from textmodes/remember.el (push (purecopy '(remember 2 0)) package--builtin-versions) @@ -22824,7 +22757,7 @@ ;;;*** -;;;### (autoloads nil "repeat" "repeat.el" (21176 7093 848315 0)) +;;;### (autoloads nil "repeat" "repeat.el" (21187 63826 213216 0)) ;;; Generated autoloads from repeat.el (push (purecopy '(repeat 0 51)) package--builtin-versions) @@ -22847,8 +22780,8 @@ ;;;*** -;;;### (autoloads nil "reporter" "mail/reporter.el" (20921 39978 -;;;;;; 248467 0)) +;;;### (autoloads nil "reporter" "mail/reporter.el" (21227 3131 80151 +;;;;;; 382000)) ;;; Generated autoloads from mail/reporter.el (autoload 'reporter-submit-bug-report "reporter" "\ @@ -22879,7 +22812,7 @@ ;;;*** -;;;### (autoloads nil "reposition" "reposition.el" (20992 52525 458637 +;;;### (autoloads nil "reposition" "reposition.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from reposition.el @@ -22906,7 +22839,7 @@ ;;;*** -;;;### (autoloads nil "reveal" "reveal.el" (21041 38058 75002 0)) +;;;### (autoloads nil "reveal" "reveal.el" (21187 63826 213216 0)) ;;; Generated autoloads from reveal.el (autoload 'reveal-mode "reveal" "\ @@ -22941,7 +22874,7 @@ ;;;*** -;;;### (autoloads nil "ring" "emacs-lisp/ring.el" (20709 26818 907104 +;;;### (autoloads nil "ring" "emacs-lisp/ring.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from emacs-lisp/ring.el @@ -22957,7 +22890,7 @@ ;;;*** -;;;### (autoloads nil "rlogin" "net/rlogin.el" (20903 10024 645978 +;;;### (autoloads nil "rlogin" "net/rlogin.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from net/rlogin.el @@ -23002,8 +22935,8 @@ ;;;*** -;;;### (autoloads nil "rmail" "mail/rmail.el" (21105 26139 752484 -;;;;;; 0)) +;;;### (autoloads nil "rmail" "mail/rmail.el" (21215 8902 333002 +;;;;;; 878000)) ;;; Generated autoloads from mail/rmail.el (defvar rmail-file-name (purecopy "~/RMAIL") "\ @@ -23200,8 +23133,8 @@ ;;;*** -;;;### (autoloads nil "rmailout" "mail/rmailout.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "rmailout" "mail/rmailout.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from mail/rmailout.el (put 'rmail-output-file-alist 'risky-local-variable t) @@ -23265,8 +23198,8 @@ ;;;*** -;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (20998 4934 -;;;;;; 952905 0)) +;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from nxml/rng-cmpct.el (autoload 'rng-c-load-schema "rng-cmpct" "\ @@ -23277,8 +23210,8 @@ ;;;*** -;;;### (autoloads nil "rng-nxml" "nxml/rng-nxml.el" (20813 33065 -;;;;;; 721081 0)) +;;;### (autoloads nil "rng-nxml" "nxml/rng-nxml.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from nxml/rng-nxml.el (autoload 'rng-nxml-mode-init "rng-nxml" "\ @@ -23290,8 +23223,8 @@ ;;;*** -;;;### (autoloads nil "rng-valid" "nxml/rng-valid.el" (20884 6711 -;;;;;; 386198 0)) +;;;### (autoloads nil "rng-valid" "nxml/rng-valid.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from nxml/rng-valid.el (autoload 'rng-validate-mode "rng-valid" "\ @@ -23321,7 +23254,7 @@ ;;;*** -;;;### (autoloads nil "rng-xsd" "nxml/rng-xsd.el" (20709 26818 907104 +;;;### (autoloads nil "rng-xsd" "nxml/rng-xsd.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from nxml/rng-xsd.el @@ -23382,7 +23315,7 @@ ;;;*** -;;;### (autoloads nil "rot13" "rot13.el" (20992 52525 458637 0)) +;;;### (autoloads nil "rot13" "rot13.el" (21187 63826 213216 0)) ;;; Generated autoloads from rot13.el (autoload 'rot13 "rot13" "\ @@ -23419,7 +23352,7 @@ ;;;*** -;;;### (autoloads nil "rst" "textmodes/rst.el" (20932 10282 564846 +;;;### (autoloads nil "rst" "textmodes/rst.el" (21204 37210 187838 ;;;;;; 0)) ;;; Generated autoloads from textmodes/rst.el (add-to-list 'auto-mode-alist (purecopy '("\\.re?st\\'" . rst-mode))) @@ -23450,8 +23383,8 @@ ;;;*** -;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (21176 -;;;;;; 7093 848315 0)) +;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (21228 +;;;;;; 55223 319602 0)) ;;; Generated autoloads from progmodes/ruby-mode.el (push (purecopy '(ruby-mode 1 2)) package--builtin-versions) @@ -23462,13 +23395,13 @@ \(fn)" t nil) -(add-to-list 'auto-mode-alist (cons (purecopy (concat "\\(?:\\." "rb\\|ru\\|rake\\|thor" "\\|jbuilder\\|gemspec" "\\|/" "\\(?:Gem\\|Rake\\|Cap\\|Thor" "Vagrant\\|Guard\\)file" "\\)\\'")) 'ruby-mode)) +(add-to-list 'auto-mode-alist (cons (purecopy (concat "\\(?:\\." "rb\\|ru\\|rake\\|thor" "\\|jbuilder\\|gemspec\\|podspec" "\\|/" "\\(?:Gem\\|Rake\\|Cap\\|Thor" "Vagrant\\|Guard\\|Pod\\)file" "\\)\\'")) 'ruby-mode)) (dolist (name (list "ruby" "rbx" "jruby" "ruby1.9" "ruby1.8")) (add-to-list 'interpreter-mode-alist (cons (purecopy name) 'ruby-mode))) ;;;*** -;;;### (autoloads nil "ruler-mode" "ruler-mode.el" (20791 9657 561026 +;;;### (autoloads nil "ruler-mode" "ruler-mode.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from ruler-mode.el (push (purecopy '(ruler-mode 1 6)) package--builtin-versions) @@ -23487,7 +23420,7 @@ ;;;*** -;;;### (autoloads nil "rx" "emacs-lisp/rx.el" (21177 27957 288172 +;;;### (autoloads nil "rx" "emacs-lisp/rx.el" (21193 16180 875828 ;;;;;; 0)) ;;; Generated autoloads from emacs-lisp/rx.el @@ -23677,7 +23610,7 @@ `not-at-end-of-line' (\\c<) `not-at-beginning-of-line' (\\c>) `alpha-numeric-two-byte' (\\cA) - `chinse-two-byte' (\\cC) + `chinese-two-byte' (\\cC) `greek-two-byte' (\\cG) `japanese-hiragana-two-byte' (\\cH) `indian-tow-byte' (\\cI) @@ -23799,15 +23732,15 @@ ;;;*** -;;;### (autoloads nil "sasl-ntlm" "net/sasl-ntlm.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "sasl-ntlm" "net/sasl-ntlm.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from net/sasl-ntlm.el (push (purecopy '(sasl 1 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "savehist" "savehist.el" (21040 42923 330142 -;;;;;; 838000)) +;;;### (autoloads nil "savehist" "savehist.el" (21187 63826 213216 +;;;;;; 0)) ;;; Generated autoloads from savehist.el (push (purecopy '(savehist 24)) package--builtin-versions) @@ -23839,8 +23772,8 @@ ;;;*** -;;;### (autoloads nil "scheme" "progmodes/scheme.el" (21112 54200 -;;;;;; 857404 0)) +;;;### (autoloads nil "scheme" "progmodes/scheme.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/scheme.el (autoload 'scheme-mode "scheme" "\ @@ -23879,8 +23812,8 @@ ;;;*** -;;;### (autoloads nil "score-mode" "gnus/score-mode.el" (21040 17194 -;;;;;; 398147 0)) +;;;### (autoloads nil "score-mode" "gnus/score-mode.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/score-mode.el (autoload 'gnus-score-mode "score-mode" "\ @@ -23893,7 +23826,7 @@ ;;;*** -;;;### (autoloads nil "scroll-all" "scroll-all.el" (20709 26818 907104 +;;;### (autoloads nil "scroll-all" "scroll-all.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from scroll-all.el @@ -23919,8 +23852,8 @@ ;;;*** -;;;### (autoloads nil "scroll-lock" "scroll-lock.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "scroll-lock" "scroll-lock.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from scroll-lock.el (autoload 'scroll-lock-mode "scroll-lock" "\ @@ -23936,7 +23869,7 @@ ;;;*** -;;;### (autoloads nil "secrets" "net/secrets.el" (21071 59176 747909 +;;;### (autoloads nil "secrets" "net/secrets.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from net/secrets.el (when (featurep 'dbusbind) @@ -23944,8 +23877,8 @@ ;;;*** -;;;### (autoloads nil "semantic" "cedet/semantic.el" (21052 33668 -;;;;;; 690120 156000)) +;;;### (autoloads nil "semantic" "cedet/semantic.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from cedet/semantic.el (push (purecopy '(semantic 2 2)) package--builtin-versions) @@ -24003,7 +23936,7 @@ ;;;*** ;;;### (autoloads nil "semantic/bovine/grammar" "cedet/semantic/bovine/grammar.el" -;;;;;; (21145 51520 109004 0)) +;;;;;; (21187 63826 213216 0)) ;;; Generated autoloads from cedet/semantic/bovine/grammar.el (autoload 'bovine-grammar-mode "semantic/bovine/grammar" "\ @@ -24014,7 +23947,7 @@ ;;;*** ;;;### (autoloads nil "semantic/wisent/grammar" "cedet/semantic/wisent/grammar.el" -;;;;;; (21145 51520 109004 0)) +;;;;;; (21187 63826 213216 0)) ;;; Generated autoloads from cedet/semantic/wisent/grammar.el (autoload 'wisent-grammar-mode "semantic/wisent/grammar" "\ @@ -24024,8 +23957,8 @@ ;;;*** -;;;### (autoloads nil "sendmail" "mail/sendmail.el" (21002 1963 769129 -;;;;;; 0)) +;;;### (autoloads nil "sendmail" "mail/sendmail.el" (21194 37048 +;;;;;; 599945 0)) ;;; Generated autoloads from mail/sendmail.el (defvar mail-from-style 'default "\ @@ -24306,7 +24239,7 @@ ;;;*** -;;;### (autoloads nil "server" "server.el" (20992 52525 458637 0)) +;;;### (autoloads nil "server" "server.el" (21187 63826 213216 0)) ;;; Generated autoloads from server.el (put 'server-host 'risky-local-variable t) @@ -24373,7 +24306,7 @@ ;;;*** -;;;### (autoloads nil "ses" "ses.el" (21132 39477 543900 0)) +;;;### (autoloads nil "ses" "ses.el" (21220 61111 156047 0)) ;;; Generated autoloads from ses.el (autoload 'ses-mode "ses" "\ @@ -24417,8 +24350,8 @@ ;;;*** -;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (20784 -;;;;;; 36406 653593 0)) +;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from textmodes/sgml-mode.el (autoload 'sgml-mode "sgml-mode" "\ @@ -24483,8 +24416,8 @@ ;;;*** -;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (21173 -;;;;;; 31085 798700 0)) +;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (21215 +;;;;;; 8729 374161 0)) ;;; Generated autoloads from progmodes/sh-script.el (push (purecopy '(sh-script 2 0 6)) package--builtin-versions) (put 'sh-shell 'safe-local-variable 'symbolp) @@ -24548,8 +24481,8 @@ ;;;*** -;;;### (autoloads nil "shadow" "emacs-lisp/shadow.el" (21082 29482 -;;;;;; 330637 0)) +;;;### (autoloads nil "shadow" "emacs-lisp/shadow.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from emacs-lisp/shadow.el (autoload 'list-load-path-shadows "shadow" "\ @@ -24598,7 +24531,7 @@ ;;;*** -;;;### (autoloads nil "shadowfile" "shadowfile.el" (20959 55207 940876 +;;;### (autoloads nil "shadowfile" "shadowfile.el" (21222 16439 978802 ;;;;;; 0)) ;;; Generated autoloads from shadowfile.el @@ -24637,7 +24570,7 @@ ;;;*** -;;;### (autoloads nil "shell" "shell.el" (21182 3308 974772 0)) +;;;### (autoloads nil "shell" "shell.el" (21187 63826 213216 0)) ;;; Generated autoloads from shell.el (defvar shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe") "\ @@ -24685,9 +24618,14 @@ ;;;*** -;;;### (autoloads nil "shr" "net/shr.el" (21182 3308 974772 0)) +;;;### (autoloads nil "shr" "net/shr.el" (21228 55223 319602 0)) ;;; Generated autoloads from net/shr.el +(autoload 'shr-render-region "shr" "\ +Display the HTML rendering of the region between BEGIN and END. + +\(fn BEGIN END &optional BUFFER)" t nil) + (autoload 'shr-insert-document "shr" "\ Render the parsed document DOM into the current buffer. DOM should be a parse tree as generated by @@ -24697,7 +24635,7 @@ ;;;*** -;;;### (autoloads nil "sieve" "gnus/sieve.el" (20926 57896 715754 +;;;### (autoloads nil "sieve" "gnus/sieve.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from gnus/sieve.el @@ -24723,8 +24661,8 @@ ;;;*** -;;;### (autoloads nil "sieve-mode" "gnus/sieve-mode.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "sieve-mode" "gnus/sieve-mode.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/sieve-mode.el (autoload 'sieve-mode "sieve-mode" "\ @@ -24739,8 +24677,8 @@ ;;;*** -;;;### (autoloads nil "simula" "progmodes/simula.el" (20777 63161 -;;;;;; 848428 0)) +;;;### (autoloads nil "simula" "progmodes/simula.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from progmodes/simula.el (autoload 'simula-mode "simula" "\ @@ -24788,7 +24726,7 @@ ;;;*** -;;;### (autoloads nil "skeleton" "skeleton.el" (21172 10041 427978 +;;;### (autoloads nil "skeleton" "skeleton.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from skeleton.el @@ -24900,8 +24838,8 @@ ;;;*** -;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (21139 62016 -;;;;;; 336404 0)) +;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from vc/smerge-mode.el (autoload 'smerge-ediff "smerge-mode" "\ @@ -24928,8 +24866,8 @@ ;;;*** -;;;### (autoloads nil "smiley" "gnus/smiley.el" (20726 5184 974741 -;;;;;; 509000)) +;;;### (autoloads nil "smiley" "gnus/smiley.el" (21187 63826 213216 +;;;;;; 0)) ;;; Generated autoloads from gnus/smiley.el (autoload 'smiley-region "smiley" "\ @@ -24946,8 +24884,8 @@ ;;;*** -;;;### (autoloads nil "smtpmail" "mail/smtpmail.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "smtpmail" "mail/smtpmail.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from mail/smtpmail.el (autoload 'smtpmail-send-it "smtpmail" "\ @@ -24962,7 +24900,7 @@ ;;;*** -;;;### (autoloads nil "snake" "play/snake.el" (21040 17194 398147 +;;;### (autoloads nil "snake" "play/snake.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from play/snake.el @@ -24986,8 +24924,8 @@ ;;;*** -;;;### (autoloads nil "snmp-mode" "net/snmp-mode.el" (20891 18859 -;;;;;; 893295 0)) +;;;### (autoloads nil "snmp-mode" "net/snmp-mode.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from net/snmp-mode.el (autoload 'snmp-mode "snmp-mode" "\ @@ -25016,7 +24954,7 @@ ;;;*** -;;;### (autoloads nil "solar" "calendar/solar.el" (20709 26818 907104 +;;;### (autoloads nil "solar" "calendar/solar.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from calendar/solar.el @@ -25032,8 +24970,8 @@ ;;;*** -;;;### (autoloads nil "solitaire" "play/solitaire.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "solitaire" "play/solitaire.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from play/solitaire.el (autoload 'solitaire "solitaire" "\ @@ -25108,7 +25046,7 @@ ;;;*** -;;;### (autoloads nil "sort" "sort.el" (20896 36774 886399 0)) +;;;### (autoloads nil "sort" "sort.el" (21227 34360 69622 0)) ;;; Generated autoloads from sort.el (put 'sort-fold-case 'safe-local-variable 'booleanp) @@ -25261,31 +25199,29 @@ \(fn BEG END)" t nil) (autoload 'delete-duplicate-lines "sort" "\ -Delete duplicate lines in the region between BEG and END. - -If REVERSE is nil, search and delete duplicates forward keeping the first -occurrence of duplicate lines. If REVERSE is non-nil (when called -interactively with C-u prefix), search and delete duplicates backward -keeping the last occurrence of duplicate lines. - -If ADJACENT is non-nil (when called interactively with two C-u prefixes), -delete repeated lines only if they are adjacent. It works like the utility -`uniq' and is useful when lines are already sorted in a large file since -this is more efficient in performance and memory usage than when ADJACENT -is nil that uses additional memory to remember previous lines. - -If KEEP-BLANKS is non-nil (when called interactively with three C-u prefixes), -duplicate blank lines are preserved. - -When called from Lisp and INTERACTIVE is omitted or nil, return the number -of deleted duplicate lines, do not print it; if INTERACTIVE is t, the -function behaves in all respects as if it had been called interactively. +Delete all but one copy of any identical lines in the region. +Non-interactively, arguments BEG and END delimit the region. +Normally it searches forwards, keeping the first instance of +each identical line. If REVERSE is non-nil (interactively, with +a C-u prefix), it searches backwards and keeps the last instance of +each repeated line. + +Identical lines need not be adjacent, unless the argument +ADJACENT is non-nil (interactively, with a C-u C-u prefix). +This is a more efficient mode of operation, and may be useful +on large regions that have already been sorted. + +If the argument KEEP-BLANKS is non-nil (interactively, with a +C-u C-u C-u prefix), it retains repeated blank lines. + +Returns the number of deleted lines. Interactively, or if INTERACTIVE +is non-nil, it also prints a message describing the number of deletions. \(fn BEG END &optional REVERSE ADJACENT KEEP-BLANKS INTERACTIVE)" t nil) ;;;*** -;;;### (autoloads nil "spam" "gnus/spam.el" (20901 54695 989166 0)) +;;;### (autoloads nil "spam" "gnus/spam.el" (21227 851 585414 0)) ;;; Generated autoloads from gnus/spam.el (autoload 'spam-initialize "spam" "\ @@ -25299,8 +25235,8 @@ ;;;*** -;;;### (autoloads nil "spam-report" "gnus/spam-report.el" (20874 -;;;;;; 65006 672942 217000)) +;;;### (autoloads nil "spam-report" "gnus/spam-report.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from gnus/spam-report.el (autoload 'spam-report-process-queue "spam-report" "\ @@ -25342,7 +25278,7 @@ ;;;*** -;;;### (autoloads nil "speedbar" "speedbar.el" (21024 28968 738399 +;;;### (autoloads nil "speedbar" "speedbar.el" (21220 61111 156047 ;;;;;; 0)) ;;; Generated autoloads from speedbar.el @@ -25367,7 +25303,7 @@ ;;;*** -;;;### (autoloads nil "spook" "play/spook.el" (21041 38058 75002 +;;;### (autoloads nil "spook" "play/spook.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from play/spook.el @@ -25383,7 +25319,7 @@ ;;;*** -;;;### (autoloads nil "sql" "progmodes/sql.el" (21082 29482 330637 +;;;### (autoloads nil "sql" "progmodes/sql.el" (21190 39993 744837 ;;;;;; 0)) ;;; Generated autoloads from progmodes/sql.el (push (purecopy '(sql 3 3)) package--builtin-versions) @@ -25409,8 +25345,6 @@ \(fn PRODUCT KEYWORDS &optional APPEND)" nil nil) -(eval '(defun sql-help nil #("Show short help for the SQL modes.\n\nUse an entry function to open an interactive SQL buffer. This buffer is\nusually named `*SQL*'. The name of the major mode is SQLi.\n\nUse the following commands to start a specific SQL interpreter:\n\n \\\\FREE\n\nOther non-free SQL implementations are also supported:\n\n \\\\NONFREE\n\nBut we urge you to choose a free implementation instead of these.\n\nYou can also use \\[sql-product-interactive] to invoke the\ninterpreter for the current `sql-product'.\n\nOnce you have the SQLi buffer, you can enter SQL statements in the\nbuffer. The output generated is appended to the buffer and a new prompt\nis generated. See the In/Out menu in the SQLi buffer for some functions\nthat help you navigate through the buffer, the input history, etc.\n\nIf you have a really complex SQL statement or if you are writing a\nprocedure, you can do this in a separate buffer. Put the new buffer in\n`sql-mode' by calling \\[sql-mode]. The name of this buffer can be\nanything. The name of the major mode is SQL.\n\nIn this SQL buffer (SQL mode), you can send the region or the entire\nbuffer to the interactive SQL buffer (SQLi mode). The results are\nappended to the SQLi buffer without disturbing your SQL buffer." 0 1 (dynamic-docstring-function sql--make-help-docstring)) (interactive) (describe-function 'sql-help))) - (autoload 'sql-mode "sql" "\ Major mode to edit SQL. @@ -25847,7 +25781,7 @@ ;;;*** -;;;### (autoloads nil "srecode" "cedet/srecode.el" (20748 62911 684442 +;;;### (autoloads nil "srecode" "cedet/srecode.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from cedet/srecode.el (push (purecopy '(srecode 1 2)) package--builtin-versions) @@ -25855,7 +25789,7 @@ ;;;*** ;;;### (autoloads nil "srecode/srt-mode" "cedet/srecode/srt-mode.el" -;;;;;; (21048 47760 436258 0)) +;;;;;; (21187 63826 213216 0)) ;;; Generated autoloads from cedet/srecode/srt-mode.el (autoload 'srecode-template-mode "srecode/srt-mode" "\ @@ -25867,8 +25801,8 @@ ;;;*** -;;;### (autoloads nil "starttls" "gnus/starttls.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "starttls" "gnus/starttls.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from gnus/starttls.el (autoload 'starttls-open-stream "starttls" "\ @@ -25891,7 +25825,8 @@ ;;;*** -;;;### (autoloads nil "strokes" "strokes.el" (20799 169 640767 0)) +;;;### (autoloads nil "strokes" "strokes.el" (21222 16439 978802 +;;;;;; 0)) ;;; Generated autoloads from strokes.el (autoload 'strokes-global-set-stroke "strokes" "\ @@ -26025,8 +25960,8 @@ ;;;*** -;;;### (autoloads nil "subword" "progmodes/subword.el" (21086 26537 -;;;;;; 509049 0)) +;;;### (autoloads nil "subword" "progmodes/subword.el" (21193 16180 +;;;;;; 875828 0)) ;;; Generated autoloads from progmodes/subword.el (autoload 'subword-mode "subword" "\ @@ -26120,8 +26055,8 @@ ;;;*** -;;;### (autoloads nil "supercite" "mail/supercite.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "supercite" "mail/supercite.el" (21215 9357 +;;;;;; 840145 208000)) ;;; Generated autoloads from mail/supercite.el (autoload 'sc-cite-original "supercite" "\ @@ -26153,7 +26088,7 @@ ;;;*** -;;;### (autoloads nil "t-mouse" "t-mouse.el" (20709 26818 907104 +;;;### (autoloads nil "t-mouse" "t-mouse.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from t-mouse.el @@ -26182,7 +26117,7 @@ ;;;*** -;;;### (autoloads nil "tabify" "tabify.el" (20999 25770 522517 0)) +;;;### (autoloads nil "tabify" "tabify.el" (21187 63826 213216 0)) ;;; Generated autoloads from tabify.el (autoload 'untabify "tabify" "\ @@ -26211,7 +26146,7 @@ ;;;*** -;;;### (autoloads nil "table" "textmodes/table.el" (20709 26818 907104 +;;;### (autoloads nil "table" "textmodes/table.el" (21194 37048 599945 ;;;;;; 0)) ;;; Generated autoloads from textmodes/table.el @@ -26804,7 +26739,7 @@ ;;;*** -;;;### (autoloads nil "talk" "talk.el" (20992 52525 458637 0)) +;;;### (autoloads nil "talk" "talk.el" (21187 63826 213216 0)) ;;; Generated autoloads from talk.el (autoload 'talk-connect "talk" "\ @@ -26819,7 +26754,7 @@ ;;;*** -;;;### (autoloads nil "tar-mode" "tar-mode.el" (20932 10282 564846 +;;;### (autoloads nil "tar-mode" "tar-mode.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from tar-mode.el @@ -26843,7 +26778,7 @@ ;;;*** -;;;### (autoloads nil "tcl" "progmodes/tcl.el" (20903 10024 645978 +;;;### (autoloads nil "tcl" "progmodes/tcl.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from progmodes/tcl.el @@ -26892,7 +26827,7 @@ ;;;*** -;;;### (autoloads nil "telnet" "net/telnet.el" (20709 26818 907104 +;;;### (autoloads nil "telnet" "net/telnet.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from net/telnet.el @@ -26918,7 +26853,7 @@ ;;;*** -;;;### (autoloads nil "term" "term.el" (21049 14338 391345 0)) +;;;### (autoloads nil "term" "term.el" (21215 43189 822371 0)) ;;; Generated autoloads from term.el (autoload 'make-term "term" "\ @@ -26960,8 +26895,8 @@ ;;;*** -;;;### (autoloads nil "testcover" "emacs-lisp/testcover.el" (20878 -;;;;;; 6823 881439 0)) +;;;### (autoloads nil "testcover" "emacs-lisp/testcover.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from emacs-lisp/testcover.el (autoload 'testcover-this-defun "testcover" "\ @@ -26971,8 +26906,8 @@ ;;;*** -;;;### (autoloads nil "tetris" "play/tetris.el" (20874 65006 672942 -;;;;;; 217000)) +;;;### (autoloads nil "tetris" "play/tetris.el" (21187 63826 213216 +;;;;;; 0)) ;;; Generated autoloads from play/tetris.el (push (purecopy '(tetris 2 1)) package--builtin-versions) @@ -26997,8 +26932,8 @@ ;;;*** -;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (21136 36544 -;;;;;; 158478 0)) +;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (21199 54969 +;;;;;; 178188 0)) ;;; Generated autoloads from textmodes/tex-mode.el (defvar tex-shell-file-name nil "\ @@ -27299,8 +27234,8 @@ ;;;*** -;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from textmodes/texinfmt.el (autoload 'texinfo-format-buffer "texinfmt" "\ @@ -27339,8 +27274,8 @@ ;;;*** -;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from textmodes/texinfo.el (defvar texinfo-open-quote (purecopy "``") "\ @@ -27424,8 +27359,8 @@ ;;;*** -;;;### (autoloads nil "thai-util" "language/thai-util.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "thai-util" "language/thai-util.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from language/thai-util.el (autoload 'thai-compose-region "thai-util" "\ @@ -27452,7 +27387,7 @@ ;;;*** -;;;### (autoloads nil "thingatpt" "thingatpt.el" (21114 9531 52922 +;;;### (autoloads nil "thingatpt" "thingatpt.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from thingatpt.el @@ -27517,7 +27452,7 @@ ;;;*** -;;;### (autoloads nil "thumbs" "thumbs.el" (20958 59019 473587 89000)) +;;;### (autoloads nil "thumbs" "thumbs.el" (21187 63826 213216 0)) ;;; Generated autoloads from thumbs.el (autoload 'thumbs-find-thumb "thumbs" "\ @@ -27551,8 +27486,8 @@ ;;;*** -;;;### (autoloads nil "tibet-util" "language/tibet-util.el" (20826 -;;;;;; 45095 436233 0)) +;;;### (autoloads nil "tibet-util" "language/tibet-util.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from language/tibet-util.el (autoload 'tibetan-char-p "tibet-util" "\ @@ -27625,8 +27560,8 @@ ;;;*** -;;;### (autoloads nil "tildify" "textmodes/tildify.el" (20791 9657 -;;;;;; 561026 0)) +;;;### (autoloads nil "tildify" "textmodes/tildify.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from textmodes/tildify.el (push (purecopy '(tildify 4 5)) package--builtin-versions) @@ -27650,7 +27585,7 @@ ;;;*** -;;;### (autoloads nil "time" "time.el" (21145 51520 109004 0)) +;;;### (autoloads nil "time" "time.el" (21187 63826 213216 0)) ;;; Generated autoloads from time.el (defvar display-time-day-and-date nil "\ @@ -27712,8 +27647,8 @@ ;;;*** -;;;### (autoloads nil "time-date" "calendar/time-date.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "time-date" "calendar/time-date.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from calendar/time-date.el (autoload 'date-to-time "time-date" "\ @@ -27824,7 +27759,7 @@ ;;;*** -;;;### (autoloads nil "time-stamp" "time-stamp.el" (20709 26818 907104 +;;;### (autoloads nil "time-stamp" "time-stamp.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from time-stamp.el (put 'time-stamp-format 'safe-local-variable 'stringp) @@ -27865,8 +27800,8 @@ ;;;*** -;;;### (autoloads nil "timeclock" "calendar/timeclock.el" (21013 -;;;;;; 58662 278539 0)) +;;;### (autoloads nil "timeclock" "calendar/timeclock.el" (21222 +;;;;;; 16439 978802 0)) ;;; Generated autoloads from calendar/timeclock.el (push (purecopy '(timeclock 2 6 1)) package--builtin-versions) @@ -27976,7 +27911,7 @@ ;;;*** ;;;### (autoloads nil "titdic-cnv" "international/titdic-cnv.el" -;;;;;; (21145 51520 109004 0)) +;;;;;; (21187 63826 213216 0)) ;;; Generated autoloads from international/titdic-cnv.el (autoload 'titdic-convert "titdic-cnv" "\ @@ -27998,7 +27933,7 @@ ;;;*** -;;;### (autoloads nil "tmm" "tmm.el" (21086 55571 430148 991000)) +;;;### (autoloads nil "tmm" "tmm.el" (21187 63826 213216 0)) ;;; Generated autoloads from tmm.el (define-key global-map "\M-`" 'tmm-menubar) (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse) @@ -28040,8 +27975,8 @@ ;;;*** -;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (21176 -;;;;;; 7093 848315 0)) +;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (21204 +;;;;;; 37210 187838 0)) ;;; Generated autoloads from calendar/todo-mode.el (autoload 'todo-show "todo-mode" "\ @@ -28114,7 +28049,7 @@ ;;;*** -;;;### (autoloads nil "tool-bar" "tool-bar.el" (20709 26818 907104 +;;;### (autoloads nil "tool-bar" "tool-bar.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from tool-bar.el @@ -28185,8 +28120,8 @@ ;;;*** -;;;### (autoloads nil "tpu-edt" "emulation/tpu-edt.el" (21105 26139 -;;;;;; 752484 0)) +;;;### (autoloads nil "tpu-edt" "emulation/tpu-edt.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from emulation/tpu-edt.el (push (purecopy '(tpu-edt 4 5)) package--builtin-versions) @@ -28216,8 +28151,8 @@ ;;;*** -;;;### (autoloads nil "tpu-mapper" "emulation/tpu-mapper.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "tpu-mapper" "emulation/tpu-mapper.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from emulation/tpu-mapper.el (autoload 'tpu-mapper "tpu-mapper" "\ @@ -28251,7 +28186,7 @@ ;;;*** -;;;### (autoloads nil "tq" "emacs-lisp/tq.el" (21074 35375 473679 +;;;### (autoloads nil "tq" "emacs-lisp/tq.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from emacs-lisp/tq.el @@ -28265,8 +28200,8 @@ ;;;*** -;;;### (autoloads nil "trace" "emacs-lisp/trace.el" (21162 14870 -;;;;;; 257953 0)) +;;;### (autoloads nil "trace" "emacs-lisp/trace.el" (21227 34360 +;;;;;; 69622 0)) ;;; Generated autoloads from emacs-lisp/trace.el (defvar trace-buffer "*trace-output*" "\ @@ -28281,22 +28216,29 @@ \(fn &rest VALUES)" nil nil) (autoload 'trace-function-foreground "trace" "\ -Traces FUNCTION with trace output going to BUFFER. -For every call of FUNCTION Lisp-style trace messages that display argument -and return values will be inserted into BUFFER. This function generates the -trace advice for FUNCTION and activates it together with any other advice -there might be!! The trace BUFFER will popup whenever FUNCTION is called. -Do not use this to trace functions that switch buffers or do any other -display oriented stuff, use `trace-function-background' instead. - -To untrace a function, use `untrace-function' or `untrace-all'. +Trace calls to function FUNCTION. +With a prefix argument, also prompt for the trace buffer (default +`trace-buffer'), and a Lisp expression CONTEXT. + +Tracing a function causes every call to that function to insert +into BUFFER Lisp-style trace messages that display the function's +arguments and return values. It also evaluates CONTEXT, if that is +non-nil, and inserts its value too. For example, you can use this +to track the current buffer, or position of point. + +This function creates BUFFER if it does not exist. This buffer will +popup whenever FUNCTION is called. Do not use this function to trace +functions that switch buffers, or do any other display-oriented +stuff - use `trace-function-background' instead. + +To stop tracing a function, use `untrace-function' or `untrace-all'. \(fn FUNCTION &optional BUFFER CONTEXT)" t nil) (autoload 'trace-function-background "trace" "\ -Traces FUNCTION with trace output going quietly to BUFFER. -Like `trace-function-foreground' but without popping up the trace BUFFER or -changing the window configuration. +Trace calls to function FUNCTION, quietly. +This is like `trace-function-foreground', but without popping up +the output buffer or changing the window configuration. \(fn FUNCTION &optional BUFFER CONTEXT)" t nil) @@ -28304,7 +28246,7 @@ ;;;*** -;;;### (autoloads nil "tramp" "net/tramp.el" (21141 54458 609734 +;;;### (autoloads nil "tramp" "net/tramp.el" (21209 55410 356925 ;;;;;; 0)) ;;; Generated autoloads from net/tramp.el @@ -28428,8 +28370,8 @@ ;;;*** -;;;### (autoloads nil "tramp-ftp" "net/tramp-ftp.el" (21089 2732 -;;;;;; 351717 0)) +;;;### (autoloads nil "tramp-ftp" "net/tramp-ftp.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from net/tramp-ftp.el (autoload 'tramp-ftp-enable-ange-ftp "tramp-ftp" "\ @@ -28439,7 +28381,7 @@ ;;;*** -;;;### (autoloads nil "tutorial" "tutorial.el" (20999 25770 522517 +;;;### (autoloads nil "tutorial" "tutorial.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from tutorial.el @@ -28475,8 +28417,8 @@ ;;;*** -;;;### (autoloads nil "two-column" "textmodes/two-column.el" (21049 -;;;;;; 1191 520844 232000)) +;;;### (autoloads nil "two-column" "textmodes/two-column.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from textmodes/two-column.el (autoload '2C-command "two-column" () t 'keymap) (global-set-key "\C-x6" '2C-command) @@ -28523,8 +28465,8 @@ ;;;*** -;;;### (autoloads nil "type-break" "type-break.el" (20884 7264 912957 -;;;;;; 506000)) +;;;### (autoloads nil "type-break" "type-break.el" (21222 16439 978802 +;;;;;; 0)) ;;; Generated autoloads from type-break.el (defvar type-break-mode nil "\ @@ -28656,7 +28598,7 @@ ;;;*** -;;;### (autoloads nil "uce" "mail/uce.el" (21082 29482 330637 0)) +;;;### (autoloads nil "uce" "mail/uce.el" (21199 54969 178188 0)) ;;; Generated autoloads from mail/uce.el (autoload 'uce-reply-to-uce "uce" "\ @@ -28670,7 +28612,7 @@ ;;;*** ;;;### (autoloads nil "ucs-normalize" "international/ucs-normalize.el" -;;;;;; (20709 26818 907104 0)) +;;;;;; (21194 37048 599945 0)) ;;; Generated autoloads from international/ucs-normalize.el (autoload 'ucs-normalize-NFD-region "ucs-normalize" "\ @@ -28735,8 +28677,8 @@ ;;;*** -;;;### (autoloads nil "underline" "textmodes/underline.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "underline" "textmodes/underline.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from textmodes/underline.el (autoload 'underline-region "underline" "\ @@ -28756,7 +28698,7 @@ ;;;*** -;;;### (autoloads nil "unrmail" "mail/unrmail.el" (20895 15912 444844 +;;;### (autoloads nil "unrmail" "mail/unrmail.el" (21199 54969 178188 ;;;;;; 0)) ;;; Generated autoloads from mail/unrmail.el @@ -28777,8 +28719,8 @@ ;;;*** -;;;### (autoloads nil "unsafep" "emacs-lisp/unsafep.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "unsafep" "emacs-lisp/unsafep.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from emacs-lisp/unsafep.el (autoload 'unsafep "unsafep" "\ @@ -28790,7 +28732,7 @@ ;;;*** -;;;### (autoloads nil "url" "url/url.el" (21172 10041 427978 0)) +;;;### (autoloads nil "url" "url/url.el" (21187 63826 213216 0)) ;;; Generated autoloads from url/url.el (autoload 'url-retrieve "url" "\ @@ -28837,7 +28779,7 @@ ;;;*** -;;;### (autoloads nil "url-auth" "url/url-auth.el" (20709 26818 907104 +;;;### (autoloads nil "url-auth" "url/url-auth.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from url/url-auth.el @@ -28879,8 +28821,8 @@ ;;;*** -;;;### (autoloads nil "url-cache" "url/url-cache.el" (20751 39094 -;;;;;; 700824 0)) +;;;### (autoloads nil "url-cache" "url/url-cache.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from url/url-cache.el (autoload 'url-store-in-cache "url-cache" "\ @@ -28901,7 +28843,7 @@ ;;;*** -;;;### (autoloads nil "url-cid" "url/url-cid.el" (20709 26818 907104 +;;;### (autoloads nil "url-cid" "url/url-cid.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from url/url-cid.el @@ -28912,7 +28854,7 @@ ;;;*** -;;;### (autoloads nil "url-dav" "url/url-dav.el" (20891 18859 893295 +;;;### (autoloads nil "url-dav" "url/url-dav.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from url/url-dav.el @@ -28947,7 +28889,7 @@ ;;;*** -;;;### (autoloads nil "url-file" "url/url-file.el" (20709 26818 907104 +;;;### (autoloads nil "url-file" "url/url-file.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from url/url-file.el @@ -28958,7 +28900,7 @@ ;;;*** -;;;### (autoloads nil "url-gw" "url/url-gw.el" (20709 26818 907104 +;;;### (autoloads nil "url-gw" "url/url-gw.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from url/url-gw.el @@ -28977,8 +28919,8 @@ ;;;*** -;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (20984 -;;;;;; 58408 354075 0)) +;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from url/url-handlers.el (defvar url-handler-mode nil "\ @@ -29032,7 +28974,7 @@ ;;;*** -;;;### (autoloads nil "url-http" "url/url-http.el" (21063 65063 266334 +;;;### (autoloads nil "url-http" "url/url-http.el" (21197 39236 714874 ;;;;;; 0)) ;;; Generated autoloads from url/url-http.el (autoload 'url-default-expander "url-expand") @@ -29045,7 +28987,7 @@ ;;;*** -;;;### (autoloads nil "url-irc" "url/url-irc.el" (20709 26818 907104 +;;;### (autoloads nil "url-irc" "url/url-irc.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from url/url-irc.el @@ -29056,7 +28998,7 @@ ;;;*** -;;;### (autoloads nil "url-ldap" "url/url-ldap.el" (20709 26818 907104 +;;;### (autoloads nil "url-ldap" "url/url-ldap.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from url/url-ldap.el @@ -29070,8 +29012,8 @@ ;;;*** -;;;### (autoloads nil "url-mailto" "url/url-mailto.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "url-mailto" "url/url-mailto.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from url/url-mailto.el (autoload 'url-mail "url-mailto" "\ @@ -29086,8 +29028,8 @@ ;;;*** -;;;### (autoloads nil "url-misc" "url/url-misc.el" (21047 30582 575560 -;;;;;; 699000)) +;;;### (autoloads nil "url-misc" "url/url-misc.el" (21187 63826 213216 +;;;;;; 0)) ;;; Generated autoloads from url/url-misc.el (autoload 'url-man "url-misc" "\ @@ -29118,8 +29060,8 @@ ;;;*** -;;;### (autoloads nil "url-news" "url/url-news.el" (20884 7264 912957 -;;;;;; 506000)) +;;;### (autoloads nil "url-news" "url/url-news.el" (21187 63826 213216 +;;;;;; 0)) ;;; Generated autoloads from url/url-news.el (autoload 'url-news "url-news" "\ @@ -29134,7 +29076,7 @@ ;;;*** -;;;### (autoloads nil "url-ns" "url/url-ns.el" (20709 26818 907104 +;;;### (autoloads nil "url-ns" "url/url-ns.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from url/url-ns.el @@ -29175,8 +29117,8 @@ ;;;*** -;;;### (autoloads nil "url-parse" "url/url-parse.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "url-parse" "url/url-parse.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from url/url-parse.el (autoload 'url-recreate-url "url-parse" "\ @@ -29227,8 +29169,8 @@ ;;;*** -;;;### (autoloads nil "url-privacy" "url/url-privacy.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "url-privacy" "url/url-privacy.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from url/url-privacy.el (autoload 'url-setup-privacy-info "url-privacy" "\ @@ -29238,8 +29180,8 @@ ;;;*** -;;;### (autoloads nil "url-queue" "url/url-queue.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "url-queue" "url/url-queue.el" (21193 16180 +;;;;;; 875828 0)) ;;; Generated autoloads from url/url-queue.el (autoload 'url-queue-retrieve "url-queue" "\ @@ -29253,7 +29195,7 @@ ;;;*** -;;;### (autoloads nil "url-util" "url/url-util.el" (21063 65063 266334 +;;;### (autoloads nil "url-util" "url/url-util.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from url/url-util.el @@ -29422,7 +29364,7 @@ ;;;*** -;;;### (autoloads nil "userlock" "userlock.el" (20998 4934 952905 +;;;### (autoloads nil "userlock" "userlock.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from userlock.el @@ -29451,8 +29393,8 @@ ;;;*** -;;;### (autoloads nil "utf-7" "international/utf-7.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "utf-7" "international/utf-7.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from international/utf-7.el (autoload 'utf-7-post-read-conversion "utf-7" "\ @@ -29477,7 +29419,7 @@ ;;;*** -;;;### (autoloads nil "utf7" "gnus/utf7.el" (20791 9657 561026 0)) +;;;### (autoloads nil "utf7" "gnus/utf7.el" (21187 63826 213216 0)) ;;; Generated autoloads from gnus/utf7.el (autoload 'utf7-encode "utf7" "\ @@ -29487,8 +29429,8 @@ ;;;*** -;;;### (autoloads nil "uudecode" "mail/uudecode.el" (20709 26818 -;;;;;; 907104 0)) +;;;### (autoloads nil "uudecode" "mail/uudecode.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from mail/uudecode.el (autoload 'uudecode-decode-region-external "uudecode" "\ @@ -29512,7 +29454,7 @@ ;;;*** -;;;### (autoloads nil "vc" "vc/vc.el" (21180 4150 280102 0)) +;;;### (autoloads nil "vc" "vc/vc.el" (21187 63826 213216 0)) ;;; Generated autoloads from vc/vc.el (defvar vc-checkout-hook nil "\ @@ -29793,8 +29735,8 @@ ;;;*** -;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (21031 51082 -;;;;;; 798722 0)) +;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from vc/vc-annotate.el (autoload 'vc-annotate "vc-annotate" "\ @@ -29831,7 +29773,7 @@ ;;;*** -;;;### (autoloads nil "vc-arch" "vc/vc-arch.el" (21071 59176 747909 +;;;### (autoloads nil "vc-arch" "vc/vc-arch.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from vc/vc-arch.el (defun vc-arch-registered (file) @@ -29842,7 +29784,7 @@ ;;;*** -;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (21041 38058 75002 +;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from vc/vc-bzr.el @@ -29859,7 +29801,7 @@ ;;;*** -;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (21071 59176 747909 +;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from vc/vc-cvs.el (defun vc-cvs-registered (f) @@ -29871,7 +29813,7 @@ ;;;*** -;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (21053 29224 547064 +;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from vc/vc-dir.el @@ -29896,8 +29838,8 @@ ;;;*** -;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (21143 -;;;;;; 9782 474230 0)) +;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from vc/vc-dispatcher.el (autoload 'vc-do-command "vc-dispatcher" "\ @@ -29920,8 +29862,8 @@ ;;;*** -;;;### (autoloads nil "vc-git" "vc/vc-git.el" (21160 54638 30774 -;;;;;; 0)) +;;;### (autoloads nil "vc-git" "vc/vc-git.el" (21215 9704 346293 +;;;;;; 827000)) ;;; Generated autoloads from vc/vc-git.el (defun vc-git-registered (file) "Return non-nil if FILE is registered with git." @@ -29932,7 +29874,7 @@ ;;;*** -;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (21031 51082 798722 0)) +;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (21187 63826 213216 0)) ;;; Generated autoloads from vc/vc-hg.el (defun vc-hg-registered (file) "Return non-nil if FILE is registered with hg." @@ -29943,7 +29885,7 @@ ;;;*** -;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (21071 59176 747909 +;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from vc/vc-mtn.el @@ -29960,7 +29902,7 @@ ;;;*** -;;;### (autoloads nil "vc-rcs" "vc/vc-rcs.el" (21113 26590 654875 +;;;### (autoloads nil "vc-rcs" "vc/vc-rcs.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from vc/vc-rcs.el @@ -29974,7 +29916,7 @@ ;;;*** -;;;### (autoloads nil "vc-sccs" "vc/vc-sccs.el" (21056 5418 85093 +;;;### (autoloads nil "vc-sccs" "vc/vc-sccs.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from vc/vc-sccs.el @@ -29993,8 +29935,8 @@ ;;;*** -;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (21077 42241 670130 -;;;;;; 556000)) +;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (21187 63826 213216 +;;;;;; 0)) ;;; Generated autoloads from vc/vc-svn.el (defun vc-svn-registered (f) (let ((admin-dir (cond ((and (eq system-type 'windows-nt) @@ -30007,8 +29949,8 @@ ;;;*** -;;;### (autoloads nil "vera-mode" "progmodes/vera-mode.el" (20893 -;;;;;; 60586 188550 0)) +;;;### (autoloads nil "vera-mode" "progmodes/vera-mode.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from progmodes/vera-mode.el (push (purecopy '(vera-mode 2 28)) package--builtin-versions) (add-to-list 'auto-mode-alist (cons (purecopy "\\.vr[hi]?\\'") 'vera-mode)) @@ -30067,7 +30009,7 @@ ;;;*** ;;;### (autoloads nil "verilog-mode" "progmodes/verilog-mode.el" -;;;;;; (21124 45367 88860 0)) +;;;;;; (21199 54969 178188 0)) ;;; Generated autoloads from progmodes/verilog-mode.el (autoload 'verilog-mode "verilog-mode" "\ @@ -30206,8 +30148,8 @@ ;;;*** -;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (20892 -;;;;;; 39729 858825 0)) +;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from progmodes/vhdl-mode.el (autoload 'vhdl-mode "vhdl-mode" "\ @@ -30814,8 +30756,8 @@ ;;;*** -;;;### (autoloads nil "viet-util" "language/viet-util.el" (20826 -;;;;;; 45095 436233 0)) +;;;### (autoloads nil "viet-util" "language/viet-util.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from language/viet-util.el (autoload 'viet-encode-viscii-char "viet-util" "\ @@ -30859,7 +30801,7 @@ ;;;*** -;;;### (autoloads nil "view" "view.el" (20999 25770 522517 0)) +;;;### (autoloads nil "view" "view.el" (21187 63826 213216 0)) ;;; Generated autoloads from view.el (defvar view-remove-frame-by-deleting t "\ @@ -31115,7 +31057,7 @@ ;;;*** -;;;### (autoloads nil "vip" "emulation/vip.el" (20929 34089 117790 +;;;### (autoloads nil "vip" "emulation/vip.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from emulation/vip.el @@ -31131,7 +31073,7 @@ ;;;*** -;;;### (autoloads nil "viper" "emulation/viper.el" (20954 37295 781599 +;;;### (autoloads nil "viper" "emulation/viper.el" (21222 16439 978802 ;;;;;; 0)) ;;; Generated autoloads from emulation/viper.el (push (purecopy '(viper 3 14 1)) package--builtin-versions) @@ -31149,8 +31091,8 @@ ;;;*** -;;;### (autoloads nil "warnings" "emacs-lisp/warnings.el" (20709 -;;;;;; 26818 907104 0)) +;;;### (autoloads nil "warnings" "emacs-lisp/warnings.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from emacs-lisp/warnings.el (defvar warning-prefix-function nil "\ @@ -31239,7 +31181,7 @@ ;;;*** -;;;### (autoloads nil "wdired" "wdired.el" (21049 14338 391345 0)) +;;;### (autoloads nil "wdired" "wdired.el" (21187 63826 213216 0)) ;;; Generated autoloads from wdired.el (push (purecopy '(wdired 2 0)) package--builtin-versions) @@ -31257,7 +31199,7 @@ ;;;*** -;;;### (autoloads nil "webjump" "net/webjump.el" (20927 49244 970422 +;;;### (autoloads nil "webjump" "net/webjump.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from net/webjump.el @@ -31274,8 +31216,8 @@ ;;;*** -;;;### (autoloads nil "which-func" "progmodes/which-func.el" (20895 -;;;;;; 15912 444844 0)) +;;;### (autoloads nil "which-func" "progmodes/which-func.el" (21187 +;;;;;; 63826 213216 0)) ;;; Generated autoloads from progmodes/which-func.el (put 'which-func-format 'risky-local-variable t) (put 'which-func-current 'risky-local-variable t) @@ -31305,7 +31247,7 @@ ;;;*** -;;;### (autoloads nil "whitespace" "whitespace.el" (20986 60038 720063 +;;;### (autoloads nil "whitespace" "whitespace.el" (21222 47372 997188 ;;;;;; 0)) ;;; Generated autoloads from whitespace.el (push (purecopy '(whitespace 13 2 2)) package--builtin-versions) @@ -31705,7 +31647,7 @@ ;;;*** -;;;### (autoloads nil "wid-browse" "wid-browse.el" (20709 26818 907104 +;;;### (autoloads nil "wid-browse" "wid-browse.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from wid-browse.el @@ -31734,7 +31676,7 @@ ;;;*** -;;;### (autoloads nil "wid-edit" "wid-edit.el" (20959 55207 940876 +;;;### (autoloads nil "wid-edit" "wid-edit.el" (21197 43194 200483 ;;;;;; 0)) ;;; Generated autoloads from wid-edit.el @@ -31777,7 +31719,7 @@ ;;;*** -;;;### (autoloads nil "windmove" "windmove.el" (21163 20357 763056 +;;;### (autoloads nil "windmove" "windmove.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from windmove.el @@ -31830,7 +31772,7 @@ ;;;*** -;;;### (autoloads nil "winner" "winner.el" (20992 52525 458637 0)) +;;;### (autoloads nil "winner" "winner.el" (21187 63826 213216 0)) ;;; Generated autoloads from winner.el (defvar winner-mode nil "\ @@ -31853,7 +31795,7 @@ ;;;*** -;;;### (autoloads nil "woman" "woman.el" (20999 25770 522517 0)) +;;;### (autoloads nil "woman" "woman.el" (21220 61111 156047 0)) ;;; Generated autoloads from woman.el (push (purecopy '(woman 0 551)) package--builtin-versions) @@ -31902,8 +31844,8 @@ ;;;*** -;;;### (autoloads nil "ws-mode" "emulation/ws-mode.el" (21040 17194 -;;;;;; 398147 0)) +;;;### (autoloads nil "ws-mode" "emulation/ws-mode.el" (21187 63826 +;;;;;; 213216 0)) ;;; Generated autoloads from emulation/ws-mode.el (push (purecopy '(ws-mode 0 7)) package--builtin-versions) @@ -31924,7 +31866,7 @@ ;;;*** -;;;### (autoloads nil "xml" "xml.el" (21002 1963 769129 0)) +;;;### (autoloads nil "xml" "xml.el" (21187 63826 213216 0)) ;;; Generated autoloads from xml.el (autoload 'xml-parse-file "xml" "\ @@ -31980,7 +31922,7 @@ ;;;*** -;;;### (autoloads nil "xmltok" "nxml/xmltok.el" (21075 56234 349623 +;;;### (autoloads nil "xmltok" "nxml/xmltok.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from nxml/xmltok.el @@ -31999,7 +31941,7 @@ ;;;*** -;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (20797 44848 327754 +;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (21187 63826 213216 ;;;;;; 0)) ;;; Generated autoloads from xt-mouse.el @@ -32029,7 +31971,7 @@ ;;;*** -;;;### (autoloads nil "yenc" "gnus/yenc.el" (20709 26818 907104 0)) +;;;### (autoloads nil "yenc" "gnus/yenc.el" (21187 63826 213216 0)) ;;; Generated autoloads from gnus/yenc.el (autoload 'yenc-decode-region "yenc" "\ @@ -32044,7 +31986,7 @@ ;;;*** -;;;### (autoloads nil "zone" "play/zone.el" (20992 52525 458637 0)) +;;;### (autoloads nil "zone" "play/zone.el" (21187 63826 213216 0)) ;;; Generated autoloads from play/zone.el (autoload 'zone "zone" "\ @@ -32060,35 +32002,36 @@ ;;;;;; "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/cpp-root.el" "cedet/ede/custom.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/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" +;;;;;; "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/cpp-root.el" "cedet/ede/custom.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/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" @@ -32103,13 +32046,13 @@ ;;;;;; "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" @@ -32119,14 +32062,16 @@ ;;;;;; "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.el" "cedet/srecode/table.el" "cedet/srecode/template.el" -;;;;;; "cedet/srecode/texi.el" "cus-dep.el" "dframe.el" "dired-aux.el" -;;;;;; "dired-x.el" "dos-fns.el" "dos-vars.el" "dos-w32.el" "dynamic-setting.el" -;;;;;; "emacs-lisp/authors.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" +;;;;;; "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" "dos-fns.el" "dos-vars.el" +;;;;;; "dos-w32.el" "dynamic-setting.el" "emacs-lisp/authors.el" +;;;;;; "emacs-lisp/avl-tree.el" "emacs-lisp/bindat.el" "emacs-lisp/byte-opt.el" +;;;;;; "emacs-lisp/cl-extra.el" "emacs-lisp/cl-loaddefs.el" "emacs-lisp/cl-macs.el" ;;;;;; "emacs-lisp/cl-seq.el" "emacs-lisp/cl.el" "emacs-lisp/eieio-base.el" -;;;;;; "emacs-lisp/eieio-datadebug.el" "emacs-lisp/eieio-speedbar.el" +;;;;;; "emacs-lisp/eieio-custom.el" "emacs-lisp/eieio-datadebug.el" +;;;;;; "emacs-lisp/eieio-opt.el" "emacs-lisp/eieio-speedbar.el" ;;;;;; "emacs-lisp/find-gc.el" "emacs-lisp/gulp.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" @@ -32142,10 +32087,10 @@ ;;;;;; "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" +;;;;;; "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-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" @@ -32227,37 +32172,37 @@ ;;;;;; "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" "play/meese.el" "progmodes/ada-prj.el" -;;;;;; "progmodes/cc-align.el" "progmodes/cc-awk.el" "progmodes/cc-bytecomp.el" -;;;;;; "progmodes/cc-cmds.el" "progmodes/cc-defs.el" "progmodes/cc-fonts.el" -;;;;;; "progmodes/cc-langs.el" "progmodes/cc-menus.el" "progmodes/ebnf-abn.el" -;;;;;; "progmodes/ebnf-bnf.el" "progmodes/ebnf-dtd.el" "progmodes/ebnf-ebx.el" -;;;;;; "progmodes/ebnf-iso.el" "progmodes/ebnf-otz.el" "progmodes/ebnf-yac.el" -;;;;;; "progmodes/idlw-complete-structtag.el" "progmodes/idlw-help.el" -;;;;;; "progmodes/idlw-toolbar.el" "progmodes/mantemp.el" "progmodes/xscheme.el" -;;;;;; "ps-def.el" "ps-mule.el" "ps-samp.el" "saveplace.el" "sb-image.el" -;;;;;; "scroll-bar.el" "select.el" "soundex.el" "subdirs.el" "tempo.el" -;;;;;; "textmodes/bib-mode.el" "textmodes/makeinfo.el" "textmodes/page-ext.el" -;;;;;; "textmodes/refbib.el" "textmodes/refer.el" "textmodes/reftex-auc.el" -;;;;;; "textmodes/reftex-dcr.el" "textmodes/reftex-ref.el" "textmodes/reftex-sel.el" -;;;;;; "textmodes/reftex-toc.el" "textmodes/texnfo-upd.el" "timezone.el" -;;;;;; "tooltip.el" "tree-widget.el" "url/url-about.el" "url/url-cookie.el" -;;;;;; "url/url-dired.el" "url/url-domsuf.el" "url/url-expand.el" -;;;;;; "url/url-ftp.el" "url/url-future.el" "url/url-history.el" -;;;;;; "url/url-imap.el" "url/url-methods.el" "url/url-nfs.el" "url/url-proxy.el" +;;;;;; "org/org-irc.el" "org/org-list.el" "org/org-loaddefs.el" +;;;;;; "org/org-macro.el" "org/org-mhe.el" "org/org-mobile.el" "org/org-mouse.el" +;;;;;; "org/org-pcomplete.el" "org/org-plot.el" "org/org-protocol.el" +;;;;;; "org/org-rmail.el" "org/org-src.el" "org/org-table.el" "org/org-timer.el" +;;;;;; "org/org-w3m.el" "org/ox-ascii.el" "org/ox-beamer.el" "org/ox-html.el" +;;;;;; "org/ox-icalendar.el" "org/ox-latex.el" "org/ox-man.el" "org/ox-md.el" +;;;;;; "org/ox-odt.el" "org/ox-org.el" "org/ox-publish.el" "org/ox-texinfo.el" +;;;;;; "org/ox.el" "play/gametree.el" "progmodes/ada-prj.el" "progmodes/cc-align.el" +;;;;;; "progmodes/cc-awk.el" "progmodes/cc-bytecomp.el" "progmodes/cc-cmds.el" +;;;;;; "progmodes/cc-defs.el" "progmodes/cc-fonts.el" "progmodes/cc-langs.el" +;;;;;; "progmodes/cc-menus.el" "progmodes/ebnf-abn.el" "progmodes/ebnf-bnf.el" +;;;;;; "progmodes/ebnf-dtd.el" "progmodes/ebnf-ebx.el" "progmodes/ebnf-iso.el" +;;;;;; "progmodes/ebnf-otz.el" "progmodes/ebnf-yac.el" "progmodes/idlw-complete-structtag.el" +;;;;;; "progmodes/idlw-help.el" "progmodes/idlw-toolbar.el" "progmodes/mantemp.el" +;;;;;; "progmodes/xscheme.el" "ps-def.el" "ps-mule.el" "ps-samp.el" +;;;;;; "saveplace.el" "sb-image.el" "scroll-bar.el" "select.el" +;;;;;; "soundex.el" "subdirs.el" "tempo.el" "textmodes/bib-mode.el" +;;;;;; "textmodes/makeinfo.el" "textmodes/page-ext.el" "textmodes/refbib.el" +;;;;;; "textmodes/refer.el" "textmodes/reftex-auc.el" "textmodes/reftex-dcr.el" +;;;;;; "textmodes/reftex-ref.el" "textmodes/reftex-sel.el" "textmodes/reftex-toc.el" +;;;;;; "textmodes/texnfo-upd.el" "timezone.el" "tooltip.el" "tree-widget.el" +;;;;;; "url/url-about.el" "url/url-cookie.el" "url/url-dired.el" +;;;;;; "url/url-domsuf.el" "url/url-expand.el" "url/url-ftp.el" +;;;;;; "url/url-future.el" "url/url-history.el" "url/url-imap.el" +;;;;;; "url/url-methods.el" "url/url-nfs.el" "url/url-proxy.el" ;;;;;; "url/url-vars.el" "vc/ediff-diff.el" "vc/ediff-init.el" "vc/ediff-merg.el" ;;;;;; "vc/ediff-ptch.el" "vc/ediff-vers.el" "vc/ediff-wind.el" ;;;;;; "vc/pcvs-info.el" "vc/pcvs-parse.el" "vc/pcvs-util.el" "vc/vc-dav.el" ;;;;;; "vcursor.el" "vt-control.el" "vt100-led.el" "w32-common-fns.el" -;;;;;; "w32-fns.el" "w32-vars.el" "x-dnd.el") (21182 5185 941179 -;;;;;; 157000)) +;;;;;; "w32-fns.el" "w32-vars.el" "x-dnd.el") (21228 55244 661375 +;;;;;; 865000)) ;;;*** ------------------------------------------------------------ revno: 116230 fixes bug: http://debbugs.gnu.org/16558 committer: Eli Zaretskii branch nick: trunk timestamp: Sat 2014-02-01 11:22:51 +0200 message: Fix bug #16558 with w32-shell-execute on remote file names. src/w32fns.c (Fw32_shell_execute): Don't call file-exists-p for DOCUMENT that is a "remote" file name, i.e. a file-handler exists for it. diff: === modified file 'src/ChangeLog' --- src/ChangeLog 2014-01-31 02:43:03 +0000 +++ src/ChangeLog 2014-02-01 09:22:51 +0000 @@ -1,3 +1,9 @@ +2014-02-01 Eli Zaretskii + + * w32fns.c (Fw32_shell_execute): Don't call file-exists-p for + DOCUMENT that is a "remote" file name, i.e. a file-handler exists + for it. (Bug#16558) + 2014-01-30 Andreas Schwab * process.c (create_process): Reset SIGPROF handler in the child. === modified file 'src/w32fns.c' --- src/w32fns.c 2014-01-29 10:29:14 +0000 +++ src/w32fns.c 2014-02-01 09:22:51 +0000 @@ -6892,7 +6892,8 @@ #ifndef CYGWIN int use_unicode = w32_unicode_filenames; char *doc_a = NULL, *params_a = NULL, *ops_a = NULL; - Lisp_Object absdoc; + Lisp_Object absdoc, handler; + struct gcpro gcpro1; #endif CHECK_STRING (document); @@ -6927,10 +6928,24 @@ does not have to be a file, it can be a URL, for example. So we make it absolute only if it is an existing file; if it is a file that does not exist, tough. */ + GCPRO1 (absdoc); absdoc = Fexpand_file_name (document, Qnil); - if (!NILP (Ffile_exists_p (absdoc))) - document = absdoc; - document = ENCODE_FILE (document); + /* Don't call file handlers for file-exists-p, since they might + attempt to access the file, which could fail or produce undesired + consequences, see bug#16558 for an example. */ + handler = Ffind_file_name_handler (absdoc, Qfile_exists_p); + if (NILP (handler)) + { + Lisp_Object absdoc_encoded = ENCODE_FILE (absdoc); + + if (faccessat (AT_FDCWD, SSDATA (absdoc_encoded), F_OK, AT_EACCESS) == 0) + document = absdoc_encoded; + else + document = ENCODE_FILE (document); + } + else + document = ENCODE_FILE (document); + UNGCPRO; if (use_unicode) { wchar_t document_w[MAX_PATH], current_dir_w[MAX_PATH];