Now on revision 107060. ------------------------------------------------------------ revno: 107060 committer: Glenn Morris branch nick: trunk timestamp: Wed 2012-02-01 23:48:39 -0800 message: server.el doc fixes * lisp/server.el (server-auth-dir): Doc fix. (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp. * etc/NEWS: Markup. diff: === modified file 'etc/NEWS' --- etc/NEWS 2012-02-02 07:21:20 +0000 +++ etc/NEWS 2012-02-02 07:48:39 +0000 @@ -1237,8 +1237,9 @@ *** New macro `with-wrapper-hook' for running an abnormal hook as a set of "wrapping" filters, similar to around advice. -** `server-eval-at' is provided to allow evaluating forms on different -Emacs server instances. ++++ +** The new function `server-eval-at' allows evaluation of Lisp forms on +named Emacs server instances, using TCP sockets. +++ ** `call-process' and `call-process-region' allow a `(:file "file")' spec === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2012-02-02 02:57:26 +0000 +++ lisp/ChangeLog 2012-02-02 07:48:39 +0000 @@ -1,5 +1,8 @@ 2012-02-02 Glenn Morris + * server.el (server-auth-dir): Doc fix. + (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp. + * subr.el (run-mode-hooks): Doc fix. 2012-02-02 Juri Linkov === modified file 'lisp/server.el' --- lisp/server.el 2012-01-19 07:21:25 +0000 +++ lisp/server.el 2012-02-02 07:48:39 +0000 @@ -126,6 +126,8 @@ (defcustom server-auth-dir (locate-user-emacs-file "server/") "Directory for server authentication files. +We only use this if `server-use-tcp' is non-nil. +Otherwise we use `server-socket-dir'. NOTE: On FAT32 filesystems, directories are not secure; files can be read and modified by any user or process. @@ -1525,7 +1527,14 @@ nil) (defun server-eval-at (server form) - "Eval FORM on Emacs Server SERVER." + "Contact the Emacs server named SERVER and evaluate FORM there. +Returns the result of the evaluation, or signals an error if it +cannot contact the specified server. For example: + \(server-eval-at \"server\" '(emacs-pid)) +returns the process ID of the Emacs instance running \"server\". +This function requires the use of TCP sockets. " + (or server-use-tcp + (error "This function requires TCP sockets")) (let ((auth-file (expand-file-name server server-auth-dir)) (coding-system-for-read 'binary) (coding-system-for-write 'binary) ------------------------------------------------------------ revno: 107059 committer: Glenn Morris branch nick: trunk timestamp: Wed 2012-02-01 23:21:20 -0800 message: Tiny doc tweaks for call-process's :file spec. * doc/lispref/processes.texi (Synchronous Processes): Mention call-process's :file gets overwritten. * src/callproc.c (Fcall_process, Fcall_process_region): Doc fix. * etc/NEWS: Markup. diff: === modified file 'doc/lispref/ChangeLog' --- doc/lispref/ChangeLog 2012-02-02 07:06:37 +0000 +++ doc/lispref/ChangeLog 2012-02-02 07:21:20 +0000 @@ -1,5 +1,8 @@ 2012-02-02 Glenn Morris + * processes.texi (Synchronous Processes): + Mention call-process's :file gets overwritten. + * commands.texi (Reading One Event): * help.texi (Help Functions): Document read-char-choice. === modified file 'doc/lispref/processes.texi' --- doc/lispref/processes.texi 2012-01-19 07:21:25 +0000 +++ doc/lispref/processes.texi 2012-02-02 07:21:20 +0000 @@ -300,7 +300,8 @@ work there. @item @code{(:file @var{file-name})} -Send the output to the file name specified. +Send the output to the file name specified, overwriting it if it +already exists. @item @code{(@var{real-destination} @var{error-destination})} Keep the standard output stream separate from the standard error stream; === modified file 'etc/NEWS' --- etc/NEWS 2012-02-02 07:06:37 +0000 +++ etc/NEWS 2012-02-02 07:21:20 +0000 @@ -1240,8 +1240,9 @@ ** `server-eval-at' is provided to allow evaluating forms on different Emacs server instances. -** `call-process' allows a `(:file "file")' spec to redirect STDOUT to -a file. ++++ +** `call-process' and `call-process-region' allow a `(:file "file")' spec +to redirect STDOUT to a file. --- ** Variable `stack-trace-on-error' removed. === modified file 'src/ChangeLog' --- src/ChangeLog 2012-02-02 02:12:57 +0000 +++ src/ChangeLog 2012-02-02 07:21:20 +0000 @@ -1,5 +1,7 @@ 2012-02-02 Glenn Morris + * callproc.c (Fcall_process, Fcall_process_region): Doc fix. + * nsterm.m (syms_of_nsterm) : Unconditionally set to t. (Bug#10673) * nsterm.m (syms_of_nsterm) : === modified file 'src/callproc.c' --- src/callproc.c 2012-01-19 07:21:25 +0000 +++ src/callproc.c 2012-02-02 07:21:20 +0000 @@ -164,7 +164,8 @@ The program's input comes from file INFILE (nil means `/dev/null'). Insert output in BUFFER before point; t means current buffer; nil for BUFFER means discard it; 0 means discard and don't wait; and `(:file FILE)', where - FILE is a file name string, means that it should be written to that file. + FILE is a file name string, means that it should be written to that file + \(if the file already exists it is overwritten). BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case, REAL-BUFFER says what to do with standard output, as above, while STDERR-FILE says what to do with standard error in the child. @@ -940,7 +941,7 @@ Insert output in BUFFER before point; t means current buffer; nil for BUFFER means discard it; 0 means discard and don't wait; and `(:file FILE)', where FILE is a file name string, means that it should be - written to that file. + written to that file (if the file already exists it is overwritten). BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case, REAL-BUFFER says what to do with standard output, as above, while STDERR-FILE says what to do with standard error in the child. ------------------------------------------------------------ revno: 107058 committer: Glenn Morris branch nick: trunk timestamp: Wed 2012-02-01 23:06:37 -0800 message: Document read-char-choice. * doc/lispref/commands.texi (Reading One Event): * doc/lispref/help.texi (Help Functions): Document read-char-choice. * etc/NEWS: Markup. diff: === modified file 'doc/lispref/ChangeLog' --- doc/lispref/ChangeLog 2012-02-02 04:37:05 +0000 +++ doc/lispref/ChangeLog 2012-02-02 07:06:37 +0000 @@ -1,5 +1,8 @@ 2012-02-02 Glenn Morris + * commands.texi (Reading One Event): + * help.texi (Help Functions): Document read-char-choice. + * hooks.texi (Standard Hooks): * modes.texi (Keymaps and Minor Modes): * text.texi (Commands for Insertion): Document post-self-insert-hook. === modified file 'doc/lispref/commands.texi' --- doc/lispref/commands.texi 2012-01-27 08:35:51 +0000 +++ doc/lispref/commands.texi 2012-02-02 07:06:37 +0000 @@ -2472,6 +2472,17 @@ echo area as a prompt, or @code{nil}, meaning not to display a prompt. @end defun +@defun read-char-choice prompt chars &optional inhibit-quit +This function uses @code{read-key} to read and return a single +character. It ignores any input that is not a member of @var{chars}, +a list of accepted characters. Optionally, it will also ignore +keyboard-quit events while it is waiting for valid input. If you bind +@code{help-form} (@pxref{Help Functions}) to a non-@code{nil} value +while calling @code{read-char-choice}, then pressing @code{help-char} +causes it to evaluate @code{help-form} and display the result. It +then continues to wait for a valid input character, or keyboard-quit. +@end defun + @node Event Mod @subsection Modifying and Translating Input Events === modified file 'doc/lispref/help.texi' --- doc/lispref/help.texi 2012-01-19 07:21:25 +0000 +++ doc/lispref/help.texi 2012-02-02 07:06:37 +0000 @@ -582,11 +582,12 @@ whenever the character @code{help-char} is read. If evaluating the form produces a string, that string is displayed. -A command that calls @code{read-event} or @code{read-char} probably -should bind @code{help-form} to a non-@code{nil} expression while it -does input. (The time when you should not do this is when @kbd{C-h} has -some other meaning.) Evaluating this expression should result in a -string that explains what the input is for and how to enter it properly. +A command that calls @code{read-event}, @code{read-char-choice}, or +@code{read-char} probably should bind @code{help-form} to a +non-@code{nil} expression while it does input. (The time when you +should not do this is when @kbd{C-h} has some other meaning.) +Evaluating this expression should result in a string that explains +what the input is for and how to enter it properly. Entry to the minibuffer binds this variable to the value of @code{minibuffer-help-form} (@pxref{Definition of minibuffer-help-form}). === modified file 'etc/NEWS' --- etc/NEWS 2012-02-02 04:37:05 +0000 +++ etc/NEWS 2012-02-02 07:06:37 +0000 @@ -1253,6 +1253,7 @@ ** The function format-time-string now supports the %N directive, for higher-resolution time stamps. ++++ ** New function `read-char-choice' reads a restricted set of characters, discarding any inputs not inside the set. ------------------------------------------------------------ revno: 107057 committer: Glenn Morris branch nick: trunk timestamp: Wed 2012-02-01 20:37:05 -0800 message: Document post-self-insert-hook * doc/lispref/hooks.texi (Standard Hooks): * doc/lispref/modes.texi (Keymaps and Minor Modes): * doc/lispref/text.texi (Commands for Insertion): Document post-self-insert-hook. *etc/NEWS: Markup. diff: === modified file 'doc/lispref/ChangeLog' --- doc/lispref/ChangeLog 2012-02-02 04:28:15 +0000 +++ doc/lispref/ChangeLog 2012-02-02 04:37:05 +0000 @@ -1,6 +1,12 @@ 2012-02-02 Glenn Morris * hooks.texi (Standard Hooks): + * modes.texi (Keymaps and Minor Modes): + * text.texi (Commands for Insertion): Document post-self-insert-hook. + + * hooks.texi (Standard Hooks): Add prog-mode-hook. + + * hooks.texi (Standard Hooks): * modes.texi (Major Mode Conventions, Mode Hooks): Document change-major-mode-after-body-hook. @@ -18,8 +24,6 @@ 2012-01-31 Glenn Morris - * hooks.texi (Standard Hooks): Add prog-mode-hook. - * modes.texi (Defining Minor Modes): Document define-minor-mode's new :variable keyword. === modified file 'doc/lispref/hooks.texi' --- doc/lispref/hooks.texi 2012-02-02 04:28:15 +0000 +++ doc/lispref/hooks.texi 2012-02-02 04:37:05 +0000 @@ -295,6 +295,9 @@ @item post-command-hook @xref{Command Overview}. +@item post-self-insert-hook +@xref{Keymaps and Minor Modes}. + @item pre-command-hook @xref{Command Overview}. === modified file 'doc/lispref/modes.texi' --- doc/lispref/modes.texi 2012-02-02 02:57:26 +0000 +++ doc/lispref/modes.texi 2012-02-02 04:37:05 +0000 @@ -1341,11 +1341,12 @@ @cindex @code{self-insert-command}, minor modes One use of minor mode keymaps is to modify the behavior of certain self-inserting characters so that they do something else as well as -self-insert. In general, this is the only way to do that, since the -facilities for customizing @code{self-insert-command} are limited to -special cases (designed for abbrevs and Auto Fill mode). (Do not try -substituting your own definition of @code{self-insert-command} for the -standard one. The editor command loop handles this function specially.) +self-insert. (Another way to customize @code{self-insert-command} is +through @code{post-self-insert-hook}. Apart from this, the facilities +for customizing @code{self-insert-command} are limited to special cases, +designed for abbrevs and Auto Fill mode. Do not try substituting your +own definition of @code{self-insert-command} for the standard one. The +editor command loop handles this function specially.) The key sequences bound in a minor mode should consist of @kbd{C-c} followed by one of @kbd{.,/?`'"[]\|~!#$%^&*()-_+=}. (The other === modified file 'doc/lispref/text.texi' --- doc/lispref/text.texi 2012-01-28 03:56:20 +0000 +++ doc/lispref/text.texi 2012-02-02 04:37:05 +0000 @@ -500,6 +500,11 @@ responsible for calling @code{blink-paren-function} when the inserted character has close parenthesis syntax (@pxref{Blinking}). +@vindex post-self-insert-hook +The final thing this command does is to run the hook +@code{post-self-insert-hook}. You could use this to automatically +reindent text as it is typed, for example. + Do not try substituting your own definition of @code{self-insert-command} for the standard one. The editor command loop handles this function specially. === modified file 'etc/NEWS' --- etc/NEWS 2012-02-02 04:13:02 +0000 +++ etc/NEWS 2012-02-02 04:37:05 +0000 @@ -1271,6 +1271,7 @@ as-is; and syntax-propertize-rules which provides a new way to specify syntactic rules. ++++ ** New hook post-self-insert-hook run at the end of self-insert-command. +++ ------------------------------------------------------------ revno: 107056 committer: Glenn Morris branch nick: trunk timestamp: Wed 2012-02-01 20:28:15 -0800 message: * doc/lispref/hooks.texi (Standard Hooks): Add prog-mode-hook. diff: === modified file 'doc/lispref/ChangeLog' --- doc/lispref/ChangeLog 2012-02-02 02:57:26 +0000 +++ doc/lispref/ChangeLog 2012-02-02 04:28:15 +0000 @@ -18,6 +18,8 @@ 2012-01-31 Glenn Morris + * hooks.texi (Standard Hooks): Add prog-mode-hook. + * modes.texi (Defining Minor Modes): Document define-minor-mode's new :variable keyword. === modified file 'doc/lispref/hooks.texi' --- doc/lispref/hooks.texi 2012-02-02 02:57:26 +0000 +++ doc/lispref/hooks.texi 2012-02-02 04:28:15 +0000 @@ -298,6 +298,9 @@ @item pre-command-hook @xref{Command Overview}. +@item prog-mode-hook +@xref{Basic Major Modes}. + @item resume-tty-functions @xref{Suspending Emacs}. ------------------------------------------------------------ revno: 107055 committer: Glenn Morris branch nick: trunk timestamp: Wed 2012-02-01 20:13:02 -0800 message: * etc/NEWS: prog-mode-hook was documented. diff: === modified file 'etc/NEWS' --- etc/NEWS 2012-02-02 02:57:26 +0000 +++ etc/NEWS 2012-02-02 04:13:02 +0000 @@ -1283,6 +1283,7 @@ *** `prog-mode' is a new major mode from which programming modes should be derived. ++++ **** `prog-mode-hook' can be used to enable features for programming modes, e.g. (add-hook 'prog-mode-hook 'flyspell-prog-mode) to enable on-the-fly spell checking for comments and strings. ------------------------------------------------------------ revno: 107054 committer: Glenn Morris branch nick: trunk timestamp: Wed 2012-02-01 21:57:26 -0500 message: Document change-major-mode-after-body-hook * doc/lispref/hooks.texi (Standard Hooks): * doc/lispref/modes.texi (Major Mode Conventions, Mode Hooks): Document change-major-mode-after-body-hook. * lisp/subr.el (run-mode-hooks): Doc fix. * etc/NEWS: Markup diff: === modified file 'doc/lispref/ChangeLog' --- doc/lispref/ChangeLog 2012-02-01 08:32:31 +0000 +++ doc/lispref/ChangeLog 2012-02-02 02:57:26 +0000 @@ -1,3 +1,9 @@ +2012-02-02 Glenn Morris + + * hooks.texi (Standard Hooks): + * modes.texi (Major Mode Conventions, Mode Hooks): + Document change-major-mode-after-body-hook. + 2012-02-01 Glenn Morris * modes.texi (Defining Minor Modes): === modified file 'doc/lispref/hooks.texi' --- doc/lispref/hooks.texi 2012-01-19 07:21:25 +0000 +++ doc/lispref/hooks.texi 2012-02-02 02:57:26 +0000 @@ -127,6 +127,9 @@ @xref{Calendar Customizing,,, emacs}. @end ifnottex +@item change-major-mode-after-body-hook +@xref{Mode Hooks}. + @item change-major-mode-hook @xref{Creating Buffer-Local}. === modified file 'doc/lispref/modes.texi' --- doc/lispref/modes.texi 2012-02-01 21:19:30 +0000 +++ doc/lispref/modes.texi 2012-02-02 02:57:26 +0000 @@ -468,8 +468,9 @@ @cindex major mode hook Each major mode should have a normal @dfn{mode hook} named @code{@var{modename}-mode-hook}. The very last thing the major mode command -should do is to call @code{run-mode-hooks}. This runs the mode hook, -and then runs the normal hook @code{after-change-major-mode-hook}. +should do is to call @code{run-mode-hooks}. This runs the normal +hook @code{change-major-mode-after-body-hook}, the mode hook, +and then the normal hook @code{after-change-major-mode-hook}. @xref{Mode Hooks}. @item @@ -939,8 +940,9 @@ @node Mode Hooks @subsection Mode Hooks - Every major mode command should finish by running its mode hook and -the mode-independent normal hook @code{after-change-major-mode-hook}. + Every major mode command should finish by running the mode-independent +normal hook @code{change-major-mode-after-body-hook}, its mode hook, +and the normal hook @code{after-change-major-mode-hook}. It does this by calling @code{run-mode-hooks}. If the major mode is a derived mode, that is if it calls another major mode (the parent mode) in its body, it should do this inside @code{delay-mode-hooks} so that @@ -949,11 +951,12 @@ @xref{Major Mode Conventions}. Emacs versions before Emacs 22 did not have @code{delay-mode-hooks}. -When user-implemented major modes have not been updated to use it, -they won't entirely follow these conventions: they may run the -parent's mode hook too early, or fail to run -@code{after-change-major-mode-hook}. If you encounter such a major -mode, please correct it to follow these conventions. +Versions before 24 did not have @code{change-major-mode-after-body-hook}. +When user-implemented major modes do not use @code{run-mode-hooks} and +have not been updated to use these newer features, they won't entirely +follow these conventions: they may run the parent's mode hook too early, +or fail to run @code{after-change-major-mode-hook}. If you encounter +such a major mode, please correct it to follow these conventions. When you defined a major mode using @code{define-derived-mode}, it automatically makes sure these conventions are followed. If you @@ -963,6 +966,7 @@ @defun run-mode-hooks &rest hookvars Major modes should run their mode hook using this function. It is similar to @code{run-hooks} (@pxref{Hooks}), but it also runs +@code{change-major-mode-after-body-hook} and @code{after-change-major-mode-hook}. When this function is called during the execution of a @@ -982,6 +986,11 @@ construct. @end defmac +@defvar change-major-mode-after-body-hook +This is a normal hook run by @code{run-mode-hooks}. It is run before +the mode hooks. +@end defvar + @defvar after-change-major-mode-hook This is a normal hook run by @code{run-mode-hooks}. It is run at the very end of every properly-written major mode command. === modified file 'etc/NEWS' --- etc/NEWS 2012-02-01 08:39:29 +0000 +++ etc/NEWS 2012-02-02 02:57:26 +0000 @@ -1287,6 +1287,7 @@ modes, e.g. (add-hook 'prog-mode-hook 'flyspell-prog-mode) to enable on-the-fly spell checking for comments and strings. ++++ *** New hook `change-major-mode-after-body-hook', run by `run-mode-hooks' just before any other mode hooks. === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2012-02-02 00:49:06 +0000 +++ lisp/ChangeLog 2012-02-02 02:57:26 +0000 @@ -1,3 +1,7 @@ +2012-02-02 Glenn Morris + + * subr.el (run-mode-hooks): Doc fix. + 2012-02-02 Juri Linkov * image-mode.el (image-toggle-display-image): Remove tautological === modified file 'lisp/subr.el' --- lisp/subr.el 2012-01-23 02:10:36 +0000 +++ lisp/subr.el 2012-02-02 02:57:26 +0000 @@ -1539,10 +1539,12 @@ (defun run-mode-hooks (&rest hooks) "Run mode hooks `delayed-mode-hooks' and HOOKS, or delay HOOKS. -Execution is delayed if the variable `delay-mode-hooks' is non-nil. -Otherwise, runs the mode hooks and then `after-change-major-mode-hook'. -Major mode functions should use this instead of `run-hooks' when running their -FOO-mode-hook." +If the variable `delay-mode-hooks' is non-nil, does not run any hooks, +just adds the HOOKS to the list `delayed-mode-hooks'. +Otherwise, runs hooks in the sequence: `change-major-mode-after-body-hook', +`delayed-mode-hooks' (in reverse order), HOOKS, and finally +`after-change-major-mode-hook'. Major mode functions should use +this instead of `run-hooks' when running their FOO-mode-hook." (if delay-mode-hooks ;; Delaying case. (dolist (hook hooks) ------------------------------------------------------------ revno: 107053 committer: Glenn Morris branch nick: trunk timestamp: Wed 2012-02-01 21:12:57 -0500 message: Native scroll-bars are not implemented for Nextstep (bug#10673) * configure.in [HAVE_NS]: Error if use --without-toolkit-scroll-bars. * src/nsterm.m (syms_of_nsterm) : Unconditionally set to t. * src/nsterm.m (syms_of_nsterm) : * src/w32term.c (syms_of_w32term) : * src/xterm.c (syms_of_xterm) : Doc fix. diff: === modified file 'ChangeLog' --- ChangeLog 2012-02-01 06:04:34 +0000 +++ ChangeLog 2012-02-02 02:12:57 +0000 @@ -1,3 +1,8 @@ +2012-02-02 Glenn Morris + + * configure.in [HAVE_NS]: + Error if use --without-toolkit-scroll-bars. (Bug#10673) + 2012-02-01 Paul Eggert Port to older Solaris 10 versions (Bug#10677). === modified file 'configure.in' --- configure.in 2012-01-31 03:47:51 +0000 +++ configure.in 2012-02-02 02:12:57 +0000 @@ -1568,6 +1568,10 @@ NS_OBJ= NS_OBJC_OBJ= if test "${HAVE_NS}" = yes; then + if test "$with_toolkit_scroll_bars" = "no"; then + AC_MSG_ERROR([Native scroll bars are not implemented for Nextstep.]) + fi + window_system=nextstep with_xft=no # set up packaging dirs === modified file 'src/ChangeLog' --- src/ChangeLog 2012-02-02 00:32:12 +0000 +++ src/ChangeLog 2012-02-02 02:12:57 +0000 @@ -1,3 +1,11 @@ +2012-02-02 Glenn Morris + + * nsterm.m (syms_of_nsterm) : + Unconditionally set to t. (Bug#10673) + * nsterm.m (syms_of_nsterm) : + * w32term.c (syms_of_w32term) : + * xterm.c (syms_of_xterm) : Doc fix. + 2012-02-02 Kenichi Handa * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to === modified file 'src/nsterm.m' --- src/nsterm.m 2012-01-31 03:07:38 +0000 +++ src/nsterm.m 2012-02-02 02:12:57 +0000 @@ -1,6 +1,7 @@ /* NeXT/Open/GNUstep / MacOSX communication module. - Copyright (C) 1989, 1993-1994, 2005-2006, 2008-2012 - Free Software Foundation, Inc. + +Copyright (C) 1989, 1993-1994, 2005-2006, 2008-2012 + Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -6739,13 +6740,8 @@ A value of nil means Emacs doesn't use toolkit scroll bars. With the X Window system, the value is a symbol describing the X toolkit. Possible values are: gtk, motif, xaw, or xaw3d. -With MS Windows, the value is t. With Nextstep, the value is -t or nil. */); -#ifdef USE_TOOLKIT_SCROLL_BARS +With MS Windows or Nextstep, the value is t. */); Vx_toolkit_scroll_bars = Qt; -#else - Vx_toolkit_scroll_bars = Qnil; -#endif DEFVAR_BOOL ("x-use-underline-position-properties", x_use_underline_position_properties, === modified file 'src/w32term.c' --- src/w32term.c 2012-01-31 03:33:16 +0000 +++ src/w32term.c 2012-02-02 02:12:57 +0000 @@ -1,6 +1,6 @@ /* Implementation of GUI terminal on the Microsoft W32 API. -Copyright (C) 1989, 1993-2012 Free Software Foundation, Inc. +Copyright (C) 1989, 1993-2012 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -6432,8 +6432,7 @@ A value of nil means Emacs doesn't use toolkit scroll bars. With the X Window system, the value is a symbol describing the X toolkit. Possible values are: gtk, motif, xaw, or xaw3d. -With MS Windows, the value is t. With Nextstep, the value is -t or nil. */); +With MS Windows or Nextstep, the value is t. */); Vx_toolkit_scroll_bars = Qt; staticpro (&last_mouse_motion_frame); === modified file 'src/xterm.c' --- src/xterm.c 2012-01-31 03:07:38 +0000 +++ src/xterm.c 2012-02-02 02:12:57 +0000 @@ -1,6 +1,6 @@ /* X Communication module for terminals which understand the X protocol. -Copyright (C) 1989, 1993-2012 Free Software Foundation, Inc. +Copyright (C) 1989, 1993-2012 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -10844,8 +10844,7 @@ A value of nil means Emacs doesn't use toolkit scroll bars. With the X Window system, the value is a symbol describing the X toolkit. Possible values are: gtk, motif, xaw, or xaw3d. -With MS Windows, the value is t. With Nextstep, the value is -t or nil. */); +With MS Windows or Nextstep, the value is t. */); #ifdef USE_TOOLKIT_SCROLL_BARS #ifdef USE_MOTIF Vx_toolkit_scroll_bars = intern_c_string ("motif"); ------------------------------------------------------------ revno: 107052 committer: Juri Linkov branch nick: trunk timestamp: Thu 2012-02-02 02:49:06 +0200 message: * lisp/image-mode.el (image-toggle-display-image): Remove tautological `major-mode' from the `derived-mode-p' test. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2012-02-02 00:32:12 +0000 +++ lisp/ChangeLog 2012-02-02 00:49:06 +0000 @@ -1,3 +1,8 @@ +2012-02-02 Juri Linkov + + * image-mode.el (image-toggle-display-image): Remove tautological + `major-mode' from the `derived-mode-p' test. + 2012-02-02 Kenichi Handa * composite.el (compose-region, compose-string): Signal error for === modified file 'lisp/image-mode.el' --- lisp/image-mode.el 2012-01-19 07:21:25 +0000 +++ lisp/image-mode.el 2012-02-02 00:49:06 +0000 @@ -482,7 +482,7 @@ "Show the image of the image file. Turn the image data into a real image, but only if the whole file was inserted." - (unless (derived-mode-p 'image-mode major-mode) + (unless (derived-mode-p 'image-mode) (error "The buffer is not in Image mode")) (let* ((filename (buffer-file-name)) (data-p (not (and filename ------------------------------------------------------------ revno: 107051 [merge] committer: Kenichi Handa branch nick: trunk timestamp: Thu 2012-02-02 09:32:49 +0900 message: Inhibit null-string composition component (Bug#6988). diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2012-02-01 08:31:29 +0000 +++ lisp/ChangeLog 2012-02-02 00:32:12 +0000 @@ -1,3 +1,8 @@ +2012-02-02 Kenichi Handa + + * composite.el (compose-region, compose-string): Signal error for + a null string component (Bug#6988). + 2012-02-01 Chong Yidong * view.el (view-buffer-other-window, view-buffer-other-frame): === modified file 'lisp/composite.el' --- lisp/composite.el 2011-11-27 04:43:11 +0000 +++ lisp/composite.el 2012-02-02 00:30:09 +0000 @@ -211,7 +211,7 @@ If it is a character, it is an alternate character to display instead of the text in the region. -If it is a string, the elements are alternate characters. In +If it is a string, the elements are one or more alternate characters. In this case, TAB element has a special meaning. If the first character is TAB, the glyphs are displayed with left padding space so that no pixel overlaps with the previous column. If the last @@ -234,7 +234,9 @@ (let ((modified-p (buffer-modified-p)) (inhibit-read-only t)) (if (or (vectorp components) (listp components)) - (setq components (encode-composition-components components))) + (setq components (encode-composition-components components)) + (if (= (length components) 0) + (error "Invalid composition component: %s" components))) (compose-region-internal start end components modification-func) (restore-buffer-modified-p modified-p))) @@ -267,7 +269,9 @@ adjust the composition when it gets invalid because of a change of text in the composition." (if (or (vectorp components) (listp components)) - (setq components (encode-composition-components components))) + (setq components (encode-composition-components components)) + (if (= (length components) 0) + (error "Invalid composition component: %s" components))) (or start (setq start 0)) (or end (setq end (length string))) (compose-string-internal string start end components modification-func) === modified file 'src/ChangeLog' --- src/ChangeLog 2012-02-01 16:51:20 +0000 +++ src/ChangeLog 2012-02-02 00:32:12 +0000 @@ -1,3 +1,10 @@ +2012-02-02 Kenichi Handa + + * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to + NULL (Bug#6988). + (x_produce_glyphs): If the component of a composition is a null + string, set it->pixel_width to 1 to avoid zero-width glyph. + 2012-02-01 Eli Zaretskii * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its === modified file 'src/xdisp.c' --- src/xdisp.c 2012-01-19 07:21:25 +0000 +++ src/xdisp.c 2012-02-02 00:30:09 +0000 @@ -22738,7 +22738,7 @@ ptrdiff_t cmp_id = (row)->glyphs[area][START].u.cmp.id; \ struct composition *cmp = composition_table[cmp_id]; \ XChar2b *char2b; \ - struct glyph_string *first_s IF_LINT (= NULL); \ + struct glyph_string *first_s = NULL; \ int n; \ \ char2b = (XChar2b *) alloca ((sizeof *char2b) * cmp->glyph_len); \ @@ -24400,7 +24400,7 @@ /* Initialize the bounding box. */ if (pcm) { - width = pcm->width; + width = cmp->glyph_len > 0 ? pcm->width : 0; ascent = pcm->ascent; descent = pcm->descent; lbearing = pcm->lbearing; @@ -24408,7 +24408,7 @@ } else { - width = font->space_width; + width = cmp->glyph_len > 0 ? font->space_width : 0; ascent = FONT_BASE (font); descent = FONT_DESCENT (font); lbearing = 0; @@ -24595,6 +24595,10 @@ it->glyph_row->contains_overlapping_glyphs_p = 1; it->pixel_width = cmp->pixel_width; + if (it->pixel_width == 0) + /* We assure that all visible glyphs have at least 1-pixel + width. */ + it->pixel_width = 1; it->ascent = it->phys_ascent = cmp->ascent; it->descent = it->phys_descent = cmp->descent; if (face->box != FACE_NO_BOX) ------------------------------------------------------------ revno: 107050 author: Lars Ingebrigtsen committer: Katsumi Yamaoka branch nick: trunk timestamp: Wed 2012-02-01 23:22:55 +0000 message: gnus.el: Fix nnmaildir marks handling diff: === modified file 'lisp/gnus/ChangeLog' --- lisp/gnus/ChangeLog 2012-02-01 23:16:56 +0000 +++ lisp/gnus/ChangeLog 2012-02-01 23:22:55 +0000 @@ -1,5 +1,8 @@ 2012-02-01 Lars Ingebrigtsen + * gnus.el (gnus-valid-select-methods): nnmaildir also saves marks in + the "server". + * gnus-group.el (gnus-group-get-new-news-this-group): Don't overwrite the real error message with the useless "previously known to be down". Which isn't even correct. === modified file 'lisp/gnus/gnus.el' --- lisp/gnus/gnus.el 2012-01-26 23:03:28 +0000 +++ lisp/gnus/gnus.el 2012-02-01 23:22:55 +0000 @@ -1626,7 +1626,7 @@ ("nnagent" post-mail) ("nnimap" post-mail address prompt-address physical-address respool server-marks) - ("nnmaildir" mail respool address) + ("nnmaildir" mail respool address server-marks) ("nnnil" none)) "*An alist of valid select methods. The first element of each list lists should be a string with the name ------------------------------------------------------------ revno: 107049 author: Lars Ingebrigtsen committer: Katsumi Yamaoka branch nick: trunk timestamp: Wed 2012-02-01 23:16:56 +0000 message: gnus-group.el: Make error reporting when doing `M-g' work again nntp.el: Make nntp report connection errors better diff: === modified file 'lisp/gnus/ChangeLog' --- lisp/gnus/ChangeLog 2012-02-01 22:06:29 +0000 +++ lisp/gnus/ChangeLog 2012-02-01 23:16:56 +0000 @@ -1,5 +1,12 @@ 2012-02-01 Lars Ingebrigtsen + * gnus-group.el (gnus-group-get-new-news-this-group): Don't overwrite + the real error message with the useless "previously known to be down". + Which isn't even correct. + + * nntp.el (nntp-open-connection): Report the error message if the nntp + server can't be reached. + * nnimap.el (nnimap-retrieve-group-data-early): Keep track of how many groups we do a total scan for. (nnimap-wait-for-response): Say that we're doing a total scan, if we're === modified file 'lisp/gnus/gnus-group.el' --- lisp/gnus/gnus-group.el 2012-01-19 07:21:25 +0000 +++ lisp/gnus/gnus-group.el 2012-02-01 23:16:56 +0000 @@ -4070,10 +4070,7 @@ (gnus-agent-save-group-info method (gnus-group-real-name group) active)) (gnus-group-update-group group nil t)) - (if (eq (gnus-server-status (gnus-find-method-for-group group)) - 'denied) - (gnus-error 3 "Server previously determined to be down; not retrying") - (gnus-error 3 "%s error: %s" group (gnus-status-message group))))) + (gnus-error 3 "%s error: %s" group (gnus-status-message group)))) (when beg (goto-char beg)) (when gnus-goto-next-group-when-activating === modified file 'lisp/gnus/nntp.el' --- lisp/gnus/nntp.el 2012-01-27 14:32:25 +0000 +++ lisp/gnus/nntp.el 2012-02-01 23:16:56 +0000 @@ -1385,6 +1385,10 @@ (nnheader-cancel-timer timer)) (when (and process (not (memq (process-status process) '(open run)))) + (with-current-buffer pbuffer + (goto-char (point-min)) + (nnheader-report 'nntp "Error when connecting: %s" + (buffer-substring (point) (line-end-position)))) (setq process nil)) (unless process (nntp-kill-buffer pbuffer)) ------------------------------------------------------------ revno: 107048 author: Lars Ingebrigtsen committer: Katsumi Yamaoka branch nick: trunk timestamp: Wed 2012-02-01 22:06:29 +0000 message: nnimap.el: Make nnimap message better when initially fetching data diff: === modified file 'lisp/gnus/ChangeLog' --- lisp/gnus/ChangeLog 2012-02-01 09:00:42 +0000 +++ lisp/gnus/ChangeLog 2012-02-01 22:06:29 +0000 @@ -1,3 +1,10 @@ +2012-02-01 Lars Ingebrigtsen + + * nnimap.el (nnimap-retrieve-group-data-early): Keep track of how many + groups we do a total scan for. + (nnimap-wait-for-response): Say that we're doing a total scan, if we're + doing that. + 2012-01-31 Jim Meyering * gnus-agent.el (gnus-agent-expire-unagentized-dirs): === modified file 'lisp/gnus/nnimap.el' --- lisp/gnus/nnimap.el 2012-01-30 22:03:11 +0000 +++ lisp/gnus/nnimap.el 2012-02-01 22:06:29 +0000 @@ -134,7 +134,7 @@ (defstruct nnimap group process commands capabilities select-result newlinep server - last-command-time greeting examined stream-type) + last-command-time greeting examined stream-type initial-resync) (defvar nnimap-object nil) @@ -288,7 +288,8 @@ (gnus-add-buffer) (set (make-local-variable 'after-change-functions) nil) (set (make-local-variable 'nnimap-object) - (make-nnimap :server (nnoo-current-server 'nnimap))) + (make-nnimap :server (nnoo-current-server 'nnimap) + :initial-resync 0)) (push (list buffer (current-buffer)) nnimap-connection-alist) (push (current-buffer) nnimap-process-buffers) (current-buffer))) @@ -1218,6 +1219,7 @@ (with-current-buffer (nnimap-buffer) (erase-buffer) (setf (nnimap-group nnimap-object) nil) + (setf (nnimap-initial-resync nnimap-object) 0) (let ((qresyncp (nnimap-capability "QRESYNC")) params groups sequences active uidvalidity modseq group) ;; Go through the infos and gather the data needed to know @@ -1256,6 +1258,8 @@ ;; examine), but will tell us whether the group ;; is read-only or not. "SELECT"))) + (setf (nnimap-initial-resync nnimap-object) + (1+ (nnimap-initial-resync nnimap-object))) (push (list (nnimap-send-command "%s %S" command (utf7-encode group t)) (nnimap-send-command "UID FETCH %d:* FLAGS" start) @@ -1738,10 +1742,15 @@ (not (looking-at (format "%d .*\n" sequence))))) (when messagep (nnheader-message-maybe - 7 "nnimap read %dk from %s" (/ (buffer-size) 1000) - nnimap-address)) + 7 "nnimap read %dk from %s%s" (/ (buffer-size) 1000) + nnimap-address + (if (not (zerop (nnimap-initial-resync nnimap-object))) + (format " (initial sync of %d groups; please wait)" + (nnimap-initial-resync nnimap-object)) + ""))) (nnheader-accept-process-output process) (goto-char (point-max))) + (setf (nnimap-initial-resync nnimap-object) 0) openp) (quit (when debug-on-quit ------------------------------------------------------------ revno: 107047 committer: Glenn Morris branch nick: trunk timestamp: Wed 2012-02-01 16:19:30 -0500 message: Reword previous change. diff: === modified file 'doc/lispref/modes.texi' --- doc/lispref/modes.texi 2012-02-01 08:32:31 +0000 +++ doc/lispref/modes.texi 2012-02-01 21:19:30 +0000 @@ -1522,11 +1522,11 @@ Use @code{:group @var{group}} in @var{keyword-args} to specify the custom group for the mode variable of the global minor mode. -When you define a globalized minor mode, you should generally also -define a non-globalized version to toggle the mode on an individual -buffer basis. This allows users to disable a globally enabled minor -mode in a specific major mode if they wish, by deactivating the local -minor mode in the major mode's hook. +Generally speaking, when you define a globalized minor mode, you should +also define a non-globalized version, so that people can use (or +disable) it in individual buffers. This also allows them to disable a +globally enabled minor mode in a specific major mode, by using that +mode's hook. @end defmac ------------------------------------------------------------ revno: 107046 committer: Eli Zaretskii branch nick: trunk timestamp: Wed 2012-02-01 18:51:20 +0200 message: Speed up insertion of subprocess output on MS-Windows. src/ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its first 2 arguments are identical. This makes inserting large output from a subprocess an order of magnitude faster on MS-Windows, where all sbrk'ed memory is always contiguous. diff: === modified file 'src/ChangeLog' --- src/ChangeLog 2012-01-31 16:15:03 +0000 +++ src/ChangeLog 2012-02-01 16:51:20 +0000 @@ -1,3 +1,10 @@ +2012-02-01 Eli Zaretskii + + * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its + first 2 arguments are identical. This makes inserting large + output from a subprocess an order of magnitude faster on + MS-Windows, where all sbrk'ed memory is always contiguous. + 2012-01-31 Glenn Morris * nsterm.m (syms_of_nsterm) : === modified file 'src/ralloc.c' --- src/ralloc.c 2012-01-19 07:21:25 +0000 +++ src/ralloc.c 2012-02-01 16:51:20 +0000 @@ -636,7 +636,8 @@ } else { - memmove (b->new_data, b->data, b->size); + if (b->new_data != b->data) + memmove (b->new_data, b->data, b->size); *b->variable = b->data = b->new_data; } } @@ -647,7 +648,8 @@ } else { - memmove (bloc->new_data, bloc->data, old_size); + if (bloc->new_data != bloc->data) + memmove (bloc->new_data, bloc->data, old_size); memset ((char *) bloc->new_data + old_size, 0, size - old_size); *bloc->variable = bloc->data = bloc->new_data; } @@ -663,7 +665,8 @@ } else { - memmove (b->new_data, b->data, b->size); + if (b->new_data != b->data) + memmove (b->new_data, b->data, b->size); *b->variable = b->data = b->new_data; } } @@ -816,7 +819,8 @@ header. */ for (b = last_bloc; b != NIL_BLOC; b = b->prev) { - memmove (b->new_data, b->data, b->size); + if (b->new_data != b->data) + memmove (b->new_data, b->data, b->size); *b->variable = b->data = b->new_data; } @@ -862,7 +866,8 @@ for (b = first_bloc; b != NIL_BLOC; b = b->next) { - memmove (b->new_data, b->data, b->size); + if (b->new_data != b->data) + memmove (b->new_data, b->data, b->size); *b->variable = b->data = b->new_data; } } ------------------------------------------------------------ revno: 107045 committer: Glenn Morris branch nick: trunk timestamp: Wed 2012-02-01 06:23:05 -0500 message: Auto-commit of loaddefs files. diff: === modified file 'lisp/ldefs-boot.el' --- lisp/ldefs-boot.el 2012-01-29 15:46:05 +0000 +++ lisp/ldefs-boot.el 2012-02-01 11:23:05 +0000 @@ -5,7 +5,7 @@ ;;;### (autoloads (5x5-crack 5x5-crack-xor-mutate 5x5-crack-mutating-best ;;;;;; 5x5-crack-mutating-current 5x5-crack-randomly 5x5) "5x5" -;;;;;; "play/5x5.el" (20229 31156)) +;;;;;; "play/5x5.el" (20229 34587)) ;;; Generated autoloads from play/5x5.el (autoload '5x5 "5x5" "\ @@ -68,7 +68,7 @@ ;;;*** ;;;### (autoloads (ada-mode ada-add-extensions) "ada-mode" "progmodes/ada-mode.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/ada-mode.el (autoload 'ada-add-extensions "ada-mode" "\ @@ -88,7 +88,7 @@ ;;;*** ;;;### (autoloads (ada-header) "ada-stmt" "progmodes/ada-stmt.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/ada-stmt.el (autoload 'ada-header "ada-stmt" "\ @@ -99,7 +99,7 @@ ;;;*** ;;;### (autoloads (ada-find-file) "ada-xref" "progmodes/ada-xref.el" -;;;;;; (20235 62921)) +;;;;;; (20236 7740)) ;;; Generated autoloads from progmodes/ada-xref.el (autoload 'ada-find-file "ada-xref" "\ @@ -114,7 +114,7 @@ ;;;;;; add-change-log-entry-other-window add-change-log-entry find-change-log ;;;;;; prompt-for-change-log-name add-log-mailing-address add-log-full-name ;;;;;; add-log-current-defun-function) "add-log" "vc/add-log.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from vc/add-log.el (put 'change-log-default-name 'safe-local-variable 'string-or-null-p) @@ -253,7 +253,7 @@ ;;;### (autoloads (defadvice ad-activate ad-add-advice ad-disable-advice ;;;;;; ad-enable-advice ad-default-compilation-action ad-redefinition-action) -;;;;;; "advice" "emacs-lisp/advice.el" (20229 31156)) +;;;;;; "advice" "emacs-lisp/advice.el" (20229 34587)) ;;; Generated autoloads from emacs-lisp/advice.el (defvar ad-redefinition-action 'warn "\ @@ -398,7 +398,7 @@ ;;;### (autoloads (align-newline-and-indent align-unhighlight-rule ;;;;;; align-highlight-rule align-current align-entire align-regexp -;;;;;; align) "align" "align.el" (20229 31156)) +;;;;;; align) "align" "align.el" (20229 34587)) ;;; Generated autoloads from align.el (autoload 'align "align" "\ @@ -489,7 +489,7 @@ ;;;### (autoloads (outlineify-sticky allout-mode allout-mode-p allout-auto-activation ;;;;;; allout-setup allout-auto-activation-helper) "allout" "allout.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from allout.el (autoload 'allout-auto-activation-helper "allout" "\ @@ -850,7 +850,7 @@ ;;;### (autoloads (allout-widgets-mode allout-widgets-auto-activation ;;;;;; allout-widgets-setup allout-widgets) "allout-widgets" "allout-widgets.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from allout-widgets.el (let ((loads (get 'allout-widgets 'custom-loads))) (if (member '"allout-widgets" loads) nil (put 'allout-widgets 'custom-loads (cons '"allout-widgets" loads)))) @@ -910,7 +910,7 @@ ;;;*** ;;;### (autoloads (ange-ftp-hook-function ange-ftp-reread-dir) "ange-ftp" -;;;;;; "net/ange-ftp.el" (20259 64614)) +;;;;;; "net/ange-ftp.el" (20261 10951)) ;;; Generated autoloads from net/ange-ftp.el (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) @@ -932,7 +932,7 @@ ;;;*** ;;;### (autoloads (animate-birthday-present animate-sequence animate-string) -;;;;;; "animate" "play/animate.el" (20229 31156)) +;;;;;; "animate" "play/animate.el" (20229 34587)) ;;; Generated autoloads from play/animate.el (autoload 'animate-string "animate" "\ @@ -965,7 +965,7 @@ ;;;*** ;;;### (autoloads (ansi-color-process-output ansi-color-for-comint-mode-on) -;;;;;; "ansi-color" "ansi-color.el" (20229 31156)) +;;;;;; "ansi-color" "ansi-color.el" (20229 34587)) ;;; Generated autoloads from ansi-color.el (autoload 'ansi-color-for-comint-mode-on "ansi-color" "\ @@ -991,7 +991,7 @@ ;;;*** ;;;### (autoloads (antlr-set-tabs antlr-mode antlr-show-makefile-rules) -;;;;;; "antlr-mode" "progmodes/antlr-mode.el" (20229 31156)) +;;;;;; "antlr-mode" "progmodes/antlr-mode.el" (20229 34587)) ;;; Generated autoloads from progmodes/antlr-mode.el (autoload 'antlr-show-makefile-rules "antlr-mode" "\ @@ -1027,7 +1027,7 @@ ;;;*** ;;;### (autoloads (appt-activate appt-add) "appt" "calendar/appt.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from calendar/appt.el (autoload 'appt-add "appt" "\ @@ -1050,7 +1050,7 @@ ;;;### (autoloads (apropos-documentation apropos-value apropos-library ;;;;;; apropos apropos-documentation-property apropos-command apropos-variable -;;;;;; apropos-read-pattern) "apropos" "apropos.el" (20229 31156)) +;;;;;; apropos-read-pattern) "apropos" "apropos.el" (20229 34587)) ;;; Generated autoloads from apropos.el (autoload 'apropos-read-pattern "apropos" "\ @@ -1159,7 +1159,7 @@ ;;;*** ;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from arc-mode.el (autoload 'archive-mode "arc-mode" "\ @@ -1179,7 +1179,7 @@ ;;;*** -;;;### (autoloads (array-mode) "array" "array.el" (20229 31156)) +;;;### (autoloads (array-mode) "array" "array.el" (20229 34587)) ;;; Generated autoloads from array.el (autoload 'array-mode "array" "\ @@ -1251,7 +1251,7 @@ ;;;*** ;;;### (autoloads (artist-mode) "artist" "textmodes/artist.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from textmodes/artist.el (autoload 'artist-mode "artist" "\ @@ -1458,7 +1458,7 @@ ;;;*** ;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from progmodes/asm-mode.el (autoload 'asm-mode "asm-mode" "\ @@ -1486,7 +1486,7 @@ ;;;*** ;;;### (autoloads (auth-source-cache-expiry) "auth-source" "gnus/auth-source.el" -;;;;;; (20237 33565)) +;;;;;; (20236 48737)) ;;; Generated autoloads from gnus/auth-source.el (defvar auth-source-cache-expiry 7200 "\ @@ -1499,7 +1499,7 @@ ;;;*** ;;;### (autoloads (autoarg-kp-mode autoarg-mode) "autoarg" "autoarg.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from autoarg.el (defvar autoarg-mode nil "\ @@ -1560,7 +1560,7 @@ ;;;*** ;;;### (autoloads (autoconf-mode) "autoconf" "progmodes/autoconf.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/autoconf.el (autoload 'autoconf-mode "autoconf" "\ @@ -1571,7 +1571,7 @@ ;;;*** ;;;### (autoloads (auto-insert-mode define-auto-insert auto-insert) -;;;;;; "autoinsert" "autoinsert.el" (20229 31156)) +;;;;;; "autoinsert" "autoinsert.el" (20229 34587)) ;;; Generated autoloads from autoinsert.el (autoload 'auto-insert "autoinsert" "\ @@ -1611,7 +1611,7 @@ ;;;### (autoloads (batch-update-autoloads update-directory-autoloads ;;;;;; update-file-autoloads) "autoload" "emacs-lisp/autoload.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from emacs-lisp/autoload.el (put 'generated-autoload-file 'safe-local-variable 'stringp) @@ -1662,7 +1662,7 @@ ;;;### (autoloads (global-auto-revert-mode turn-on-auto-revert-tail-mode ;;;;;; auto-revert-tail-mode turn-on-auto-revert-mode auto-revert-mode) -;;;;;; "autorevert" "autorevert.el" (20229 31156)) +;;;;;; "autorevert" "autorevert.el" (20229 34587)) ;;; Generated autoloads from autorevert.el (autoload 'auto-revert-mode "autorevert" "\ @@ -1751,7 +1751,7 @@ ;;;*** ;;;### (autoloads (mouse-avoidance-mode mouse-avoidance-mode) "avoid" -;;;;;; "avoid.el" (20229 31156)) +;;;;;; "avoid.el" (20229 34587)) ;;; Generated autoloads from avoid.el (defvar mouse-avoidance-mode nil "\ @@ -1792,7 +1792,7 @@ ;;;*** ;;;### (autoloads (display-battery-mode battery) "battery" "battery.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from battery.el (put 'battery-mode-line-string 'risky-local-variable t) @@ -1828,7 +1828,7 @@ ;;;*** ;;;### (autoloads (benchmark benchmark-run-compiled benchmark-run) -;;;;;; "benchmark" "emacs-lisp/benchmark.el" (20229 31156)) +;;;;;; "benchmark" "emacs-lisp/benchmark.el" (20229 34587)) ;;; Generated autoloads from emacs-lisp/benchmark.el (autoload 'benchmark-run "benchmark" "\ @@ -1861,7 +1861,7 @@ ;;;*** ;;;### (autoloads (bibtex-search-entry bibtex-mode bibtex-initialize) -;;;;;; "bibtex" "textmodes/bibtex.el" (20260 51086)) +;;;;;; "bibtex" "textmodes/bibtex.el" (20261 10951)) ;;; Generated autoloads from textmodes/bibtex.el (autoload 'bibtex-initialize "bibtex" "\ @@ -1950,7 +1950,7 @@ ;;;*** ;;;### (autoloads (bibtex-style-mode) "bibtex-style" "textmodes/bibtex-style.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from textmodes/bibtex-style.el (autoload 'bibtex-style-mode "bibtex-style" "\ @@ -1962,7 +1962,7 @@ ;;;### (autoloads (binhex-decode-region binhex-decode-region-external ;;;;;; binhex-decode-region-internal) "binhex" "mail/binhex.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from mail/binhex.el (defconst binhex-begin-line "^:...............................................................$" "\ @@ -1987,7 +1987,7 @@ ;;;*** ;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from play/blackbox.el (autoload 'blackbox "blackbox" "\ @@ -2110,7 +2110,7 @@ ;;;;;; bookmark-save bookmark-write bookmark-delete bookmark-insert ;;;;;; bookmark-rename bookmark-insert-location bookmark-relocate ;;;;;; bookmark-jump-other-window bookmark-jump bookmark-set) "bookmark" -;;;;;; "bookmark.el" (20229 31156)) +;;;;;; "bookmark.el" (20229 34587)) ;;; Generated autoloads from bookmark.el (define-key ctl-x-r-map "b" 'bookmark-jump) (define-key ctl-x-r-map "m" 'bookmark-set) @@ -2311,7 +2311,7 @@ ;;;;;; browse-url-xdg-open browse-url-at-mouse browse-url-at-point ;;;;;; browse-url browse-url-of-region browse-url-of-dired-file ;;;;;; browse-url-of-buffer browse-url-of-file browse-url-browser-function) -;;;;;; "browse-url" "net/browse-url.el" (20229 31156)) +;;;;;; "browse-url" "net/browse-url.el" (20229 34587)) ;;; Generated autoloads from net/browse-url.el (defvar browse-url-browser-function 'browse-url-default-browser "\ @@ -2625,7 +2625,7 @@ ;;;*** ;;;### (autoloads (snarf-bruces bruce) "bruce" "play/bruce.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from play/bruce.el (autoload 'bruce "bruce" "\ @@ -2641,7 +2641,7 @@ ;;;*** ;;;### (autoloads (bs-show bs-customize bs-cycle-previous bs-cycle-next) -;;;;;; "bs" "bs.el" (20229 31156)) +;;;;;; "bs" "bs.el" (20229 34587)) ;;; Generated autoloads from bs.el (autoload 'bs-cycle-next "bs" "\ @@ -2681,7 +2681,7 @@ ;;;*** -;;;### (autoloads (bubbles) "bubbles" "play/bubbles.el" (20229 31156)) +;;;### (autoloads (bubbles) "bubbles" "play/bubbles.el" (20229 34587)) ;;; Generated autoloads from play/bubbles.el (autoload 'bubbles "bubbles" "\ @@ -2703,7 +2703,7 @@ ;;;*** ;;;### (autoloads (bug-reference-prog-mode bug-reference-mode) "bug-reference" -;;;;;; "progmodes/bug-reference.el" (20229 31156)) +;;;;;; "progmodes/bug-reference.el" (20229 34587)) ;;; 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))))) @@ -2727,7 +2727,7 @@ ;;;;;; batch-byte-compile-if-not-done display-call-tree byte-compile ;;;;;; compile-defun byte-compile-file byte-recompile-directory ;;;;;; byte-force-recompile byte-compile-enable-warning byte-compile-disable-warning) -;;;;;; "bytecomp" "emacs-lisp/bytecomp.el" (20230 53294)) +;;;;;; "bytecomp" "emacs-lisp/bytecomp.el" (20230 55355)) ;;; 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) @@ -2848,7 +2848,7 @@ ;;;*** ;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from calendar/cal-china.el (put 'calendar-chinese-time-zone 'risky-local-variable t) @@ -2857,7 +2857,7 @@ ;;;*** -;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (20229 31156)) +;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (20229 34587)) ;;; Generated autoloads from calendar/cal-dst.el (put 'calendar-daylight-savings-starts 'risky-local-variable t) @@ -2869,7 +2869,7 @@ ;;;*** ;;;### (autoloads (calendar-hebrew-list-yahrzeits) "cal-hebrew" "calendar/cal-hebrew.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from calendar/cal-hebrew.el (autoload 'calendar-hebrew-list-yahrzeits "cal-hebrew" "\ @@ -2886,7 +2886,7 @@ ;;;### (autoloads (defmath calc-embedded-activate calc-embedded calc-grab-rectangle ;;;;;; calc-grab-region full-calc-keypad calc-keypad calc-eval quick-calc ;;;;;; full-calc calc calc-dispatch) "calc" "calc/calc.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from calc/calc.el (define-key ctl-x-map "*" 'calc-dispatch) @@ -2971,7 +2971,7 @@ ;;;*** ;;;### (autoloads (calc-undo) "calc-undo" "calc/calc-undo.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from calc/calc-undo.el (autoload 'calc-undo "calc-undo" "\ @@ -2982,7 +2982,7 @@ ;;;*** ;;;### (autoloads (calculator) "calculator" "calculator.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from calculator.el (autoload 'calculator "calculator" "\ @@ -2994,7 +2994,7 @@ ;;;*** ;;;### (autoloads (calendar) "calendar" "calendar/calendar.el" (20230 -;;;;;; 53294)) +;;;;;; 18463)) ;;; Generated autoloads from calendar/calendar.el (autoload 'calendar "calendar" "\ @@ -3038,7 +3038,7 @@ ;;;*** ;;;### (autoloads (canlock-verify canlock-insert-header) "canlock" -;;;;;; "gnus/canlock.el" (20229 31156)) +;;;;;; "gnus/canlock.el" (20229 34587)) ;;; Generated autoloads from gnus/canlock.el (autoload 'canlock-insert-header "canlock" "\ @@ -3056,7 +3056,7 @@ ;;;*** ;;;### (autoloads (capitalized-words-mode) "cap-words" "progmodes/cap-words.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/cap-words.el (autoload 'capitalized-words-mode "cap-words" "\ @@ -3096,14 +3096,14 @@ ;;;*** ;;;### (autoloads nil "cc-compat" "progmodes/cc-compat.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from progmodes/cc-compat.el (put 'c-indent-level 'safe-local-variable 'integerp) ;;;*** ;;;### (autoloads (c-guess-basic-syntax) "cc-engine" "progmodes/cc-engine.el" -;;;;;; (20248 54395)) +;;;;;; (20264 31805)) ;;; Generated autoloads from progmodes/cc-engine.el (autoload 'c-guess-basic-syntax "cc-engine" "\ @@ -3115,7 +3115,7 @@ ;;;### (autoloads (c-guess-install c-guess-region-no-install c-guess-region ;;;;;; c-guess-buffer-no-install c-guess-buffer c-guess-no-install -;;;;;; c-guess) "cc-guess" "progmodes/cc-guess.el" (20229 31156)) +;;;;;; c-guess) "cc-guess" "progmodes/cc-guess.el" (20229 34587)) ;;; Generated autoloads from progmodes/cc-guess.el (defvar c-guess-guessed-offsets-alist nil "\ @@ -3215,7 +3215,7 @@ ;;;### (autoloads (awk-mode pike-mode idl-mode java-mode objc-mode ;;;;;; c++-mode c-mode c-initialize-cc-mode) "cc-mode" "progmodes/cc-mode.el" -;;;;;; (20248 54395)) +;;;;;; (20247 64512)) ;;; Generated autoloads from progmodes/cc-mode.el (autoload 'c-initialize-cc-mode "cc-mode" "\ @@ -3392,7 +3392,7 @@ ;;;*** ;;;### (autoloads (c-set-offset c-add-style c-set-style) "cc-styles" -;;;;;; "progmodes/cc-styles.el" (20229 31156)) +;;;;;; "progmodes/cc-styles.el" (20229 34587)) ;;; Generated autoloads from progmodes/cc-styles.el (autoload 'c-set-style "cc-styles" "\ @@ -3443,7 +3443,7 @@ ;;;*** -;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (20229 31156)) +;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (20229 34587)) ;;; Generated autoloads from progmodes/cc-vars.el (put 'c-basic-offset 'safe-local-variable 'integerp) (put 'c-backslash-column 'safe-local-variable 'integerp) @@ -3453,7 +3453,7 @@ ;;;### (autoloads (ccl-execute-with-args check-ccl-program define-ccl-program ;;;;;; declare-ccl-program ccl-dump ccl-compile) "ccl" "international/ccl.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from international/ccl.el (autoload 'ccl-compile "ccl" "\ @@ -3714,7 +3714,7 @@ ;;;*** ;;;### (autoloads (cconv-closure-convert) "cconv" "emacs-lisp/cconv.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from emacs-lisp/cconv.el (autoload 'cconv-closure-convert "cconv" "\ @@ -3729,7 +3729,7 @@ ;;;*** ;;;### (autoloads (cfengine-auto-mode cfengine2-mode cfengine3-mode) -;;;;;; "cfengine" "progmodes/cfengine.el" (20229 31156)) +;;;;;; "cfengine" "progmodes/cfengine.el" (20229 34587)) ;;; Generated autoloads from progmodes/cfengine.el (autoload 'cfengine3-mode "cfengine" "\ @@ -3759,7 +3759,7 @@ ;;;*** ;;;### (autoloads (check-declare-directory check-declare-file) "check-declare" -;;;;;; "emacs-lisp/check-declare.el" (20229 31156)) +;;;;;; "emacs-lisp/check-declare.el" (20229 34587)) ;;; Generated autoloads from emacs-lisp/check-declare.el (autoload 'check-declare-file "check-declare" "\ @@ -3784,7 +3784,7 @@ ;;;;;; checkdoc-comments checkdoc-continue checkdoc-start checkdoc-current-buffer ;;;;;; checkdoc-eval-current-buffer checkdoc-message-interactive ;;;;;; checkdoc-interactive checkdoc checkdoc-list-of-strings-p) -;;;;;; "checkdoc" "emacs-lisp/checkdoc.el" (20237 33565)) +;;;;;; "checkdoc" "emacs-lisp/checkdoc.el" (20237 28610)) ;;; Generated autoloads from emacs-lisp/checkdoc.el (put 'checkdoc-force-docstrings-flag 'safe-local-variable 'booleanp) (put 'checkdoc-force-history-flag 'safe-local-variable 'booleanp) @@ -3980,7 +3980,7 @@ ;;;### (autoloads (pre-write-encode-hz post-read-decode-hz encode-hz-buffer ;;;;;; encode-hz-region decode-hz-buffer decode-hz-region) "china-util" -;;;;;; "language/china-util.el" (20229 31156)) +;;;;;; "language/china-util.el" (20229 34587)) ;;; Generated autoloads from language/china-util.el (autoload 'decode-hz-region "china-util" "\ @@ -4018,7 +4018,7 @@ ;;;*** ;;;### (autoloads (command-history list-command-history repeat-matching-complex-command) -;;;;;; "chistory" "chistory.el" (20229 31156)) +;;;;;; "chistory" "chistory.el" (20229 34587)) ;;; Generated autoloads from chistory.el (autoload 'repeat-matching-complex-command "chistory" "\ @@ -4057,7 +4057,7 @@ ;;;*** -;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (20229 31156)) +;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (20229 34587)) ;;; Generated autoloads from emacs-lisp/cl.el (defvar custom-print-functions nil "\ @@ -4073,7 +4073,7 @@ ;;;*** ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "emacs-lisp/cl-indent.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from emacs-lisp/cl-indent.el (autoload 'common-lisp-indent-function "cl-indent" "\ @@ -4152,7 +4152,7 @@ ;;;*** ;;;### (autoloads (c-macro-expand) "cmacexp" "progmodes/cmacexp.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/cmacexp.el (autoload 'c-macro-expand "cmacexp" "\ @@ -4173,7 +4173,7 @@ ;;;*** ;;;### (autoloads (run-scheme) "cmuscheme" "cmuscheme.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from cmuscheme.el (autoload 'run-scheme "cmuscheme" "\ @@ -4193,7 +4193,7 @@ ;;;*** -;;;### (autoloads (color-name-to-rgb) "color" "color.el" (20254 54879)) +;;;### (autoloads (color-name-to-rgb) "color" "color.el" (20254 62269)) ;;; Generated autoloads from color.el (autoload 'color-name-to-rgb "color" "\ @@ -4215,7 +4215,7 @@ ;;;### (autoloads (comint-redirect-results-list-from-process comint-redirect-results-list ;;;;;; comint-redirect-send-command-to-process comint-redirect-send-command ;;;;;; comint-run make-comint make-comint-in-buffer) "comint" "comint.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from comint.el (defvar comint-output-filter-functions '(comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\ @@ -4310,7 +4310,7 @@ ;;;*** ;;;### (autoloads (compare-windows) "compare-w" "vc/compare-w.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from vc/compare-w.el (autoload 'compare-windows "compare-w" "\ @@ -4347,8 +4347,8 @@ ;;;;;; compilation-shell-minor-mode compilation-mode compilation-start ;;;;;; compile compilation-disable-input compile-command compilation-search-path ;;;;;; compilation-ask-about-save compilation-window-height compilation-start-hook -;;;;;; compilation-mode-hook) "compile" "progmodes/compile.el" (20255 -;;;;;; 37778)) +;;;;;; compilation-mode-hook) "compile" "progmodes/compile.el" (20265 +;;;;;; 7997)) ;;; Generated autoloads from progmodes/compile.el (defvar compilation-mode-hook nil "\ @@ -4528,7 +4528,7 @@ ;;;*** ;;;### (autoloads (dynamic-completion-mode) "completion" "completion.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from completion.el (defvar dynamic-completion-mode nil "\ @@ -4550,7 +4550,7 @@ ;;;### (autoloads (conf-xdefaults-mode conf-ppd-mode conf-colon-mode ;;;;;; conf-space-keywords conf-space-mode conf-javaprop-mode conf-windows-mode ;;;;;; conf-unix-mode conf-mode) "conf-mode" "textmodes/conf-mode.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from textmodes/conf-mode.el (autoload 'conf-mode "conf-mode" "\ @@ -4706,7 +4706,7 @@ ;;;*** ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) -;;;;;; "cookie1" "play/cookie1.el" (20229 31156)) +;;;;;; "cookie1" "play/cookie1.el" (20229 34587)) ;;; Generated autoloads from play/cookie1.el (autoload 'cookie "cookie1" "\ @@ -4739,7 +4739,7 @@ ;;;### (autoloads (copyright-update-directory copyright copyright-fix-years ;;;;;; copyright-update) "copyright" "emacs-lisp/copyright.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from emacs-lisp/copyright.el (put 'copyright-at-end-flag 'safe-local-variable 'booleanp) (put 'copyright-names-regexp 'safe-local-variable 'stringp) @@ -4778,7 +4778,7 @@ ;;;*** ;;;### (autoloads (cperl-perldoc-at-point cperl-perldoc cperl-mode) -;;;;;; "cperl-mode" "progmodes/cperl-mode.el" (20229 31156)) +;;;;;; "cperl-mode" "progmodes/cperl-mode.el" (20229 34587)) ;;; Generated autoloads from progmodes/cperl-mode.el (put 'cperl-indent-level 'safe-local-variable 'integerp) (put 'cperl-brace-offset 'safe-local-variable 'integerp) @@ -4977,7 +4977,7 @@ ;;;*** ;;;### (autoloads (cpp-parse-edit cpp-highlight-buffer) "cpp" "progmodes/cpp.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/cpp.el (autoload 'cpp-highlight-buffer "cpp" "\ @@ -4996,7 +4996,7 @@ ;;;*** ;;;### (autoloads (crisp-mode crisp-mode) "crisp" "emulation/crisp.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from emulation/crisp.el (defvar crisp-mode nil "\ @@ -5022,7 +5022,7 @@ ;;;*** ;;;### (autoloads (completing-read-multiple) "crm" "emacs-lisp/crm.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from emacs-lisp/crm.el (autoload 'completing-read-multiple "crm" "\ @@ -5058,7 +5058,7 @@ ;;;*** ;;;### (autoloads (css-mode) "css-mode" "textmodes/css-mode.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from textmodes/css-mode.el (autoload 'css-mode "css-mode" "\ @@ -5069,7 +5069,7 @@ ;;;*** ;;;### (autoloads (cua-selection-mode cua-mode) "cua-base" "emulation/cua-base.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from emulation/cua-base.el (defvar cua-mode nil "\ @@ -5129,7 +5129,7 @@ ;;;;;; customize-mode customize customize-push-and-save customize-save-variable ;;;;;; customize-set-variable customize-set-value custom-menu-sort-alphabetically ;;;;;; custom-buffer-sort-alphabetically custom-browse-sort-alphabetically) -;;;;;; "cus-edit" "cus-edit.el" (20261 17554)) +;;;;;; "cus-edit" "cus-edit.el" (20259 55615)) ;;; Generated autoloads from cus-edit.el (defvar custom-browse-sort-alphabetically nil "\ @@ -5446,7 +5446,7 @@ ;;;### (autoloads (customize-themes describe-theme custom-theme-visit-theme ;;;;;; customize-create-theme) "cus-theme" "cus-theme.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from cus-theme.el (autoload 'customize-create-theme "cus-theme" "\ @@ -5478,7 +5478,7 @@ ;;;*** ;;;### (autoloads (cvs-status-mode) "cvs-status" "vc/cvs-status.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from vc/cvs-status.el (autoload 'cvs-status-mode "cvs-status" "\ @@ -5489,7 +5489,7 @@ ;;;*** ;;;### (autoloads (global-cwarn-mode turn-on-cwarn-mode cwarn-mode) -;;;;;; "cwarn" "progmodes/cwarn.el" (20229 31156)) +;;;;;; "cwarn" "progmodes/cwarn.el" (20263 52669)) ;;; Generated autoloads from progmodes/cwarn.el (autoload 'cwarn-mode "cwarn" "\ @@ -5538,7 +5538,7 @@ ;;;### (autoloads (standard-display-cyrillic-translit cyrillic-encode-alternativnyj-char ;;;;;; cyrillic-encode-koi8-r-char) "cyril-util" "language/cyril-util.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from language/cyril-util.el (autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\ @@ -5567,7 +5567,7 @@ ;;;*** ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "dabbrev.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from dabbrev.el (put 'dabbrev-case-fold-search 'risky-local-variable t) (put 'dabbrev-case-replace 'risky-local-variable t) @@ -5614,7 +5614,7 @@ ;;;*** ;;;### (autoloads (data-debug-new-buffer) "data-debug" "cedet/data-debug.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from cedet/data-debug.el (autoload 'data-debug-new-buffer "data-debug" "\ @@ -5625,7 +5625,7 @@ ;;;*** ;;;### (autoloads (dbus-handle-event) "dbus" "net/dbus.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from net/dbus.el (autoload 'dbus-handle-event "dbus" "\ @@ -5639,7 +5639,7 @@ ;;;*** ;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from progmodes/dcl-mode.el (autoload 'dcl-mode "dcl-mode" "\ @@ -5766,7 +5766,7 @@ ;;;*** ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" -;;;;;; "emacs-lisp/debug.el" (20229 31156)) +;;;;;; "emacs-lisp/debug.el" (20229 34587)) ;;; Generated autoloads from emacs-lisp/debug.el (setq debugger 'debug) @@ -5810,7 +5810,7 @@ ;;;*** ;;;### (autoloads (decipher-mode decipher) "decipher" "play/decipher.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from play/decipher.el (autoload 'decipher "decipher" "\ @@ -5840,7 +5840,7 @@ ;;;### (autoloads (delimit-columns-rectangle delimit-columns-region ;;;;;; delimit-columns-customize) "delim-col" "delim-col.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from delim-col.el (autoload 'delimit-columns-customize "delim-col" "\ @@ -5865,7 +5865,7 @@ ;;;*** ;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from progmodes/delphi.el (autoload 'delphi-mode "delphi" "\ @@ -5917,7 +5917,7 @@ ;;;*** ;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from delsel.el (defalias 'pending-delete-mode 'delete-selection-mode) @@ -5947,7 +5947,7 @@ ;;;*** ;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) -;;;;;; "derived" "emacs-lisp/derived.el" (20229 31156)) +;;;;;; "derived" "emacs-lisp/derived.el" (20229 34587)) ;;; Generated autoloads from emacs-lisp/derived.el (autoload 'define-derived-mode "derived" "\ @@ -6014,7 +6014,7 @@ ;;;*** ;;;### (autoloads (describe-char describe-text-properties) "descr-text" -;;;;;; "descr-text.el" (20259 64614)) +;;;;;; "descr-text.el" (20259 55615)) ;;; Generated autoloads from descr-text.el (autoload 'describe-text-properties "descr-text" "\ @@ -6051,7 +6051,7 @@ ;;;### (autoloads (desktop-revert desktop-save-in-desktop-dir desktop-change-dir ;;;;;; desktop-load-default desktop-read desktop-remove desktop-save ;;;;;; desktop-clear desktop-locals-to-save desktop-save-mode) "desktop" -;;;;;; "desktop.el" (20229 31156)) +;;;;;; "desktop.el" (20229 34587)) ;;; Generated autoloads from desktop.el (defvar desktop-save-mode nil "\ @@ -6238,7 +6238,7 @@ ;;;### (autoloads (gnus-article-outlook-deuglify-article gnus-outlook-deuglify-article ;;;;;; gnus-article-outlook-repair-attribution gnus-article-outlook-unwrap-lines) -;;;;;; "deuglify" "gnus/deuglify.el" (20229 31156)) +;;;;;; "deuglify" "gnus/deuglify.el" (20229 34587)) ;;; Generated autoloads from gnus/deuglify.el (autoload 'gnus-article-outlook-unwrap-lines "deuglify" "\ @@ -6271,7 +6271,7 @@ ;;;*** ;;;### (autoloads (diary-mode diary-mail-entries diary) "diary-lib" -;;;;;; "calendar/diary-lib.el" (20229 31156)) +;;;;;; "calendar/diary-lib.el" (20229 34587)) ;;; Generated autoloads from calendar/diary-lib.el (autoload 'diary "diary-lib" "\ @@ -6314,7 +6314,7 @@ ;;;*** ;;;### (autoloads (diff-buffer-with-file diff-backup diff diff-command -;;;;;; diff-switches) "diff" "vc/diff.el" (20229 31156)) +;;;;;; diff-switches) "diff" "vc/diff.el" (20229 34587)) ;;; Generated autoloads from vc/diff.el (defvar diff-switches (purecopy "-c") "\ @@ -6358,7 +6358,7 @@ ;;;*** ;;;### (autoloads (diff-minor-mode diff-mode) "diff-mode" "vc/diff-mode.el" -;;;;;; (20260 48967)) +;;;;;; (20229 34587)) ;;; Generated autoloads from vc/diff-mode.el (autoload 'diff-mode "diff-mode" "\ @@ -6390,7 +6390,7 @@ ;;;*** -;;;### (autoloads (dig) "dig" "net/dig.el" (20229 31156)) +;;;### (autoloads (dig) "dig" "net/dig.el" (20229 34587)) ;;; Generated autoloads from net/dig.el (autoload 'dig "dig" "\ @@ -6402,7 +6402,7 @@ ;;;*** ;;;### (autoloads (dired-mode dired-noselect dired-other-frame dired-other-window -;;;;;; dired dired-listing-switches) "dired" "dired.el" (20259 19594)) +;;;;;; dired dired-listing-switches) "dired" "dired.el" (20259 55615)) ;;; Generated autoloads from dired.el (defvar dired-listing-switches (purecopy "-al") "\ @@ -6524,7 +6524,7 @@ ;;;*** ;;;### (autoloads (dirtrack dirtrack-mode) "dirtrack" "dirtrack.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from dirtrack.el (autoload 'dirtrack-mode "dirtrack" "\ @@ -6555,7 +6555,7 @@ ;;;*** ;;;### (autoloads (disassemble) "disass" "emacs-lisp/disass.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from emacs-lisp/disass.el (autoload 'disassemble "disass" "\ @@ -6574,7 +6574,7 @@ ;;;;;; standard-display-g1 standard-display-ascii standard-display-default ;;;;;; standard-display-8bit describe-current-display-table describe-display-table ;;;;;; set-display-table-slot display-table-slot make-display-table) -;;;;;; "disp-table" "disp-table.el" (20229 31156)) +;;;;;; "disp-table" "disp-table.el" (20229 34587)) ;;; Generated autoloads from disp-table.el (autoload 'make-display-table "disp-table" "\ @@ -6696,7 +6696,7 @@ ;;;*** ;;;### (autoloads (dissociated-press) "dissociate" "play/dissociate.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from play/dissociate.el (autoload 'dissociated-press "dissociate" "\ @@ -6712,7 +6712,7 @@ ;;;*** -;;;### (autoloads (dnd-protocol-alist) "dnd" "dnd.el" (20229 31156)) +;;;### (autoloads (dnd-protocol-alist) "dnd" "dnd.el" (20229 34587)) ;;; 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)) "\ @@ -6733,7 +6733,7 @@ ;;;*** ;;;### (autoloads (dns-mode-soa-increment-serial dns-mode) "dns-mode" -;;;;;; "textmodes/dns-mode.el" (20229 31156)) +;;;;;; "textmodes/dns-mode.el" (20229 34587)) ;;; Generated autoloads from textmodes/dns-mode.el (autoload 'dns-mode "dns-mode" "\ @@ -6758,7 +6758,7 @@ ;;;### (autoloads (doc-view-bookmark-jump doc-view-minor-mode doc-view-mode-maybe ;;;;;; doc-view-mode doc-view-mode-p) "doc-view" "doc-view.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from doc-view.el (autoload 'doc-view-mode-p "doc-view" "\ @@ -6804,7 +6804,7 @@ ;;;*** -;;;### (autoloads (doctor) "doctor" "play/doctor.el" (20230 53294)) +;;;### (autoloads (doctor) "doctor" "play/doctor.el" (20230 15291)) ;;; Generated autoloads from play/doctor.el (autoload 'doctor "doctor" "\ @@ -6814,7 +6814,7 @@ ;;;*** -;;;### (autoloads (double-mode) "double" "double.el" (20229 31156)) +;;;### (autoloads (double-mode) "double" "double.el" (20229 34587)) ;;; Generated autoloads from double.el (autoload 'double-mode "double" "\ @@ -6830,7 +6830,7 @@ ;;;*** -;;;### (autoloads (dunnet) "dunnet" "play/dunnet.el" (20229 31156)) +;;;### (autoloads (dunnet) "dunnet" "play/dunnet.el" (20229 34587)) ;;; Generated autoloads from play/dunnet.el (autoload 'dunnet "dunnet" "\ @@ -6842,14 +6842,15 @@ ;;;### (autoloads (easy-mmode-defsyntax easy-mmode-defmap easy-mmode-define-keymap ;;;;;; define-globalized-minor-mode define-minor-mode) "easy-mmode" -;;;;;; "emacs-lisp/easy-mmode.el" (20229 31156)) +;;;;;; "emacs-lisp/easy-mmode.el" (20264 40969)) ;;; Generated autoloads from emacs-lisp/easy-mmode.el (defalias 'easy-mmode-define-minor-mode 'define-minor-mode) (autoload 'define-minor-mode "easy-mmode" "\ Define a new minor mode MODE. -This defines the control variable MODE and the toggle command MODE. +This defines the toggle command MODE and (by default) a control variable +MODE (you can override this with the :variable keyword, see below). DOC is the documentation for the mode toggle command. Optional INIT-VALUE is the initial value of the mode's variable. @@ -6876,15 +6877,19 @@ buffer-local, so don't make the variable MODE buffer-local. By default, the mode is buffer-local. :init-value VAL Same as the INIT-VALUE argument. + Not used if you also specify :variable. :lighter SPEC Same as the LIGHTER argument. :keymap MAP Same as the KEYMAP argument. :require SYM Same as in `defcustom'. -:variable PLACE The location (as can be used with `setf') to use instead - of the variable MODE to store the state of the mode. PLACE - can also be of the form (GET . SET) where GET is an expression - that returns the current state and SET is a function that takes - a new state and sets it. If you specify a :variable, this - function assumes it is defined elsewhere. +:variable PLACE The location to use instead of the variable MODE to store + the state of the mode. This can be simply a different + named variable, or more generally anything that can be used + with the CL macro `setf'. PLACE can also be of the form + (GET . SET), where GET is an expression that returns the + current state, and SET is a function that takes one argument, + the new state, and sets it. If you specify a :variable, + this function does not define a MODE variable (nor any of + the terms used in :variable). For example, you could write (define-minor-mode foo-mode \"If enabled, foo on you!\" @@ -6954,7 +6959,7 @@ ;;;### (autoloads (easy-menu-change easy-menu-create-menu easy-menu-do-define ;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from emacs-lisp/easymenu.el (autoload 'easy-menu-define "easymenu" "\ @@ -7108,7 +7113,7 @@ ;;;;;; ebnf-eps-file ebnf-eps-directory ebnf-spool-region ebnf-spool-buffer ;;;;;; ebnf-spool-file ebnf-spool-directory ebnf-print-region ebnf-print-buffer ;;;;;; ebnf-print-file ebnf-print-directory ebnf-customize) "ebnf2ps" -;;;;;; "progmodes/ebnf2ps.el" (20229 31156)) +;;;;;; "progmodes/ebnf2ps.el" (20229 34587)) ;;; Generated autoloads from progmodes/ebnf2ps.el (autoload 'ebnf-customize "ebnf2ps" "\ @@ -7383,7 +7388,7 @@ ;;;;;; ebrowse-tags-view-definition ebrowse-tags-find-declaration ;;;;;; ebrowse-tags-view-declaration ebrowse-member-mode ebrowse-electric-choose-tree ;;;;;; ebrowse-tree-mode) "ebrowse" "progmodes/ebrowse.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from progmodes/ebrowse.el (autoload 'ebrowse-tree-mode "ebrowse" "\ @@ -7532,7 +7537,7 @@ ;;;*** ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "ebuff-menu.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from ebuff-menu.el (autoload 'electric-buffer-list "ebuff-menu" "\ @@ -7557,7 +7562,7 @@ ;;;*** ;;;### (autoloads (Electric-command-history-redo-expression) "echistory" -;;;;;; "echistory.el" (20229 31156)) +;;;;;; "echistory.el" (20229 34587)) ;;; Generated autoloads from echistory.el (autoload 'Electric-command-history-redo-expression "echistory" "\ @@ -7569,7 +7574,7 @@ ;;;*** ;;;### (autoloads (ecomplete-setup) "ecomplete" "gnus/ecomplete.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/ecomplete.el (autoload 'ecomplete-setup "ecomplete" "\ @@ -7579,7 +7584,7 @@ ;;;*** -;;;### (autoloads (global-ede-mode) "ede" "cedet/ede.el" (20240 12046)) +;;;### (autoloads (global-ede-mode) "ede" "cedet/ede.el" (20240 47305)) ;;; Generated autoloads from cedet/ede.el (defvar global-ede-mode nil "\ @@ -7606,7 +7611,7 @@ ;;;### (autoloads (edebug-all-forms edebug-all-defs edebug-eval-top-level-form ;;;;;; edebug-basic-spec edebug-all-forms edebug-all-defs) "edebug" -;;;;;; "emacs-lisp/edebug.el" (20229 31156)) +;;;;;; "emacs-lisp/edebug.el" (20229 34587)) ;;; Generated autoloads from emacs-lisp/edebug.el (defvar edebug-all-defs nil "\ @@ -7679,7 +7684,7 @@ ;;;;;; ediff-merge-directories-with-ancestor ediff-merge-directories ;;;;;; ediff-directories3 ediff-directory-revisions ediff-directories ;;;;;; ediff-buffers3 ediff-buffers ediff-backup ediff-current-file -;;;;;; ediff-files3 ediff-files) "ediff" "vc/ediff.el" (20229 31156)) +;;;;;; ediff-files3 ediff-files) "ediff" "vc/ediff.el" (20229 34587)) ;;; Generated autoloads from vc/ediff.el (autoload 'ediff-files "ediff" "\ @@ -7911,7 +7916,7 @@ ;;;*** ;;;### (autoloads (ediff-customize) "ediff-help" "vc/ediff-help.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from vc/ediff-help.el (autoload 'ediff-customize "ediff-help" "\ @@ -7922,7 +7927,7 @@ ;;;*** ;;;### (autoloads (ediff-show-registry) "ediff-mult" "vc/ediff-mult.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from vc/ediff-mult.el (autoload 'ediff-show-registry "ediff-mult" "\ @@ -7935,7 +7940,7 @@ ;;;*** ;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe) -;;;;;; "ediff-util" "vc/ediff-util.el" (20229 31156)) +;;;;;; "ediff-util" "vc/ediff-util.el" (20229 34587)) ;;; Generated autoloads from vc/ediff-util.el (autoload 'ediff-toggle-multiframe "ediff-util" "\ @@ -7956,7 +7961,7 @@ ;;;### (autoloads (format-kbd-macro read-kbd-macro edit-named-kbd-macro ;;;;;; edit-last-kbd-macro edit-kbd-macro) "edmacro" "edmacro.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from edmacro.el (autoload 'edit-kbd-macro "edmacro" "\ @@ -8005,7 +8010,7 @@ ;;;*** ;;;### (autoloads (edt-emulation-on edt-set-scroll-margins) "edt" -;;;;;; "emulation/edt.el" (20229 31156)) +;;;;;; "emulation/edt.el" (20229 34587)) ;;; Generated autoloads from emulation/edt.el (autoload 'edt-set-scroll-margins "edt" "\ @@ -8023,7 +8028,7 @@ ;;;*** ;;;### (autoloads (electric-helpify with-electric-help) "ehelp" "ehelp.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from ehelp.el (autoload 'with-electric-help "ehelp" "\ @@ -8060,7 +8065,7 @@ ;;;*** ;;;### (autoloads (turn-on-eldoc-mode eldoc-mode eldoc-minor-mode-string) -;;;;;; "eldoc" "emacs-lisp/eldoc.el" (20229 31156)) +;;;;;; "eldoc" "emacs-lisp/eldoc.el" (20229 34587)) ;;; Generated autoloads from emacs-lisp/eldoc.el (defvar eldoc-minor-mode-string (purecopy " ElDoc") "\ @@ -8107,7 +8112,7 @@ ;;;*** ;;;### (autoloads (electric-layout-mode electric-pair-mode electric-indent-mode) -;;;;;; "electric" "electric.el" (20229 31156)) +;;;;;; "electric" "electric.el" (20229 34587)) ;;; Generated autoloads from electric.el (defvar electric-indent-chars '(10) "\ @@ -8172,7 +8177,7 @@ ;;;*** ;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from elide-head.el (autoload 'elide-head "elide-head" "\ @@ -8189,7 +8194,7 @@ ;;;### (autoloads (elint-initialize elint-defun elint-current-buffer ;;;;;; elint-directory elint-file) "elint" "emacs-lisp/elint.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from emacs-lisp/elint.el (autoload 'elint-file "elint" "\ @@ -8226,7 +8231,7 @@ ;;;### (autoloads (elp-results elp-instrument-package elp-instrument-list ;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from emacs-lisp/elp.el (autoload 'elp-instrument-function "elp" "\ @@ -8261,7 +8266,7 @@ ;;;*** ;;;### (autoloads (emacs-lock-mode) "emacs-lock" "emacs-lock.el" -;;;;;; (20237 33565)) +;;;;;; (20237 28610)) ;;; Generated autoloads from emacs-lock.el (autoload 'emacs-lock-mode "emacs-lock" "\ @@ -8289,7 +8294,7 @@ ;;;*** ;;;### (autoloads (report-emacs-bug-query-existing-bugs report-emacs-bug) -;;;;;; "emacsbug" "mail/emacsbug.el" (20259 64614)) +;;;;;; "emacsbug" "mail/emacsbug.el" (20259 55615)) ;;; Generated autoloads from mail/emacsbug.el (autoload 'report-emacs-bug "emacsbug" "\ @@ -8310,7 +8315,7 @@ ;;;;;; emerge-revisions emerge-files-with-ancestor-remote emerge-files-remote ;;;;;; emerge-files-with-ancestor-command emerge-files-command emerge-buffers-with-ancestor ;;;;;; emerge-buffers emerge-files-with-ancestor emerge-files) "emerge" -;;;;;; "vc/emerge.el" (20204 18649)) +;;;;;; "vc/emerge.el" (20204 31303)) ;;; Generated autoloads from vc/emerge.el (autoload 'emerge-files "emerge" "\ @@ -8371,7 +8376,7 @@ ;;;*** ;;;### (autoloads (enriched-decode enriched-encode enriched-mode) -;;;;;; "enriched" "textmodes/enriched.el" (20229 31156)) +;;;;;; "enriched" "textmodes/enriched.el" (20229 34587)) ;;; Generated autoloads from textmodes/enriched.el (autoload 'enriched-mode "enriched" "\ @@ -8407,7 +8412,7 @@ ;;;;;; epa-decrypt-armor-in-region epa-decrypt-region epa-encrypt-file ;;;;;; epa-sign-file epa-verify-file epa-decrypt-file epa-select-keys ;;;;;; epa-list-secret-keys epa-list-keys) "epa" "epa.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from epa.el (autoload 'epa-list-keys "epa" "\ @@ -8585,7 +8590,7 @@ ;;;*** ;;;### (autoloads (epa-dired-do-encrypt epa-dired-do-sign epa-dired-do-verify -;;;;;; epa-dired-do-decrypt) "epa-dired" "epa-dired.el" (20229 31156)) +;;;;;; epa-dired-do-decrypt) "epa-dired" "epa-dired.el" (20229 34587)) ;;; Generated autoloads from epa-dired.el (autoload 'epa-dired-do-decrypt "epa-dired" "\ @@ -8611,7 +8616,7 @@ ;;;*** ;;;### (autoloads (epa-file-disable epa-file-enable epa-file-handler) -;;;;;; "epa-file" "epa-file.el" (20229 31156)) +;;;;;; "epa-file" "epa-file.el" (20229 34587)) ;;; Generated autoloads from epa-file.el (autoload 'epa-file-handler "epa-file" "\ @@ -8633,7 +8638,7 @@ ;;;### (autoloads (epa-global-mail-mode epa-mail-import-keys epa-mail-encrypt ;;;;;; epa-mail-sign epa-mail-verify epa-mail-decrypt epa-mail-mode) -;;;;;; "epa-mail" "epa-mail.el" (20229 31156)) +;;;;;; "epa-mail" "epa-mail.el" (20229 34587)) ;;; Generated autoloads from epa-mail.el (autoload 'epa-mail-mode "epa-mail" "\ @@ -8697,7 +8702,7 @@ ;;;*** -;;;### (autoloads (epg-make-context) "epg" "epg.el" (20241 10643)) +;;;### (autoloads (epg-make-context) "epg" "epg.el" (20241 25657)) ;;; Generated autoloads from epg.el (autoload 'epg-make-context "epg" "\ @@ -8708,7 +8713,7 @@ ;;;*** ;;;### (autoloads (epg-expand-group epg-check-configuration epg-configuration) -;;;;;; "epg-config" "epg-config.el" (20229 31156)) +;;;;;; "epg-config" "epg-config.el" (20229 34587)) ;;; Generated autoloads from epg-config.el (autoload 'epg-configuration "epg-config" "\ @@ -8729,7 +8734,7 @@ ;;;*** ;;;### (autoloads (erc-handle-irc-url erc-tls erc erc-select-read-args) -;;;;;; "erc" "erc/erc.el" (20230 53294)) +;;;;;; "erc" "erc/erc.el" (20230 55355)) ;;; Generated autoloads from erc/erc.el (autoload 'erc-select-read-args "erc" "\ @@ -8778,32 +8783,32 @@ ;;;*** ;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from erc/erc-autoaway.el (autoload 'erc-autoaway-mode "erc-autoaway") ;;;*** -;;;### (autoloads nil "erc-button" "erc/erc-button.el" (20229 31156)) +;;;### (autoloads nil "erc-button" "erc/erc-button.el" (20229 34587)) ;;; Generated autoloads from erc/erc-button.el (autoload 'erc-button-mode "erc-button" nil t) ;;;*** -;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (20229 31156)) +;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (20229 34587)) ;;; Generated autoloads from erc/erc-capab.el (autoload 'erc-capab-identify-mode "erc-capab" nil t) ;;;*** -;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (20229 31156)) +;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (20229 34587)) ;;; Generated autoloads from erc/erc-compat.el (autoload 'erc-define-minor-mode "erc-compat") ;;;*** ;;;### (autoloads (erc-ctcp-query-DCC pcomplete/erc-mode/DCC erc-cmd-DCC) -;;;;;; "erc-dcc" "erc/erc-dcc.el" (20229 31156)) +;;;;;; "erc-dcc" "erc/erc-dcc.el" (20229 34587)) ;;; Generated autoloads from erc/erc-dcc.el (autoload 'erc-dcc-mode "erc-dcc") @@ -8836,7 +8841,7 @@ ;;;;;; erc-ezb-add-session erc-ezb-end-of-session-list erc-ezb-init-session-list ;;;;;; erc-ezb-identify erc-ezb-notice-autodetect erc-ezb-lookup-action ;;;;;; erc-ezb-get-login erc-cmd-ezb) "erc-ezbounce" "erc/erc-ezbounce.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from erc/erc-ezbounce.el (autoload 'erc-cmd-ezb "erc-ezbounce" "\ @@ -8899,7 +8904,7 @@ ;;;*** ;;;### (autoloads (erc-fill) "erc-fill" "erc/erc-fill.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from erc/erc-fill.el (autoload 'erc-fill-mode "erc-fill" nil t) @@ -8912,7 +8917,7 @@ ;;;*** ;;;### (autoloads (erc-identd-stop erc-identd-start) "erc-identd" -;;;;;; "erc/erc-identd.el" (20229 31156)) +;;;;;; "erc/erc-identd.el" (20229 34587)) ;;; Generated autoloads from erc/erc-identd.el (autoload 'erc-identd-mode "erc-identd") @@ -8934,7 +8939,7 @@ ;;;*** ;;;### (autoloads (erc-create-imenu-index) "erc-imenu" "erc/erc-imenu.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from erc/erc-imenu.el (autoload 'erc-create-imenu-index "erc-imenu" "\ @@ -8944,20 +8949,20 @@ ;;;*** -;;;### (autoloads nil "erc-join" "erc/erc-join.el" (20229 31156)) +;;;### (autoloads nil "erc-join" "erc/erc-join.el" (20229 34587)) ;;; Generated autoloads from erc/erc-join.el (autoload 'erc-autojoin-mode "erc-join" nil t) ;;;*** -;;;### (autoloads nil "erc-list" "erc/erc-list.el" (20229 31156)) +;;;### (autoloads nil "erc-list" "erc/erc-list.el" (20229 34587)) ;;; Generated autoloads from erc/erc-list.el (autoload 'erc-list-mode "erc-list") ;;;*** ;;;### (autoloads (erc-save-buffer-in-logs erc-logging-enabled) "erc-log" -;;;;;; "erc/erc-log.el" (20229 31156)) +;;;;;; "erc/erc-log.el" (20229 34587)) ;;; Generated autoloads from erc/erc-log.el (autoload 'erc-log-mode "erc-log" nil t) @@ -8989,7 +8994,7 @@ ;;;### (autoloads (erc-delete-dangerous-host erc-add-dangerous-host ;;;;;; erc-delete-keyword erc-add-keyword erc-delete-fool erc-add-fool ;;;;;; erc-delete-pal erc-add-pal) "erc-match" "erc/erc-match.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from erc/erc-match.el (autoload 'erc-match-mode "erc-match") @@ -9035,14 +9040,14 @@ ;;;*** -;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (20229 31156)) +;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (20229 34587)) ;;; Generated autoloads from erc/erc-menu.el (autoload 'erc-menu-mode "erc-menu" nil t) ;;;*** ;;;### (autoloads (erc-cmd-WHOLEFT) "erc-netsplit" "erc/erc-netsplit.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from erc/erc-netsplit.el (autoload 'erc-netsplit-mode "erc-netsplit") @@ -9054,7 +9059,7 @@ ;;;*** ;;;### (autoloads (erc-server-select erc-determine-network) "erc-networks" -;;;;;; "erc/erc-networks.el" (20229 31156)) +;;;;;; "erc/erc-networks.el" (20229 34587)) ;;; Generated autoloads from erc/erc-networks.el (autoload 'erc-determine-network "erc-networks" "\ @@ -9072,7 +9077,7 @@ ;;;*** ;;;### (autoloads (pcomplete/erc-mode/NOTIFY erc-cmd-NOTIFY) "erc-notify" -;;;;;; "erc/erc-notify.el" (20229 31156)) +;;;;;; "erc/erc-notify.el" (20229 34587)) ;;; Generated autoloads from erc/erc-notify.el (autoload 'erc-notify-mode "erc-notify" nil t) @@ -9090,33 +9095,33 @@ ;;;*** -;;;### (autoloads nil "erc-page" "erc/erc-page.el" (20237 33565)) +;;;### (autoloads nil "erc-page" "erc/erc-page.el" (20237 28610)) ;;; Generated autoloads from erc/erc-page.el (autoload 'erc-page-mode "erc-page") ;;;*** ;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from erc/erc-pcomplete.el (autoload 'erc-completion-mode "erc-pcomplete" nil t) ;;;*** -;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (20229 31156)) +;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (20229 34587)) ;;; Generated autoloads from erc/erc-replace.el (autoload 'erc-replace-mode "erc-replace") ;;;*** -;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (20229 31156)) +;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (20229 34587)) ;;; Generated autoloads from erc/erc-ring.el (autoload 'erc-ring-mode "erc-ring" nil t) ;;;*** ;;;### (autoloads (erc-nickserv-identify erc-nickserv-identify-mode) -;;;;;; "erc-services" "erc/erc-services.el" (20229 31156)) +;;;;;; "erc-services" "erc/erc-services.el" (20229 34587)) ;;; Generated autoloads from erc/erc-services.el (autoload 'erc-services-mode "erc-services" nil t) @@ -9133,14 +9138,14 @@ ;;;*** -;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (20229 31156)) +;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (20229 34587)) ;;; Generated autoloads from erc/erc-sound.el (autoload 'erc-sound-mode "erc-sound") ;;;*** ;;;### (autoloads (erc-speedbar-browser) "erc-speedbar" "erc/erc-speedbar.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from erc/erc-speedbar.el (autoload 'erc-speedbar-browser "erc-speedbar" "\ @@ -9152,20 +9157,20 @@ ;;;*** ;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from erc/erc-spelling.el (autoload 'erc-spelling-mode "erc-spelling" nil t) ;;;*** -;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (20229 31156)) +;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (20229 34587)) ;;; Generated autoloads from erc/erc-stamp.el (autoload 'erc-timestamp-mode "erc-stamp" nil t) ;;;*** ;;;### (autoloads (erc-track-minor-mode) "erc-track" "erc/erc-track.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from erc/erc-track.el (defvar erc-track-minor-mode nil "\ @@ -9191,7 +9196,7 @@ ;;;*** ;;;### (autoloads (erc-truncate-buffer erc-truncate-buffer-to-size) -;;;;;; "erc-truncate" "erc/erc-truncate.el" (20229 31156)) +;;;;;; "erc-truncate" "erc/erc-truncate.el" (20229 34587)) ;;; Generated autoloads from erc/erc-truncate.el (autoload 'erc-truncate-mode "erc-truncate" nil t) @@ -9211,7 +9216,7 @@ ;;;*** ;;;### (autoloads (erc-xdcc-add-file) "erc-xdcc" "erc/erc-xdcc.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from erc/erc-xdcc.el (autoload 'erc-xdcc-mode "erc-xdcc") @@ -9224,7 +9229,7 @@ ;;;### (autoloads (ert-describe-test ert-run-tests-interactively ;;;;;; ert-run-tests-batch-and-exit ert-run-tests-batch ert-deftest) -;;;;;; "ert" "emacs-lisp/ert.el" (20229 31156)) +;;;;;; "ert" "emacs-lisp/ert.el" (20229 34587)) ;;; Generated autoloads from emacs-lisp/ert.el (autoload 'ert-deftest "ert" "\ @@ -9294,7 +9299,7 @@ ;;;*** ;;;### (autoloads (ert-kill-all-test-buffers) "ert-x" "emacs-lisp/ert-x.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from emacs-lisp/ert-x.el (put 'ert-with-test-buffer 'lisp-indent-function 1) @@ -9306,8 +9311,8 @@ ;;;*** -;;;### (autoloads (eshell-mode) "esh-mode" "eshell/esh-mode.el" (20231 -;;;;;; 59760)) +;;;### (autoloads (eshell-mode) "esh-mode" "eshell/esh-mode.el" (20229 +;;;;;; 34587)) ;;; Generated autoloads from eshell/esh-mode.el (autoload 'eshell-mode "esh-mode" "\ @@ -9320,7 +9325,7 @@ ;;;*** ;;;### (autoloads (eshell-command-result eshell-command eshell) "eshell" -;;;;;; "eshell/eshell.el" (20259 64046)) +;;;;;; "eshell/eshell.el" (20229 34587)) ;;; Generated autoloads from eshell/eshell.el (autoload 'eshell "eshell" "\ @@ -9361,7 +9366,7 @@ ;;;;;; visit-tags-table tags-table-mode find-tag-default-function ;;;;;; find-tag-hook tags-add-tables tags-compression-info-list ;;;;;; tags-table-list tags-case-fold-search) "etags" "progmodes/etags.el" -;;;;;; (20237 33565)) +;;;;;; (20237 28610)) ;;; Generated autoloads from progmodes/etags.el (defvar tags-file-name nil "\ @@ -9679,7 +9684,7 @@ ;;;;;; ethio-fidel-to-sera-marker ethio-fidel-to-sera-region ethio-fidel-to-sera-buffer ;;;;;; ethio-sera-to-fidel-marker ethio-sera-to-fidel-region ethio-sera-to-fidel-buffer ;;;;;; setup-ethiopic-environment-internal) "ethio-util" "language/ethio-util.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from language/ethio-util.el (autoload 'setup-ethiopic-environment-internal "ethio-util" "\ @@ -9849,7 +9854,7 @@ ;;;### (autoloads (eudc-load-eudc eudc-query-form eudc-expand-inline ;;;;;; eudc-get-phone eudc-get-email eudc-set-server) "eudc" "net/eudc.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from net/eudc.el (autoload 'eudc-set-server "eudc" "\ @@ -9905,7 +9910,7 @@ ;;;### (autoloads (eudc-display-jpeg-as-button eudc-display-jpeg-inline ;;;;;; eudc-display-sound eudc-display-mail eudc-display-url eudc-display-generic-binary) -;;;;;; "eudc-bob" "net/eudc-bob.el" (20229 31156)) +;;;;;; "eudc-bob" "net/eudc-bob.el" (20229 34587)) ;;; Generated autoloads from net/eudc-bob.el (autoload 'eudc-display-generic-binary "eudc-bob" "\ @@ -9941,7 +9946,7 @@ ;;;*** ;;;### (autoloads (eudc-try-bbdb-insert eudc-insert-record-at-point-into-bbdb) -;;;;;; "eudc-export" "net/eudc-export.el" (20229 31156)) +;;;;;; "eudc-export" "net/eudc-export.el" (20229 34587)) ;;; Generated autoloads from net/eudc-export.el (autoload 'eudc-insert-record-at-point-into-bbdb "eudc-export" "\ @@ -9958,7 +9963,7 @@ ;;;*** ;;;### (autoloads (eudc-edit-hotlist) "eudc-hotlist" "net/eudc-hotlist.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from net/eudc-hotlist.el (autoload 'eudc-edit-hotlist "eudc-hotlist" "\ @@ -9969,7 +9974,7 @@ ;;;*** ;;;### (autoloads (ewoc-create) "ewoc" "emacs-lisp/ewoc.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from emacs-lisp/ewoc.el (autoload 'ewoc-create "ewoc" "\ @@ -9998,7 +10003,7 @@ ;;;### (autoloads (executable-make-buffer-file-executable-if-script-p ;;;;;; executable-self-display executable-set-magic executable-interpret ;;;;;; executable-command-find-posix-p) "executable" "progmodes/executable.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/executable.el (autoload 'executable-command-find-posix-p "executable" "\ @@ -10041,7 +10046,7 @@ ;;;### (autoloads (expand-jump-to-next-slot expand-jump-to-previous-slot ;;;;;; expand-abbrev-hook expand-add-abbrevs) "expand" "expand.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from expand.el (autoload 'expand-add-abbrevs "expand" "\ @@ -10090,7 +10095,7 @@ ;;;*** -;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (20257 27597)) +;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (20257 13883)) ;;; Generated autoloads from progmodes/f90.el (autoload 'f90-mode "f90" "\ @@ -10161,7 +10166,7 @@ ;;;;;; buffer-face-mode text-scale-adjust text-scale-decrease text-scale-increase ;;;;;; text-scale-set face-remap-set-base face-remap-reset-base ;;;;;; face-remap-add-relative) "face-remap" "face-remap.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from face-remap.el (autoload 'face-remap-add-relative "face-remap" "\ @@ -10301,7 +10306,7 @@ ;;;### (autoloads (feedmail-queue-reminder feedmail-run-the-queue ;;;;;; feedmail-run-the-queue-global-prompt feedmail-run-the-queue-no-prompts -;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (20173 2352)) +;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (20172 54913)) ;;; Generated autoloads from mail/feedmail.el (autoload 'feedmail-send-it "feedmail" "\ @@ -10355,7 +10360,7 @@ ;;;*** ;;;### (autoloads (ffap-bindings dired-at-point ffap-at-mouse ffap-menu -;;;;;; find-file-at-point ffap-next) "ffap" "ffap.el" (20229 31156)) +;;;;;; find-file-at-point ffap-next) "ffap" "ffap.el" (20229 34587)) ;;; Generated autoloads from ffap.el (autoload 'ffap-next "ffap" "\ @@ -10419,7 +10424,7 @@ ;;;### (autoloads (file-cache-minibuffer-complete file-cache-add-directory-recursively ;;;;;; file-cache-add-directory-using-locate file-cache-add-directory-using-find ;;;;;; file-cache-add-file file-cache-add-directory-list file-cache-add-directory) -;;;;;; "filecache" "filecache.el" (20229 31156)) +;;;;;; "filecache" "filecache.el" (20229 34587)) ;;; Generated autoloads from filecache.el (autoload 'file-cache-add-directory "filecache" "\ @@ -10479,7 +10484,7 @@ ;;;;;; copy-file-locals-to-dir-locals delete-dir-local-variable ;;;;;; add-dir-local-variable delete-file-local-variable-prop-line ;;;;;; add-file-local-variable-prop-line delete-file-local-variable -;;;;;; add-file-local-variable) "files-x" "files-x.el" (20229 31156)) +;;;;;; add-file-local-variable) "files-x" "files-x.el" (20229 34587)) ;;; Generated autoloads from files-x.el (autoload 'add-file-local-variable "files-x" "\ @@ -10545,7 +10550,7 @@ ;;;*** ;;;### (autoloads (filesets-init) "filesets" "filesets.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from filesets.el (autoload 'filesets-init "filesets" "\ @@ -10556,7 +10561,7 @@ ;;;*** -;;;### (autoloads (find-cmd) "find-cmd" "find-cmd.el" (20229 31156)) +;;;### (autoloads (find-cmd) "find-cmd" "find-cmd.el" (20229 34587)) ;;; Generated autoloads from find-cmd.el (autoload 'find-cmd "find-cmd" "\ @@ -10576,7 +10581,7 @@ ;;;*** ;;;### (autoloads (find-grep-dired find-name-dired find-dired) "find-dired" -;;;;;; "find-dired.el" (20240 11630)) +;;;;;; "find-dired.el" (20239 38674)) ;;; Generated autoloads from find-dired.el (autoload 'find-dired "find-dired" "\ @@ -10616,7 +10621,7 @@ ;;;### (autoloads (ff-mouse-find-other-file-other-window ff-mouse-find-other-file ;;;;;; ff-find-other-file ff-get-other-file) "find-file" "find-file.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from find-file.el (defvar ff-special-constructs `((,(purecopy "^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]") lambda nil (buffer-substring (match-beginning 2) (match-end 2)))) "\ @@ -10710,7 +10715,7 @@ ;;;;;; find-variable find-variable-noselect find-function-other-frame ;;;;;; find-function-other-window find-function find-function-noselect ;;;;;; find-function-search-for-symbol find-library) "find-func" -;;;;;; "emacs-lisp/find-func.el" (20229 31156)) +;;;;;; "emacs-lisp/find-func.el" (20229 34587)) ;;; Generated autoloads from emacs-lisp/find-func.el (autoload 'find-library "find-func" "\ @@ -10869,7 +10874,7 @@ ;;;*** ;;;### (autoloads (find-lisp-find-dired-filter find-lisp-find-dired-subdirectories -;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (20229 31156)) +;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (20229 34587)) ;;; Generated autoloads from find-lisp.el (autoload 'find-lisp-find-dired "find-lisp" "\ @@ -10890,7 +10895,7 @@ ;;;*** ;;;### (autoloads (finder-by-keyword finder-commentary finder-list-keywords) -;;;;;; "finder" "finder.el" (20229 31156)) +;;;;;; "finder" "finder.el" (20229 34587)) ;;; Generated autoloads from finder.el (autoload 'finder-list-keywords "finder" "\ @@ -10912,7 +10917,7 @@ ;;;*** ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" -;;;;;; "flow-ctrl.el" (20229 31156)) +;;;;;; "flow-ctrl.el" (20229 34587)) ;;; Generated autoloads from flow-ctrl.el (autoload 'enable-flow-control "flow-ctrl" "\ @@ -10934,7 +10939,7 @@ ;;;*** ;;;### (autoloads (fill-flowed fill-flowed-encode) "flow-fill" "gnus/flow-fill.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/flow-fill.el (autoload 'fill-flowed-encode "flow-fill" "\ @@ -10950,7 +10955,7 @@ ;;;*** ;;;### (autoloads (flymake-find-file-hook flymake-mode-off flymake-mode-on -;;;;;; flymake-mode) "flymake" "progmodes/flymake.el" (20229 31156)) +;;;;;; flymake-mode) "flymake" "progmodes/flymake.el" (20229 34587)) ;;; Generated autoloads from progmodes/flymake.el (autoload 'flymake-mode "flymake" "\ @@ -10979,7 +10984,7 @@ ;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off ;;;;;; turn-off-flyspell turn-on-flyspell flyspell-mode flyspell-prog-mode) -;;;;;; "flyspell" "textmodes/flyspell.el" (20229 31156)) +;;;;;; "flyspell" "textmodes/flyspell.el" (20229 34587)) ;;; Generated autoloads from textmodes/flyspell.el (autoload 'flyspell-prog-mode "flyspell" "\ @@ -11051,7 +11056,7 @@ ;;;### (autoloads (follow-delete-other-windows-and-split follow-mode ;;;;;; turn-off-follow-mode turn-on-follow-mode) "follow" "follow.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from follow.el (autoload 'turn-on-follow-mode "follow" "\ @@ -11128,7 +11133,7 @@ ;;;*** ;;;### (autoloads (footnote-mode) "footnote" "mail/footnote.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from mail/footnote.el (autoload 'footnote-mode "footnote" "\ @@ -11147,7 +11152,7 @@ ;;;*** ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) -;;;;;; "forms" "forms.el" (20229 31156)) +;;;;;; "forms" "forms.el" (20229 34587)) ;;; Generated autoloads from forms.el (autoload 'forms-mode "forms" "\ @@ -11184,7 +11189,7 @@ ;;;*** ;;;### (autoloads (fortran-mode) "fortran" "progmodes/fortran.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/fortran.el (autoload 'fortran-mode "fortran" "\ @@ -11262,7 +11267,7 @@ ;;;*** ;;;### (autoloads (fortune fortune-to-signature fortune-compile fortune-from-region -;;;;;; fortune-add-fortune) "fortune" "play/fortune.el" (20229 31156)) +;;;;;; fortune-add-fortune) "fortune" "play/fortune.el" (20229 34587)) ;;; Generated autoloads from play/fortune.el (autoload 'fortune-add-fortune "fortune" "\ @@ -11311,7 +11316,7 @@ ;;;*** ;;;### (autoloads (gdb gdb-enable-debug) "gdb-mi" "progmodes/gdb-mi.el" -;;;;;; (20229 31156)) +;;;;;; (20264 32142)) ;;; Generated autoloads from progmodes/gdb-mi.el (defvar gdb-enable-debug nil "\ @@ -11379,7 +11384,7 @@ ;;;### (autoloads (generic-make-keywords-list generic-mode generic-mode-internal ;;;;;; define-generic-mode) "generic" "emacs-lisp/generic.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from emacs-lisp/generic.el (defvar generic-mode-list nil "\ @@ -11456,7 +11461,7 @@ ;;;*** ;;;### (autoloads (glasses-mode) "glasses" "progmodes/glasses.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/glasses.el (autoload 'glasses-mode "glasses" "\ @@ -11470,7 +11475,7 @@ ;;;### (autoloads (gmm-tool-bar-from-list gmm-widget-p gmm-error ;;;;;; gmm-message gmm-regexp-concat) "gmm-utils" "gnus/gmm-utils.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/gmm-utils.el (autoload 'gmm-regexp-concat "gmm-utils" "\ @@ -11525,7 +11530,7 @@ ;;;*** ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server -;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (20258 21136)) +;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (20258 34747)) ;;; Generated autoloads from gnus/gnus.el (when (fboundp 'custom-autoload) (custom-autoload 'gnus-select-method "gnus")) @@ -11578,7 +11583,7 @@ ;;;;;; gnus-agent-get-undownloaded-list gnus-agent-delete-group ;;;;;; gnus-agent-rename-group gnus-agent-possibly-save-gcc gnus-agentize ;;;;;; gnus-slave-unplugged gnus-plugged gnus-unplugged) "gnus-agent" -;;;;;; "gnus/gnus-agent.el" (20231 40198)) +;;;;;; "gnus/gnus-agent.el" (20265 7997)) ;;; Generated autoloads from gnus/gnus-agent.el (autoload 'gnus-unplugged "gnus-agent" "\ @@ -11669,7 +11674,7 @@ ;;;*** ;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el" -;;;;;; (20231 40198)) +;;;;;; (20232 10689)) ;;; Generated autoloads from gnus/gnus-art.el (autoload 'gnus-article-prepare-display "gnus-art" "\ @@ -11680,7 +11685,7 @@ ;;;*** ;;;### (autoloads (gnus-bookmark-bmenu-list gnus-bookmark-jump gnus-bookmark-set) -;;;;;; "gnus-bookmark" "gnus/gnus-bookmark.el" (20229 31156)) +;;;;;; "gnus-bookmark" "gnus/gnus-bookmark.el" (20229 34587)) ;;; Generated autoloads from gnus/gnus-bookmark.el (autoload 'gnus-bookmark-set "gnus-bookmark" "\ @@ -11706,7 +11711,7 @@ ;;;### (autoloads (gnus-cache-delete-group gnus-cache-rename-group ;;;;;; gnus-cache-generate-nov-databases gnus-cache-generate-active ;;;;;; gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from gnus/gnus-cache.el (autoload 'gnus-jog-cache "gnus-cache" "\ @@ -11748,7 +11753,7 @@ ;;;*** ;;;### (autoloads (gnus-delay-initialize gnus-delay-send-queue gnus-delay-article) -;;;;;; "gnus-delay" "gnus/gnus-delay.el" (20229 31156)) +;;;;;; "gnus-delay" "gnus/gnus-delay.el" (20229 34587)) ;;; Generated autoloads from gnus/gnus-delay.el (autoload 'gnus-delay-article "gnus-delay" "\ @@ -11784,7 +11789,7 @@ ;;;*** ;;;### (autoloads (gnus-user-format-function-D gnus-user-format-function-d) -;;;;;; "gnus-diary" "gnus/gnus-diary.el" (20229 31156)) +;;;;;; "gnus-diary" "gnus/gnus-diary.el" (20229 34587)) ;;; Generated autoloads from gnus/gnus-diary.el (autoload 'gnus-user-format-function-d "gnus-diary" "\ @@ -11800,7 +11805,7 @@ ;;;*** ;;;### (autoloads (turn-on-gnus-dired-mode) "gnus-dired" "gnus/gnus-dired.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/gnus-dired.el (autoload 'turn-on-gnus-dired-mode "gnus-dired" "\ @@ -11811,7 +11816,7 @@ ;;;*** ;;;### (autoloads (gnus-draft-reminder) "gnus-draft" "gnus/gnus-draft.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/gnus-draft.el (autoload 'gnus-draft-reminder "gnus-draft" "\ @@ -11824,7 +11829,7 @@ ;;;### (autoloads (gnus-convert-png-to-face gnus-convert-face-to-png ;;;;;; gnus-face-from-file gnus-x-face-from-file gnus-insert-random-x-face-header ;;;;;; gnus-random-x-face) "gnus-fun" "gnus/gnus-fun.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from gnus/gnus-fun.el (autoload 'gnus-random-x-face "gnus-fun" "\ @@ -11869,7 +11874,7 @@ ;;;*** ;;;### (autoloads (gnus-treat-mail-gravatar gnus-treat-from-gravatar) -;;;;;; "gnus-gravatar" "gnus/gnus-gravatar.el" (20229 31156)) +;;;;;; "gnus-gravatar" "gnus/gnus-gravatar.el" (20229 34587)) ;;; Generated autoloads from gnus/gnus-gravatar.el (autoload 'gnus-treat-from-gravatar "gnus-gravatar" "\ @@ -11887,7 +11892,7 @@ ;;;*** ;;;### (autoloads (gnus-fetch-group-other-frame gnus-fetch-group) -;;;;;; "gnus-group" "gnus/gnus-group.el" (20231 40198)) +;;;;;; "gnus-group" "gnus/gnus-group.el" (20232 10689)) ;;; Generated autoloads from gnus/gnus-group.el (autoload 'gnus-fetch-group "gnus-group" "\ @@ -11905,7 +11910,7 @@ ;;;*** ;;;### (autoloads (gnus-html-prefetch-images gnus-article-html) "gnus-html" -;;;;;; "gnus/gnus-html.el" (20229 31156)) +;;;;;; "gnus/gnus-html.el" (20229 34587)) ;;; Generated autoloads from gnus/gnus-html.el (autoload 'gnus-article-html "gnus-html" "\ @@ -11921,7 +11926,7 @@ ;;;*** ;;;### (autoloads (gnus-batch-score) "gnus-kill" "gnus/gnus-kill.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/gnus-kill.el (defalias 'gnus-batch-kill 'gnus-batch-score) @@ -11936,7 +11941,7 @@ ;;;### (autoloads (gnus-mailing-list-mode gnus-mailing-list-insinuate ;;;;;; turn-on-gnus-mailing-list-mode) "gnus-ml" "gnus/gnus-ml.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/gnus-ml.el (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" "\ @@ -11961,7 +11966,7 @@ ;;;### (autoloads (gnus-group-split-fancy gnus-group-split gnus-group-split-update ;;;;;; gnus-group-split-setup) "gnus-mlspl" "gnus/gnus-mlspl.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/gnus-mlspl.el (autoload 'gnus-group-split-setup "gnus-mlspl" "\ @@ -12062,7 +12067,7 @@ ;;;*** ;;;### (autoloads (gnus-button-reply gnus-button-mailto gnus-msg-mail) -;;;;;; "gnus-msg" "gnus/gnus-msg.el" (20230 53294)) +;;;;;; "gnus-msg" "gnus/gnus-msg.el" (20230 55355)) ;;; Generated autoloads from gnus/gnus-msg.el (autoload 'gnus-msg-mail "gnus-msg" "\ @@ -12088,7 +12093,7 @@ ;;;### (autoloads (gnus-treat-newsgroups-picon gnus-treat-mail-picon ;;;;;; gnus-treat-from-picon) "gnus-picon" "gnus/gnus-picon.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/gnus-picon.el (autoload 'gnus-treat-from-picon "gnus-picon" "\ @@ -12115,7 +12120,7 @@ ;;;;;; gnus-sorted-nintersection gnus-sorted-range-intersection ;;;;;; gnus-sorted-intersection gnus-intersection gnus-sorted-complement ;;;;;; gnus-sorted-ndifference gnus-sorted-difference) "gnus-range" -;;;;;; "gnus/gnus-range.el" (20229 31156)) +;;;;;; "gnus/gnus-range.el" (20229 34587)) ;;; Generated autoloads from gnus/gnus-range.el (autoload 'gnus-sorted-difference "gnus-range" "\ @@ -12183,7 +12188,7 @@ ;;;*** ;;;### (autoloads (gnus-registry-install-hooks gnus-registry-initialize) -;;;;;; "gnus-registry" "gnus/gnus-registry.el" (20229 31156)) +;;;;;; "gnus-registry" "gnus/gnus-registry.el" (20229 34587)) ;;; Generated autoloads from gnus/gnus-registry.el (autoload 'gnus-registry-initialize "gnus-registry" "\ @@ -12200,7 +12205,7 @@ ;;;### (autoloads (gnus-sieve-article-add-rule gnus-sieve-generate ;;;;;; gnus-sieve-update) "gnus-sieve" "gnus/gnus-sieve.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from gnus/gnus-sieve.el (autoload 'gnus-sieve-update "gnus-sieve" "\ @@ -12228,7 +12233,7 @@ ;;;*** ;;;### (autoloads (gnus-update-format) "gnus-spec" "gnus/gnus-spec.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/gnus-spec.el (autoload 'gnus-update-format "gnus-spec" "\ @@ -12239,7 +12244,7 @@ ;;;*** ;;;### (autoloads (gnus-declare-backend) "gnus-start" "gnus/gnus-start.el" -;;;;;; (20259 19594)) +;;;;;; (20259 55615)) ;;; Generated autoloads from gnus/gnus-start.el (autoload 'gnus-declare-backend "gnus-start" "\ @@ -12250,7 +12255,7 @@ ;;;*** ;;;### (autoloads (gnus-summary-bookmark-jump) "gnus-sum" "gnus/gnus-sum.el" -;;;;;; (20258 21136)) +;;;;;; (20258 34747)) ;;; Generated autoloads from gnus/gnus-sum.el (autoload 'gnus-summary-bookmark-jump "gnus-sum" "\ @@ -12262,7 +12267,7 @@ ;;;*** ;;;### (autoloads (gnus-sync-install-hooks gnus-sync-initialize) -;;;;;; "gnus-sync" "gnus/gnus-sync.el" (20229 31156)) +;;;;;; "gnus-sync" "gnus/gnus-sync.el" (20229 34587)) ;;; Generated autoloads from gnus/gnus-sync.el (autoload 'gnus-sync-initialize "gnus-sync" "\ @@ -12278,7 +12283,7 @@ ;;;*** ;;;### (autoloads (gnus-add-configuration) "gnus-win" "gnus/gnus-win.el" -;;;;;; (20231 40198)) +;;;;;; (20232 10689)) ;;; Generated autoloads from gnus/gnus-win.el (autoload 'gnus-add-configuration "gnus-win" "\ @@ -12289,7 +12294,7 @@ ;;;*** ;;;### (autoloads (gnutls-min-prime-bits) "gnutls" "net/gnutls.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from net/gnutls.el (defvar gnutls-min-prime-bits nil "\ @@ -12305,7 +12310,7 @@ ;;;*** -;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (20229 31156)) +;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (20229 34587)) ;;; Generated autoloads from play/gomoku.el (autoload 'gomoku "gomoku" "\ @@ -12333,7 +12338,7 @@ ;;;### (autoloads (goto-address-prog-mode goto-address-mode goto-address ;;;;;; goto-address-at-point) "goto-addr" "net/goto-addr.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from net/goto-addr.el (define-obsolete-function-alias 'goto-address-at-mouse 'goto-address-at-point "22.1") @@ -12372,7 +12377,7 @@ ;;;*** ;;;### (autoloads (gravatar-retrieve-synchronously gravatar-retrieve) -;;;;;; "gravatar" "gnus/gravatar.el" (20229 31156)) +;;;;;; "gravatar" "gnus/gravatar.el" (20229 34587)) ;;; Generated autoloads from gnus/gravatar.el (autoload 'gravatar-retrieve "gravatar" "\ @@ -12390,7 +12395,7 @@ ;;;### (autoloads (zrgrep rgrep lgrep grep-find grep grep-mode grep-compute-defaults ;;;;;; grep-process-setup grep-setup-hook grep-find-command grep-command -;;;;;; grep-window-height) "grep" "progmodes/grep.el" (20255 37778)) +;;;;;; grep-window-height) "grep" "progmodes/grep.el" (20255 25045)) ;;; Generated autoloads from progmodes/grep.el (defvar grep-window-height nil "\ @@ -12552,7 +12557,7 @@ ;;;*** -;;;### (autoloads (gs-load-image) "gs" "gs.el" (20229 31156)) +;;;### (autoloads (gs-load-image) "gs" "gs.el" (20229 34587)) ;;; Generated autoloads from gs.el (autoload 'gs-load-image "gs" "\ @@ -12566,7 +12571,7 @@ ;;;*** ;;;### (autoloads (gud-tooltip-mode gdb-script-mode jdb pdb perldb -;;;;;; xdb dbx sdb gud-gdb) "gud" "progmodes/gud.el" (20260 61180)) +;;;;;; xdb dbx sdb gud-gdb) "gud" "progmodes/gud.el" (20261 10951)) ;;; Generated autoloads from progmodes/gud.el (autoload 'gud-gdb "gud" "\ @@ -12655,7 +12660,7 @@ ;;;*** ;;;### (autoloads (handwrite) "handwrite" "play/handwrite.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from play/handwrite.el (autoload 'handwrite "handwrite" "\ @@ -12673,7 +12678,7 @@ ;;;*** ;;;### (autoloads (hanoi-unix-64 hanoi-unix hanoi) "hanoi" "play/hanoi.el" -;;;;;; (20119 34052)) +;;;;;; (19981 40664)) ;;; Generated autoloads from play/hanoi.el (autoload 'hanoi "hanoi" "\ @@ -12702,7 +12707,7 @@ ;;;### (autoloads (mail-check-payment mail-add-payment-async mail-add-payment ;;;;;; hashcash-verify-payment hashcash-insert-payment-async hashcash-insert-payment) -;;;;;; "hashcash" "mail/hashcash.el" (20229 31156)) +;;;;;; "hashcash" "mail/hashcash.el" (20229 34587)) ;;; Generated autoloads from mail/hashcash.el (autoload 'hashcash-insert-payment "hashcash" "\ @@ -12747,7 +12752,7 @@ ;;;### (autoloads (scan-buf-previous-region scan-buf-next-region ;;;;;; scan-buf-move-to-region help-at-pt-display-when-idle help-at-pt-set-timer ;;;;;; help-at-pt-cancel-timer display-local-help help-at-pt-kbd-string -;;;;;; help-at-pt-string) "help-at-pt" "help-at-pt.el" (20229 31156)) +;;;;;; help-at-pt-string) "help-at-pt" "help-at-pt.el" (20229 34587)) ;;; Generated autoloads from help-at-pt.el (autoload 'help-at-pt-string "help-at-pt" "\ @@ -12877,7 +12882,7 @@ ;;;### (autoloads (doc-file-to-info doc-file-to-man describe-categories ;;;;;; describe-syntax describe-variable variable-at-point describe-function-1 ;;;;;; find-lisp-object-file-name help-C-file-name describe-function) -;;;;;; "help-fns" "help-fns.el" (20229 31156)) +;;;;;; "help-fns" "help-fns.el" (20229 34587)) ;;; Generated autoloads from help-fns.el (autoload 'describe-function "help-fns" "\ @@ -12957,7 +12962,7 @@ ;;;*** ;;;### (autoloads (three-step-help) "help-macro" "help-macro.el" -;;;;;; (20250 53480)) +;;;;;; (20249 19777)) ;;; Generated autoloads from help-macro.el (defvar three-step-help nil "\ @@ -12974,7 +12979,7 @@ ;;;### (autoloads (help-xref-on-pp help-insert-xref-button help-xref-button ;;;;;; help-make-xrefs help-buffer help-setup-xref help-mode-finish ;;;;;; help-mode-setup help-mode) "help-mode" "help-mode.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from help-mode.el (autoload 'help-mode "help-mode" "\ @@ -13067,7 +13072,7 @@ ;;;*** ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" -;;;;;; "emacs-lisp/helper.el" (20229 31156)) +;;;;;; "emacs-lisp/helper.el" (20229 34587)) ;;; Generated autoloads from emacs-lisp/helper.el (autoload 'Helper-describe-bindings "helper" "\ @@ -13083,7 +13088,7 @@ ;;;*** ;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl" -;;;;;; "hexl.el" (20229 31156)) +;;;;;; "hexl.el" (20229 34587)) ;;; Generated autoloads from hexl.el (autoload 'hexl-mode "hexl" "\ @@ -13180,7 +13185,7 @@ ;;;### (autoloads (hi-lock-write-interactive-patterns hi-lock-unface-buffer ;;;;;; hi-lock-face-phrase-buffer hi-lock-face-buffer hi-lock-line-face-buffer ;;;;;; global-hi-lock-mode hi-lock-mode) "hi-lock" "hi-lock.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from hi-lock.el (autoload 'hi-lock-mode "hi-lock" "\ @@ -13319,7 +13324,7 @@ ;;;*** ;;;### (autoloads (hide-ifdef-mode) "hideif" "progmodes/hideif.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/hideif.el (autoload 'hide-ifdef-mode "hideif" "\ @@ -13363,7 +13368,7 @@ ;;;*** ;;;### (autoloads (turn-off-hideshow hs-minor-mode) "hideshow" "progmodes/hideshow.el" -;;;;;; (20237 33565)) +;;;;;; (20237 28610)) ;;; 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))) "\ @@ -13426,7 +13431,7 @@ ;;;;;; highlight-changes-previous-change highlight-changes-next-change ;;;;;; highlight-changes-remove-highlight highlight-changes-visible-mode ;;;;;; highlight-changes-mode) "hilit-chg" "hilit-chg.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from hilit-chg.el (autoload 'highlight-changes-mode "hilit-chg" "\ @@ -13561,7 +13566,7 @@ ;;;;;; hippie-expand-ignore-buffers hippie-expand-max-buffers hippie-expand-no-restriction ;;;;;; hippie-expand-dabbrev-as-symbol hippie-expand-dabbrev-skip-space ;;;;;; hippie-expand-verbose hippie-expand-try-functions-list) "hippie-exp" -;;;;;; "hippie-exp.el" (20229 31156)) +;;;;;; "hippie-exp.el" (20229 34587)) ;;; Generated autoloads from hippie-exp.el (defvar hippie-expand-try-functions-list '(try-complete-file-name-partially try-complete-file-name try-expand-all-abbrevs try-expand-list try-expand-line try-expand-dabbrev try-expand-dabbrev-all-buffers try-expand-dabbrev-from-kill try-complete-lisp-symbol-partially try-complete-lisp-symbol) "\ @@ -13634,7 +13639,7 @@ ;;;*** ;;;### (autoloads (global-hl-line-mode hl-line-mode) "hl-line" "hl-line.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from hl-line.el (autoload 'hl-line-mode "hl-line" "\ @@ -13687,7 +13692,7 @@ ;;;;;; holiday-bahai-holidays holiday-islamic-holidays holiday-christian-holidays ;;;;;; holiday-hebrew-holidays holiday-other-holidays holiday-local-holidays ;;;;;; holiday-oriental-holidays holiday-general-holidays) "holidays" -;;;;;; "calendar/holidays.el" (20229 31156)) +;;;;;; "calendar/holidays.el" (20229 34587)) ;;; Generated autoloads from calendar/holidays.el (define-obsolete-variable-alias 'general-holidays 'holiday-general-holidays "23.1") @@ -13836,7 +13841,7 @@ ;;;*** ;;;### (autoloads (html2text) "html2text" "gnus/html2text.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from gnus/html2text.el (autoload 'html2text "html2text" "\ @@ -13847,7 +13852,7 @@ ;;;*** ;;;### (autoloads (htmlfontify-copy-and-link-dir htmlfontify-buffer) -;;;;;; "htmlfontify" "htmlfontify.el" (20237 33565)) +;;;;;; "htmlfontify" "htmlfontify.el" (20237 28610)) ;;; Generated autoloads from htmlfontify.el (autoload 'htmlfontify-buffer "htmlfontify" "\ @@ -13881,7 +13886,7 @@ ;;;### (autoloads (define-ibuffer-filter define-ibuffer-op define-ibuffer-sorter ;;;;;; define-ibuffer-column) "ibuf-macs" "ibuf-macs.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from ibuf-macs.el (autoload 'define-ibuffer-column "ibuf-macs" "\ @@ -13978,7 +13983,7 @@ ;;;*** ;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers) -;;;;;; "ibuffer" "ibuffer.el" (20231 60882)) +;;;;;; "ibuffer" "ibuffer.el" (20232 10689)) ;;; Generated autoloads from ibuffer.el (autoload 'ibuffer-list-buffers "ibuffer" "\ @@ -14019,7 +14024,7 @@ ;;;### (autoloads (icalendar-import-buffer icalendar-import-file ;;;;;; icalendar-export-region icalendar-export-file) "icalendar" -;;;;;; "calendar/icalendar.el" (20229 31156)) +;;;;;; "calendar/icalendar.el" (20229 34587)) ;;; Generated autoloads from calendar/icalendar.el (autoload 'icalendar-export-file "icalendar" "\ @@ -14072,7 +14077,7 @@ ;;;*** ;;;### (autoloads (icomplete-mode) "icomplete" "icomplete.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from icomplete.el (defvar icomplete-mode nil "\ @@ -14094,7 +14099,7 @@ ;;;*** -;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (20229 31156)) +;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (20229 34587)) ;;; Generated autoloads from progmodes/icon.el (autoload 'icon-mode "icon" "\ @@ -14135,7 +14140,7 @@ ;;;*** ;;;### (autoloads (idlwave-shell) "idlw-shell" "progmodes/idlw-shell.el" -;;;;;; (20237 33565)) +;;;;;; (20237 28610)) ;;; Generated autoloads from progmodes/idlw-shell.el (autoload 'idlwave-shell "idlw-shell" "\ @@ -14161,7 +14166,7 @@ ;;;*** ;;;### (autoloads (idlwave-mode) "idlwave" "progmodes/idlwave.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/idlwave.el (autoload 'idlwave-mode "idlwave" "\ @@ -14296,7 +14301,7 @@ ;;;;;; ido-find-file-in-dir ido-switch-buffer-other-frame ido-insert-buffer ;;;;;; ido-kill-buffer ido-display-buffer ido-switch-buffer-other-window ;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from ido.el (defvar ido-mode nil "\ @@ -14557,7 +14562,7 @@ ;;;*** -;;;### (autoloads (ielm) "ielm" "ielm.el" (20229 31156)) +;;;### (autoloads (ielm) "ielm" "ielm.el" (20229 34587)) ;;; Generated autoloads from ielm.el (autoload 'ielm "ielm" "\ @@ -14568,7 +14573,7 @@ ;;;*** -;;;### (autoloads (iimage-mode) "iimage" "iimage.el" (20229 31156)) +;;;### (autoloads (iimage-mode) "iimage" "iimage.el" (20229 34587)) ;;; Generated autoloads from iimage.el (define-obsolete-function-alias 'turn-on-iimage-mode 'iimage-mode "24.1") @@ -14585,7 +14590,7 @@ ;;;;;; create-image image-type-auto-detected-p image-type-available-p ;;;;;; image-type image-type-from-file-name image-type-from-file-header ;;;;;; image-type-from-buffer image-type-from-data) "image" "image.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from image.el (autoload 'image-type-from-data "image" "\ @@ -14782,7 +14787,7 @@ ;;;;;; image-dired-jump-thumbnail-buffer image-dired-delete-tag ;;;;;; image-dired-tag-files image-dired-show-all-from-dir image-dired-display-thumbs ;;;;;; image-dired-dired-with-window-configuration image-dired-dired-toggle-marked-thumbs) -;;;;;; "image-dired" "image-dired.el" (20229 31156)) +;;;;;; "image-dired" "image-dired.el" (20229 34587)) ;;; Generated autoloads from image-dired.el (autoload 'image-dired-dired-toggle-marked-thumbs "image-dired" "\ @@ -14920,7 +14925,7 @@ ;;;### (autoloads (auto-image-file-mode insert-image-file image-file-name-regexp ;;;;;; image-file-name-regexps image-file-name-extensions) "image-file" -;;;;;; "image-file.el" (20229 31156)) +;;;;;; "image-file.el" (20229 34587)) ;;; Generated autoloads from image-file.el (defvar image-file-name-extensions (purecopy '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm" "svg")) "\ @@ -14983,7 +14988,7 @@ ;;;*** ;;;### (autoloads (image-bookmark-jump image-mode-as-text image-minor-mode -;;;;;; image-mode) "image-mode" "image-mode.el" (20229 31156)) +;;;;;; image-mode) "image-mode" "image-mode.el" (20229 34587)) ;;; Generated autoloads from image-mode.el (autoload 'image-mode "image-mode" "\ @@ -15028,7 +15033,7 @@ ;;;*** ;;;### (autoloads (imenu imenu-add-menubar-index imenu-add-to-menubar -;;;;;; imenu-sort-function) "imenu" "imenu.el" (20229 31156)) +;;;;;; imenu-sort-function) "imenu" "imenu.el" (20229 34587)) ;;; Generated autoloads from imenu.el (defvar imenu-sort-function nil "\ @@ -15145,7 +15150,7 @@ ;;;### (autoloads (indian-2-column-to-ucs-region in-is13194-pre-write-conversion ;;;;;; in-is13194-post-read-conversion indian-compose-string indian-compose-region) -;;;;;; "ind-util" "language/ind-util.el" (20229 31156)) +;;;;;; "ind-util" "language/ind-util.el" (20229 34587)) ;;; Generated autoloads from language/ind-util.el (autoload 'indian-compose-region "ind-util" "\ @@ -15177,7 +15182,7 @@ ;;;### (autoloads (inferior-lisp inferior-lisp-prompt inferior-lisp-load-command ;;;;;; inferior-lisp-program inferior-lisp-filter-regexp) "inf-lisp" -;;;;;; "progmodes/inf-lisp.el" (20229 31156)) +;;;;;; "progmodes/inf-lisp.el" (20229 34587)) ;;; Generated autoloads from progmodes/inf-lisp.el (defvar inferior-lisp-filter-regexp (purecopy "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'") "\ @@ -15244,7 +15249,7 @@ ;;;;;; Info-goto-emacs-key-command-node Info-goto-emacs-command-node ;;;;;; Info-mode info-finder info-apropos Info-index Info-directory ;;;;;; Info-on-current-buffer info-standalone info-emacs-manual -;;;;;; info info-other-window) "info" "info.el" (20242 13131)) +;;;;;; info info-other-window) "info" "info.el" (20242 46528)) ;;; Generated autoloads from info.el (autoload 'info-other-window "info" "\ @@ -15430,7 +15435,7 @@ ;;;### (autoloads (info-complete-file info-complete-symbol info-lookup-file ;;;;;; info-lookup-symbol info-lookup-reset) "info-look" "info-look.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from info-look.el (autoload 'info-lookup-reset "info-look" "\ @@ -15479,7 +15484,7 @@ ;;;### (autoloads (info-xref-docstrings info-xref-check-all-custom ;;;;;; info-xref-check-all info-xref-check) "info-xref" "info-xref.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from info-xref.el (autoload 'info-xref-check "info-xref" "\ @@ -15562,7 +15567,7 @@ ;;;*** ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-split-threshold -;;;;;; Info-tagify) "informat" "informat.el" (20229 31156)) +;;;;;; Info-tagify) "informat" "informat.el" (20229 34587)) ;;; Generated autoloads from informat.el (autoload 'Info-tagify "informat" "\ @@ -15609,7 +15614,7 @@ ;;;### (autoloads (isearch-process-search-multibyte-characters isearch-toggle-input-method ;;;;;; isearch-toggle-specified-input-method) "isearch-x" "international/isearch-x.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from international/isearch-x.el (autoload 'isearch-toggle-specified-input-method "isearch-x" "\ @@ -15630,7 +15635,7 @@ ;;;*** ;;;### (autoloads (isearchb-activate) "isearchb" "isearchb.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from isearchb.el (autoload 'isearchb-activate "isearchb" "\ @@ -15646,7 +15651,7 @@ ;;;### (autoloads (iso-cvt-define-menu iso-cvt-write-only iso-cvt-read-only ;;;;;; iso-sgml2iso iso-iso2sgml iso-iso2duden iso-iso2gtex iso-gtex2iso ;;;;;; iso-tex2iso iso-iso2tex iso-german iso-spanish) "iso-cvt" -;;;;;; "international/iso-cvt.el" (20229 31156)) +;;;;;; "international/iso-cvt.el" (20229 34587)) ;;; Generated autoloads from international/iso-cvt.el (autoload 'iso-spanish "iso-cvt" "\ @@ -15737,7 +15742,7 @@ ;;;*** ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from international/iso-transl.el (or key-translation-map (setq key-translation-map (make-sparse-keymap))) (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) @@ -15749,7 +15754,7 @@ ;;;;;; ispell-complete-word ispell-continue ispell-buffer ispell-comments-and-strings ;;;;;; ispell-region ispell-change-dictionary ispell-kill-ispell ;;;;;; ispell-help ispell-pdict-save ispell-word ispell-personal-dictionary) -;;;;;; "ispell" "textmodes/ispell.el" (20229 31156)) +;;;;;; "ispell" "textmodes/ispell.el" (20229 34587)) ;;; Generated autoloads from textmodes/ispell.el (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) @@ -15976,7 +15981,7 @@ ;;;*** ;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from iswitchb.el (defvar iswitchb-mode nil "\ @@ -16004,7 +16009,7 @@ ;;;### (autoloads (read-hiragana-string japanese-zenkaku-region japanese-hankaku-region ;;;;;; japanese-hiragana-region japanese-katakana-region japanese-zenkaku ;;;;;; japanese-hankaku japanese-hiragana japanese-katakana setup-japanese-environment-internal) -;;;;;; "japan-util" "language/japan-util.el" (20229 31156)) +;;;;;; "japan-util" "language/japan-util.el" (20229 34587)) ;;; Generated autoloads from language/japan-util.el (autoload 'setup-japanese-environment-internal "japan-util" "\ @@ -16082,7 +16087,7 @@ ;;;*** ;;;### (autoloads (jka-compr-uninstall jka-compr-handler) "jka-compr" -;;;;;; "jka-compr.el" (20250 53480)) +;;;;;; "jka-compr.el" (20250 40679)) ;;; Generated autoloads from jka-compr.el (defvar jka-compr-inhibit nil "\ @@ -16105,7 +16110,7 @@ ;;;*** -;;;### (autoloads (js-mode) "js" "progmodes/js.el" (20229 31156)) +;;;### (autoloads (js-mode) "js" "progmodes/js.el" (20229 34587)) ;;; Generated autoloads from progmodes/js.el (autoload 'js-mode "js" "\ @@ -16119,7 +16124,7 @@ ;;;### (autoloads (keypad-setup keypad-numlock-shifted-setup keypad-shifted-setup ;;;;;; keypad-numlock-setup keypad-setup) "keypad" "emulation/keypad.el" -;;;;;; (20237 33565)) +;;;;;; (20237 28610)) ;;; Generated autoloads from emulation/keypad.el (defvar keypad-setup nil "\ @@ -16175,7 +16180,7 @@ ;;;*** ;;;### (autoloads (kinsoku) "kinsoku" "international/kinsoku.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from international/kinsoku.el (autoload 'kinsoku "kinsoku" "\ @@ -16197,7 +16202,7 @@ ;;;*** ;;;### (autoloads (kkc-region) "kkc" "international/kkc.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from international/kkc.el (defvar kkc-after-update-conversion-functions nil "\ @@ -16222,7 +16227,7 @@ ;;;### (autoloads (kmacro-end-call-mouse kmacro-end-and-call-macro ;;;;;; kmacro-end-or-call-macro kmacro-start-macro-or-insert-counter ;;;;;; kmacro-call-macro kmacro-end-macro kmacro-start-macro kmacro-exec-ring-item) -;;;;;; "kmacro" "kmacro.el" (20229 31156)) +;;;;;; "kmacro" "kmacro.el" (20229 34587)) ;;; Generated autoloads from kmacro.el (global-set-key "\C-x(" 'kmacro-start-macro) (global-set-key "\C-x)" 'kmacro-end-macro) @@ -16333,7 +16338,7 @@ ;;;*** ;;;### (autoloads (setup-korean-environment-internal) "korea-util" -;;;;;; "language/korea-util.el" (20229 31156)) +;;;;;; "language/korea-util.el" (20229 34587)) ;;; Generated autoloads from language/korea-util.el (defvar default-korean-keyboard (purecopy (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "")) "\ @@ -16348,7 +16353,7 @@ ;;;*** ;;;### (autoloads (landmark landmark-test-run) "landmark" "play/landmark.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from play/landmark.el (defalias 'landmark-repeat 'landmark-test-run) @@ -16380,7 +16385,7 @@ ;;;### (autoloads (lao-compose-region lao-composition-function lao-transcribe-roman-to-lao-string ;;;;;; lao-transcribe-single-roman-syllable-to-lao lao-compose-string) -;;;;;; "lao-util" "language/lao-util.el" (20229 31156)) +;;;;;; "lao-util" "language/lao-util.el" (20229 34587)) ;;; Generated autoloads from language/lao-util.el (autoload 'lao-compose-string "lao-util" "\ @@ -16419,7 +16424,7 @@ ;;;### (autoloads (latexenc-find-file-coding-system latexenc-coding-system-to-inputenc ;;;;;; latexenc-inputenc-to-coding-system latex-inputenc-coding-alist) -;;;;;; "latexenc" "international/latexenc.el" (20229 31156)) +;;;;;; "latexenc" "international/latexenc.el" (20229 34587)) ;;; 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))) "\ @@ -16451,7 +16456,7 @@ ;;;*** ;;;### (autoloads (latin1-display-ucs-per-lynx latin1-display latin1-display) -;;;;;; "latin1-disp" "international/latin1-disp.el" (20229 31156)) +;;;;;; "latin1-disp" "international/latin1-disp.el" (20229 34587)) ;;; Generated autoloads from international/latin1-disp.el (defvar latin1-display nil "\ @@ -16493,7 +16498,7 @@ ;;;*** ;;;### (autoloads (ld-script-mode) "ld-script" "progmodes/ld-script.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/ld-script.el (autoload 'ld-script-mode "ld-script" "\ @@ -16504,7 +16509,7 @@ ;;;*** ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from ledit.el (defconst ledit-save-files t "\ @@ -16539,7 +16544,7 @@ ;;;*** -;;;### (autoloads (life) "life" "play/life.el" (20229 31156)) +;;;### (autoloads (life) "life" "play/life.el" (20229 34587)) ;;; Generated autoloads from play/life.el (autoload 'life "life" "\ @@ -16553,7 +16558,7 @@ ;;;*** ;;;### (autoloads (global-linum-mode linum-mode linum-format) "linum" -;;;;;; "linum.el" (20229 31156)) +;;;;;; "linum.el" (20229 34587)) ;;; Generated autoloads from linum.el (defvar linum-format 'dynamic "\ @@ -16599,7 +16604,7 @@ ;;;*** ;;;### (autoloads (unload-feature) "loadhist" "loadhist.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from loadhist.el (autoload 'unload-feature "loadhist" "\ @@ -16631,7 +16636,7 @@ ;;;*** ;;;### (autoloads (locate-with-filter locate locate-ls-subdir-switches) -;;;;;; "locate" "locate.el" (20229 31156)) +;;;;;; "locate" "locate.el" (20229 34587)) ;;; Generated autoloads from locate.el (defvar locate-ls-subdir-switches (purecopy "-al") "\ @@ -16683,7 +16688,7 @@ ;;;*** -;;;### (autoloads (log-edit) "log-edit" "vc/log-edit.el" (20229 31156)) +;;;### (autoloads (log-edit) "log-edit" "vc/log-edit.el" (20229 34587)) ;;; Generated autoloads from vc/log-edit.el (autoload 'log-edit "log-edit" "\ @@ -16711,7 +16716,7 @@ ;;;*** ;;;### (autoloads (log-view-mode) "log-view" "vc/log-view.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from vc/log-view.el (autoload 'log-view-mode "log-view" "\ @@ -16722,7 +16727,7 @@ ;;;*** ;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from longlines.el (autoload 'longlines-mode "longlines" "\ @@ -16749,7 +16754,7 @@ ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer ;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from lpr.el (defvar lpr-windows-system (memq system-type '(ms-dos windows-nt)) "\ @@ -16845,7 +16850,7 @@ ;;;*** ;;;### (autoloads (ls-lisp-support-shell-wildcards) "ls-lisp" "ls-lisp.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from ls-lisp.el (defvar ls-lisp-support-shell-wildcards t "\ @@ -16857,7 +16862,7 @@ ;;;*** ;;;### (autoloads (lunar-phases) "lunar" "calendar/lunar.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from calendar/lunar.el (autoload 'lunar-phases "lunar" "\ @@ -16872,7 +16877,7 @@ ;;;*** ;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from progmodes/m4-mode.el (autoload 'm4-mode "m4-mode" "\ @@ -16883,7 +16888,7 @@ ;;;*** ;;;### (autoloads (macroexpand-all) "macroexp" "emacs-lisp/macroexp.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from emacs-lisp/macroexp.el (autoload 'macroexpand-all "macroexp" "\ @@ -16897,7 +16902,7 @@ ;;;*** ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro -;;;;;; name-last-kbd-macro) "macros" "macros.el" (20229 31156)) +;;;;;; name-last-kbd-macro) "macros" "macros.el" (20229 34587)) ;;; Generated autoloads from macros.el (autoload 'name-last-kbd-macro "macros" "\ @@ -16986,7 +16991,7 @@ ;;;*** ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" -;;;;;; "mail/mail-extr.el" (20237 33565)) +;;;;;; "mail/mail-extr.el" (20237 28610)) ;;; Generated autoloads from mail/mail-extr.el (autoload 'mail-extract-address-components "mail-extr" "\ @@ -17018,7 +17023,7 @@ ;;;### (autoloads (mail-hist-put-headers-into-history mail-hist-keep-history ;;;;;; mail-hist-enable mail-hist-define-keys) "mail-hist" "mail/mail-hist.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from mail/mail-hist.el (autoload 'mail-hist-define-keys "mail-hist" "\ @@ -17050,7 +17055,7 @@ ;;;### (autoloads (mail-fetch-field mail-unquote-printable-region ;;;;;; mail-unquote-printable mail-quote-printable-region mail-quote-printable ;;;;;; mail-file-babyl-p mail-dont-reply-to-names mail-use-rfc822) -;;;;;; "mail-utils" "mail/mail-utils.el" (20229 31156)) +;;;;;; "mail-utils" "mail/mail-utils.el" (20229 34587)) ;;; Generated autoloads from mail/mail-utils.el (defvar mail-use-rfc822 nil "\ @@ -17123,7 +17128,7 @@ ;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup ;;;;;; mail-abbrevs-mode) "mailabbrev" "mail/mailabbrev.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from mail/mailabbrev.el (defvar mail-abbrevs-mode nil "\ @@ -17174,7 +17179,7 @@ ;;;### (autoloads (mail-complete mail-completion-at-point-function ;;;;;; define-mail-alias expand-mail-aliases mail-complete-style) -;;;;;; "mailalias" "mail/mailalias.el" (20229 31156)) +;;;;;; "mailalias" "mail/mailalias.el" (20229 34587)) ;;; Generated autoloads from mail/mailalias.el (defvar mail-complete-style 'angles "\ @@ -17226,7 +17231,7 @@ ;;;*** ;;;### (autoloads (mailclient-send-it) "mailclient" "mail/mailclient.el" -;;;;;; (20237 33565)) +;;;;;; (20237 28610)) ;;; Generated autoloads from mail/mailclient.el (autoload 'mailclient-send-it "mailclient" "\ @@ -17240,7 +17245,7 @@ ;;;### (autoloads (makefile-imake-mode makefile-bsdmake-mode makefile-makepp-mode ;;;;;; makefile-gmake-mode makefile-automake-mode makefile-mode) -;;;;;; "make-mode" "progmodes/make-mode.el" (20229 31156)) +;;;;;; "make-mode" "progmodes/make-mode.el" (20229 34587)) ;;; Generated autoloads from progmodes/make-mode.el (autoload 'makefile-mode "make-mode" "\ @@ -17358,7 +17363,7 @@ ;;;*** ;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from makesum.el (autoload 'make-command-summary "makesum" "\ @@ -17370,7 +17375,7 @@ ;;;*** ;;;### (autoloads (Man-bookmark-jump man-follow man) "man" "man.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from man.el (defalias 'manual-entry 'man) @@ -17424,7 +17429,7 @@ ;;;*** -;;;### (autoloads (master-mode) "master" "master.el" (20229 31156)) +;;;### (autoloads (master-mode) "master" "master.el" (20229 34587)) ;;; Generated autoloads from master.el (autoload 'master-mode "master" "\ @@ -17447,7 +17452,7 @@ ;;;*** ;;;### (autoloads (minibuffer-depth-indicate-mode) "mb-depth" "mb-depth.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from mb-depth.el (defvar minibuffer-depth-indicate-mode nil "\ @@ -17480,7 +17485,7 @@ ;;;;;; message-forward-make-body message-forward message-recover ;;;;;; message-supersede message-cancel-news message-followup message-wide-reply ;;;;;; message-reply message-news message-mail message-mode) "message" -;;;;;; "gnus/message.el" (20229 31156)) +;;;;;; "gnus/message.el" (20229 34587)) ;;; 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) @@ -17646,7 +17651,7 @@ ;;;*** ;;;### (autoloads (metapost-mode metafont-mode) "meta-mode" "progmodes/meta-mode.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/meta-mode.el (autoload 'metafont-mode "meta-mode" "\ @@ -17663,7 +17668,7 @@ ;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body ;;;;;; metamail-interpret-header) "metamail" "mail/metamail.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from mail/metamail.el (autoload 'metamail-interpret-header "metamail" "\ @@ -17708,7 +17713,7 @@ ;;;### (autoloads (mh-fully-kill-draft mh-send-letter mh-user-agent-compose ;;;;;; mh-smail-batch mh-smail-other-window mh-smail) "mh-comp" -;;;;;; "mh-e/mh-comp.el" (20229 31156)) +;;;;;; "mh-e/mh-comp.el" (20229 34587)) ;;; Generated autoloads from mh-e/mh-comp.el (autoload 'mh-smail "mh-comp" "\ @@ -17798,7 +17803,7 @@ ;;;*** -;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (20229 31156)) +;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (20229 34587)) ;;; Generated autoloads from mh-e/mh-e.el (put 'mh-progs 'risky-local-variable t) @@ -17815,7 +17820,7 @@ ;;;*** ;;;### (autoloads (mh-folder-mode mh-nmail mh-rmail) "mh-folder" -;;;;;; "mh-e/mh-folder.el" (20229 31156)) +;;;;;; "mh-e/mh-folder.el" (20229 34587)) ;;; Generated autoloads from mh-e/mh-folder.el (autoload 'mh-rmail "mh-folder" "\ @@ -17897,7 +17902,7 @@ ;;;*** ;;;### (autoloads (midnight-delay-set clean-buffer-list) "midnight" -;;;;;; "midnight.el" (20229 31156)) +;;;;;; "midnight.el" (20229 34587)) ;;; Generated autoloads from midnight.el (autoload 'clean-buffer-list "midnight" "\ @@ -17924,7 +17929,7 @@ ;;;*** ;;;### (autoloads (minibuffer-electric-default-mode) "minibuf-eldef" -;;;;;; "minibuf-eldef.el" (20229 31156)) +;;;;;; "minibuf-eldef.el" (20229 34587)) ;;; Generated autoloads from minibuf-eldef.el (defvar minibuffer-electric-default-mode nil "\ @@ -17954,7 +17959,7 @@ ;;;*** ;;;### (autoloads (list-dynamic-libraries butterfly) "misc" "misc.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from misc.el (autoload 'butterfly "misc" "\ @@ -17984,7 +17989,7 @@ ;;;### (autoloads (multi-isearch-files-regexp multi-isearch-files ;;;;;; multi-isearch-buffers-regexp multi-isearch-buffers multi-isearch-setup) -;;;;;; "misearch" "misearch.el" (20229 31156)) +;;;;;; "misearch" "misearch.el" (20229 34587)) ;;; Generated autoloads from misearch.el (add-hook 'isearch-mode-hook 'multi-isearch-setup) @@ -18066,7 +18071,7 @@ ;;;*** ;;;### (autoloads (mixal-mode) "mixal-mode" "progmodes/mixal-mode.el" -;;;;;; (20237 33565)) +;;;;;; (20237 28610)) ;;; Generated autoloads from progmodes/mixal-mode.el (autoload 'mixal-mode "mixal-mode" "\ @@ -18077,7 +18082,7 @@ ;;;*** ;;;### (autoloads (mm-default-file-encoding) "mm-encode" "gnus/mm-encode.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/mm-encode.el (autoload 'mm-default-file-encoding "mm-encode" "\ @@ -18088,7 +18093,7 @@ ;;;*** ;;;### (autoloads (mm-inline-external-body mm-extern-cache-contents) -;;;;;; "mm-extern" "gnus/mm-extern.el" (20229 31156)) +;;;;;; "mm-extern" "gnus/mm-extern.el" (20229 34587)) ;;; Generated autoloads from gnus/mm-extern.el (autoload 'mm-extern-cache-contents "mm-extern" "\ @@ -18107,7 +18112,7 @@ ;;;*** ;;;### (autoloads (mm-inline-partial) "mm-partial" "gnus/mm-partial.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/mm-partial.el (autoload 'mm-inline-partial "mm-partial" "\ @@ -18121,7 +18126,7 @@ ;;;*** ;;;### (autoloads (mm-url-insert-file-contents-external mm-url-insert-file-contents) -;;;;;; "mm-url" "gnus/mm-url.el" (20229 31156)) +;;;;;; "mm-url" "gnus/mm-url.el" (20229 34587)) ;;; Generated autoloads from gnus/mm-url.el (autoload 'mm-url-insert-file-contents "mm-url" "\ @@ -18138,7 +18143,7 @@ ;;;*** ;;;### (autoloads (mm-uu-dissect-text-parts mm-uu-dissect) "mm-uu" -;;;;;; "gnus/mm-uu.el" (20229 31156)) +;;;;;; "gnus/mm-uu.el" (20229 34587)) ;;; Generated autoloads from gnus/mm-uu.el (autoload 'mm-uu-dissect "mm-uu" "\ @@ -18158,7 +18163,7 @@ ;;;*** ;;;### (autoloads (mml-attach-file mml-to-mime) "mml" "gnus/mml.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/mml.el (autoload 'mml-to-mime "mml" "\ @@ -18183,7 +18188,7 @@ ;;;*** ;;;### (autoloads (mml1991-sign mml1991-encrypt) "mml1991" "gnus/mml1991.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/mml1991.el (autoload 'mml1991-encrypt "mml1991" "\ @@ -18200,7 +18205,7 @@ ;;;### (autoloads (mml2015-self-encrypt mml2015-sign mml2015-encrypt ;;;;;; mml2015-verify-test mml2015-verify mml2015-decrypt-test mml2015-decrypt) -;;;;;; "mml2015" "gnus/mml2015.el" (20229 31156)) +;;;;;; "mml2015" "gnus/mml2015.el" (20229 34587)) ;;; Generated autoloads from gnus/mml2015.el (autoload 'mml2015-decrypt "mml2015" "\ @@ -18240,8 +18245,8 @@ ;;;*** -;;;### (autoloads (m2-mode) "modula2" "progmodes/modula2.el" (20161 -;;;;;; 61915)) +;;;### (autoloads (m2-mode) "modula2" "progmodes/modula2.el" (20159 +;;;;;; 42847)) ;;; Generated autoloads from progmodes/modula2.el (defalias 'modula-2-mode 'm2-mode) @@ -18275,7 +18280,7 @@ ;;;*** ;;;### (autoloads (denato-region nato-region unmorse-region morse-region) -;;;;;; "morse" "play/morse.el" (20229 31156)) +;;;;;; "morse" "play/morse.el" (20229 34587)) ;;; Generated autoloads from play/morse.el (autoload 'morse-region "morse" "\ @@ -18301,7 +18306,7 @@ ;;;*** ;;;### (autoloads (mouse-drag-drag mouse-drag-throw) "mouse-drag" -;;;;;; "mouse-drag.el" (20229 31156)) +;;;;;; "mouse-drag.el" (20229 34587)) ;;; Generated autoloads from mouse-drag.el (autoload 'mouse-drag-throw "mouse-drag" "\ @@ -18349,7 +18354,7 @@ ;;;*** ;;;### (autoloads (mouse-sel-mode) "mouse-sel" "mouse-sel.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from mouse-sel.el (defvar mouse-sel-mode nil "\ @@ -18392,7 +18397,7 @@ ;;;*** -;;;### (autoloads (mpc) "mpc" "mpc.el" (20229 31156)) +;;;### (autoloads (mpc) "mpc" "mpc.el" (20229 34587)) ;;; Generated autoloads from mpc.el (autoload 'mpc "mpc" "\ @@ -18402,7 +18407,7 @@ ;;;*** -;;;### (autoloads (mpuz) "mpuz" "play/mpuz.el" (20229 31156)) +;;;### (autoloads (mpuz) "mpuz" "play/mpuz.el" (20229 34587)) ;;; Generated autoloads from play/mpuz.el (autoload 'mpuz "mpuz" "\ @@ -18412,7 +18417,7 @@ ;;;*** -;;;### (autoloads (msb-mode) "msb" "msb.el" (20229 31156)) +;;;### (autoloads (msb-mode) "msb" "msb.el" (20229 34587)) ;;; Generated autoloads from msb.el (defvar msb-mode nil "\ @@ -18442,7 +18447,7 @@ ;;;;;; describe-current-coding-system describe-current-coding-system-briefly ;;;;;; describe-coding-system describe-character-set list-charset-chars ;;;;;; read-charset list-character-sets) "mule-diag" "international/mule-diag.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from international/mule-diag.el (autoload 'list-character-sets "mule-diag" "\ @@ -18579,7 +18584,7 @@ ;;;;;; coding-system-translation-table-for-decode coding-system-pre-write-conversion ;;;;;; coding-system-post-read-conversion lookup-nested-alist set-nested-alist ;;;;;; truncate-string-to-width store-substring string-to-sequence) -;;;;;; "mule-util" "international/mule-util.el" (20229 31156)) +;;;;;; "mule-util" "international/mule-util.el" (20229 34587)) ;;; Generated autoloads from international/mule-util.el (autoload 'string-to-sequence "mule-util" "\ @@ -18720,7 +18725,7 @@ ;;;;;; whois-reverse-lookup whois finger ftp run-dig dns-lookup-host ;;;;;; nslookup nslookup-host ping traceroute route arp netstat ;;;;;; iwconfig ifconfig) "net-utils" "net/net-utils.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from net/net-utils.el (autoload 'ifconfig "net-utils" "\ @@ -18815,7 +18820,7 @@ ;;;*** ;;;### (autoloads (netrc-credentials) "netrc" "net/netrc.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from net/netrc.el (autoload 'netrc-credentials "netrc" "\ @@ -18828,7 +18833,7 @@ ;;;*** ;;;### (autoloads (open-network-stream) "network-stream" "net/network-stream.el" -;;;;;; (20236 4279)) +;;;;;; (20236 7740)) ;;; Generated autoloads from net/network-stream.el (autoload 'open-network-stream "network-stream" "\ @@ -18924,7 +18929,7 @@ ;;;;;; uncomment-region comment-kill comment-set-column comment-indent ;;;;;; comment-indent-default comment-normalize-vars comment-multi-line ;;;;;; comment-padding comment-style comment-column) "newcomment" -;;;;;; "newcomment.el" (20229 31156)) +;;;;;; "newcomment.el" (20229 34587)) ;;; Generated autoloads from newcomment.el (defalias 'indent-for-comment 'comment-indent) @@ -19124,7 +19129,7 @@ ;;;*** ;;;### (autoloads (newsticker-start newsticker-running-p) "newst-backend" -;;;;;; "net/newst-backend.el" (20229 31156)) +;;;;;; "net/newst-backend.el" (20229 34587)) ;;; Generated autoloads from net/newst-backend.el (autoload 'newsticker-running-p "newst-backend" "\ @@ -19146,7 +19151,7 @@ ;;;*** ;;;### (autoloads (newsticker-plainview) "newst-plainview" "net/newst-plainview.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from net/newst-plainview.el (autoload 'newsticker-plainview "newst-plainview" "\ @@ -19157,7 +19162,7 @@ ;;;*** ;;;### (autoloads (newsticker-show-news) "newst-reader" "net/newst-reader.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from net/newst-reader.el (autoload 'newsticker-show-news "newst-reader" "\ @@ -19168,7 +19173,7 @@ ;;;*** ;;;### (autoloads (newsticker-start-ticker newsticker-ticker-running-p) -;;;;;; "newst-ticker" "net/newst-ticker.el" (20229 31156)) +;;;;;; "newst-ticker" "net/newst-ticker.el" (20229 34587)) ;;; Generated autoloads from net/newst-ticker.el (autoload 'newsticker-ticker-running-p "newst-ticker" "\ @@ -19189,7 +19194,7 @@ ;;;*** ;;;### (autoloads (newsticker-treeview) "newst-treeview" "net/newst-treeview.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from net/newst-treeview.el (autoload 'newsticker-treeview "newst-treeview" "\ @@ -19200,7 +19205,7 @@ ;;;*** ;;;### (autoloads (nndiary-generate-nov-databases) "nndiary" "gnus/nndiary.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/nndiary.el (autoload 'nndiary-generate-nov-databases "nndiary" "\ @@ -19211,7 +19216,7 @@ ;;;*** ;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from gnus/nndoc.el (autoload 'nndoc-add-type "nndoc" "\ @@ -19226,7 +19231,7 @@ ;;;*** ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/nnfolder.el (autoload 'nnfolder-generate-active-file "nnfolder" "\ @@ -19238,7 +19243,7 @@ ;;;*** ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/nnml.el (autoload 'nnml-generate-nov-databases "nnml" "\ @@ -19249,7 +19254,7 @@ ;;;*** ;;;### (autoloads (disable-command enable-command disabled-command-function) -;;;;;; "novice" "novice.el" (20229 31156)) +;;;;;; "novice" "novice.el" (20229 34587)) ;;; Generated autoloads from novice.el (defvar disabled-command-function 'disabled-command-function "\ @@ -19282,7 +19287,7 @@ ;;;*** ;;;### (autoloads (nroff-mode) "nroff-mode" "textmodes/nroff-mode.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from textmodes/nroff-mode.el (autoload 'nroff-mode "nroff-mode" "\ @@ -19297,7 +19302,7 @@ ;;;*** ;;;### (autoloads (nxml-glyph-display-string) "nxml-glyph" "nxml/nxml-glyph.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from nxml/nxml-glyph.el (autoload 'nxml-glyph-display-string "nxml-glyph" "\ @@ -19310,7 +19315,7 @@ ;;;*** ;;;### (autoloads (nxml-mode) "nxml-mode" "nxml/nxml-mode.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from nxml/nxml-mode.el (autoload 'nxml-mode "nxml-mode" "\ @@ -19372,7 +19377,7 @@ ;;;*** ;;;### (autoloads (nxml-enable-unicode-char-name-sets) "nxml-uchnm" -;;;;;; "nxml/nxml-uchnm.el" (20229 31156)) +;;;;;; "nxml/nxml-uchnm.el" (20229 34587)) ;;; Generated autoloads from nxml/nxml-uchnm.el (autoload 'nxml-enable-unicode-char-name-sets "nxml-uchnm" "\ @@ -19395,7 +19400,7 @@ ;;;;;; org-babel-pop-to-session-maybe org-babel-load-in-session-maybe ;;;;;; org-babel-expand-src-block-maybe org-babel-view-src-block-info ;;;;;; org-babel-execute-maybe org-babel-execute-safely-maybe) "ob" -;;;;;; "org/ob.el" (20230 53294)) +;;;;;; "org/ob.el" (20230 13182)) ;;; Generated autoloads from org/ob.el (autoload 'org-babel-execute-safely-maybe "ob" "\ @@ -19606,7 +19611,7 @@ ;;;*** ;;;### (autoloads (org-babel-describe-bindings) "ob-keys" "org/ob-keys.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from org/ob-keys.el (autoload 'org-babel-describe-bindings "ob-keys" "\ @@ -19617,7 +19622,7 @@ ;;;*** ;;;### (autoloads (org-babel-lob-get-info org-babel-lob-execute-maybe -;;;;;; org-babel-lob-ingest) "ob-lob" "org/ob-lob.el" (20229 31156)) +;;;;;; org-babel-lob-ingest) "ob-lob" "org/ob-lob.el" (20229 34587)) ;;; Generated autoloads from org/ob-lob.el (autoload 'org-babel-lob-ingest "ob-lob" "\ @@ -19642,7 +19647,7 @@ ;;;### (autoloads (org-babel-tangle org-babel-tangle-file org-babel-load-file ;;;;;; org-babel-tangle-lang-exts) "ob-tangle" "org/ob-tangle.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from org/ob-tangle.el (defvar org-babel-tangle-lang-exts '(("emacs-lisp" . "el")) "\ @@ -19684,7 +19689,7 @@ ;;;*** ;;;### (autoloads (inferior-octave) "octave-inf" "progmodes/octave-inf.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/octave-inf.el (autoload 'inferior-octave "octave-inf" "\ @@ -19707,7 +19712,7 @@ ;;;*** ;;;### (autoloads (octave-mode) "octave-mod" "progmodes/octave-mod.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/octave-mod.el (autoload 'octave-mode "octave-mod" "\ @@ -19795,7 +19800,7 @@ ;;;;;; org-insert-link-global org-store-link org-run-like-in-org-mode ;;;;;; turn-on-orgstruct++ turn-on-orgstruct orgstruct-mode org-global-cycle ;;;;;; org-mode org-babel-do-load-languages) "org" "org/org.el" -;;;;;; (20235 62921)) +;;;;;; (20236 7740)) ;;; Generated autoloads from org/org.el (autoload 'org-babel-do-load-languages "org" "\ @@ -20022,7 +20027,7 @@ ;;;;;; org-diary org-agenda-list-stuck-projects org-tags-view org-todo-list ;;;;;; org-search-view org-agenda-list org-batch-store-agenda-views ;;;;;; org-store-agenda-views org-batch-agenda-csv org-batch-agenda -;;;;;; org-agenda) "org-agenda" "org/org-agenda.el" (20235 62921)) +;;;;;; org-agenda) "org-agenda" "org/org-agenda.el" (20236 7740)) ;;; Generated autoloads from org/org-agenda.el (autoload 'org-agenda "org-agenda" "\ @@ -20276,7 +20281,7 @@ ;;;### (autoloads (org-archive-subtree-default-with-confirmation ;;;;;; org-archive-subtree-default) "org-archive" "org/org-archive.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from org/org-archive.el (autoload 'org-archive-subtree-default "org-archive" "\ @@ -20297,7 +20302,7 @@ ;;;;;; org-replace-region-by-ascii org-export-as-ascii-to-buffer ;;;;;; org-export-as-utf8-to-buffer org-export-as-utf8 org-export-as-latin1-to-buffer ;;;;;; org-export-as-latin1) "org-ascii" "org/org-ascii.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from org/org-ascii.el (autoload 'org-export-as-latin1 "org-ascii" "\ @@ -20371,7 +20376,7 @@ ;;;*** ;;;### (autoloads (org-attach) "org-attach" "org/org-attach.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from org/org-attach.el (autoload 'org-attach "org-attach" "\ @@ -20383,7 +20388,7 @@ ;;;*** ;;;### (autoloads (org-bbdb-anniversaries) "org-bbdb" "org/org-bbdb.el" -;;;;;; (20230 53294)) +;;;;;; (20230 13182)) ;;; Generated autoloads from org/org-bbdb.el (autoload 'org-bbdb-anniversaries "org-bbdb" "\ @@ -20394,7 +20399,7 @@ ;;;*** ;;;### (autoloads (org-capture-import-remember-templates org-capture-insert-template-here -;;;;;; org-capture) "org-capture" "org/org-capture.el" (20235 62921)) +;;;;;; org-capture) "org-capture" "org/org-capture.el" (20236 7740)) ;;; Generated autoloads from org/org-capture.el (autoload 'org-capture "org-capture" "\ @@ -20432,7 +20437,7 @@ ;;;*** ;;;### (autoloads (org-clock-persistence-insinuate org-get-clocktable) -;;;;;; "org-clock" "org/org-clock.el" (20235 62921)) +;;;;;; "org-clock" "org/org-clock.el" (20236 7740)) ;;; Generated autoloads from org/org-clock.el (autoload 'org-get-clocktable "org-clock" "\ @@ -20450,7 +20455,7 @@ ;;;*** ;;;### (autoloads (org-datetree-find-date-create) "org-datetree" -;;;;;; "org/org-datetree.el" (20229 31156)) +;;;;;; "org/org-datetree.el" (20229 34587)) ;;; Generated autoloads from org/org-datetree.el (autoload 'org-datetree-find-date-create "org-datetree" "\ @@ -20466,7 +20471,7 @@ ;;;### (autoloads (org-export-as-docbook org-export-as-docbook-pdf-and-open ;;;;;; org-export-as-docbook-pdf org-export-region-as-docbook org-replace-region-by-docbook ;;;;;; org-export-as-docbook-to-buffer org-export-as-docbook-batch) -;;;;;; "org-docbook" "org/org-docbook.el" (20229 31156)) +;;;;;; "org-docbook" "org/org-docbook.el" (20229 34587)) ;;; Generated autoloads from org/org-docbook.el (autoload 'org-export-as-docbook-batch "org-docbook" "\ @@ -20543,7 +20548,7 @@ ;;;### (autoloads (org-insert-export-options-template org-export-as-org ;;;;;; org-export-visible org-export) "org-exp" "org/org-exp.el" -;;;;;; (20235 62921)) +;;;;;; (20236 7740)) ;;; Generated autoloads from org/org-exp.el (autoload 'org-export "org-exp" "\ @@ -20605,7 +20610,7 @@ ;;;### (autoloads (org-feed-show-raw-feed org-feed-goto-inbox org-feed-update ;;;;;; org-feed-update-all) "org-feed" "org/org-feed.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from org/org-feed.el (autoload 'org-feed-update-all "org-feed" "\ @@ -20633,7 +20638,7 @@ ;;;*** ;;;### (autoloads (org-footnote-normalize org-footnote-action) "org-footnote" -;;;;;; "org/org-footnote.el" (20229 31156)) +;;;;;; "org/org-footnote.el" (20229 34587)) ;;; Generated autoloads from org/org-footnote.el (autoload 'org-footnote-action "org-footnote" "\ @@ -20684,7 +20689,7 @@ ;;;### (autoloads (org-freemind-to-org-mode org-freemind-from-org-sparse-tree ;;;;;; org-freemind-from-org-mode org-freemind-from-org-mode-node ;;;;;; org-freemind-show org-export-as-freemind) "org-freemind" -;;;;;; "org/org-freemind.el" (20229 31156)) +;;;;;; "org/org-freemind.el" (20229 34587)) ;;; Generated autoloads from org/org-freemind.el (autoload 'org-export-as-freemind "org-freemind" "\ @@ -20745,7 +20750,7 @@ ;;;### (autoloads (org-export-htmlize-generate-css org-export-as-html ;;;;;; org-export-region-as-html org-replace-region-by-html org-export-as-html-to-buffer ;;;;;; org-export-as-html-batch org-export-as-html-and-open) "org-html" -;;;;;; "org/org-html.el" (20229 31156)) +;;;;;; "org/org-html.el" (20229 34587)) ;;; Generated autoloads from org/org-html.el (put 'org-export-html-style-include-default 'safe-local-variable 'booleanp) @@ -20839,7 +20844,7 @@ ;;;### (autoloads (org-export-icalendar-combine-agenda-files org-export-icalendar-all-agenda-files ;;;;;; org-export-icalendar-this-file) "org-icalendar" "org/org-icalendar.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from org/org-icalendar.el (autoload 'org-export-icalendar-this-file "org-icalendar" "\ @@ -20867,7 +20872,7 @@ ;;;### (autoloads (org-id-store-link org-id-find-id-file org-id-find ;;;;;; org-id-goto org-id-get-with-outline-drilling org-id-get-with-outline-path-completion ;;;;;; org-id-get org-id-copy org-id-get-create) "org-id" "org/org-id.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from org/org-id.el (autoload 'org-id-get-create "org-id" "\ @@ -20936,7 +20941,7 @@ ;;;*** ;;;### (autoloads (org-indent-mode) "org-indent" "org/org-indent.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from org/org-indent.el (autoload 'org-indent-mode "org-indent" "\ @@ -20954,7 +20959,7 @@ ;;;*** ;;;### (autoloads (org-irc-store-link) "org-irc" "org/org-irc.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from org/org-irc.el (autoload 'org-irc-store-link "org-irc" "\ @@ -20967,7 +20972,7 @@ ;;;### (autoloads (org-export-as-pdf-and-open org-export-as-pdf org-export-as-latex ;;;;;; org-export-region-as-latex org-replace-region-by-latex org-export-as-latex-to-buffer ;;;;;; org-export-as-latex-batch) "org-latex" "org/org-latex.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from org/org-latex.el (autoload 'org-export-as-latex-batch "org-latex" "\ @@ -21048,7 +21053,7 @@ ;;;### (autoloads (org-lparse-region org-replace-region-by org-lparse-to-buffer ;;;;;; org-lparse-batch org-lparse-and-open) "org-lparse" "org/org-lparse.el" -;;;;;; (20235 62921)) +;;;;;; (20236 7740)) ;;; Generated autoloads from org/org-lparse.el (autoload 'org-lparse-and-open "org-lparse" "\ @@ -21106,7 +21111,7 @@ ;;;### (autoloads (org-mobile-create-sumo-agenda org-mobile-pull ;;;;;; org-mobile-push) "org-mobile" "org/org-mobile.el" (20230 -;;;;;; 53294)) +;;;;;; 13182)) ;;; Generated autoloads from org/org-mobile.el (autoload 'org-mobile-push "org-mobile" "\ @@ -21133,7 +21138,7 @@ ;;;### (autoloads (org-export-as-odf-and-open org-export-as-odf org-export-odt-convert ;;;;;; org-export-as-odt org-export-region-as-odt org-replace-region-by-odt ;;;;;; org-export-as-odt-to-buffer org-export-as-odt-batch org-export-as-odt-and-open) -;;;;;; "org-odt" "org/org-odt.el" (20235 62921)) +;;;;;; "org-odt" "org/org-odt.el" (20236 7740)) ;;; Generated autoloads from org/org-odt.el (autoload 'org-export-as-odt-and-open "org-odt" "\ @@ -21234,7 +21239,7 @@ ;;;*** ;;;### (autoloads (org-plot/gnuplot) "org-plot" "org/org-plot.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from org/org-plot.el (autoload 'org-plot/gnuplot "org-plot" "\ @@ -21248,7 +21253,7 @@ ;;;### (autoloads (org-publish-current-project org-publish-current-file ;;;;;; org-publish-all org-publish) "org-publish" "org/org-publish.el" -;;;;;; (20235 62921)) +;;;;;; (20236 7740)) ;;; Generated autoloads from org/org-publish.el (defalias 'org-publish-project 'org-publish) @@ -21282,7 +21287,7 @@ ;;;### (autoloads (org-remember-handler org-remember org-remember-apply-template ;;;;;; org-remember-annotation org-remember-insinuate) "org-remember" -;;;;;; "org/org-remember.el" (20229 31156)) +;;;;;; "org/org-remember.el" (20229 34587)) ;;; Generated autoloads from org/org-remember.el (autoload 'org-remember-insinuate "org-remember" "\ @@ -21358,7 +21363,7 @@ ;;;*** ;;;### (autoloads (org-table-to-lisp orgtbl-mode turn-on-orgtbl) -;;;;;; "org-table" "org/org-table.el" (20235 62921)) +;;;;;; "org-table" "org/org-table.el" (20236 7740)) ;;; Generated autoloads from org/org-table.el (autoload 'turn-on-orgtbl "org-table" "\ @@ -21382,7 +21387,7 @@ ;;;*** ;;;### (autoloads (org-export-as-taskjuggler-and-open org-export-as-taskjuggler) -;;;;;; "org-taskjuggler" "org/org-taskjuggler.el" (20235 62921)) +;;;;;; "org-taskjuggler" "org/org-taskjuggler.el" (20236 7740)) ;;; Generated autoloads from org/org-taskjuggler.el (autoload 'org-export-as-taskjuggler "org-taskjuggler" "\ @@ -21410,7 +21415,7 @@ ;;;### (autoloads (org-timer-set-timer org-timer-item org-timer-change-times-in-region ;;;;;; org-timer org-timer-start) "org-timer" "org/org-timer.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from org/org-timer.el (autoload 'org-timer-start "org-timer" "\ @@ -21471,7 +21476,7 @@ ;;;*** ;;;### (autoloads (org-export-as-xoxo) "org-xoxo" "org/org-xoxo.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from org/org-xoxo.el (autoload 'org-export-as-xoxo "org-xoxo" "\ @@ -21483,7 +21488,7 @@ ;;;*** ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "outline.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from outline.el (put 'outline-regexp 'safe-local-variable 'stringp) (put 'outline-heading-end-regexp 'safe-local-variable 'stringp) @@ -21547,7 +21552,7 @@ ;;;### (autoloads (list-packages describe-package package-initialize ;;;;;; package-refresh-contents package-install-file package-install-from-buffer ;;;;;; package-install package-enable-at-startup) "package" "emacs-lisp/package.el" -;;;;;; (20259 50203)) +;;;;;; (20259 55615)) ;;; Generated autoloads from emacs-lisp/package.el (defvar package-enable-at-startup t "\ @@ -21617,7 +21622,7 @@ ;;;*** -;;;### (autoloads (show-paren-mode) "paren" "paren.el" (20229 31156)) +;;;### (autoloads (show-paren-mode) "paren" "paren.el" (20229 34587)) ;;; Generated autoloads from paren.el (defvar show-paren-mode nil "\ @@ -21644,7 +21649,7 @@ ;;;*** ;;;### (autoloads (parse-time-string) "parse-time" "calendar/parse-time.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from calendar/parse-time.el (put 'parse-time-rules 'risky-local-variable t) @@ -21658,7 +21663,7 @@ ;;;*** ;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from progmodes/pascal.el (autoload 'pascal-mode "pascal" "\ @@ -21711,7 +21716,7 @@ ;;;*** ;;;### (autoloads (password-in-cache-p password-cache-expiry password-cache) -;;;;;; "password-cache" "password-cache.el" (20229 31156)) +;;;;;; "password-cache" "password-cache.el" (20229 34587)) ;;; Generated autoloads from password-cache.el (defvar password-cache t "\ @@ -21733,7 +21738,7 @@ ;;;*** ;;;### (autoloads (pcase-let pcase-let* pcase) "pcase" "emacs-lisp/pcase.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from emacs-lisp/pcase.el (autoload 'pcase "pcase" "\ @@ -21793,7 +21798,7 @@ ;;;*** ;;;### (autoloads (pcomplete/cvs) "pcmpl-cvs" "pcmpl-cvs.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from pcmpl-cvs.el (autoload 'pcomplete/cvs "pcmpl-cvs" "\ @@ -21804,7 +21809,7 @@ ;;;*** ;;;### (autoloads (pcomplete/tar pcomplete/make pcomplete/bzip2 pcomplete/gzip) -;;;;;; "pcmpl-gnu" "pcmpl-gnu.el" (20255 37778)) +;;;;;; "pcmpl-gnu" "pcmpl-gnu.el" (20254 62253)) ;;; Generated autoloads from pcmpl-gnu.el (autoload 'pcomplete/gzip "pcmpl-gnu" "\ @@ -21832,7 +21837,7 @@ ;;;*** ;;;### (autoloads (pcomplete/mount pcomplete/umount pcomplete/kill) -;;;;;; "pcmpl-linux" "pcmpl-linux.el" (20229 31156)) +;;;;;; "pcmpl-linux" "pcmpl-linux.el" (20229 34587)) ;;; Generated autoloads from pcmpl-linux.el (autoload 'pcomplete/kill "pcmpl-linux" "\ @@ -21853,7 +21858,7 @@ ;;;*** ;;;### (autoloads (pcomplete/rpm) "pcmpl-rpm" "pcmpl-rpm.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from pcmpl-rpm.el (autoload 'pcomplete/rpm "pcmpl-rpm" "\ @@ -21865,7 +21870,7 @@ ;;;### (autoloads (pcomplete/scp pcomplete/ssh pcomplete/chgrp pcomplete/chown ;;;;;; pcomplete/which pcomplete/xargs pcomplete/rm pcomplete/rmdir -;;;;;; pcomplete/cd) "pcmpl-unix" "pcmpl-unix.el" (20259 19594)) +;;;;;; pcomplete/cd) "pcmpl-unix" "pcmpl-unix.el" (20259 55615)) ;;; Generated autoloads from pcmpl-unix.el (autoload 'pcomplete/cd "pcmpl-unix" "\ @@ -21923,7 +21928,7 @@ ;;;### (autoloads (pcomplete-shell-setup pcomplete-comint-setup pcomplete-list ;;;;;; pcomplete-help pcomplete-expand pcomplete-continue pcomplete-expand-and-complete ;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from pcomplete.el (autoload 'pcomplete "pcomplete" "\ @@ -21982,7 +21987,7 @@ ;;;### (autoloads (cvs-dired-use-hook cvs-dired-action cvs-status ;;;;;; cvs-update cvs-examine cvs-quickdir cvs-checkout) "pcvs" -;;;;;; "vc/pcvs.el" (20254 54879)) +;;;;;; "vc/pcvs.el" (20253 16827)) ;;; Generated autoloads from vc/pcvs.el (autoload 'cvs-checkout "pcvs" "\ @@ -22057,7 +22062,7 @@ ;;;*** -;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (20229 31156)) +;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (20229 34587)) ;;; 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)) "\ @@ -22066,7 +22071,7 @@ ;;;*** ;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/perl-mode.el (put 'perl-indent-level 'safe-local-variable 'integerp) (put 'perl-continued-statement-offset 'safe-local-variable 'integerp) @@ -22128,7 +22133,7 @@ ;;;*** ;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from textmodes/picture.el (autoload 'picture-mode "picture" "\ @@ -22209,7 +22214,7 @@ ;;;*** ;;;### (autoloads (plstore-open) "plstore" "gnus/plstore.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from gnus/plstore.el (autoload 'plstore-open "plstore" "\ @@ -22220,7 +22225,7 @@ ;;;*** ;;;### (autoloads (po-find-file-coding-system) "po" "textmodes/po.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from textmodes/po.el (autoload 'po-find-file-coding-system "po" "\ @@ -22231,7 +22236,7 @@ ;;;*** -;;;### (autoloads (pong) "pong" "play/pong.el" (20229 31156)) +;;;### (autoloads (pong) "pong" "play/pong.el" (20229 34587)) ;;; Generated autoloads from play/pong.el (autoload 'pong "pong" "\ @@ -22247,7 +22252,7 @@ ;;;*** -;;;### (autoloads (pop3-movemail) "pop3" "gnus/pop3.el" (20229 31156)) +;;;### (autoloads (pop3-movemail) "pop3" "gnus/pop3.el" (20229 34587)) ;;; Generated autoloads from gnus/pop3.el (autoload 'pop3-movemail "pop3" "\ @@ -22260,7 +22265,7 @@ ;;;### (autoloads (pp-macroexpand-last-sexp pp-eval-last-sexp pp-macroexpand-expression ;;;;;; pp-eval-expression pp pp-buffer pp-to-string) "pp" "emacs-lisp/pp.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from emacs-lisp/pp.el (autoload 'pp-to-string "pp" "\ @@ -22328,7 +22333,7 @@ ;;;;;; pr-ps-buffer-print pr-ps-buffer-using-ghostscript pr-ps-buffer-preview ;;;;;; pr-ps-directory-ps-print pr-ps-directory-print pr-ps-directory-using-ghostscript ;;;;;; pr-ps-directory-preview pr-interface) "printing" "printing.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from printing.el (autoload 'pr-interface "printing" "\ @@ -22915,7 +22920,7 @@ ;;;*** -;;;### (autoloads (proced) "proced" "proced.el" (20229 31156)) +;;;### (autoloads (proced) "proced" "proced.el" (20229 34587)) ;;; Generated autoloads from proced.el (autoload 'proced "proced" "\ @@ -22931,7 +22936,7 @@ ;;;*** ;;;### (autoloads (run-prolog mercury-mode prolog-mode) "prolog" -;;;;;; "progmodes/prolog.el" (20229 31156)) +;;;;;; "progmodes/prolog.el" (20229 34587)) ;;; Generated autoloads from progmodes/prolog.el (autoload 'prolog-mode "prolog" "\ @@ -22967,7 +22972,7 @@ ;;;*** ;;;### (autoloads (bdf-directory-list) "ps-bdf" "ps-bdf.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; 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")) "\ @@ -22979,7 +22984,7 @@ ;;;*** ;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from progmodes/ps-mode.el (autoload 'ps-mode "ps-mode" "\ @@ -23031,7 +23036,7 @@ ;;;;;; ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces ;;;;;; ps-print-buffer ps-print-customize ps-print-color-p ps-paper-type ;;;;;; ps-page-dimensions-database) "ps-print" "ps-print.el" (20229 -;;;;;; 47145)) +;;;;;; 36386)) ;;; Generated autoloads from ps-print.el (defvar ps-page-dimensions-database (purecopy (list (list 'a4 (/ (* 72 21.0) 2.54) (/ (* 72 29.7) 2.54) "A4") (list 'a3 (/ (* 72 29.7) 2.54) (/ (* 72 42.0) 2.54) "A3") (list 'letter (* 72 8.5) (* 72 11.0) "Letter") (list 'legal (* 72 8.5) (* 72 14.0) "Legal") (list 'letter-small (* 72 7.68) (* 72 10.16) "LetterSmall") (list 'tabloid (* 72 11.0) (* 72 17.0) "Tabloid") (list 'ledger (* 72 17.0) (* 72 11.0) "Ledger") (list 'statement (* 72 5.5) (* 72 8.5) "Statement") (list 'executive (* 72 7.5) (* 72 10.0) "Executive") (list 'a4small (* 72 7.47) (* 72 10.85) "A4Small") (list 'b4 (* 72 10.125) (* 72 14.33) "B4") (list 'b5 (* 72 7.16) (* 72 10.125) "B5") '(addresslarge 236.0 99.0 "AddressLarge") '(addresssmall 236.0 68.0 "AddressSmall") '(cuthanging13 90.0 222.0 "CutHanging13") '(cuthanging15 90.0 114.0 "CutHanging15") '(diskette 181.0 136.0 "Diskette") '(eurofilefolder 139.0 112.0 "EuropeanFilefolder") '(eurofoldernarrow 526.0 107.0 "EuroFolderNarrow") '(eurofolderwide 526.0 136.0 "EuroFolderWide") '(euronamebadge 189.0 108.0 "EuroNameBadge") '(euronamebadgelarge 223.0 136.0 "EuroNameBadgeLarge") '(filefolder 230.0 37.0 "FileFolder") '(jewelry 76.0 136.0 "Jewelry") '(mediabadge 180.0 136.0 "MediaBadge") '(multipurpose 126.0 68.0 "MultiPurpose") '(retaillabel 90.0 104.0 "RetailLabel") '(shipping 271.0 136.0 "Shipping") '(slide35mm 26.0 104.0 "Slide35mm") '(spine8mm 187.0 26.0 "Spine8mm") '(topcoated 425.19685 136.0 "TopCoatedPaper") '(topcoatedpaper 396.0 136.0 "TopcoatedPaper150") '(vhsface 205.0 127.0 "VHSFace") '(vhsspine 400.0 50.0 "VHSSpine") '(zipdisk 156.0 136.0 "ZipDisk"))) "\ @@ -23228,7 +23233,7 @@ ;;;*** ;;;### (autoloads (jython-mode python-mode python-after-info-look -;;;;;; run-python) "python" "progmodes/python.el" (20260 61348)) +;;;;;; run-python) "python" "progmodes/python.el" (20261 10951)) ;;; Generated autoloads from progmodes/python.el (add-to-list 'interpreter-mode-alist (cons (purecopy "jython") 'jython-mode)) @@ -23314,7 +23319,7 @@ ;;;*** ;;;### (autoloads (quoted-printable-decode-region) "qp" "gnus/qp.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/qp.el (autoload 'quoted-printable-decode-region "qp" "\ @@ -23337,7 +23342,7 @@ ;;;;;; quail-defrule quail-install-decode-map quail-install-map ;;;;;; quail-define-rules quail-show-keyboard-layout quail-set-keyboard-layout ;;;;;; quail-define-package quail-use-package quail-title) "quail" -;;;;;; "international/quail.el" (20229 31156)) +;;;;;; "international/quail.el" (20229 34587)) ;;; Generated autoloads from international/quail.el (autoload 'quail-title "quail" "\ @@ -23569,7 +23574,7 @@ ;;;### (autoloads (quickurl-list quickurl-list-mode quickurl-edit-urls ;;;;;; quickurl-browse-url-ask quickurl-browse-url quickurl-add-url ;;;;;; quickurl-ask quickurl) "quickurl" "net/quickurl.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from net/quickurl.el (defconst quickurl-reread-hook-postfix "\n;; Local Variables:\n;; eval: (progn (require 'quickurl) (add-hook 'local-write-file-hooks (lambda () (quickurl-read) nil)))\n;; End:\n" "\ @@ -23641,7 +23646,7 @@ ;;;*** ;;;### (autoloads (rcirc-track-minor-mode rcirc-connect rcirc) "rcirc" -;;;;;; "net/rcirc.el" (20229 31156)) +;;;;;; "net/rcirc.el" (20229 34587)) ;;; Generated autoloads from net/rcirc.el (autoload 'rcirc "rcirc" "\ @@ -23677,7 +23682,7 @@ ;;;*** ;;;### (autoloads (remote-compile) "rcompile" "net/rcompile.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from net/rcompile.el (autoload 'remote-compile "rcompile" "\ @@ -23689,7 +23694,7 @@ ;;;*** ;;;### (autoloads (re-builder) "re-builder" "emacs-lisp/re-builder.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from emacs-lisp/re-builder.el (defalias 'regexp-builder 're-builder) @@ -23707,7 +23712,7 @@ ;;;*** -;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (20229 31156)) +;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (20229 34587)) ;;; Generated autoloads from recentf.el (defvar recentf-mode nil "\ @@ -23737,7 +23742,7 @@ ;;;;;; string-rectangle delete-whitespace-rectangle open-rectangle ;;;;;; insert-rectangle yank-rectangle kill-rectangle extract-rectangle ;;;;;; delete-extract-rectangle delete-rectangle) "rect" "rect.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from rect.el (define-key ctl-x-r-map "c" 'clear-rectangle) (define-key ctl-x-r-map "k" 'kill-rectangle) @@ -23874,7 +23879,7 @@ ;;;*** ;;;### (autoloads (refill-mode) "refill" "textmodes/refill.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from textmodes/refill.el (autoload 'refill-mode "refill" "\ @@ -23895,7 +23900,7 @@ ;;;*** ;;;### (autoloads (reftex-reset-scanning-information reftex-mode -;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (20229 31156)) +;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (20229 34587)) ;;; Generated autoloads from textmodes/reftex.el (autoload 'turn-on-reftex "reftex" "\ @@ -23951,7 +23956,7 @@ ;;;*** ;;;### (autoloads (reftex-citation) "reftex-cite" "textmodes/reftex-cite.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from textmodes/reftex-cite.el (autoload 'reftex-citation "reftex-cite" "\ @@ -23981,7 +23986,7 @@ ;;;*** ;;;### (autoloads (reftex-isearch-minor-mode) "reftex-global" "textmodes/reftex-global.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from textmodes/reftex-global.el (autoload 'reftex-isearch-minor-mode "reftex-global" "\ @@ -23998,7 +24003,7 @@ ;;;*** ;;;### (autoloads (reftex-index-phrases-mode) "reftex-index" "textmodes/reftex-index.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from textmodes/reftex-index.el (autoload 'reftex-index-phrases-mode "reftex-index" "\ @@ -24031,7 +24036,7 @@ ;;;*** ;;;### (autoloads (reftex-all-document-files) "reftex-parse" "textmodes/reftex-parse.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from textmodes/reftex-parse.el (autoload 'reftex-all-document-files "reftex-parse" "\ @@ -24044,7 +24049,7 @@ ;;;*** ;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; 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)))) @@ -24054,7 +24059,7 @@ ;;;*** ;;;### (autoloads (regexp-opt-depth regexp-opt) "regexp-opt" "emacs-lisp/regexp-opt.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from emacs-lisp/regexp-opt.el (autoload 'regexp-opt "regexp-opt" "\ @@ -24085,7 +24090,7 @@ ;;;### (autoloads (remember-diary-extract-entries remember-clipboard ;;;;;; remember-other-frame remember) "remember" "textmodes/remember.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from textmodes/remember.el (autoload 'remember "remember" "\ @@ -24116,7 +24121,7 @@ ;;;*** -;;;### (autoloads (repeat) "repeat" "repeat.el" (20229 31156)) +;;;### (autoloads (repeat) "repeat" "repeat.el" (20229 34587)) ;;; Generated autoloads from repeat.el (autoload 'repeat "repeat" "\ @@ -24139,7 +24144,7 @@ ;;;*** ;;;### (autoloads (reporter-submit-bug-report) "reporter" "mail/reporter.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from mail/reporter.el (autoload 'reporter-submit-bug-report "reporter" "\ @@ -24171,7 +24176,7 @@ ;;;*** ;;;### (autoloads (reposition-window) "reposition" "reposition.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from reposition.el (autoload 'reposition-window "reposition" "\ @@ -24198,7 +24203,7 @@ ;;;*** ;;;### (autoloads (global-reveal-mode reveal-mode) "reveal" "reveal.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from reveal.el (autoload 'reveal-mode "reveal" "\ @@ -24234,7 +24239,7 @@ ;;;*** ;;;### (autoloads (make-ring ring-p) "ring" "emacs-lisp/ring.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from emacs-lisp/ring.el (autoload 'ring-p "ring" "\ @@ -24249,7 +24254,7 @@ ;;;*** -;;;### (autoloads (rlogin) "rlogin" "net/rlogin.el" (20229 31156)) +;;;### (autoloads (rlogin) "rlogin" "net/rlogin.el" (20229 34587)) ;;; Generated autoloads from net/rlogin.el (autoload 'rlogin "rlogin" "\ @@ -24298,7 +24303,7 @@ ;;;;;; rmail-secondary-file-directory rmail-primary-inbox-list rmail-highlighted-headers ;;;;;; rmail-retry-ignored-headers rmail-displayed-headers rmail-ignored-headers ;;;;;; rmail-user-mail-address-regexp rmail-movemail-variant-p) -;;;;;; "rmail" "mail/rmail.el" (20259 22152)) +;;;;;; "rmail" "mail/rmail.el" (20259 55615)) ;;; Generated autoloads from mail/rmail.el (autoload 'rmail-movemail-variant-p "rmail" "\ @@ -24482,7 +24487,7 @@ ;;;*** ;;;### (autoloads (rmail-output-body-to-file rmail-output-as-seen -;;;;;; rmail-output) "rmailout" "mail/rmailout.el" (20229 31156)) +;;;;;; rmail-output) "rmailout" "mail/rmailout.el" (20229 34587)) ;;; Generated autoloads from mail/rmailout.el (put 'rmail-output-file-alist 'risky-local-variable t) @@ -24547,7 +24552,7 @@ ;;;*** ;;;### (autoloads (rng-c-load-schema) "rng-cmpct" "nxml/rng-cmpct.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from nxml/rng-cmpct.el (autoload 'rng-c-load-schema "rng-cmpct" "\ @@ -24559,7 +24564,7 @@ ;;;*** ;;;### (autoloads (rng-nxml-mode-init) "rng-nxml" "nxml/rng-nxml.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from nxml/rng-nxml.el (autoload 'rng-nxml-mode-init "rng-nxml" "\ @@ -24572,7 +24577,7 @@ ;;;*** ;;;### (autoloads (rng-validate-mode) "rng-valid" "nxml/rng-valid.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from nxml/rng-valid.el (autoload 'rng-validate-mode "rng-valid" "\ @@ -24603,7 +24608,7 @@ ;;;*** ;;;### (autoloads (rng-xsd-compile) "rng-xsd" "nxml/rng-xsd.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from nxml/rng-xsd.el (put 'http://www\.w3\.org/2001/XMLSchema-datatypes 'rng-dt-compile 'rng-xsd-compile) @@ -24631,7 +24636,7 @@ ;;;*** ;;;### (autoloads (robin-use-package robin-modify-package robin-define-package) -;;;;;; "robin" "international/robin.el" (20211 417)) +;;;;;; "robin" "international/robin.el" (20209 49217)) ;;; Generated autoloads from international/robin.el (autoload 'robin-define-package "robin" "\ @@ -24664,7 +24669,7 @@ ;;;*** ;;;### (autoloads (toggle-rot13-mode rot13-other-window rot13-region -;;;;;; rot13-string rot13) "rot13" "rot13.el" (20229 31156)) +;;;;;; rot13-string rot13) "rot13" "rot13.el" (20229 34587)) ;;; Generated autoloads from rot13.el (autoload 'rot13 "rot13" "\ @@ -24702,7 +24707,7 @@ ;;;*** ;;;### (autoloads (rst-minor-mode rst-mode) "rst" "textmodes/rst.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from textmodes/rst.el (add-to-list 'auto-mode-alist (purecopy '("\\.re?st\\'" . rst-mode))) @@ -24739,7 +24744,7 @@ ;;;*** ;;;### (autoloads (ruby-mode) "ruby-mode" "progmodes/ruby-mode.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/ruby-mode.el (autoload 'ruby-mode "ruby-mode" "\ @@ -24761,7 +24766,7 @@ ;;;*** ;;;### (autoloads (ruler-mode) "ruler-mode" "ruler-mode.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from ruler-mode.el (defvar ruler-mode nil "\ @@ -24779,7 +24784,7 @@ ;;;*** ;;;### (autoloads (rx rx-to-string) "rx" "emacs-lisp/rx.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from emacs-lisp/rx.el (autoload 'rx-to-string "rx" "\ @@ -25091,7 +25096,7 @@ ;;;*** ;;;### (autoloads (savehist-mode) "savehist" "savehist.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from savehist.el (defvar savehist-mode nil "\ @@ -25123,7 +25128,7 @@ ;;;*** ;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/scheme.el (autoload 'scheme-mode "scheme" "\ @@ -25165,7 +25170,7 @@ ;;;*** ;;;### (autoloads (gnus-score-mode) "score-mode" "gnus/score-mode.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/score-mode.el (autoload 'gnus-score-mode "score-mode" "\ @@ -25179,7 +25184,7 @@ ;;;*** ;;;### (autoloads (scroll-all-mode) "scroll-all" "scroll-all.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from scroll-all.el (defvar scroll-all-mode nil "\ @@ -25205,7 +25210,7 @@ ;;;*** ;;;### (autoloads (scroll-lock-mode) "scroll-lock" "scroll-lock.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from scroll-lock.el (autoload 'scroll-lock-mode "scroll-lock" "\ @@ -25219,7 +25224,7 @@ ;;;*** -;;;### (autoloads nil "secrets" "net/secrets.el" (20229 31156)) +;;;### (autoloads nil "secrets" "net/secrets.el" (20229 34587)) ;;; Generated autoloads from net/secrets.el (when (featurep 'dbusbind) (autoload 'secrets-show-secrets "secrets" nil t)) @@ -25227,7 +25232,7 @@ ;;;*** ;;;### (autoloads (semantic-mode semantic-default-submodes) "semantic" -;;;;;; "cedet/semantic.el" (20229 31156)) +;;;;;; "cedet/semantic.el" (20229 34587)) ;;; Generated autoloads from cedet/semantic.el (defvar semantic-default-submodes '(global-semantic-idle-scheduler-mode global-semanticdb-minor-mode) "\ @@ -25281,7 +25286,7 @@ ;;;;;; mail-personal-alias-file mail-default-reply-to mail-archive-file-name ;;;;;; mail-header-separator send-mail-function mail-interactive ;;;;;; mail-self-blind mail-specify-envelope-from mail-from-style) -;;;;;; "sendmail" "mail/sendmail.el" (20259 20204)) +;;;;;; "sendmail" "mail/sendmail.el" (20238 49468)) ;;; Generated autoloads from mail/sendmail.el (defvar mail-from-style 'default "\ @@ -25564,7 +25569,7 @@ ;;;### (autoloads (server-save-buffers-kill-terminal server-mode ;;;;;; server-force-delete server-start) "server" "server.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from server.el (put 'server-host 'risky-local-variable t) @@ -25631,7 +25636,7 @@ ;;;*** -;;;### (autoloads (ses-mode) "ses" "ses.el" (20229 31156)) +;;;### (autoloads (ses-mode) "ses" "ses.el" (20229 34587)) ;;; Generated autoloads from ses.el (autoload 'ses-mode "ses" "\ @@ -25650,7 +25655,7 @@ ;;;*** ;;;### (autoloads (html-mode sgml-mode) "sgml-mode" "textmodes/sgml-mode.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from textmodes/sgml-mode.el (autoload 'sgml-mode "sgml-mode" "\ @@ -25716,7 +25721,7 @@ ;;;*** ;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/sh-script.el (put 'sh-shell 'safe-local-variable 'symbolp) @@ -25781,7 +25786,7 @@ ;;;*** ;;;### (autoloads (list-load-path-shadows) "shadow" "emacs-lisp/shadow.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from emacs-lisp/shadow.el (autoload 'list-load-path-shadows "shadow" "\ @@ -25832,7 +25837,7 @@ ;;;### (autoloads (shadow-initialize shadow-define-regexp-group shadow-define-literal-group ;;;;;; shadow-define-cluster) "shadowfile" "shadowfile.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from shadowfile.el (autoload 'shadow-define-cluster "shadowfile" "\ @@ -25871,7 +25876,7 @@ ;;;*** ;;;### (autoloads (shell shell-dumb-shell-regexp) "shell" "shell.el" -;;;;;; (20229 47225)) +;;;;;; (20230 13182)) ;;; Generated autoloads from shell.el (defvar shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe") "\ @@ -25920,7 +25925,7 @@ ;;;*** ;;;### (autoloads (shr-insert-document) "shr" "gnus/shr.el" (20259 -;;;;;; 25488)) +;;;;;; 55615)) ;;; Generated autoloads from gnus/shr.el (autoload 'shr-insert-document "shr" "\ @@ -25931,7 +25936,7 @@ ;;;*** ;;;### (autoloads (sieve-upload-and-bury sieve-upload sieve-manage) -;;;;;; "sieve" "gnus/sieve.el" (20229 31156)) +;;;;;; "sieve" "gnus/sieve.el" (20229 34587)) ;;; Generated autoloads from gnus/sieve.el (autoload 'sieve-manage "sieve" "\ @@ -25952,7 +25957,7 @@ ;;;*** ;;;### (autoloads (sieve-mode) "sieve-mode" "gnus/sieve-mode.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/sieve-mode.el (autoload 'sieve-mode "sieve-mode" "\ @@ -25968,7 +25973,7 @@ ;;;*** ;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from progmodes/simula.el (autoload 'simula-mode "simula" "\ @@ -26017,7 +26022,7 @@ ;;;*** ;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy-new -;;;;;; define-skeleton) "skeleton" "skeleton.el" (20229 31156)) +;;;;;; define-skeleton) "skeleton" "skeleton.el" (20229 34587)) ;;; Generated autoloads from skeleton.el (defvar skeleton-filter-function 'identity "\ @@ -26127,7 +26132,7 @@ ;;;*** ;;;### (autoloads (smerge-start-session smerge-mode smerge-ediff) -;;;;;; "smerge-mode" "vc/smerge-mode.el" (20229 31156)) +;;;;;; "smerge-mode" "vc/smerge-mode.el" (20229 34587)) ;;; Generated autoloads from vc/smerge-mode.el (autoload 'smerge-ediff "smerge-mode" "\ @@ -26152,7 +26157,7 @@ ;;;*** ;;;### (autoloads (smiley-buffer smiley-region) "smiley" "gnus/smiley.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/smiley.el (autoload 'smiley-region "smiley" "\ @@ -26170,7 +26175,7 @@ ;;;*** ;;;### (autoloads (smtpmail-send-queued-mail smtpmail-send-it) "smtpmail" -;;;;;; "mail/smtpmail.el" (20231 60882)) +;;;;;; "mail/smtpmail.el" (20232 10689)) ;;; Generated autoloads from mail/smtpmail.el (autoload 'smtpmail-send-it "smtpmail" "\ @@ -26185,7 +26190,7 @@ ;;;*** -;;;### (autoloads (snake) "snake" "play/snake.el" (20229 31156)) +;;;### (autoloads (snake) "snake" "play/snake.el" (20229 34587)) ;;; Generated autoloads from play/snake.el (autoload 'snake "snake" "\ @@ -26209,7 +26214,7 @@ ;;;*** ;;;### (autoloads (snmpv2-mode snmp-mode) "snmp-mode" "net/snmp-mode.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from net/snmp-mode.el (autoload 'snmp-mode "snmp-mode" "\ @@ -26239,7 +26244,7 @@ ;;;*** ;;;### (autoloads (sunrise-sunset) "solar" "calendar/solar.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from calendar/solar.el (autoload 'sunrise-sunset "solar" "\ @@ -26255,7 +26260,7 @@ ;;;*** ;;;### (autoloads (solitaire) "solitaire" "play/solitaire.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from play/solitaire.el (autoload 'solitaire "solitaire" "\ @@ -26332,7 +26337,7 @@ ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields ;;;;;; sort-fields sort-numeric-fields sort-pages sort-paragraphs -;;;;;; sort-lines sort-subr) "sort" "sort.el" (20229 31156)) +;;;;;; sort-lines sort-subr) "sort" "sort.el" (20229 34587)) ;;; Generated autoloads from sort.el (put 'sort-fold-case 'safe-local-variable 'booleanp) @@ -26477,7 +26482,7 @@ ;;;*** ;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from gnus/spam.el (autoload 'spam-initialize "spam" "\ @@ -26493,7 +26498,7 @@ ;;;### (autoloads (spam-report-deagentize spam-report-agentize spam-report-url-to-file ;;;;;; spam-report-url-ping-mm-url spam-report-process-queue) "spam-report" -;;;;;; "gnus/spam-report.el" (20229 31156)) +;;;;;; "gnus/spam-report.el" (20229 34587)) ;;; Generated autoloads from gnus/spam-report.el (autoload 'spam-report-process-queue "spam-report" "\ @@ -26536,7 +26541,7 @@ ;;;*** ;;;### (autoloads (speedbar-get-focus speedbar-frame-mode) "speedbar" -;;;;;; "speedbar.el" (20229 31156)) +;;;;;; "speedbar.el" (20229 34587)) ;;; Generated autoloads from speedbar.el (defalias 'speedbar 'speedbar-frame-mode) @@ -26561,7 +26566,7 @@ ;;;*** ;;;### (autoloads (snarf-spooks spook) "spook" "play/spook.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from play/spook.el (autoload 'spook "spook" "\ @@ -26580,7 +26585,7 @@ ;;;;;; sql-ms sql-ingres sql-solid sql-mysql sql-sqlite sql-informix ;;;;;; sql-sybase sql-oracle sql-product-interactive sql-connect ;;;;;; sql-mode sql-help sql-add-product-keywords) "sql" "progmodes/sql.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/sql.el (autoload 'sql-add-product-keywords "sql" "\ @@ -27076,7 +27081,7 @@ ;;;*** ;;;### (autoloads (srecode-template-mode) "srecode/srt-mode" "cedet/srecode/srt-mode.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from cedet/srecode/srt-mode.el (autoload 'srecode-template-mode "srecode/srt-mode" "\ @@ -27089,7 +27094,7 @@ ;;;*** ;;;### (autoloads (starttls-open-stream) "starttls" "gnus/starttls.el" -;;;;;; (20229 47145)) +;;;;;; (20229 34587)) ;;; Generated autoloads from gnus/starttls.el (autoload 'starttls-open-stream "starttls" "\ @@ -27117,7 +27122,7 @@ ;;;;;; strokes-help strokes-describe-stroke strokes-do-complex-stroke ;;;;;; strokes-do-stroke strokes-read-complex-stroke strokes-read-stroke ;;;;;; strokes-global-set-stroke) "strokes" "strokes.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from strokes.el (autoload 'strokes-global-set-stroke "strokes" "\ @@ -27231,7 +27236,7 @@ ;;;*** ;;;### (autoloads (studlify-buffer studlify-word studlify-region) -;;;;;; "studly" "play/studly.el" (20119 34052)) +;;;;;; "studly" "play/studly.el" (19845 45374)) ;;; Generated autoloads from play/studly.el (autoload 'studlify-region "studly" "\ @@ -27252,7 +27257,7 @@ ;;;*** ;;;### (autoloads (global-subword-mode subword-mode) "subword" "progmodes/subword.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/subword.el (autoload 'subword-mode "subword" "\ @@ -27308,7 +27313,7 @@ ;;;*** ;;;### (autoloads (sc-cite-original) "supercite" "mail/supercite.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from mail/supercite.el (autoload 'sc-cite-original "supercite" "\ @@ -27341,7 +27346,7 @@ ;;;*** ;;;### (autoloads (gpm-mouse-mode) "t-mouse" "t-mouse.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from t-mouse.el (define-obsolete-function-alias 't-mouse-mode 'gpm-mouse-mode "23.1") @@ -27369,7 +27374,7 @@ ;;;*** -;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (20229 31156)) +;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (20229 34587)) ;;; Generated autoloads from tabify.el (autoload 'untabify "tabify" "\ @@ -27404,7 +27409,7 @@ ;;;;;; table-recognize table-insert-row-column table-insert-column ;;;;;; table-insert-row table-insert table-point-left-cell-hook ;;;;;; table-point-entered-cell-hook table-load-hook table-cell-map-hook) -;;;;;; "table" "textmodes/table.el" (20229 31156)) +;;;;;; "table" "textmodes/table.el" (20229 34587)) ;;; Generated autoloads from textmodes/table.el (defvar table-cell-map-hook nil "\ @@ -27993,7 +27998,7 @@ ;;;*** ;;;### (autoloads (tabulated-list-mode) "tabulated-list" "emacs-lisp/tabulated-list.el" -;;;;;; (20257 27597)) +;;;;;; (20257 13883)) ;;; Generated autoloads from emacs-lisp/tabulated-list.el (autoload 'tabulated-list-mode "tabulated-list" "\ @@ -28035,7 +28040,7 @@ ;;;*** -;;;### (autoloads (talk talk-connect) "talk" "talk.el" (20229 31156)) +;;;### (autoloads (talk talk-connect) "talk" "talk.el" (20229 34587)) ;;; Generated autoloads from talk.el (autoload 'talk-connect "talk" "\ @@ -28050,7 +28055,7 @@ ;;;*** -;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (20229 31156)) +;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (20229 34587)) ;;; Generated autoloads from tar-mode.el (autoload 'tar-mode "tar-mode" "\ @@ -28074,7 +28079,7 @@ ;;;*** ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" -;;;;;; "progmodes/tcl.el" (20229 31156)) +;;;;;; "progmodes/tcl.el" (20229 34587)) ;;; Generated autoloads from progmodes/tcl.el (autoload 'tcl-mode "tcl" "\ @@ -28122,7 +28127,7 @@ ;;;*** -;;;### (autoloads (rsh telnet) "telnet" "net/telnet.el" (20229 31156)) +;;;### (autoloads (rsh telnet) "telnet" "net/telnet.el" (20229 34587)) ;;; Generated autoloads from net/telnet.el (autoload 'telnet "telnet" "\ @@ -28148,7 +28153,7 @@ ;;;*** ;;;### (autoloads (serial-term ansi-term term make-term) "term" "term.el" -;;;;;; (20256 60852)) +;;;;;; (20256 47696)) ;;; Generated autoloads from term.el (autoload 'make-term "term" "\ @@ -28191,7 +28196,7 @@ ;;;*** ;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from terminal.el (autoload 'terminal-emulator "terminal" "\ @@ -28228,7 +28233,7 @@ ;;;*** ;;;### (autoloads (testcover-this-defun) "testcover" "emacs-lisp/testcover.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from emacs-lisp/testcover.el (autoload 'testcover-this-defun "testcover" "\ @@ -28238,7 +28243,7 @@ ;;;*** -;;;### (autoloads (tetris) "tetris" "play/tetris.el" (20229 31156)) +;;;### (autoloads (tetris) "tetris" "play/tetris.el" (20229 34587)) ;;; Generated autoloads from play/tetris.el (autoload 'tetris "tetris" "\ @@ -28269,7 +28274,7 @@ ;;;;;; tex-start-commands tex-start-options slitex-run-command latex-run-command ;;;;;; tex-run-command tex-offer-save tex-main-file tex-first-line-header-regexp ;;;;;; tex-directory tex-shell-file-name) "tex-mode" "textmodes/tex-mode.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from textmodes/tex-mode.el (defvar tex-shell-file-name nil "\ @@ -28571,7 +28576,7 @@ ;;;*** ;;;### (autoloads (texi2info texinfo-format-region texinfo-format-buffer) -;;;;;; "texinfmt" "textmodes/texinfmt.el" (20229 31156)) +;;;;;; "texinfmt" "textmodes/texinfmt.el" (20229 34587)) ;;; Generated autoloads from textmodes/texinfmt.el (autoload 'texinfo-format-buffer "texinfmt" "\ @@ -28611,7 +28616,7 @@ ;;;*** ;;;### (autoloads (texinfo-mode texinfo-close-quote texinfo-open-quote) -;;;;;; "texinfo" "textmodes/texinfo.el" (20229 31156)) +;;;;;; "texinfo" "textmodes/texinfo.el" (20229 34587)) ;;; Generated autoloads from textmodes/texinfo.el (defvar texinfo-open-quote (purecopy "``") "\ @@ -28697,7 +28702,7 @@ ;;;### (autoloads (thai-composition-function thai-compose-buffer ;;;;;; thai-compose-string thai-compose-region) "thai-util" "language/thai-util.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from language/thai-util.el (autoload 'thai-compose-region "thai-util" "\ @@ -28726,7 +28731,7 @@ ;;;### (autoloads (list-at-point number-at-point symbol-at-point ;;;;;; sexp-at-point thing-at-point bounds-of-thing-at-point forward-thing) -;;;;;; "thingatpt" "thingatpt.el" (20229 31156)) +;;;;;; "thingatpt" "thingatpt.el" (20229 34587)) ;;; Generated autoloads from thingatpt.el (autoload 'forward-thing "thingatpt" "\ @@ -28789,7 +28794,7 @@ ;;;### (autoloads (thumbs-dired-setroot thumbs-dired-show thumbs-dired-show-marked ;;;;;; thumbs-show-from-dir thumbs-find-thumb) "thumbs" "thumbs.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from thumbs.el (autoload 'thumbs-find-thumb "thumbs" "\ @@ -28828,7 +28833,7 @@ ;;;;;; tibetan-decompose-string tibetan-decompose-region tibetan-compose-region ;;;;;; tibetan-compose-string tibetan-transcription-to-tibetan tibetan-tibetan-to-transcription ;;;;;; tibetan-char-p) "tibet-util" "language/tibet-util.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from language/tibet-util.el (autoload 'tibetan-char-p "tibet-util" "\ @@ -28902,7 +28907,7 @@ ;;;*** ;;;### (autoloads (tildify-buffer tildify-region) "tildify" "textmodes/tildify.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from textmodes/tildify.el (autoload 'tildify-region "tildify" "\ @@ -28927,7 +28932,7 @@ ;;;### (autoloads (emacs-init-time emacs-uptime display-time-world ;;;;;; display-time-mode display-time display-time-day-and-date) -;;;;;; "time" "time.el" (20230 53294)) +;;;;;; "time" "time.el" (20230 55355)) ;;; Generated autoloads from time.el (defvar display-time-day-and-date nil "\ @@ -28993,7 +28998,7 @@ ;;;;;; time-to-day-in-year date-leap-year-p days-between date-to-day ;;;;;; time-add time-subtract time-since days-to-time time-less-p ;;;;;; seconds-to-time date-to-time) "time-date" "calendar/time-date.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from calendar/time-date.el (autoload 'date-to-time "time-date" "\ @@ -29107,7 +29112,7 @@ ;;;*** ;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp" -;;;;;; "time-stamp.el" (20229 31156)) +;;;;;; "time-stamp.el" (20229 34587)) ;;; Generated autoloads from time-stamp.el (put 'time-stamp-format 'safe-local-variable 'stringp) (put 'time-stamp-time-zone 'safe-local-variable 'string-or-null-p) @@ -29151,7 +29156,7 @@ ;;;;;; timeclock-workday-remaining-string timeclock-reread-log timeclock-query-out ;;;;;; timeclock-change timeclock-status-string timeclock-out timeclock-in ;;;;;; timeclock-modeline-display) "timeclock" "calendar/timeclock.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from calendar/timeclock.el (autoload 'timeclock-modeline-display "timeclock" "\ @@ -29251,7 +29256,7 @@ ;;;*** ;;;### (autoloads (batch-titdic-convert titdic-convert) "titdic-cnv" -;;;;;; "international/titdic-cnv.el" (20229 31156)) +;;;;;; "international/titdic-cnv.el" (20229 34587)) ;;; Generated autoloads from international/titdic-cnv.el (autoload 'titdic-convert "titdic-cnv" "\ @@ -29274,7 +29279,7 @@ ;;;*** ;;;### (autoloads (tmm-prompt tmm-menubar-mouse tmm-menubar) "tmm" -;;;;;; "tmm.el" (20229 31156)) +;;;;;; "tmm.el" (20229 34587)) ;;; Generated autoloads from tmm.el (define-key global-map "\M-`" 'tmm-menubar) (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse) @@ -29314,7 +29319,7 @@ ;;;### (autoloads (todo-show todo-cp todo-mode todo-print todo-top-priorities ;;;;;; todo-insert-item todo-add-item-non-interactively todo-add-category) -;;;;;; "todo-mode" "calendar/todo-mode.el" (20229 31156)) +;;;;;; "todo-mode" "calendar/todo-mode.el" (20229 34587)) ;;; Generated autoloads from calendar/todo-mode.el (autoload 'todo-add-category "todo-mode" "\ @@ -29374,7 +29379,7 @@ ;;;### (autoloads (tool-bar-local-item-from-menu tool-bar-add-item-from-menu ;;;;;; tool-bar-local-item tool-bar-add-item toggle-tool-bar-mode-from-frame) -;;;;;; "tool-bar" "tool-bar.el" (20229 31156)) +;;;;;; "tool-bar" "tool-bar.el" (20229 34587)) ;;; Generated autoloads from tool-bar.el (autoload 'toggle-tool-bar-mode-from-frame "tool-bar" "\ @@ -29445,7 +29450,7 @@ ;;;*** ;;;### (autoloads (tpu-edt-on tpu-edt-mode) "tpu-edt" "emulation/tpu-edt.el" -;;;;;; (20229 47145)) +;;;;;; (20229 36384)) ;;; Generated autoloads from emulation/tpu-edt.el (defvar tpu-edt-mode nil "\ @@ -29472,7 +29477,7 @@ ;;;*** ;;;### (autoloads (tpu-mapper) "tpu-mapper" "emulation/tpu-mapper.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from emulation/tpu-mapper.el (autoload 'tpu-mapper "tpu-mapper" "\ @@ -29506,7 +29511,7 @@ ;;;*** -;;;### (autoloads (tq-create) "tq" "emacs-lisp/tq.el" (20229 31156)) +;;;### (autoloads (tq-create) "tq" "emacs-lisp/tq.el" (20229 34587)) ;;; Generated autoloads from emacs-lisp/tq.el (autoload 'tq-create "tq" "\ @@ -29520,7 +29525,7 @@ ;;;*** ;;;### (autoloads (trace-function-background trace-function trace-buffer) -;;;;;; "trace" "emacs-lisp/trace.el" (20229 31156)) +;;;;;; "trace" "emacs-lisp/trace.el" (20229 34587)) ;;; Generated autoloads from emacs-lisp/trace.el (defvar trace-buffer (purecopy "*trace-output*") "\ @@ -29557,7 +29562,7 @@ ;;;### (autoloads (tramp-unload-tramp tramp-completion-handle-file-name-completion ;;;;;; tramp-completion-handle-file-name-all-completions tramp-unload-file-name-handlers ;;;;;; tramp-file-name-handler tramp-syntax tramp-mode) "tramp" -;;;;;; "net/tramp.el" (20252 56601)) +;;;;;; "net/tramp.el" (20253 16827)) ;;; Generated autoloads from net/tramp.el (defvar tramp-mode t "\ @@ -29690,7 +29695,7 @@ ;;;*** ;;;### (autoloads (tramp-ftp-enable-ange-ftp) "tramp-ftp" "net/tramp-ftp.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from net/tramp-ftp.el (autoload 'tramp-ftp-enable-ange-ftp "tramp-ftp" "\ @@ -29701,7 +29706,7 @@ ;;;*** ;;;### (autoloads (help-with-tutorial) "tutorial" "tutorial.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from tutorial.el (autoload 'help-with-tutorial "tutorial" "\ @@ -29726,7 +29731,7 @@ ;;;*** ;;;### (autoloads (tai-viet-composition-function) "tv-util" "language/tv-util.el" -;;;;;; (20119 34052)) +;;;;;; (19845 45374)) ;;; Generated autoloads from language/tv-util.el (autoload 'tai-viet-composition-function "tv-util" "\ @@ -29737,7 +29742,7 @@ ;;;*** ;;;### (autoloads (2C-split 2C-associate-buffer 2C-two-columns) "two-column" -;;;;;; "textmodes/two-column.el" (20229 31156)) +;;;;;; "textmodes/two-column.el" (20229 34587)) ;;; Generated autoloads from textmodes/two-column.el (autoload '2C-command "two-column" () t 'keymap) (global-set-key "\C-x6" '2C-command) @@ -29788,7 +29793,7 @@ ;;;;;; type-break type-break-mode type-break-keystroke-threshold ;;;;;; type-break-good-break-interval type-break-good-rest-interval ;;;;;; type-break-interval type-break-mode) "type-break" "type-break.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from type-break.el (defvar type-break-mode nil "\ @@ -29970,7 +29975,7 @@ ;;;*** -;;;### (autoloads (uce-reply-to-uce) "uce" "mail/uce.el" (20229 31156)) +;;;### (autoloads (uce-reply-to-uce) "uce" "mail/uce.el" (20229 34587)) ;;; Generated autoloads from mail/uce.el (autoload 'uce-reply-to-uce "uce" "\ @@ -29988,7 +29993,7 @@ ;;;;;; ucs-normalize-NFKC-string ucs-normalize-NFKC-region ucs-normalize-NFKD-string ;;;;;; ucs-normalize-NFKD-region ucs-normalize-NFC-string ucs-normalize-NFC-region ;;;;;; ucs-normalize-NFD-string ucs-normalize-NFD-region) "ucs-normalize" -;;;;;; "international/ucs-normalize.el" (20229 31156)) +;;;;;; "international/ucs-normalize.el" (20229 34587)) ;;; Generated autoloads from international/ucs-normalize.el (autoload 'ucs-normalize-NFD-region "ucs-normalize" "\ @@ -30054,7 +30059,7 @@ ;;;*** ;;;### (autoloads (ununderline-region underline-region) "underline" -;;;;;; "textmodes/underline.el" (20229 31156)) +;;;;;; "textmodes/underline.el" (20229 34587)) ;;; Generated autoloads from textmodes/underline.el (autoload 'underline-region "underline" "\ @@ -30075,7 +30080,7 @@ ;;;*** ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "mail/unrmail.el" -;;;;;; (20235 47855)) +;;;;;; (20235 41048)) ;;; Generated autoloads from mail/unrmail.el (autoload 'batch-unrmail "unrmail" "\ @@ -30095,7 +30100,7 @@ ;;;*** ;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from emacs-lisp/unsafep.el (autoload 'unsafep "unsafep" "\ @@ -30108,7 +30113,7 @@ ;;;*** ;;;### (autoloads (url-retrieve-synchronously url-retrieve) "url" -;;;;;; "url/url.el" (20229 31156)) +;;;;;; "url/url.el" (20229 34587)) ;;; Generated autoloads from url/url.el (autoload 'url-retrieve "url" "\ @@ -30150,7 +30155,7 @@ ;;;*** ;;;### (autoloads (url-register-auth-scheme url-get-authentication) -;;;;;; "url-auth" "url/url-auth.el" (20240 11630)) +;;;;;; "url-auth" "url/url-auth.el" (20238 49468)) ;;; Generated autoloads from url/url-auth.el (autoload 'url-get-authentication "url-auth" "\ @@ -30192,7 +30197,7 @@ ;;;*** ;;;### (autoloads (url-cache-extract url-is-cached url-store-in-cache) -;;;;;; "url-cache" "url/url-cache.el" (20229 31156)) +;;;;;; "url-cache" "url/url-cache.el" (20229 34587)) ;;; Generated autoloads from url/url-cache.el (autoload 'url-store-in-cache "url-cache" "\ @@ -30213,7 +30218,7 @@ ;;;*** -;;;### (autoloads (url-cid) "url-cid" "url/url-cid.el" (20229 31156)) +;;;### (autoloads (url-cid) "url-cid" "url/url-cid.el" (20229 34587)) ;;; Generated autoloads from url/url-cid.el (autoload 'url-cid "url-cid" "\ @@ -30224,7 +30229,7 @@ ;;;*** ;;;### (autoloads (url-dav-vc-registered url-dav-supported-p) "url-dav" -;;;;;; "url/url-dav.el" (20229 31156)) +;;;;;; "url/url-dav.el" (20229 34587)) ;;; Generated autoloads from url/url-dav.el (autoload 'url-dav-supported-p "url-dav" "\ @@ -30240,7 +30245,7 @@ ;;;*** ;;;### (autoloads (url-file) "url-file" "url/url-file.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from url/url-file.el (autoload 'url-file "url-file" "\ @@ -30251,7 +30256,7 @@ ;;;*** ;;;### (autoloads (url-open-stream url-gateway-nslookup-host) "url-gw" -;;;;;; "url/url-gw.el" (20229 31156)) +;;;;;; "url/url-gw.el" (20229 34587)) ;;; Generated autoloads from url/url-gw.el (autoload 'url-gateway-nslookup-host "url-gw" "\ @@ -30271,7 +30276,7 @@ ;;;### (autoloads (url-insert-file-contents url-file-local-copy url-copy-file ;;;;;; url-file-handler url-handler-mode) "url-handlers" "url/url-handlers.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from url/url-handlers.el (defvar url-handler-mode nil "\ @@ -30326,7 +30331,7 @@ ;;;*** ;;;### (autoloads (url-http-options url-http-file-attributes url-http-file-exists-p -;;;;;; url-http) "url-http" "url/url-http.el" (20229 31156)) +;;;;;; url-http) "url-http" "url/url-http.el" (20229 34587)) ;;; Generated autoloads from url/url-http.el (autoload 'url-http "url-http" "\ @@ -30392,7 +30397,7 @@ ;;;*** -;;;### (autoloads (url-irc) "url-irc" "url/url-irc.el" (20229 31156)) +;;;### (autoloads (url-irc) "url-irc" "url/url-irc.el" (20229 34587)) ;;; Generated autoloads from url/url-irc.el (autoload 'url-irc "url-irc" "\ @@ -30403,7 +30408,7 @@ ;;;*** ;;;### (autoloads (url-ldap) "url-ldap" "url/url-ldap.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from url/url-ldap.el (autoload 'url-ldap "url-ldap" "\ @@ -30417,7 +30422,7 @@ ;;;*** ;;;### (autoloads (url-mailto url-mail) "url-mailto" "url/url-mailto.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from url/url-mailto.el (autoload 'url-mail "url-mailto" "\ @@ -30433,7 +30438,7 @@ ;;;*** ;;;### (autoloads (url-data url-generic-emulator-loader url-info -;;;;;; url-man) "url-misc" "url/url-misc.el" (20229 31156)) +;;;;;; url-man) "url-misc" "url/url-misc.el" (20229 34587)) ;;; Generated autoloads from url/url-misc.el (autoload 'url-man "url-misc" "\ @@ -30465,7 +30470,7 @@ ;;;*** ;;;### (autoloads (url-snews url-news) "url-news" "url/url-news.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from url/url-news.el (autoload 'url-news "url-news" "\ @@ -30482,7 +30487,7 @@ ;;;### (autoloads (url-ns-user-pref url-ns-prefs isInNet isResolvable ;;;;;; dnsResolve dnsDomainIs isPlainHostName) "url-ns" "url/url-ns.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from url/url-ns.el (autoload 'isPlainHostName "url-ns" "\ @@ -30523,7 +30528,7 @@ ;;;*** ;;;### (autoloads (url-generic-parse-url url-recreate-url) "url-parse" -;;;;;; "url/url-parse.el" (20229 31156)) +;;;;;; "url/url-parse.el" (20229 34587)) ;;; Generated autoloads from url/url-parse.el (autoload 'url-recreate-url "url-parse" "\ @@ -30541,7 +30546,7 @@ ;;;*** ;;;### (autoloads (url-setup-privacy-info) "url-privacy" "url/url-privacy.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from url/url-privacy.el (autoload 'url-setup-privacy-info "url-privacy" "\ @@ -30552,7 +30557,7 @@ ;;;*** ;;;### (autoloads (url-queue-retrieve) "url-queue" "url/url-queue.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from url/url-queue.el (autoload 'url-queue-retrieve "url-queue" "\ @@ -30571,7 +30576,7 @@ ;;;;;; url-pretty-length url-strip-leading-spaces url-eat-trailing-space ;;;;;; url-get-normalized-date url-lazy-message url-normalize-url ;;;;;; url-insert-entities-in-string url-parse-args url-debug url-debug) -;;;;;; "url-util" "url/url-util.el" (20229 31156)) +;;;;;; "url-util" "url/url-util.el" (20229 34587)) ;;; Generated autoloads from url/url-util.el (defvar url-debug nil "\ @@ -30707,7 +30712,7 @@ ;;;*** ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) -;;;;;; "userlock" "userlock.el" (20229 31156)) +;;;;;; "userlock" "userlock.el" (20229 34587)) ;;; Generated autoloads from userlock.el (autoload 'ask-user-about-lock "userlock" "\ @@ -30737,7 +30742,7 @@ ;;;### (autoloads (utf-7-imap-pre-write-conversion utf-7-pre-write-conversion ;;;;;; utf-7-imap-post-read-conversion utf-7-post-read-conversion) -;;;;;; "utf-7" "international/utf-7.el" (20229 31156)) +;;;;;; "utf-7" "international/utf-7.el" (20229 34587)) ;;; Generated autoloads from international/utf-7.el (autoload 'utf-7-post-read-conversion "utf-7" "\ @@ -30762,7 +30767,7 @@ ;;;*** -;;;### (autoloads (utf7-encode) "utf7" "gnus/utf7.el" (20229 31156)) +;;;### (autoloads (utf7-encode) "utf7" "gnus/utf7.el" (20229 34587)) ;;; Generated autoloads from gnus/utf7.el (autoload 'utf7-encode "utf7" "\ @@ -30774,7 +30779,7 @@ ;;;### (autoloads (uudecode-decode-region uudecode-decode-region-internal ;;;;;; uudecode-decode-region-external) "uudecode" "mail/uudecode.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from mail/uudecode.el (autoload 'uudecode-decode-region-external "uudecode" "\ @@ -30805,7 +30810,7 @@ ;;;;;; vc-revision-other-window vc-root-diff vc-ediff vc-version-ediff ;;;;;; vc-diff vc-version-diff vc-register vc-next-action vc-before-checkin-hook ;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc/vc.el" (20255 -;;;;;; 37778)) +;;;;;; 18260)) ;;; Generated autoloads from vc/vc.el (defvar vc-checkout-hook nil "\ @@ -31081,7 +31086,7 @@ ;;;*** ;;;### (autoloads (vc-annotate) "vc-annotate" "vc/vc-annotate.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from vc/vc-annotate.el (autoload 'vc-annotate "vc-annotate" "\ @@ -31118,7 +31123,7 @@ ;;;*** -;;;### (autoloads nil "vc-arch" "vc/vc-arch.el" (20229 31156)) +;;;### (autoloads nil "vc-arch" "vc/vc-arch.el" (20229 34587)) ;;; Generated autoloads from vc/vc-arch.el (defun vc-arch-registered (file) (if (vc-find-root file "{arch}/=tagging-method") @@ -31128,7 +31133,7 @@ ;;;*** -;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (20229 31156)) +;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (20229 34587)) ;;; Generated autoloads from vc/vc-bzr.el (defconst vc-bzr-admin-dirname ".bzr" "\ @@ -31144,7 +31149,7 @@ ;;;*** -;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (20229 31156)) +;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (20229 34587)) ;;; Generated autoloads from vc/vc-cvs.el (defun vc-cvs-registered (f) "Return non-nil if file F is registered with CVS." @@ -31155,7 +31160,7 @@ ;;;*** -;;;### (autoloads (vc-dir) "vc-dir" "vc/vc-dir.el" (20229 31156)) +;;;### (autoloads (vc-dir) "vc-dir" "vc/vc-dir.el" (20229 34587)) ;;; Generated autoloads from vc/vc-dir.el (autoload 'vc-dir "vc-dir" "\ @@ -31180,7 +31185,7 @@ ;;;*** ;;;### (autoloads (vc-do-command) "vc-dispatcher" "vc/vc-dispatcher.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from vc/vc-dispatcher.el (autoload 'vc-do-command "vc-dispatcher" "\ @@ -31203,7 +31208,7 @@ ;;;*** -;;;### (autoloads nil "vc-git" "vc/vc-git.el" (20229 31156)) +;;;### (autoloads nil "vc-git" "vc/vc-git.el" (20229 34587)) ;;; Generated autoloads from vc/vc-git.el (defun vc-git-registered (file) "Return non-nil if FILE is registered with git." @@ -31214,7 +31219,7 @@ ;;;*** -;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (20229 31156)) +;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (20229 34587)) ;;; Generated autoloads from vc/vc-hg.el (defun vc-hg-registered (file) "Return non-nil if FILE is registered with hg." @@ -31225,7 +31230,7 @@ ;;;*** -;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (20229 31156)) +;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (20229 34587)) ;;; Generated autoloads from vc/vc-mtn.el (defconst vc-mtn-admin-dir "_MTN" "\ @@ -31242,7 +31247,7 @@ ;;;*** ;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc/vc-rcs.el" -;;;;;; (20254 54879)) +;;;;;; (20254 37696)) ;;; Generated autoloads from vc/vc-rcs.el (defvar vc-rcs-master-templates (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ @@ -31256,7 +31261,7 @@ ;;;*** ;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc/vc-sccs.el" -;;;;;; (20254 54879)) +;;;;;; (20254 37696)) ;;; Generated autoloads from vc/vc-sccs.el (defvar vc-sccs-master-templates (purecopy '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ @@ -31273,7 +31278,7 @@ ;;;*** -;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (20229 31156)) +;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (20229 34587)) ;;; Generated autoloads from vc/vc-svn.el (defun vc-svn-registered (f) (let ((admin-dir (cond ((and (eq system-type 'windows-nt) @@ -31287,7 +31292,7 @@ ;;;*** ;;;### (autoloads (vera-mode) "vera-mode" "progmodes/vera-mode.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/vera-mode.el (add-to-list 'auto-mode-alist (cons (purecopy "\\.vr[hi]?\\'") 'vera-mode)) @@ -31345,7 +31350,7 @@ ;;;*** ;;;### (autoloads (verilog-mode) "verilog-mode" "progmodes/verilog-mode.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/verilog-mode.el (autoload 'verilog-mode "verilog-mode" "\ @@ -31484,7 +31489,7 @@ ;;;*** ;;;### (autoloads (vhdl-mode) "vhdl-mode" "progmodes/vhdl-mode.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from progmodes/vhdl-mode.el (autoload 'vhdl-mode "vhdl-mode" "\ @@ -32025,7 +32030,7 @@ ;;;*** -;;;### (autoloads (vi-mode) "vi" "emulation/vi.el" (20119 34052)) +;;;### (autoloads (vi-mode) "vi" "emulation/vi.el" (20104 14925)) ;;; Generated autoloads from emulation/vi.el (autoload 'vi-mode "vi" "\ @@ -32080,7 +32085,7 @@ ;;;### (autoloads (viqr-pre-write-conversion viqr-post-read-conversion ;;;;;; viet-encode-viqr-buffer viet-encode-viqr-region viet-decode-viqr-buffer ;;;;;; viet-decode-viqr-region viet-encode-viscii-char) "viet-util" -;;;;;; "language/viet-util.el" (20229 31156)) +;;;;;; "language/viet-util.el" (20229 34587)) ;;; Generated autoloads from language/viet-util.el (autoload 'viet-encode-viscii-char "viet-util" "\ @@ -32128,7 +32133,7 @@ ;;;;;; view-mode view-buffer-other-frame view-buffer-other-window ;;;;;; view-buffer view-file-other-frame view-file-other-window ;;;;;; view-file kill-buffer-if-not-modified view-remove-frame-by-deleting) -;;;;;; "view" "view.el" (20229 31156)) +;;;;;; "view" "view.el" (20265 7997)) ;;; Generated autoloads from view.el (defvar view-remove-frame-by-deleting t "\ @@ -32371,7 +32376,7 @@ ;;;*** ;;;### (autoloads (vip-mode vip-setup) "vip" "emulation/vip.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from emulation/vip.el (autoload 'vip-setup "vip" "\ @@ -32387,7 +32392,7 @@ ;;;*** ;;;### (autoloads (viper-mode toggle-viper-mode) "viper" "emulation/viper.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from emulation/viper.el (autoload 'toggle-viper-mode "viper" "\ @@ -32404,7 +32409,7 @@ ;;;*** ;;;### (autoloads (warn lwarn display-warning) "warnings" "emacs-lisp/warnings.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from emacs-lisp/warnings.el (defvar warning-prefix-function nil "\ @@ -32494,7 +32499,7 @@ ;;;*** ;;;### (autoloads (wdired-change-to-wdired-mode) "wdired" "wdired.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from wdired.el (autoload 'wdired-change-to-wdired-mode "wdired" "\ @@ -32510,7 +32515,7 @@ ;;;*** -;;;### (autoloads (webjump) "webjump" "net/webjump.el" (20229 31156)) +;;;### (autoloads (webjump) "webjump" "net/webjump.el" (20229 34587)) ;;; Generated autoloads from net/webjump.el (autoload 'webjump "webjump" "\ @@ -32527,7 +32532,7 @@ ;;;*** ;;;### (autoloads (which-function-mode which-func-mode) "which-func" -;;;;;; "progmodes/which-func.el" (20231 40198)) +;;;;;; "progmodes/which-func.el" (20232 10689)) ;;; Generated autoloads from progmodes/which-func.el (put 'which-func-format 'risky-local-variable t) (put 'which-func-current 'risky-local-variable t) @@ -32563,7 +32568,7 @@ ;;;### (autoloads (whitespace-report-region whitespace-report whitespace-cleanup-region ;;;;;; whitespace-cleanup global-whitespace-toggle-options whitespace-toggle-options ;;;;;; global-whitespace-newline-mode global-whitespace-mode whitespace-newline-mode -;;;;;; whitespace-mode) "whitespace" "whitespace.el" (20229 31156)) +;;;;;; whitespace-mode) "whitespace" "whitespace.el" (20229 34587)) ;;; Generated autoloads from whitespace.el (autoload 'whitespace-mode "whitespace" "\ @@ -32962,7 +32967,7 @@ ;;;*** ;;;### (autoloads (widget-minor-mode widget-browse-other-window widget-browse -;;;;;; widget-browse-at) "wid-browse" "wid-browse.el" (20229 31156)) +;;;;;; widget-browse-at) "wid-browse" "wid-browse.el" (20229 34587)) ;;; Generated autoloads from wid-browse.el (autoload 'widget-browse-at "wid-browse" "\ @@ -32989,7 +32994,7 @@ ;;;### (autoloads (widget-setup widget-insert widget-delete widget-create ;;;;;; widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from wid-edit.el (autoload 'widgetp "wid-edit" "\ @@ -33033,7 +33038,7 @@ ;;;### (autoloads (windmove-default-keybindings windmove-down windmove-right ;;;;;; windmove-up windmove-left) "windmove" "windmove.el" (20250 -;;;;;; 53480)) +;;;;;; 40679)) ;;; Generated autoloads from windmove.el (autoload 'windmove-left "windmove" "\ @@ -33086,7 +33091,7 @@ ;;;*** ;;;### (autoloads (winner-mode winner-mode) "winner" "winner.el" -;;;;;; (20237 33565)) +;;;;;; (20237 28610)) ;;; Generated autoloads from winner.el (defvar winner-mode nil "\ @@ -33105,7 +33110,7 @@ ;;;*** ;;;### (autoloads (woman-bookmark-jump woman-find-file woman-dired-find-file -;;;;;; woman woman-locale) "woman" "woman.el" (20229 31156)) +;;;;;; woman woman-locale) "woman" "woman.el" (20229 34587)) ;;; Generated autoloads from woman.el (defvar woman-locale nil "\ @@ -33154,7 +33159,7 @@ ;;;*** ;;;### (autoloads (wordstar-mode) "ws-mode" "emulation/ws-mode.el" -;;;;;; (20229 31156)) +;;;;;; (20229 34587)) ;;; Generated autoloads from emulation/ws-mode.el (autoload 'wordstar-mode "ws-mode" "\ @@ -33266,7 +33271,7 @@ ;;;*** -;;;### (autoloads (xesam-search) "xesam" "net/xesam.el" (20229 31156)) +;;;### (autoloads (xesam-search) "xesam" "net/xesam.el" (20229 34587)) ;;; Generated autoloads from net/xesam.el (autoload 'xesam-search "xesam" "\ @@ -33286,7 +33291,7 @@ ;;;*** ;;;### (autoloads (xml-parse-region xml-parse-file) "xml" "xml.el" -;;;;;; (20258 25549)) +;;;;;; (20258 34747)) ;;; Generated autoloads from xml.el (autoload 'xml-parse-file "xml" "\ @@ -33312,7 +33317,7 @@ ;;;*** ;;;### (autoloads (xmltok-get-declared-encoding-position) "xmltok" -;;;;;; "nxml/xmltok.el" (20229 31156)) +;;;;;; "nxml/xmltok.el" (20229 34587)) ;;; Generated autoloads from nxml/xmltok.el (autoload 'xmltok-get-declared-encoding-position "xmltok" "\ @@ -33331,7 +33336,7 @@ ;;;*** ;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (20229 -;;;;;; 31156)) +;;;;;; 34587)) ;;; Generated autoloads from xt-mouse.el (defvar xterm-mouse-mode nil "\ @@ -33361,7 +33366,7 @@ ;;;*** ;;;### (autoloads (yenc-extract-filename yenc-decode-region) "yenc" -;;;;;; "gnus/yenc.el" (20229 31156)) +;;;;;; "gnus/yenc.el" (20229 34587)) ;;; Generated autoloads from gnus/yenc.el (autoload 'yenc-decode-region "yenc" "\ @@ -33377,7 +33382,7 @@ ;;;*** ;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism -;;;;;; yow) "yow" "play/yow.el" (20229 31156)) +;;;;;; yow) "yow" "play/yow.el" (20229 34587)) ;;; Generated autoloads from play/yow.el (autoload 'yow "yow" "\ @@ -33403,7 +33408,7 @@ ;;;*** -;;;### (autoloads (zone) "zone" "play/zone.el" (20229 31156)) +;;;### (autoloads (zone) "zone" "play/zone.el" (20229 34587)) ;;; Generated autoloads from play/zone.el (autoload 'zone "zone" "\ @@ -33419,46 +33424,47 @@ ;;;;;; "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/cedet.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/dired.el" "cedet/ede/emacs.el" "cedet/ede/files.el" -;;;;;; "cedet/ede/generic.el" "cedet/ede/linux.el" "cedet/ede/locate.el" -;;;;;; "cedet/ede/make.el" "cedet/ede/makefile-edit.el" "cedet/ede/pconf.el" -;;;;;; "cedet/ede/pmake.el" "cedet/ede/proj-archive.el" "cedet/ede/proj-aux.el" -;;;;;; "cedet/ede/proj-comp.el" "cedet/ede/proj-elisp.el" "cedet/ede/proj-info.el" -;;;;;; "cedet/ede/proj-misc.el" "cedet/ede/proj-obj.el" "cedet/ede/proj-prog.el" -;;;;;; "cedet/ede/proj-scheme.el" "cedet/ede/proj-shared.el" "cedet/ede/proj.el" -;;;;;; "cedet/ede/project-am.el" "cedet/ede/shell.el" "cedet/ede/simple.el" -;;;;;; "cedet/ede/source.el" "cedet/ede/speedbar.el" "cedet/ede/srecode.el" -;;;;;; "cedet/ede/system.el" "cedet/ede/util.el" "cedet/inversion.el" -;;;;;; "cedet/mode-local.el" "cedet/pulse.el" "cedet/semantic/analyze.el" -;;;;;; "cedet/semantic/analyze/complete.el" "cedet/semantic/analyze/debug.el" -;;;;;; "cedet/semantic/analyze/fcn.el" "cedet/semantic/analyze/refs.el" -;;;;;; "cedet/semantic/bovine.el" "cedet/semantic/bovine/c-by.el" -;;;;;; "cedet/semantic/bovine/c.el" "cedet/semantic/bovine/debug.el" -;;;;;; "cedet/semantic/bovine/el.el" "cedet/semantic/bovine/gcc.el" -;;;;;; "cedet/semantic/bovine/make-by.el" "cedet/semantic/bovine/make.el" -;;;;;; "cedet/semantic/bovine/scm-by.el" "cedet/semantic/bovine/scm.el" -;;;;;; "cedet/semantic/chart.el" "cedet/semantic/complete.el" "cedet/semantic/ctxt.el" -;;;;;; "cedet/semantic/db-debug.el" "cedet/semantic/db-ebrowse.el" -;;;;;; "cedet/semantic/db-el.el" "cedet/semantic/db-file.el" "cedet/semantic/db-find.el" -;;;;;; "cedet/semantic/db-global.el" "cedet/semantic/db-javascript.el" -;;;;;; "cedet/semantic/db-mode.el" "cedet/semantic/db-ref.el" "cedet/semantic/db-typecache.el" +;;;;;; "calc/calc-loaddefs.el" "calc/calc-macs.el" "calc/calc-map.el" +;;;;;; "calc/calc-math.el" "calc/calc-menu.el" "calc/calc-misc.el" +;;;;;; "calc/calc-mode.el" "calc/calc-mtx.el" "calc/calc-nlfit.el" +;;;;;; "calc/calc-poly.el" "calc/calc-prog.el" "calc/calc-rewr.el" +;;;;;; "calc/calc-rules.el" "calc/calc-sel.el" "calc/calc-stat.el" +;;;;;; "calc/calc-store.el" "calc/calc-stuff.el" "calc/calc-trail.el" +;;;;;; "calc/calc-units.el" "calc/calc-vec.el" "calc/calc-yank.el" +;;;;;; "calc/calcalg2.el" "calc/calcalg3.el" "calc/calccomp.el" +;;;;;; "calc/calcsel2.el" "calendar/cal-bahai.el" "calendar/cal-coptic.el" +;;;;;; "calendar/cal-french.el" "calendar/cal-html.el" "calendar/cal-islam.el" +;;;;;; "calendar/cal-iso.el" "calendar/cal-julian.el" "calendar/cal-loaddefs.el" +;;;;;; "calendar/cal-mayan.el" "calendar/cal-menu.el" "calendar/cal-move.el" +;;;;;; "calendar/cal-persia.el" "calendar/cal-tex.el" "calendar/cal-x.el" +;;;;;; "calendar/diary-loaddefs.el" "calendar/hol-loaddefs.el" "cdl.el" +;;;;;; "cedet/cedet-cscope.el" "cedet/cedet-files.el" "cedet/cedet-global.el" +;;;;;; "cedet/cedet-idutils.el" "cedet/cedet.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/dired.el" "cedet/ede/emacs.el" +;;;;;; "cedet/ede/files.el" "cedet/ede/generic.el" "cedet/ede/linux.el" +;;;;;; "cedet/ede/loaddefs.el" "cedet/ede/locate.el" "cedet/ede/make.el" +;;;;;; "cedet/ede/makefile-edit.el" "cedet/ede/pconf.el" "cedet/ede/pmake.el" +;;;;;; "cedet/ede/proj-archive.el" "cedet/ede/proj-aux.el" "cedet/ede/proj-comp.el" +;;;;;; "cedet/ede/proj-elisp.el" "cedet/ede/proj-info.el" "cedet/ede/proj-misc.el" +;;;;;; "cedet/ede/proj-obj.el" "cedet/ede/proj-prog.el" "cedet/ede/proj-scheme.el" +;;;;;; "cedet/ede/proj-shared.el" "cedet/ede/proj.el" "cedet/ede/project-am.el" +;;;;;; "cedet/ede/shell.el" "cedet/ede/simple.el" "cedet/ede/source.el" +;;;;;; "cedet/ede/speedbar.el" "cedet/ede/srecode.el" "cedet/ede/system.el" +;;;;;; "cedet/ede/util.el" "cedet/inversion.el" "cedet/mode-local.el" +;;;;;; "cedet/pulse.el" "cedet/semantic/analyze.el" "cedet/semantic/analyze/complete.el" +;;;;;; "cedet/semantic/analyze/debug.el" "cedet/semantic/analyze/fcn.el" +;;;;;; "cedet/semantic/analyze/refs.el" "cedet/semantic/bovine.el" +;;;;;; "cedet/semantic/bovine/c-by.el" "cedet/semantic/bovine/c.el" +;;;;;; "cedet/semantic/bovine/debug.el" "cedet/semantic/bovine/el.el" +;;;;;; "cedet/semantic/bovine/gcc.el" "cedet/semantic/bovine/make-by.el" +;;;;;; "cedet/semantic/bovine/make.el" "cedet/semantic/bovine/scm-by.el" +;;;;;; "cedet/semantic/bovine/scm.el" "cedet/semantic/chart.el" +;;;;;; "cedet/semantic/complete.el" "cedet/semantic/ctxt.el" "cedet/semantic/db-debug.el" +;;;;;; "cedet/semantic/db-ebrowse.el" "cedet/semantic/db-el.el" +;;;;;; "cedet/semantic/db-file.el" "cedet/semantic/db-find.el" "cedet/semantic/db-global.el" +;;;;;; "cedet/semantic/db-javascript.el" "cedet/semantic/db-mode.el" +;;;;;; "cedet/semantic/db-ref.el" "cedet/semantic/db-typecache.el" ;;;;;; "cedet/semantic/db.el" "cedet/semantic/debug.el" "cedet/semantic/decorate.el" ;;;;;; "cedet/semantic/decorate/include.el" "cedet/semantic/decorate/mode.el" ;;;;;; "cedet/semantic/dep.el" "cedet/semantic/doc.el" "cedet/semantic/ede-grammar.el" @@ -33466,13 +33472,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" @@ -33484,32 +33490,33 @@ ;;;;;; "cedet/srecode/el.el" "cedet/srecode/expandproto.el" "cedet/srecode/extract.el" ;;;;;; "cedet/srecode/fields.el" "cedet/srecode/filters.el" "cedet/srecode/find.el" ;;;;;; "cedet/srecode/getset.el" "cedet/srecode/insert.el" "cedet/srecode/java.el" -;;;;;; "cedet/srecode/map.el" "cedet/srecode/mode.el" "cedet/srecode/semantic.el" -;;;;;; "cedet/srecode/srt-wy.el" "cedet/srecode/srt.el" "cedet/srecode/table.el" -;;;;;; "cedet/srecode/template.el" "cedet/srecode/texi.el" "cus-dep.el" -;;;;;; "dframe.el" "dired-aux.el" "dired-x.el" "dos-fns.el" "dos-vars.el" -;;;;;; "dos-w32.el" "dynamic-setting.el" "emacs-lisp/assoc.el" "emacs-lisp/authors.el" -;;;;;; "emacs-lisp/avl-tree.el" "emacs-lisp/bindat.el" "emacs-lisp/byte-opt.el" -;;;;;; "emacs-lisp/chart.el" "emacs-lisp/cl-extra.el" "emacs-lisp/cl-loaddefs.el" -;;;;;; "emacs-lisp/cl-macs.el" "emacs-lisp/cl-seq.el" "emacs-lisp/cl-specs.el" -;;;;;; "emacs-lisp/cust-print.el" "emacs-lisp/eieio-base.el" "emacs-lisp/eieio-custom.el" -;;;;;; "emacs-lisp/eieio-datadebug.el" "emacs-lisp/eieio-opt.el" -;;;;;; "emacs-lisp/eieio-speedbar.el" "emacs-lisp/eieio.el" "emacs-lisp/find-gc.el" -;;;;;; "emacs-lisp/gulp.el" "emacs-lisp/lisp-mnt.el" "emacs-lisp/package-x.el" -;;;;;; "emacs-lisp/regi.el" "emacs-lisp/smie.el" "emacs-lisp/tcover-ses.el" -;;;;;; "emacs-lisp/tcover-unsafep.el" "emulation/cua-gmrk.el" "emulation/cua-rect.el" -;;;;;; "emulation/edt-lk201.el" "emulation/edt-mapper.el" "emulation/edt-pc.el" -;;;;;; "emulation/edt-vt100.el" "emulation/tpu-extras.el" "emulation/viper-cmd.el" -;;;;;; "emulation/viper-ex.el" "emulation/viper-init.el" "emulation/viper-keym.el" -;;;;;; "emulation/viper-macs.el" "emulation/viper-mous.el" "emulation/viper-util.el" -;;;;;; "erc/erc-backend.el" "erc/erc-goodies.el" "erc/erc-ibuffer.el" -;;;;;; "erc/erc-lang.el" "eshell/em-alias.el" "eshell/em-banner.el" -;;;;;; "eshell/em-basic.el" "eshell/em-cmpl.el" "eshell/em-dirs.el" -;;;;;; "eshell/em-glob.el" "eshell/em-hist.el" "eshell/em-ls.el" -;;;;;; "eshell/em-pred.el" "eshell/em-prompt.el" "eshell/em-rebind.el" -;;;;;; "eshell/em-script.el" "eshell/em-smart.el" "eshell/em-term.el" -;;;;;; "eshell/em-unix.el" "eshell/em-xtra.el" "eshell/esh-arg.el" -;;;;;; "eshell/esh-cmd.el" "eshell/esh-ext.el" "eshell/esh-io.el" +;;;;;; "cedet/srecode/loaddefs.el" "cedet/srecode/map.el" "cedet/srecode/mode.el" +;;;;;; "cedet/srecode/semantic.el" "cedet/srecode/srt-wy.el" "cedet/srecode/srt.el" +;;;;;; "cedet/srecode/table.el" "cedet/srecode/template.el" "cedet/srecode/texi.el" +;;;;;; "cus-dep.el" "dframe.el" "dired-aux.el" "dired-x.el" "dos-fns.el" +;;;;;; "dos-vars.el" "dos-w32.el" "dynamic-setting.el" "emacs-lisp/assoc.el" +;;;;;; "emacs-lisp/authors.el" "emacs-lisp/avl-tree.el" "emacs-lisp/bindat.el" +;;;;;; "emacs-lisp/byte-opt.el" "emacs-lisp/chart.el" "emacs-lisp/cl-extra.el" +;;;;;; "emacs-lisp/cl-loaddefs.el" "emacs-lisp/cl-macs.el" "emacs-lisp/cl-seq.el" +;;;;;; "emacs-lisp/cl-specs.el" "emacs-lisp/cust-print.el" "emacs-lisp/eieio-base.el" +;;;;;; "emacs-lisp/eieio-custom.el" "emacs-lisp/eieio-datadebug.el" +;;;;;; "emacs-lisp/eieio-opt.el" "emacs-lisp/eieio-speedbar.el" +;;;;;; "emacs-lisp/eieio.el" "emacs-lisp/find-gc.el" "emacs-lisp/gulp.el" +;;;;;; "emacs-lisp/lisp-mnt.el" "emacs-lisp/package-x.el" "emacs-lisp/regi.el" +;;;;;; "emacs-lisp/smie.el" "emacs-lisp/tcover-ses.el" "emacs-lisp/tcover-unsafep.el" +;;;;;; "emulation/cua-gmrk.el" "emulation/cua-rect.el" "emulation/edt-lk201.el" +;;;;;; "emulation/edt-mapper.el" "emulation/edt-pc.el" "emulation/edt-vt100.el" +;;;;;; "emulation/tpu-extras.el" "emulation/viper-cmd.el" "emulation/viper-ex.el" +;;;;;; "emulation/viper-init.el" "emulation/viper-keym.el" "emulation/viper-macs.el" +;;;;;; "emulation/viper-mous.el" "emulation/viper-util.el" "erc/erc-backend.el" +;;;;;; "erc/erc-goodies.el" "erc/erc-ibuffer.el" "erc/erc-lang.el" +;;;;;; "eshell/em-alias.el" "eshell/em-banner.el" "eshell/em-basic.el" +;;;;;; "eshell/em-cmpl.el" "eshell/em-dirs.el" "eshell/em-glob.el" +;;;;;; "eshell/em-hist.el" "eshell/em-ls.el" "eshell/em-pred.el" +;;;;;; "eshell/em-prompt.el" "eshell/em-rebind.el" "eshell/em-script.el" +;;;;;; "eshell/em-smart.el" "eshell/em-term.el" "eshell/em-unix.el" +;;;;;; "eshell/em-xtra.el" "eshell/esh-arg.el" "eshell/esh-cmd.el" +;;;;;; "eshell/esh-ext.el" "eshell/esh-groups.el" "eshell/esh-io.el" ;;;;;; "eshell/esh-module.el" "eshell/esh-opt.el" "eshell/esh-proc.el" ;;;;;; "eshell/esh-util.el" "eshell/esh-var.el" "ezimage.el" "foldout.el" ;;;;;; "format-spec.el" "forms-d2.el" "forms-pass.el" "fringe.el" @@ -33614,7 +33621,7 @@ ;;;;;; "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-fns.el" -;;;;;; "w32-vars.el" "x-dnd.el") (20261 26438 513741)) +;;;;;; "w32-vars.el" "x-dnd.el") (20265 8335 405119)) ;;;*** ------------------------------------------------------------ revno: 107044 committer: Glenn Morris branch nick: trunk timestamp: Wed 2012-02-01 06:17:54 -0500 message: Auto-commit of generated files. diff: === modified file 'autogen/Makefile.in' --- autogen/Makefile.in 2011-12-04 11:19:46 +0000 +++ autogen/Makefile.in 2012-02-01 11:17:54 +0000 @@ -36,7 +36,7 @@ # the same distribution terms as the rest of that program. # # Generated by gnulib-tool. -# Reproduce by: gnulib-tool --import --dir=. --lib=libgnu --source-base=lib --m4-base=m4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --avoid=msvc-inval --avoid=msvc-nothrow --avoid=pathmax --avoid=raise --avoid=threadlib --makefile-name=gnulib.mk --conditional-dependencies --no-libtool --macro-prefix=gl --no-vc-files alloca-opt careadlinkat crypto/md5 crypto/sha1 crypto/sha256 crypto/sha512 dtoastr dup2 filemode getloadavg getopt-gnu ignore-value intprops lstat mktime pthread_sigmask readlink socklen stdarg stdio strftime strtoimax strtoumax symlink sys_stat +# Reproduce by: gnulib-tool --import --dir=. --lib=libgnu --source-base=lib --m4-base=m4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --avoid=msvc-inval --avoid=msvc-nothrow --avoid=raise --avoid=threadlib --makefile-name=gnulib.mk --conditional-dependencies --no-libtool --macro-prefix=gl --no-vc-files alloca-opt careadlinkat crypto/md5 crypto/sha1 crypto/sha256 crypto/sha512 dtoastr dup2 filemode getloadavg getopt-gnu ignore-value intprops lstat mktime pthread_sigmask readlink socklen stdarg stdio strftime strtoimax strtoumax symlink sys_stat VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ @@ -72,7 +72,7 @@ $(top_srcdir)/m4/largefile.m4 $(top_srcdir)/m4/longlong.m4 \ $(top_srcdir)/m4/lstat.m4 $(top_srcdir)/m4/md5.m4 \ $(top_srcdir)/m4/mktime.m4 $(top_srcdir)/m4/multiarch.m4 \ - $(top_srcdir)/m4/nocrash.m4 \ + $(top_srcdir)/m4/nocrash.m4 $(top_srcdir)/m4/pathmax.m4 \ $(top_srcdir)/m4/pthread_sigmask.m4 \ $(top_srcdir)/m4/readlink.m4 $(top_srcdir)/m4/sha1.m4 \ $(top_srcdir)/m4/sha256.m4 $(top_srcdir)/m4/sha512.m4 \ @@ -795,8 +795,8 @@ sha256.h sha512.h dosname.h ftoastr.c ftoastr.h dup2.c \ filemode.h getloadavg.c getopt.c getopt.in.h getopt1.c \ getopt_int.h ignore-value.h intprops.h inttypes.in.h lstat.c \ - mktime-internal.h mktime.c pthread_sigmask.c readlink.c \ - signal.in.h sigprocmask.c \ + mktime-internal.h mktime.c pathmax.h pthread_sigmask.c \ + readlink.c signal.in.h sigprocmask.c \ $(top_srcdir)/build-aux/snippet/_Noreturn.h \ $(top_srcdir)/build-aux/snippet/arg-nonnull.h \ $(top_srcdir)/build-aux/snippet/c++defs.h \ === modified file 'autogen/aclocal.m4' --- autogen/aclocal.m4 2011-09-07 10:18:28 +0000 +++ autogen/aclocal.m4 2012-02-01 11:17:54 +0000 @@ -1003,6 +1003,7 @@ m4_include([m4/mktime.m4]) m4_include([m4/multiarch.m4]) m4_include([m4/nocrash.m4]) +m4_include([m4/pathmax.m4]) m4_include([m4/pthread_sigmask.m4]) m4_include([m4/readlink.m4]) m4_include([m4/sha1.m4]) === modified file 'autogen/configure' --- autogen/configure 2012-01-31 11:17:47 +0000 +++ autogen/configure 2012-02-01 11:17:54 +0000 @@ -620,6 +620,8 @@ gl_GNULIB_ENABLED_stat_TRUE gl_GNULIB_ENABLED_sigprocmask_FALSE gl_GNULIB_ENABLED_sigprocmask_TRUE +gl_GNULIB_ENABLED_pathmax_FALSE +gl_GNULIB_ENABLED_pathmax_TRUE gl_GNULIB_ENABLED_be453cec5eecf5731a274f2de7f2db36_FALSE gl_GNULIB_ENABLED_be453cec5eecf5731a274f2de7f2db36_TRUE gl_GNULIB_ENABLED_dosname_FALSE @@ -6959,6 +6961,7 @@ # Code from module mktime: # Code from module multiarch: # Code from module nocrash: + # Code from module pathmax: # Code from module pthread_sigmask: # Code from module readlink: # Code from module signal-h: @@ -21810,6 +21813,7 @@ gl_gnulib_enabled_dosname=false gl_gnulib_enabled_be453cec5eecf5731a274f2de7f2db36=false + gl_gnulib_enabled_pathmax=false gl_gnulib_enabled_sigprocmask=false gl_gnulib_enabled_stat=false gl_gnulib_enabled_strtoll=false @@ -21829,6 +21833,15 @@ gl_gnulib_enabled_be453cec5eecf5731a274f2de7f2db36=true fi } + func_gl_gnulib_m4code_pathmax () + { + if ! $gl_gnulib_enabled_pathmax; then + + + + gl_gnulib_enabled_pathmax=true + fi + } func_gl_gnulib_m4code_sigprocmask () { if ! $gl_gnulib_enabled_sigprocmask; then @@ -22008,6 +22021,9 @@ func_gl_gnulib_m4code_dosname fi if test $REPLACE_STAT = 1; then + func_gl_gnulib_m4code_pathmax + fi + if test $REPLACE_STAT = 1; then func_gl_gnulib_m4code_verify fi fi @@ -22166,6 +22182,14 @@ gl_GNULIB_ENABLED_be453cec5eecf5731a274f2de7f2db36_FALSE= fi + if $gl_gnulib_enabled_pathmax; then + gl_GNULIB_ENABLED_pathmax_TRUE= + gl_GNULIB_ENABLED_pathmax_FALSE='#' +else + gl_GNULIB_ENABLED_pathmax_TRUE='#' + gl_GNULIB_ENABLED_pathmax_FALSE= +fi + if $gl_gnulib_enabled_sigprocmask; then gl_GNULIB_ENABLED_sigprocmask_TRUE= gl_GNULIB_ENABLED_sigprocmask_FALSE='#' @@ -22664,6 +22688,10 @@ as_fn_error "conditional \"gl_GNULIB_ENABLED_be453cec5eecf5731a274f2de7f2db36\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi +if test -z "${gl_GNULIB_ENABLED_pathmax_TRUE}" && test -z "${gl_GNULIB_ENABLED_pathmax_FALSE}"; then + as_fn_error "conditional \"gl_GNULIB_ENABLED_pathmax\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi if test -z "${gl_GNULIB_ENABLED_sigprocmask_TRUE}" && test -z "${gl_GNULIB_ENABLED_sigprocmask_FALSE}"; then as_fn_error "conditional \"gl_GNULIB_ENABLED_sigprocmask\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 ------------------------------------------------------------ revno: 107043 author: Gnus developers committer: Katsumi Yamaoka branch nick: trunk timestamp: Wed 2012-02-01 09:00:42 +0000 message: Merge change(s) made in Gnus no-gnus branch 2012-01-31 Jim Meyering gnus-agent.el (gnus-agent-expire-unagentized-dirs): Correct a comment (insert "not") and hide nominally-doubled "to". diff: === modified file 'doc/misc/ChangeLog' --- doc/misc/ChangeLog 2012-01-28 19:16:02 +0000 +++ doc/misc/ChangeLog 2012-02-01 09:00:42 +0000 @@ -1,3 +1,8 @@ +2012-01-30 Philipp Haselwarter (tiny change) + + * gnus.texi (Agent Basics): Fix outdated description of + `gnus-agent-auto-agentize-methods'. + 2012-01-28 Andreas Schwab * cc-mode.texi: Always @defindex ss. === modified file 'lisp/gnus/ChangeLog' --- lisp/gnus/ChangeLog 2012-01-31 16:15:03 +0000 +++ lisp/gnus/ChangeLog 2012-02-01 09:00:42 +0000 @@ -1,3 +1,8 @@ +2012-01-31 Jim Meyering + + * gnus-agent.el (gnus-agent-expire-unagentized-dirs): + Correct a comment (insert "not") and hide nominally-doubled "to". + 2012-01-30 Philipp Haselwarter (tiny change) * gnus-agent.el (gnus-agent-auto-agentize-methods): Point to the Agent === modified file 'lisp/gnus/gnus-agent.el' --- lisp/gnus/gnus-agent.el 2012-01-30 23:30:22 +0000 +++ lisp/gnus/gnus-agent.el 2012-02-01 09:00:42 +0000 @@ -3618,7 +3618,7 @@ (setq r d d (directory-file-name d))) ;; if ANY ancestor was NOT in keep hash and - ;; it's already in to-remove, add it to + ;; it's not already in to-remove, add it to ;; to-remove. (if (and r (not (member r to-remove))) ------------------------------------------------------------ revno: 107042 committer: Glenn Morris branch nick: trunk timestamp: Wed 2012-02-01 00:39:29 -0800 message: * etc/NEWS: Markup. diff: === modified file 'etc/NEWS' --- etc/NEWS 2012-02-01 08:32:31 +0000 +++ etc/NEWS 2012-02-01 08:39:29 +0000 @@ -1290,6 +1290,7 @@ *** New hook `change-major-mode-after-body-hook', run by `run-mode-hooks' just before any other mode hooks. ++++ *** Enabled globalized minor modes can be disabled in specific major modes. If the global mode is global-FOO-mode, then run (FOO-mode -1) in the major mode's hook, where FOO-mode toggles the mode on a per-buffer basis. ------------------------------------------------------------ revno: 107041 committer: Glenn Morris branch nick: trunk timestamp: Wed 2012-02-01 00:32:31 -0800 message: Document locally disabling globalized minor modes in the lispref * doc/lispref/modes.texi (Defining Minor Modes): Mention disabling global minor modes on a per-major-mode basis. * etc/NEWS: Clarify entry. diff: === modified file 'doc/lispref/ChangeLog' --- doc/lispref/ChangeLog 2012-01-31 06:51:33 +0000 +++ doc/lispref/ChangeLog 2012-02-01 08:32:31 +0000 @@ -1,3 +1,8 @@ +2012-02-01 Glenn Morris + + * modes.texi (Defining Minor Modes): + Mention disabling global minor modes on a per-major-mode basis. + 2012-01-31 Chong Yidong * syntax.texi (Parsing Expressions): Clarify intro (Bug#10657). === modified file 'doc/lispref/modes.texi' --- doc/lispref/modes.texi 2012-01-31 05:03:09 +0000 +++ doc/lispref/modes.texi 2012-02-01 08:32:31 +0000 @@ -1521,8 +1521,15 @@ Use @code{:group @var{group}} in @var{keyword-args} to specify the custom group for the mode variable of the global minor mode. + +When you define a globalized minor mode, you should generally also +define a non-globalized version to toggle the mode on an individual +buffer basis. This allows users to disable a globally enabled minor +mode in a specific major mode if they wish, by deactivating the local +minor mode in the major mode's hook. @end defmac + @node Mode Line Format @section Mode-Line Format @cindex mode line === modified file 'etc/NEWS' --- etc/NEWS 2012-01-31 05:03:09 +0000 +++ etc/NEWS 2012-02-01 08:32:31 +0000 @@ -1290,8 +1290,9 @@ *** New hook `change-major-mode-after-body-hook', run by `run-mode-hooks' just before any other mode hooks. -*** Enabled globalized minor modes can be disabled in specific modes, -by running (FOO-mode-hook 0) via a mode hook. +*** Enabled globalized minor modes can be disabled in specific major modes. +If the global mode is global-FOO-mode, then run (FOO-mode -1) in the +major mode's hook, where FOO-mode toggles the mode on a per-buffer basis. +++ *** `define-minor-mode' accepts a new keyword :variable. ------------------------------------------------------------ revno: 107040 fixes bug(s): http://debbugs.gnu.org/10650 committer: Chong Yidong branch nick: trunk timestamp: Wed 2012-02-01 16:31:29 +0800 message: Fix view-buffer-other-window/frame handling of special modes. * view.el (view-buffer-other-window, view-buffer-other-frame): Handle special modes like view-buffer. (view-buffer): Simplify. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2012-02-01 08:13:02 +0000 +++ lisp/ChangeLog 2012-02-01 08:31:29 +0000 @@ -1,5 +1,9 @@ 2012-02-01 Chong Yidong + * view.el (view-buffer-other-window, view-buffer-other-frame): + Handle special modes like view-buffer (Bug#10650). + (view-buffer): Simplify. + * frame.el (set-frame-font): Tweak meaning of third argument. * dynamic-setting.el (font-setting-change-default-font): Use === modified file 'lisp/view.el' --- lisp/view.el 2012-01-19 07:21:25 +0000 +++ lisp/view.el 2012-02-01 08:31:29 +0000 @@ -311,13 +311,9 @@ Exiting View mode will then discard the user's edits. Setting EXIT-ACTION to `kill-buffer-if-not-modified' avoids this." (interactive "bView buffer: ") - (if (eq (with-current-buffer buffer - (get major-mode 'mode-class)) - 'special) - (progn - (switch-to-buffer buffer) - (message "Not using View mode because the major mode is special")) - (switch-to-buffer buffer) + (switch-to-buffer buffer) + (if (eq (get major-mode 'mode-class) 'special) + (message "Not using View mode because the major mode is special") (view-mode-enter nil exit-action))) ;;;###autoload @@ -339,7 +335,9 @@ (interactive "bIn other window view buffer:\nP") (let ((pop-up-windows t)) (pop-to-buffer buffer t)) - (view-mode-enter nil exit-action)) + (if (eq (get major-mode 'mode-class) 'special) + (message "Not using View mode because the major mode is special") + (view-mode-enter nil exit-action))) ;;;###autoload (defun view-buffer-other-frame (buffer &optional not-return exit-action) @@ -360,7 +358,9 @@ (interactive "bView buffer in other frame: \nP") (let ((pop-up-frames t)) (pop-to-buffer buffer t)) - (view-mode-enter nil exit-action)) + (if (eq (get major-mode 'mode-class) 'special) + (message "Not using View mode because the major mode is special") + (view-mode-enter nil exit-action))) ;;;###autoload (define-minor-mode view-mode ------------------------------------------------------------ revno: 107039 fixes bug(s): http://debbugs.gnu.org/9982 committer: Chong Yidong branch nick: trunk timestamp: Wed 2012-02-01 16:13:02 +0800 message: Fix dynamic font settings interaction with Custom Themes. * lisp/dynamic-setting.el (font-setting-change-default-font): Use set-frame-font. * lisp/frame.el (set-frame-font): Tweak meaning of third argument. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2012-02-01 07:32:21 +0000 +++ lisp/ChangeLog 2012-02-01 08:13:02 +0000 @@ -1,3 +1,10 @@ +2012-02-01 Chong Yidong + + * frame.el (set-frame-font): Tweak meaning of third argument. + + * dynamic-setting.el (font-setting-change-default-font): Use + set-frame-font (Bug#9982). + 2012-02-01 Glenn Morris * progmodes/compile.el (compilation-internal-error-properties): === modified file 'lisp/dynamic-setting.el' --- lisp/dynamic-setting.el 2012-01-29 13:55:09 +0000 +++ lisp/dynamic-setting.el 2012-02-01 08:13:02 +0000 @@ -42,45 +42,28 @@ If SET-FONT is non-nil, change the font for frames. Otherwise re-apply the current form for the frame (i.e. hinting or somesuch changed)." - (let ((new-font (and (fboundp 'font-get-system-font) - (font-get-system-font)))) - (when new-font - ;; Be careful here: when set-face-attribute is called for the - ;; :font attribute, Emacs tries to guess the best matching font - ;; by examining the other face attributes (Bug#2476). - + (font-get-system-font))) + (frame-list (frames-on-display-list display-or-frame))) + (when (and new-font (display-graphic-p display-or-frame)) (clear-font-cache) - ;; Set for current frames. Only change font for those that have - ;; the old font now. If they don't have the old font, the user - ;; probably changed it. - (dolist (f (frames-on-display-list display-or-frame)) - (if (display-graphic-p f) - (let* ((frame-font - (or (font-get (face-attribute 'default :font f - 'default) :user-spec) - (frame-parameter f 'font-parameter))) - (font-to-set - (if set-font new-font - ;; else set font again, hinting etc. may have changed. - frame-font))) - (if font-to-set - (progn - (set-frame-parameter f 'font-parameter font-to-set) - (set-face-attribute 'default f - :width 'normal - :weight 'normal - :slant 'normal - :font font-to-set)))))) - - ;; Set for future frames. - (when set-font - ;; FIXME: this is not going to play well with Custom themes. - (set-face-attribute 'default t :font new-font) - (let ((spec (list (list t (face-attr-construct 'default))))) - (put 'default 'customized-face spec) - (custom-push-theme 'theme-face 'default 'user 'set spec) - (put 'default 'face-modified nil)))))) + (if set-font + ;; Set the font on all current and future frames, as though + ;; the `default' face had been "set for this session": + (set-frame-font new-font nil frame-list) + ;; Just redraw the existing fonts on all frames: + (dolist (f frame-list) + (let ((frame-font + (or (font-get (face-attribute 'default :font f 'default) + :user-spec) + (frame-parameter f 'font-parameter)))) + (when frame-font + (set-frame-parameter f 'font-parameter frame-font) + (set-face-attribute 'default f + :width 'normal + :weight 'normal + :slant 'normal + :font frame-font)))))))) (defun dynamic-setting-handle-config-changed-event (event) "Handle config-changed-event on the display in EVENT. === modified file 'lisp/frame.el' --- lisp/frame.el 2012-01-31 08:38:58 +0000 +++ lisp/frame.el 2012-02-01 08:13:02 +0000 @@ -1053,7 +1053,7 @@ (define-obsolete-function-alias 'set-default-font 'set-frame-font "23.1") -(defun set-frame-font (font-name &optional keep-size all-frames) +(defun set-frame-font (font-name &optional keep-size frames) "Set the default font to FONT-NAME. When called interactively, prompt for the name of a font, and use that font on the selected frame. @@ -1063,9 +1063,10 @@ to keep the current frame size fixed (in pixels) by adjusting the number of lines and columns. -If ALL-FRAMES is nil, apply the font to the selected frame only. -If ALL-FRAMES is non-nil, apply the font to all frames; in -addition, alter the user's Customization settings as though the +If FRAMES is nil, apply the font to the selected frame only. +If FRAMES is non-nil, it should be a list of frames to act upon, +or t meaning all graphical frames. Also, if FRAME is non-nil, +alter the user's Customization settings as though the font-related attributes of the `default' face had been \"set in this session\", so that the font is applied to future frames." (interactive @@ -1079,9 +1080,14 @@ (list font current-prefix-arg nil))) (when (stringp font-name) (let* ((this-frame (selected-frame)) - (frames (if all-frames (frame-list) (list this-frame))) + ;; FRAMES nil means affect the selected frame. + (frame-list (cond ((null frames) + (list this-frame)) + ((eq frames t) + (frame-list)) + (t frames))) height width) - (dolist (f frames) + (dolist (f frame-list) (when (display-multi-font-p f) (if keep-size (setq height (* (frame-parameter f 'height) @@ -1099,7 +1105,7 @@ f (list (cons 'height (round height (frame-char-height f))) (cons 'width (round width (frame-char-width f)))))))) - (when all-frames + (when frames ;; Alter the user's Custom setting of the `default' face, but ;; only for font-related attributes. (let ((specs (cadr (assq 'user (get 'default 'theme-face)))) ------------------------------------------------------------ revno: 107038 committer: Glenn Morris branch nick: trunk timestamp: Tue 2012-01-31 23:32:21 -0800 message: Copy 2012-01-25 compilation-next-error-function change to another function. * lisp/progmodes/compile.el (compilation-internal-error-properties): Respect compilation-first-column in the "*compilation*" buffer. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2012-02-01 02:17:17 +0000 +++ lisp/ChangeLog 2012-02-01 07:32:21 +0000 @@ -1,5 +1,8 @@ 2012-02-01 Glenn Morris + * progmodes/compile.el (compilation-internal-error-properties): + Respect compilation-first-column in the "*compilation*" buffer. + * emacs-lisp/easy-mmode.el (define-minor-mode): Relax :variable's test for a named function. === modified file 'lisp/progmodes/compile.el' --- lisp/progmodes/compile.el 2012-01-25 02:01:22 +0000 +++ lisp/progmodes/compile.el 2012-02-01 07:32:21 +0000 @@ -1058,6 +1058,7 @@ (marker (if marker-line (compilation--loc->marker (cadr marker-line)))) (screen-columns compilation-error-screen-columns) + (first-column compilation-first-column) end-marker loc end-loc) (if (not (and marker (marker-buffer marker))) (setq marker nil) ; no valid marker for this file @@ -1078,7 +1079,10 @@ ;; Obey the compilation-error-screen-columns of the target ;; buffer if its major mode set it buffer-locally. (if (local-variable-p 'compilation-error-screen-columns) - compilation-error-screen-columns screen-columns))) + compilation-error-screen-columns screen-columns)) + (compilation-first-column + (if (local-variable-p 'compilation-first-column) + compilation-first-column first-column))) (save-excursion (save-restriction (widen) ------------------------------------------------------------ Use --include-merges or -n0 to see merged revisions.