commit 13feb31c633a26ce47799315326e43d1e8b9345a (HEAD, refs/remotes/origin/master) Author: Paul Eggert Date: Sun Jun 19 01:07:55 2016 +0200 Rename ALIGN to pointer_align * src/alloc.c (pointer_align): Rename from ALIGN. This fixes Bug#23764 in a simpler way. diff --git a/src/alloc.c b/src/alloc.c index 8173615..0a3e7d4 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -486,15 +486,10 @@ static void *pure_alloc (size_t, int); ? ((x) + (y) - 1) - ((x) + (y) - 1) % (y) \ : ((x) + (y) - 1) & ~ ((y) - 1)) -/* Bug#23764 */ -#ifdef ALIGN -# undef ALIGN -#endif - /* Return PTR rounded up to the next multiple of ALIGNMENT. */ static void * -ALIGN (void *ptr, int alignment) +pointer_align (void *ptr, int alignment) { return (void *) ROUNDUP ((uintptr_t) ptr, alignment); } @@ -1259,7 +1254,7 @@ lisp_align_malloc (size_t nbytes, enum mem_type type) abase = base = aligned_alloc (BLOCK_ALIGN, ABLOCKS_BYTES); #else base = malloc (ABLOCKS_BYTES); - abase = ALIGN (base, BLOCK_ALIGN); + abase = pointer_align (base, BLOCK_ALIGN); #endif if (base == 0) @@ -5178,7 +5173,7 @@ pure_alloc (size_t size, int type) { /* Allocate space for a Lisp object from the beginning of the free space with taking account of alignment. */ - result = ALIGN (purebeg + pure_bytes_used_lisp, GCALIGNMENT); + result = pointer_align (purebeg + pure_bytes_used_lisp, GCALIGNMENT); pure_bytes_used_lisp = ((char *)result - (char *)purebeg) + size; } else commit a985d2b09bb88f31b27b02c3131cb34c5879d767 Merge: f016843 d1efbaf Author: Paul Eggert Date: Sun Jun 19 00:54:28 2016 +0200 Merge from origin/emacs-25 d1efbaf Fix documentation of completion functions 65c96cc Clarify documentation of 'font-lock-maximum-decoration' 2ad3d01 * doc/misc/cl.texi (Usage): Add some more details. b49cb0a Fbackward_prefix_chars: stay within buffer bounds commit f01684313faa9803ddc69e71b66d9a469f955348 Merge: d908829 d765175 Author: Paul Eggert Date: Sun Jun 19 00:54:28 2016 +0200 ; Merge from origin/emacs-25 The following commit was skipped: d765175 Fix ifdef-vs-if typo with RANDR13_LIBRARY commit d9088290efb49a352c3c23da25a734ed3e269923 Merge: 8085d5f 2317c61 Author: Paul Eggert Date: Sun Jun 19 00:53:51 2016 +0200 Merge from origin/emacs-25 2317c61 Fix last todo-mode change 5d4d8a3 Improve last todo-mode fix d7084f2 Fix todo-mode use of minibuffer completion keymap (bug#23695). 27dec52 * src/alloc.c (ALIGN): Avoid error on DragonFly BSD. (Bug#23... f526191 * lisp/emacs-lisp/nadvice.el (advice--make-docstring): Avoid ... e881070 * lisp/help-fns.el (describe-function-1): Avoid reporting adv... d308aa1 Minor grammar fix (bug#23746) 20de667 Doc fixes for grammar and typos (bug#23746) a67a4e5 * doc/lispref/processes.texi (Process Buffers): Minor rewordi... 27f440e Add cross-reference to ELisp manual 10802d8 ; make change-history-commit 4b2d77d * lisp/emacs-lisp/macroexp.el (macroexp--expand-all): Fix (bu... 12e009e Restore initial undo boundary with viper 291fe0a Revert "Fix viper undo breakage from undo-boundary changes" 6921f4a Fix dbus crash on 32-bit Cygwin commit 8085d5fcc4240a39458ead26ae2279590bb9f629 Merge: 68cb71c e18ee60 Author: Paul Eggert Date: Sun Jun 19 00:47:01 2016 +0200 ; Merge from origin/emacs-25 The following commit was skipped: e18ee60 Bump version to 25.0.95 commit 68cb71c0928eb8b10487a125192f43923e8bfe7f Merge: 87c9d8f 9ae514a Author: Paul Eggert Date: Sun Jun 19 00:47:00 2016 +0200 Merge from origin/emacs-25 9ae514a * etc/AUTHORS: Update the AUTHORS file 3ca428e add entries to authors.el 66d556b Fix eldoc-related freezes in python mode d59bcbc Handle mouse leaving initial window in `mouse-set-region' (Bu... 27fe1e4 org.el: Fix bindings of < and > for calendar scrolling a813487 Fix undo boundary in recursive edit (Bug#23632) 1f85b7c Doc fixes re alist-get. (Bug#23548) ba3f206 * lisp/progmodes/python.el (inferior-python-mode): Avoid tabs... 56fa055 * src/syntax.c (syms_of_syntax) :... 4c1370a * lisp/help-fns.el (describe-function-1): Fix handling of fil... a3f7ae8 * lisp/emacs-lisp/cl-macs.el (cl-loop): Doc fix re "by". 601b9b2 * doc/misc/cl.texi (Mapping over Sequences): Fix cl-notevery. commit d1efbafdf2cad59b80981d18bb7c6cfdf4d44850 (refs/remotes/origin/emacs-25) Author: Noam Postavsky Date: Tue Jun 7 23:37:05 2016 -0400 Fix documentation of completion functions So that the described behavior matches the code (and docstrings). * doc/lispref/minibuf.texi (Basic Completion): Symbol keys of hash table collections are used like string keys, not ignored (Bug #10416). diff --git a/doc/lispref/minibuf.texi b/doc/lispref/minibuf.texi index 6f41090..1fa2536 100644 --- a/doc/lispref/minibuf.texi +++ b/doc/lispref/minibuf.texi @@ -733,8 +733,8 @@ list contains elements of any other type, those are ignored. If @var{collection} is an obarray (@pxref{Creating Symbols}), the names of all symbols in the obarray form the set of permissible completions. -If @var{collection} is a hash table, then the keys that are strings -are the possible completions. Other keys are ignored. +If @var{collection} is a hash table, then the keys that are strings or +symbols are the possible completions. Other keys are ignored. You can also use a function as @var{collection}. Then the function is solely responsible for performing completion; @code{try-completion} commit 65c96cc02598ded824a19e0c70d49d84d7fce9c7 Author: Eli Zaretskii Date: Sat Jun 18 12:50:57 2016 +0300 Clarify documentation of 'font-lock-maximum-decoration' * doc/emacs/display.texi (Font Lock): Explain how to make the customization of 'font-lock-maximum-decoration' effective for an existing buffer. (Bug#23783) diff --git a/doc/emacs/display.texi b/doc/emacs/display.texi index 8039291..56b643b 100644 --- a/doc/emacs/display.texi +++ b/doc/emacs/display.texi @@ -847,9 +847,15 @@ to alter the amount of fontification applied by Font Lock mode, for major modes that support this feature. The value should be a number (with 1 representing a minimal amount of fontification; some modes support levels as high as 3); or @code{t}, meaning ``as high as -possible'' (the default). You can also specify different numbers for -particular major modes; for example, to use level 1 for C/C++ modes, -and the default level otherwise, use the value +possible'' (the default). To be effective for a given file buffer, +the customization of @code{font-lock-maximum-decoration} should be +done @emph{before} the file is visited; if you already have the file +visited in a buffer when you customize this variable, kill the buffer +and visit the file again after the customization. + +You can also specify different numbers for particular major modes; for +example, to use level 1 for C/C++ modes, and the default level +otherwise, use the value @example '((c-mode . 1) (c++-mode . 1))) commit 2ad3d0182df68f00cca57584807f721c3c5c96f1 Author: Glenn Morris Date: Fri Jun 17 12:55:06 2016 -0400 * doc/misc/cl.texi (Usage): Add some more details. diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi index a98d0ac..c62fa72 100644 --- a/doc/misc/cl.texi +++ b/doc/misc/cl.texi @@ -148,6 +148,11 @@ the beginning: You may wish to add such a statement to your init file, if you make frequent use of features from this package. +Code that only uses macros from this package can enclose the above in +@code{eval-when-compile}. Internally, this library is divided into +several files, @pxref{Organization}. Your code should only ever load +the main @file{cl-lib} file, which will load the others as needed. + @node Organization @section Organization commit b49cb0ab9c165c1e861b5dfac5eb7ef6cb9e4e3a Author: Noam Postavsky Date: Sat Jun 4 09:02:20 2016 -0400 Fbackward_prefix_chars: stay within buffer bounds The commit 1fd3172d "(Fbackward_prefix_chars): Set point properly while scanning" (1998-03-18), moved the check against of the position against the buffer beginning out the loop condition so that we might end up checking the syntax of characters before the beginning of the buffer. This can cause segfaults or trigger a "Point before start of properties" error in `update_interval' (called indirectly from `char_quoted'). * src/syntax.c (Fbackward_prefix_chars): Stop the loop when beginning of buffer is reached (Bug #3552, Bug #17132, Bug #19379). diff --git a/src/syntax.c b/src/syntax.c index 0af2a21..6e133ad 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -3098,8 +3098,9 @@ the prefix syntax flag (p). */) opoint = pos; opoint_byte = pos_byte; - if (pos + 1 > beg) - DEC_BOTH (pos, pos_byte); + if (pos <= beg) + break; + DEC_BOTH (pos, pos_byte); } SET_PT_BOTH (opoint, opoint_byte); commit d765175ef1179f834c25fd856ace63c3dc37162c Author: Paul Eggert Date: Tue Jun 14 22:40:18 2016 -0700 Fix ifdef-vs-if typo with RANDR13_LIBRARY * src/xfns.c (x_get_monitor_attributes_xrandr): Use #if, not #ifdef. This ports to systems that predate xrandr 1.3. See Christian Lynbech in: http://lists.gnu.org/archive/html/emacs-devel/2016-06/msg00198.html (cherry picked from commit dce99f222f1ca33265cd56ddb157817be1dc078e) diff --git a/src/xfns.c b/src/xfns.c index b22af5c..7c1bb1c 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -4287,7 +4287,7 @@ x_get_monitor_attributes_xrandr (struct x_display_info *dpyinfo) n_monitors = resources->noutput; monitors = xzalloc (n_monitors * sizeof *monitors); -#ifdef RANDR13_LIBRARY +#if RANDR13_LIBRARY if (randr13_avail) pxid = XRRGetOutputPrimary (dpy, dpyinfo->root_window); #endif commit 2317c61868044dc1fea58d9e81f35d354f24fd69 Author: Stephen Berman Date: Thu Jun 16 11:05:36 2016 +0200 Fix last todo-mode change * lisp/calendar/todo-mode.el (todo-read-category): Return the keymap in order to use its defined key bindings. diff --git a/lisp/calendar/todo-mode.el b/lisp/calendar/todo-mode.el index 7cfec13..aee101f 100644 --- a/lisp/calendar/todo-mode.el +++ b/lisp/calendar/todo-mode.el @@ -5753,7 +5753,8 @@ categories from `todo-category-completions-files'." (let ((minibuffer-local-completion-map (let ((map (make-sparse-keymap))) (set-keymap-parent map minibuffer-local-completion-map) - (define-key map " " nil)))) + (define-key map " " nil) + map))) (let* ((add (eq match-type 'add)) (archive (eq match-type 'archive)) (file0 (when (and file (> (length todo-files) 1)) commit 5d4d8a3932f8867f79effeafa4c337b8e4208fe8 Author: Stephen Berman Date: Wed Jun 15 20:08:16 2016 +0200 Improve last todo-mode fix * lisp/calendar/todo-mode.el (todo-read-category): Use set-keymap-parent instead of copy-keymap, and default (as previously) to the global binding (for rationale, see http://lists.gnu.org/archive/html/emacs-devel/2016-06/msg00217.html). diff --git a/lisp/calendar/todo-mode.el b/lisp/calendar/todo-mode.el index f0d4bc5..7cfec13 100644 --- a/lisp/calendar/todo-mode.el +++ b/lisp/calendar/todo-mode.el @@ -5751,8 +5751,9 @@ against categories in that file; otherwise complete against all categories from `todo-category-completions-files'." ;; Allow SPC to insert spaces, for adding new category names. (let ((minibuffer-local-completion-map - (copy-keymap minibuffer-local-completion-map))) - (define-key minibuffer-local-completion-map " " 'self-insert-command) + (let ((map (make-sparse-keymap))) + (set-keymap-parent map minibuffer-local-completion-map) + (define-key map " " nil)))) (let* ((add (eq match-type 'add)) (archive (eq match-type 'archive)) (file0 (when (and file (> (length todo-files) 1)) commit d7084f2260943287cdfb5e3021ac33aab6a14c6d Author: Stephen Berman Date: Tue Jun 14 23:43:20 2016 +0200 Fix todo-mode use of minibuffer completion keymap (bug#23695). * lisp/calendar/todo-mode.el (todo-read-category): Don't override minibuffer-local-completion-map globally (bug#23695). Bind key to self-insert-command. diff --git a/lisp/calendar/todo-mode.el b/lisp/calendar/todo-mode.el index 8e75258..f0d4bc5 100644 --- a/lisp/calendar/todo-mode.el +++ b/lisp/calendar/todo-mode.el @@ -5750,8 +5750,9 @@ With non-nil argument FILE prompt for a file and complete only against categories in that file; otherwise complete against all categories from `todo-category-completions-files'." ;; Allow SPC to insert spaces, for adding new category names. - (let ((map minibuffer-local-completion-map)) - (define-key map " " nil) + (let ((minibuffer-local-completion-map + (copy-keymap minibuffer-local-completion-map))) + (define-key minibuffer-local-completion-map " " 'self-insert-command) (let* ((add (eq match-type 'add)) (archive (eq match-type 'archive)) (file0 (when (and file (> (length todo-files) 1)) commit 27dec5264facbd13fdbe37980dd1d70045f60b3f Author: Glenn Morris Date: Tue Jun 14 13:39:30 2016 -0400 * src/alloc.c (ALIGN): Avoid error on DragonFly BSD. (Bug#23764) diff --git a/src/alloc.c b/src/alloc.c index 4c9cbf1..4523447 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -468,6 +468,11 @@ static void *pure_alloc (size_t, int); ? ((x) + (y) - 1) - ((x) + (y) - 1) % (y) \ : ((x) + (y) - 1) & ~ ((y) - 1)) +/* Bug#23764 */ +#ifdef ALIGN +# undef ALIGN +#endif + /* Return PTR rounded up to the next multiple of ALIGNMENT. */ static void * commit f5261917191336d052ad8586b2d9fd62ba46c3c4 Author: Glenn Morris Date: Mon Jun 13 18:18:34 2016 -0400 * lisp/emacs-lisp/nadvice.el (advice--make-docstring): Avoid mangling autoloads with unspecified arguments. (Bug#21299) diff --git a/lisp/emacs-lisp/nadvice.el b/lisp/emacs-lisp/nadvice.el index 1d4c3f0..1b30499 100644 --- a/lisp/emacs-lisp/nadvice.el +++ b/lisp/emacs-lisp/nadvice.el @@ -114,7 +114,10 @@ Each element has the form (WHERE BYTECODE STACK) where: (usage (help-split-fundoc origdoc function))) (setq usage (if (null usage) (let ((arglist (help-function-arglist flist))) - (help--make-usage-docstring function arglist)) + ;; "[Arg list not available until function + ;; definition is loaded]", bug#21299 + (if (stringp arglist) t + (help--make-usage-docstring function arglist))) (setq origdoc (cdr usage)) (car usage))) (help-add-fundoc-usage (concat docstring origdoc) usage)))) commit e881070890d2603570af9939a4619234379758e5 Author: Glenn Morris Date: Mon Jun 13 13:14:35 2016 -0400 * lisp/help-fns.el (describe-function-1): Avoid reporting advised autoloads as aliases. (Bug#21299) diff --git a/lisp/help-fns.el b/lisp/help-fns.el index 496deb5..26d8839 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el @@ -514,7 +514,8 @@ FILE is the file where FUNCTION was probably defined." real-function)) (aliased (or (symbolp def) ;; Advised & aliased function. - (and advised (symbolp real-function)))) + (and advised (symbolp real-function) + (not (eq 'autoload (car-safe def)))))) (real-def (cond (aliased (let ((f real-function)) (while (and (fboundp f) commit d308aa1eee4e5ff01f742e52eef5fb2cceec2c24 Author: Stephen Berman Date: Mon Jun 13 18:20:43 2016 +0200 Minor grammar fix (bug#23746) * doc/lispref/processes.texi (Synchronous Processes): Another minor grammar fix (bug#23746). diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index 679925b..5bd0b11 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi @@ -506,7 +506,7 @@ inputinput@point{} @defun call-process-shell-command command &optional infile destination display This function executes the shell command @var{command} synchronously. The arguments are handled as in @code{call-process}. An old calling -convention allowed to pass any number of additional arguments after +convention allowed passing any number of additional arguments after @var{display}, which were concatenated to @var{command}; this is still supported, but strongly discouraged. @end defun @@ -515,7 +515,7 @@ supported, but strongly discouraged. This function is like @code{call-process-shell-command}, but uses @code{process-file} internally. Depending on @code{default-directory}, @var{command} can be executed also on remote hosts. An old calling -convention allowed to pass any number of additional arguments after +convention allowed passing any number of additional arguments after @var{display}, which were concatenated to @var{command}; this is still supported, but strongly discouraged. @end defun commit 20de6679b0b56b4e37fa7e145a3ed33010f3f6d4 Author: Stephen Berman Date: Mon Jun 13 18:08:22 2016 +0200 Doc fixes for grammar and typos (bug#23746) * doc/emacs/files.texi (Customize Save): * doc/emacs/frames.texi (Window Dividers): * doc/emacs/misc.texi (Printing): * doc/lispref/compile.texi (Compiler Errors): * doc/lispref/keymaps.texi (Changing Key Bindings): * doc/lispref/loading.texi (Named Features): * doc/lispref/markers.texi (Marker Insertion Types): * doc/lispref/modes.texi (Mode Hooks): * doc/lispref/text.texi (Undo): * src/floatfns.c (Fldexp): * src/xfaces.c (syms_of_xfaces): Minor doc fixes for grammar and typos (bug#23746). diff --git a/doc/emacs/files.texi b/doc/emacs/files.texi index 3bbb3cd..fc46ef7 100644 --- a/doc/emacs/files.texi +++ b/doc/emacs/files.texi @@ -701,7 +701,7 @@ after it visits the file. (This marks the buffer as modified, and you can undo it.) If the value is @code{visit-save}, Emacs adds such newlines both on visiting and on saving. If the value is @code{nil}, Emacs leaves the end of the file unchanged; any other non-@code{nil} -value means to asks you whether to add a newline. The default is +value means Emacs asks you whether to add a newline. The default is @code{nil}. @vindex mode-require-final-newline diff --git a/doc/emacs/frames.texi b/doc/emacs/frames.texi index a7e709f..7e60062 100644 --- a/doc/emacs/frames.texi +++ b/doc/emacs/frames.texi @@ -1011,7 +1011,7 @@ scroll bar height, change the @code{scroll-bar-height} frame parameter On graphical displays, you can use @dfn{window dividers} in order to separate windows visually. Window dividers are bars that can be dragged -with the mouse, thus allowing to easily resize adjacent windows. +with the mouse, thus allowing you to easily resize adjacent windows. @findex window-divider-mode To toggle the display of window dividers, use the command @kbd{M-x diff --git a/doc/emacs/misc.texi b/doc/emacs/misc.texi index 497a4ab..853b978 100644 --- a/doc/emacs/misc.texi +++ b/doc/emacs/misc.texi @@ -1885,7 +1885,7 @@ Like @code{lpr-buffer} but print only the current region. @findex lpr-region @vindex lpr-switches @vindex lpr-commands - On most operating system, the above hardcopy commands submit files + On most operating systems, the above hardcopy commands submit files for printing by calling the @command{lpr} program. To change the printer program, customize the variable @code{lpr-command}. To specify extra switches to give the printer program, customize the list diff --git a/doc/lispref/compile.texi b/doc/lispref/compile.texi index c943a6a..f6cd022 100644 --- a/doc/lispref/compile.texi +++ b/doc/lispref/compile.texi @@ -438,7 +438,7 @@ Emacs commands for operating on compiler output can be used on these messages. When an error is due to invalid syntax in the program, the byte -compiler might get confused about the errors' exact location. One way +compiler might get confused about the error's exact location. One way to investigate is to switch to the buffer @w{@file{ *Compiler Input*}}. (This buffer name starts with a space, so it does not show up in the Buffer Menu.) This buffer contains the program being diff --git a/doc/lispref/keymaps.texi b/doc/lispref/keymaps.texi index 61ac80c..f5d3811 100644 --- a/doc/lispref/keymaps.texi +++ b/doc/lispref/keymaps.texi @@ -1368,7 +1368,7 @@ default global map. The function @code{substitute-key-definition} scans a keymap for keys that have a certain binding and rebinds them with a different binding. Another feature which is cleaner and can often produce the -same results to remap one command into another (@pxref{Remapping +same results is to remap one command into another (@pxref{Remapping Commands}). @defun substitute-key-definition olddef newdef keymap &optional oldmap diff --git a/doc/lispref/loading.texi b/doc/lispref/loading.texi index d2d38d7..81a1922 100644 --- a/doc/lispref/loading.texi +++ b/doc/lispref/loading.texi @@ -848,8 +848,8 @@ loaded, into the current Emacs session. This means that the facilities associated with @var{feature} are or will be available for other Lisp programs. -The direct effect of calling @code{provide} is if not already in -@var{features} then to add @var{feature} to the front of that list and +The direct effect of calling @code{provide} is to add @var{feature} to +the front of @code{features} if it is not already in that list and call any @code{eval-after-load} code waiting for it (@pxref{Hooks for Loading}). The argument @var{feature} must be a symbol. @code{provide} returns @var{feature}. diff --git a/doc/lispref/markers.texi b/doc/lispref/markers.texi index 1c90466..1b4d74f 100644 --- a/doc/lispref/markers.texi +++ b/doc/lispref/markers.texi @@ -340,10 +340,10 @@ text is inserted at its position. If @var{type} is @code{nil}, This function reports the current insertion type of @var{marker}. @end defun -Most functions that create markers, without an argument allowing to -specify the insertion type, create them with insertion type -@code{nil}. Also, the mark has, by default, insertion type -@code{nil}. +All functions that create markers without accepting an argument that +specifies the insertion type, create them with insertion type +@code{nil} (@pxref{Creating Markers}). Also, the mark has, by +default, insertion type @code{nil}. @node Moving Markers @section Moving Marker Positions diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi index ae79128..4c96e63 100644 --- a/doc/lispref/modes.texi +++ b/doc/lispref/modes.texi @@ -899,7 +899,7 @@ 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 + When you define a major mode using @code{define-derived-mode}, it automatically makes sure these conventions are followed. If you define a major mode ``by hand'', not using @code{define-derived-mode}, use the following functions to handle these conventions automatically. @@ -1048,7 +1048,7 @@ to invert the sort order. @defun tabulated-list-init-header This function computes and sets @code{header-line-format} for the Tabulated List buffer (@pxref{Header Lines}), and assigns a keymap to -the header line to allow sort entries by clicking on column headers. +the header line to allow sorting entries by clicking on column headers. Modes derived from Tabulated List mode should call this after setting the above variables (in particular, only after setting diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi index 96f109b..7791c26 100644 --- a/doc/lispref/text.texi +++ b/doc/lispref/text.texi @@ -1376,10 +1376,10 @@ before executing each key sequence, so that each undo normally undoes the effects of one command. A few exceptional commands are @dfn{amalgamating}: these commands generally cause small changes to buffers, so with these a boundary is inserted only every 20th command, -allowing to undo them as a group. By default, commands +allowing the changes to be undone as a group. By default, the commands @code{self-insert-command}, which produces self-inserting input -characters (@pxref{Commands for Insertion}), and @code{delete-char} -which deletes characters (@pxref{Deletion}) are amalgamating. +characters (@pxref{Commands for Insertion}), and @code{delete-char}, +which deletes characters (@pxref{Deletion}), are amalgamating. Where a command affects the contents of several buffers, as may happen, for example, when a function on the @code{post-command-hook} affects a buffer other than the @code{current-buffer}, then @code{undo-boundary} diff --git a/src/floatfns.c b/src/floatfns.c index c1bd258..f514fcb 100644 --- a/src/floatfns.c +++ b/src/floatfns.c @@ -185,8 +185,8 @@ If X is zero, both parts (SGNFCAND and EXP) are zero. */) } DEFUN ("ldexp", Fldexp, Sldexp, 2, 2, 0, - doc: /* Return X * 2**EXP, as a floating point number. -EXP must be an integer. */) + doc: /* Return SGNFCAND * 2**EXPONENT, as a floating point number. +EXPONENT must be an integer. */) (Lisp_Object sgnfcand, Lisp_Object exponent) { CHECK_NUMBER (exponent); diff --git a/src/xfaces.c b/src/xfaces.c index 88f5f34..5077cb2 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -6503,8 +6503,8 @@ REPLACEMENT is a face specification, i.e. one of the following: (3) a list in which each element has the form of (1) or (2). List values for REPLACEMENT are merged to form the final face -specification, with earlier entries taking precedence, in the same as -as in the `face' text property. +specification, with earlier entries taking precedence, in the same way +as with the `face' text property. Face-name remapping cycles are suppressed; recursive references use the underlying face instead of the remapped face. So a remapping of commit a67a4e598d57cd9d6fb6442e747ebabc8da2798a Author: Eli Zaretskii Date: Mon Jun 13 18:00:34 2016 +0300 * doc/lispref/processes.texi (Process Buffers): Minor rewording. (Bug#23446) diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index 03ae1f0..679925b 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi @@ -1382,10 +1382,10 @@ subprocess with a @code{SIGHUP} signal (@pxref{Signals to Processes}). @end defun If the process's buffer is displayed in a window, your Lisp program -may wish telling the process the dimensions of that window, so that +may wish to tell the process the dimensions of that window, so that the process could adapt its output to those dimensions, much as it -adapts to the screen dimensions. The following functions allow to -communicate this kind of information to processes; however, not all +adapts to the screen dimensions. The following functions allow +communicating this kind of information to processes; however, not all systems support the underlying functionality, so it is best to provide fallbacks, e.g., via command-line arguments or environment variables. commit 27f440e29575303135dbc0f8d34f50701a3815ac Author: Eli Zaretskii Date: Mon Jun 13 17:25:08 2016 +0300 Add cross-reference to ELisp manual * doc/lispref/commands.texi (Classifying Events): Add cross-reference to "Motion Events". (Bug#23756) diff --git a/doc/lispref/commands.texi b/doc/lispref/commands.texi index a94d46e..6e83659 100644 --- a/doc/lispref/commands.texi +++ b/doc/lispref/commands.texi @@ -1977,7 +1977,7 @@ in @code{event-modifiers}. For example: @defun mouse-movement-p object This function returns non-@code{nil} if @var{object} is a mouse movement -event. +event. @xref{Motion Events}. @end defun @defun event-convert-list list commit 10802d8472279ed34c98ace04362ce7b3d6bbc97 Author: Glenn Morris Date: Sun Jun 12 13:07:11 2016 -0400 ; make change-history-commit diff --git a/ChangeLog.2 b/ChangeLog.2 index eb336c7..305f065 100644 --- a/ChangeLog.2 +++ b/ChangeLog.2 @@ -1,3 +1,3832 @@ +2016-06-11 Stefan Monnier + + * lisp/emacs-lisp/macroexp.el (macroexp--expand-all): Fix (bug#19704) + + Don't rewrite (funcall 'f ...) to (f ...). + +2016-06-11 Phillip Lord + + Restore initial undo boundary with viper + + * lisp/emulation/viper-cmd.el (viper-adjust-undo): Add back last undo + boundary if it has been removed. + + Addresses Bug#22295. + +2016-06-11 Phillip Lord + + Revert "Fix viper undo breakage from undo-boundary changes" + + This reverts commit c0139e32f1f3bb287b04e02a69a7848d6a040003. + +2016-06-11 Ken Brown + + Fix dbus crash on 32-bit Cygwin + + * src/dbusbind.c (Fdbus__init_bus): Use make_save_pointer to store + connection address. (Bug#23741) + (xd_lisp_dbus_to_dbus): Use XSAVE_POINTER to retrieve connection + address. + +2016-06-10 Nicolas Petton + + Bump version to 25.0.95 + + * README: + * configure.ac: + * lisp/ldefs-boot.el: + * msdos/sed2v2.inp: Bump Emacs version to 25.0.95. + +2016-06-10 Nicolas Petton + + * etc/AUTHORS: Update the AUTHORS file + +2016-06-10 Nicolas Petton + + add entries to authors.el + + * admin/authors.el (authors-renamed-files-alist): Add char-fold files. + +2016-06-10 Jules Tamagnan + + Fix eldoc-related freezes in python mode + + * lisp/progmodes/python.el (python-eldoc-get-doc): New defvar. + (python-eldoc-function-timeout) + (python-eldoc-function-timeout-permanent): New defcustoms. + (python-eldoc-function): If python-eldoc--get-doc-at-point times + out, effectively turn off ElDoc in current buffer. (Bug#23609) + +2016-06-09 Martin Rudalics + + Handle mouse leaving initial window in `mouse-set-region' (Bug#23707) + + * lisp/mouse.el (mouse-set-region): If the mouse ends up in + another window or on the menu bar, use `window-point' of + selected window instead of `posn-point' of the event end + (Bug#23707). + +2016-06-08 Marco Wahl + + org.el: Fix bindings of < and > for calendar scrolling + + [This patch taken from upstream Org repo with 8b63dc9 dated + 2014-10-20 (Bug#23725).] + * lisp/org/org.el (org-read-date-minibuffer-local-map): + Switch to the current calendar API for scrolling the calendar. + +2016-06-08 Phillip Lord + + Fix undo boundary in recursive edit (Bug#23632) + + * src/keyboard.c (recursive_edit_1): specbind + undo-auto--undoably-changed-buffers. + * lisp/simple.el (undo-auto--undoably-changed-buffers): + fix docstring. + +2016-06-07 Glenn Morris + + Doc fixes re alist-get. (Bug#23548) + + * lisp/subr.el (alist-get): Doc fix. + * doc/lispref/lists.texi (Association Lists): Improve alist-get. + +2016-06-07 Glenn Morris + + * lisp/progmodes/python.el (inferior-python-mode): + Avoid tabs. (Bug#23616) + + * src/syntax.c (syms_of_syntax) : Doc fix. + +2016-06-07 Tino Calancha + + * lisp/help-fns.el (describe-function-1): + Fix handling of file name for aliases. (Bug#21950) + + * lisp/emacs-lisp/cl-macs.el (cl-loop): Doc fix re "by". + + * doc/misc/cl.texi (Mapping over Sequences): Fix cl-notevery. + +2016-06-07 Paul Eggert + + Fix crash in syntax.c after GC + + Problem reported by Vincent Belaïche (Bug#23704). + * src/syntax.c (skip_chars): Recompute pointers into the + buffer after every call to update_syntax_table_forward, + as it can GC. + +2016-06-06 Dmitry Gutov + + Improve squiggly heredoc support in non-SMIE Ruby mode + + * lisp/progmodes/ruby-mode.el (ruby-parse-partial): Support + squiggly heredocs here, too (port from upstream). + +2016-06-06 Stephen Berman + + Fix doc string quoting + + * lisp/files.el (shell-quote-wildcard-pattern): + * lisp/progmodes/vhdl-mode.el (vhdl-mode): + * lisp/subr.el (replace-regexp-in-string): + * lisp/view.el (view-mode): + * src/nsfns.m (syms_of_nsfns): + * src/syntax.c (Fbackward_prefix_chars): + Fix quoting problems in doc strings (Bug#23696). + +2016-06-05 Martin Rudalics + + Fix mouse dragging of vertical dividers with scroll bars on left (Bug#23690) + + * lisp/mouse.el (mouse-drag-line): With scroll bars on the left + adjust trailing edge of window on the left when dragging the + vertical divider of the mode line. (Bug#23690) + +2016-06-04 Eli Zaretskii + + * etc/PROBLEMS: Mention the link-time problems on FreeBSD 11. + + (Bug#23641) + +2016-05-31 Glenn Morris + + * test/automated/viper-tests.el (viper-test-undo-kmacro): + Delete temp-file at end. + + * lisp/mail/footnote.el (footnote-mode): Fix doc typo. + + * doc/misc/smtpmail.texi (Encryption): Fix 2012-12-22 typo. + + * lisp/emacs-lisp/lisp-mode.el (lisp--mode-syntax-table): + Fix typo. (Bug#23654) + +2016-05-30 Stefan Monnier + + * lisp/recentf.el (recentf-dialog-mode-map): Remove follow-link (bug#22434) + +2016-05-30 Bill Wohler + + Correct cl-flet usage (Bug#22317) + + * mh-compat.el: Rename mh-cl-flet to mh-flet and convert alias to + macro using patch from Katsumi Yamaoka . + * mh-thread.el (mh-thread-set-tables): + * mh-show.el (mh-gnus-article-highlight-citation): + * mh-mime.el (mh-display-with-external-viewer): + (mh-mime-display, mh-press-button, mh-push-button): + (mh-display-emphasis): Call mh-flet instead of mh-cl-flet. + +2016-05-30 Bill Wohler + + Release MH-E manual version 8.6 + + * doc/misc/mh-e.texi (VERSION, EDITION, UPDATED, UPDATE-MONTH): + Update for release 8.6. + +2016-05-30 Mike Kupfer + + Update MH-E's documentation about HTML renderers + + * doc/misc/mh-e.texi (HTML): Remove the footnote with the minimum Gnus + version (we are no longer trying to support multiple Emacs + releases). Sort the table of HTML renderers by name (the previous + ordering was based on a 10-year-old survey). Add shr and gnus-w3m to + the table. Remove the entry for w3 (no longer available). Update + existing entries so that they are more consistent about what features + are discussed, and to reflect recent testing (Debian 8). Small tweaks + to existing text. + +2016-05-30 Dmitry Gutov + + Fx the we->the typo + + * doc/emacs/trouble.texi (Sending Patches): + Fix the typo (bug#23657). + +2016-05-30 Paul Eggert + + Restore frames into the current display by default + + * lisp/desktop.el (desktop-restore-in-current-display): + Default to t, not nil (Bug#23604). + * etc/NEWS: Mention the change. + +2016-05-29 Stefan Monnier + + * lisp/recentf.el (recentf-open-files-item): Quick fix for (bug#22434). + + etc/TODO: Remove out-of-place issue + +2016-05-29 Eli Zaretskii + + Clarify doc string of 'file-name-sans-extension' + + * lisp/files.el (file-name-sans-extension, file-name-extension): + Clarify in the doc strings what is the extension, and which + leading period doesn't count. (Bug#23643) + +2016-05-28 Eli Zaretskii + + Fix the MSDOS build + + * msdos/sed1v2.inp (PAXCTL_dumped, PAXCTL_notdumped): Define to + empty, and remove the lines which use them in recipes, as that + causes weird error message from Make and breaks the MSDOS build. + +2016-05-28 Andreas Schwab + + * lisp/progmodes/elisp-mode.el (elisp-function-argstring): Call + substitute-command-keys to undo help--docstring-quote. (Bug#23634) + +2016-05-27 Eli Zaretskii + + * src/dired.c (Ffile_name_all_completions): Doc fix. (Bug#23631) + +2016-05-27 Eli Zaretskii + + Fix infloop in 'number-sequence' + + * lisp/subr.el (number-sequence): Avoid overflow leading to an + infloop. (Bug#23627) + + * test/automated/subr-tests.el (number-sequence-test): New test. + +2016-05-26 Glenn Morris + + * lisp/emacs-lisp/find-func.el (find-function-library): + + Update for symbol-function no longer erroring. (Bug#23626) + +2016-05-26 Glenn Morris + + * lisp/w32-fns.el (set-message-beep, w32-get-locale-info) + (w32-get-valid-locale-ids): Improve declarations. + +2016-05-26 Vincent Belaïche + + Correct old cell name unbinding when renaming cell. + + Bug is to unbind old cell names when renaming a cell with + 'makunbound'. when the old cell name is of A1 type, then + 'kill-local-variable' must be used instead, so that only the current + spreadsheet is affected. When the old cell name is a renamed cell, + then 'ses--unbind-cell-name' must be used in order to remove the old + name from the name hashmap. + + * ses.el (ses-rename-cell): check consistency of cell symbol from + text-property and from array object. Instead of 'makunbound', use + either 'ses--unbind-cell-name' or 'kill-local-variable' depending on + whether the cell old name is a named cell or an A1 type cell + +2016-05-25 Vincent Belaïche + + Document problem: slow screen refresh on missing font. + + See discussion of bug#22519 for more on this. + +2016-05-25 Glenn Morris + + * admin/admin.el (add-release-logs): Basic check of existing ChangeLog. + +2016-05-25 Glenn Morris + + * build-aux/gitlog-to-emacslog: Handle empty generated ChangeLog. + + This is relevant for M-x add-release-logs right after M-x authors. + +2016-05-25 Glenn Morris + + * admin/admin.el (add-release-logs): Generate ChangeLog if needed. + +2016-05-25 Paul Eggert + + * doc/misc/texinfo.tex: Revert previous change (Bug#23611). + +2016-05-25 Glenn Morris + + * admin/authors.el (authors): First update the ChangeLog. + + * admin/make-tarball.txt: Related updates. + +2016-05-24 Dmitry Gutov + + Rename vc-stay-local back to vc-cvs-stay-local + + * lisp/vc/vc-cvs.el (vc-cvs-stay-local): Rename back from + vc-stay-local (bug#19548). Improve the docstring. + (vc-cvs-stay-local-p): Update accordingly. + +2016-05-24 Glenn Morris + + * doc/emacs/files.texi (Comparing Files): + * doc/emacs/trouble.texi (Sending Patches): Fix external xrefs. + + * doc/misc/eww.texi (Advanced): Fix xref. + +2016-05-24 Eli Zaretskii + + Fix cross-references between manuals + + * doc/misc/viper.texi (Viper Specials): + * doc/misc/url.texi (Tramp): + * doc/misc/sem-user.texi (Smart Jump): + * doc/lispintro/emacs-lisp-intro.texi (Finding More): + * doc/misc/efaq.texi (Replacing text across multiple files): Fix + cross-references between manuals. (Bug#23612) + * doc/lispintro/emacs-lisp-intro.texi (etags): Node deleted: no + longer relevant to Emacs Lisp programming. + +2016-05-24 Glenn Morris + + * doc/misc/vhdl-mode.texi (Sample Init File): Rename node to avoid ".". + + * admin/admin.el (add-release-logs): Also update etc/HISTORY. + +2016-05-24 Eli Zaretskii + + Avoid aborting due to errors in arguments of 'set-face-attribute' + + * src/xfaces.c (Finternal_set_lisp_face_attribute): Check the + FRAME argument before using it. This avoids gratuitous aborts in + Emacs built with --enable-checking when the luser was unlucky + enough to get the argument list in wrong order. + +2016-05-23 Phillip Lord + + Add automated test for viper-tests.el + +2016-05-23 Phillip Lord + + Fix viper undo breakage from undo-boundary changes + + * lisp/simple.el (undo-auto-disable-boundaries): New variable + * lisp/emulation/viper-init.el (viper-undo-in-complex-command, + viper-undo-needs-adjustment): Rename + variable to reflect new purpose, + (viper-buffer-undo-list-mark): Remove + * lisp/emulation/viper-cmd.el (viper-set-complex-command-for-undo): + Add undo using `undo-boundary', disable default undo-boundary + addition. + * lisp/emulation/viper-cmd.el + (viper-complete-complex-command-for-undo,viper-adjust-undo): + Change function name, remove old undo list manipulation. + * lisp/emulation/viper-cmd.el (viper-undo,viper-repeat, + viper-change-state-to-vi,viper-change-state): + Update for function name change. + + Addresses Bug #22295 + +2016-05-22 Kaushal Modi + + Fix reference to obsolete fn ps-eval-switch + + lpr-eval-switch is functionally the same as ps-eval-switch, + which was obsoleted in 2cdeb903c57126d3ad5f0cbd72e182584b76ee29. + So use that instead (Bug#19717). + * lisp/printing.el (pr-switches): Use lpr-eval-switch instead of + ps-eval-switch. + +2016-05-22 Paul Eggert + + Do not trash symlinks to init file + + If the user’s init file is a symbolic link, do not break the link + when initializing the package system. Problem reported by Jackson + Hamilton (Bug#23050). + * lisp/emacs-lisp/package.el (package--ensure-init-file): + Bind find-file-visit-truename when visiting the init file, and + save and restore the buffer name the way cus-edit does in a + similar situation (Bug#454). + +2016-05-22 Alan Mackenzie + + Don't print the "decomposition" line for control chars in what-cursor-position + + This is a temporary workaround for bug #23594, where the decomposition line + for linefeed corrupted the display on a Linux virtual terminal. + + * lisp/descr-text.el (describe-char): Remove `decomposition' from the list of + character code properties printed for control characters. + +2016-05-22 Paul Eggert + + Bring back xterm pasting with middle mouse + + Problem reported by Jan Synáček. + Solution suggested by Stefan Monnier (Bug#23519). + * lisp/isearch.el (isearch-mode-map): Add a binding for xterm-paste. + (xterm--pasted-text): New decl. + (isearch-xterm-paste): New function. + * lisp/term/xterm.el (xterm--pasted-text): New function, + taken from xterm-paste internals. + (xterm-paste): Use it. + +2016-05-22 Eli Zaretskii + + Provide workaround for xftfont rendering problem + + * src/xftfont.c (syms_of_xftfont) : + New variable. + (xftfont_open): Use it to work around problems with rendering some + fonts. (Bug#23360) + +2016-05-21 Jun Hao + + * lisp/desktop.el: Disable restore frameset if in non-graphic display. + + (Bug#17693) + +2016-05-21 Eli Zaretskii + + Mention GTK+ problems in etc/PROBLEMS + + * etc/PROBLEMS (GDK_SCALE, GDK_DPI_SCALE): Mention the possible + problems this could create and the workaround. (Bug#23587) + +2016-05-20 Artur Malabarba + + * lisp/emacs-lisp/package.el (package-refresh-contents): + + Don't change the value of `package-check-signature'. + (package-check-signature): Use `epg-find-configuration' + instead of `executable-find'. + +2016-05-20 Daiki Ueno + + Revert "epg: Add a way to detect gpg1 executable for tests" + + This reverts commit d4ae6d7033b34e8b75c59aaf1584131e439ef2d5. + +2016-05-19 Eli Zaretskii + + Avoid errors with Czech and Slovak input methods + + * lisp/leim/quail/slovak.el (slovak, slovak-prog-1, slovak-prog-2) + (slovak-prog-3): Remove the kp-* key bindings, they are not needed + and cause errors in "C-u C-x =". + * lisp/leim/quail/czech.el (czech, czech-qwerty, czech-prog-1) + (czech-prog-2, czech-prog-3): Remove the kp-* key bindings. + (Bug#23559) + +2016-05-19 Daiki Ueno + + epg: Add a way to detect gpg1 executable for tests + + Fixes bug#23561. + + * test/automated/epg-tests.el + (epg-tests-program-alist-for-passphrase-callback): New + constant. + (epg-tests-find-usable-gpg-configuration): New function, + renamed from `epg-tests-gpg-usable'. All callers changed. + (epg-tests-gpg-usable): Remove. + + * lisp/epg-config.el (epg-config--program-alist): Factor out + constructor element to... + (epg-config--configuration-constructor-alist): ...here. + (epg-find-configuration): Rename FORCE argument to NO-CACHE, + and add PROGRAM-ALIST argument. + +2016-05-18 Artur Malabarba + + * lisp/emacs-lisp/package.el: Fix free variable warnings. + + (package--with-response-buffer): Replace two usages of + `macroexp-let2*' with `let'. + +2016-05-18 Artur Malabarba + + * lisp/emacs-lisp/package.el (package--with-response-buffer): + + Fix some macro locals leaking into body. (Bug#22440) + + * test/automated/package-test.el (package-test-signed): + Manually check all possible values of `package-check-signature'. + +2016-05-18 Eli Zaretskii + + Improve documentation of 'server-name' + + * doc/emacs/misc.texi (Emacs Server): Fix example of setting + 'server-name'. Mention how to do that with daemon sessions. + (Bug#23576) + +2016-05-18 Paul Eggert + + Modernize ASLR advice in etc/PROBLEMS + + * etc/PROBLEMS (Segfault during 'make'): Modernize advice for + seccomp, Docker, and NetBSD (Bug#23529). + +2016-05-17 Juri Linkov + + * lisp/char-fold.el: Rename from character-fold.el. + + * lisp/replace.el (replace-char-fold): Rename from replace-character-fold. + * test/automated/char-fold-tests.el: Rename from character-fold-tests.el. + http://lists.gnu.org/archive/html/emacs-devel/2015-12/msg00529.html + +2016-05-17 Nicolas Petton + + Bump version to 25.0.94 + + * README: + * configure.ac: + * msdos/sed2v2.inp: Bump Emacs version to 25.0.94. + +2016-05-17 Nicolas Petton + + etc/AUTHORS: Update the AUTHORS file + +2016-05-16 Alan Third + + Fix bug#23462: Crash when iconifying frame on OS X. + + * src/nsterm.m (x_iconify_frame): Block input while miniaturize is + running. + +2016-05-16 Paul Eggert + + Avoid shrinking windows with Gtk+ 3.20.3 + + Problem reported by Matthias Clasen (Bug#23144). + This was fixed in a different way in master. + Do not merge to master. + * src/xterm.c (handle_one_xevent) [GTK_CHECK_VERSION (3, 20, 3)]: + Do not call xg_frame_resized in the MapNotify case. + +2016-05-16 Eli Zaretskii + + Fix bug in default setting of 'ps-paper-type' + + * lisp/international/mule-cmds.el (set-locale-environment): Don't + inherit the value of locale from previous examination of different + environment variables, which didn't look at LC_PAPER, and so using + that value would effectively ignore the setting of LC_PAPER. + (Bug#23544) + +2016-05-13 Paul Eggert (tiny change) + + Properly reject malformed or empty package sigs + + Problem report and fix by Lizzie Dixon (Bug#23513). + * lisp/emacs-lisp/package.el (package--check-signature-content): + Report an error if no good signatures OR if a fatal error. Not AND. + +2016-05-13 Paul Eggert + + Remove buggy non-native image scrolling + + This never worked, and could cause infinite recursion. + Problem reported by Glenn Morris (Bug#22465). + * lisp/xwidget.el (xwidget-webkit-scroll-behavior): Remove. + All uses removed. + +2016-05-13 Paul Eggert + + * doc/misc/texinfo.tex: Sync from gnulib. + +2016-05-12 Glenn Morris + + * lisp/emacs-lisp/find-func.el (find-feature-regexp) + (find-alias-regexp): Fix :version. + +2016-05-11 Dmitry Gutov + + Do not mistake colon at the end of regexp for slash symbol + + * lisp/progmodes/ruby-mode.el (ruby-syntax-propertize): + Check the parse state in the "Symbols with special characters" + rule (bug#23515). + +2016-05-11 Dmitry Gutov + + Make package-install-from-buffer not move point + + * lisp/emacs-lisp/package.el (package-install-from-buffer): + Use save-excursion here (bug#22616). + +2016-05-11 Dmitry Gutov + + Redo the fix for bug#21839 + + * lisp/help.el (help-add-fundoc-usage): Undo the previous change. + (help--make-usage-docstring): Escape newlines when printing. + + * lisp/emacs-lisp/cl-macs.el (cl--transform-lambda): + Ditto (bug#21839). + +2016-05-10 Dmitry Gutov + + Don't treat JS spread as contination method call + + * lisp/progmodes/js.el (js--indent-operator-re): + Allow only one dot (bug#23492). + + * test/indent/js.js (default): Add a corresponding example. + +2016-05-09 Dmitry Gutov + + Allow newlines inside cl function arglists + + * lisp/help.el (help-add-fundoc-usage): Allow newlines inside + ARGLIST (bug#21839). + +2016-05-09 Dmitry Gutov + + Publicize cl--generic-all-functions + + * lisp/emacs-lisp/cl-generic.el (cl-generic-all-functions): + Rename from cl--generic-all-functions. Update both callers. + + * lisp/cedet/semantic/db-el.el + (semanticdb-find-tags-external-children-of-type-method): + And use it here (bug#23042). + +2016-05-09 Alan Mackenzie + + Add some "safe-local-variable" declarations for compatibility with master. + + These enable C files from the master repository to be visited in Emacs 25 + without generating irritating questions about configuration variable safety. + + * lisp/progmodes/cc-vars.el: (c-string-list-p, c-string-or-string-list-p): New + functions. + (c-noise-macro-names, c-noise-macro-with-parens-names): give the + safe-local-variable property c-string-list-p. + (c-macro-names-with-semicolon): give the safe-local-variable property + c-string-or-string-list-p. + +2016-05-09 Lars Ingebrigtsen + + Fix doc string in `insert' + + * src/editfns.c (Finsert_and_inherit): The before-insertion + markers do not move. + (Finsert): Ditto. + +2016-05-08 Paul Eggert + + * doc/misc/emacs-mime.texi (time-date): Document now-builtins better. + +2016-05-07 Dmitry Gutov + + Say 'All results processed' at the end + + * lisp/progmodes/xref.el (xref--query-replace-1): + Say 'All results processed' at the end if the user hadn't + cancelled the process (bug#23284). + +2016-05-07 Eli Zaretskii + + Document automatic adjustment of process' logical window dimensions + + * doc/lispref/processes.texi (Process Buffers): Document + 'set-process-window-size' and + 'window-adjust-process-window-size-function'. + + * etc/NEWS: Mention the new functionality and variable. + + * src/process.c (Fset_process_window_size): Improve the doc string. + +2016-05-06 Michael Albinus + + tramp-sh.el: Work around a stat bug (backport from master) + + * lisp/net/tramp-sh.el (tramp-get-remote-stat): Do not use + stat versions which produce shell quoted output. See also + coreutils Bug#23422. + + (cherry picked from commit 6aad36ace9953b9672b13be68416d205532d5e59) + +2016-05-05 Paul Eggert + + Doc fixes for fclist and grep + + A newline is needed between two fc-list calls. + egrep and fgrep have been withdrawn from POSIX, + so document grep -E and grep -F instead. + +2016-05-05 Paul Eggert + + Minor doc fixes for quoting + + * doc/lispref/control.texi (Signaling Errors): + * doc/lispref/display.texi (Displaying Messages): + Don’t say that formats “generate”. Try to word more clearly. + * etc/NEWS: Coalesce near-duplicate entries. + +2016-05-05 Dmitry Gutov + + `nreverse' the marker pairs list + + * lisp/progmodes/xref.el (xref--buf-pairs-iterator): `nreverse' + the marker pairs list for each buffer before returning. + +2016-05-04 Dmitry Gutov + + Use save-excursion in xref-location-marker more + + * lisp/progmodes/elisp-mode.el (xref-location-marker): Use + save-excursion, in order not to alter the value of point if the + buffer is currently open in the background (problem reported by + Robert Weiner). + + * lisp/progmodes/etags.el (xref-location-marker): Same. + +2016-05-04 Dmitry Gutov + + shell-quote-argument DIR when appropriate + + * lisp/progmodes/project.el (project-file-completion-table): + `shell-quote-argument' DIR as well. + + * lisp/progmodes/xref.el (xref--rgrep-command): Pass DIR through + `shell-quote-argument' (bug#23453). Thanks for Kaushal Modi for + pointing out the problem. Assert that DIR doesn't start with `~'. + +2016-05-04 Dmitry Gutov + + Rework xref-query-replace-in-results + + * lisp/progmodes/xref.el (xref-query-replace-in-results): Collect + all xrefs from the buffer first, then delegate most of the + processing to the value returned by xref--buf-pairs-iterator. + (xref--buf-pairs-iterator): New function. Return an "iterator" + which partitions returned markers into buffers, and only processes + markers from one buffer at a time. When an xref is out of date, + skip it with a message instead of signaling error (bug#23284). + (xref--outdated-p): Extract from xref--buf-pairs-iterator. Trim + CR from both strings before comparing. + (xref--query-replace-1): Remove the variable current-buf, no need + to track it anymore. Simplify the filter-predicate and search + functions accordingly. Iterate over buffer-markers pairs returned + by the iterator, and call `perform-replace' for each of them. Use + multi-query-replace-map (bug#23284). Use `switch-to-buffer' every + time after the first, in order not to jump between windows. + + * test/automated/xref-tests.el + (xref--buf-pairs-iterator-groups-markers-by-buffers-1) + (xref--buf-pairs-iterator-groups-markers-by-buffers-2) + (xref--buf-pairs-iterator-cleans-up-markers): New tests. + +2016-05-04 Juri Linkov + + * lisp/replace.el (query-replace-read-from): Use minibuffer-with-setup-hook + + to set minibuffer-local value of text-property-default-nonsticky. + (Bug#23418, bug#23127) + +2016-05-04 Stephen Berman + + Fix todo-mode bug involving archived items (bug#23447) + + * lisp/calendar/todo-mode.el (todo-jump-to-category): When jumping + from Todo Categories mode to a category with only archived items + and todo-skip-archived-categories is non-nil, make sure the + archive file buffer is in Todo Archive mode to prevent + todo-category-select from raising an error, and don't set + todo-current-todo-file, since that makes todo-show display the + archived category. Remove a no-op call to kill-buffer, which is + already called in todo-insert-category-line. + +2016-05-03 Dmitry Gutov + + Handle "empty line" regexp in xref searches + + * lisp/progmodes/xref.el (xref--collect-matches-1): Stop after one + match if re-search-forward doesn't move point (bug#23426). + + * test/automated/xref-tests.el + (xref-collect-matches-finds-an-empty-line-regexp-match): + Uncomment test. + +2016-05-03 Dmitry Gutov + + Add tests for xref-collect-matches + + * test/automated/xref-tests.el: New file. Add tests for + xref-collect-matches. + +2016-05-03 Dmitry Gutov + + Use grep-find-ignored-directories instead of vc-directory-exclusion-list + + * lisp/dired-aux.el (dired-do-find-regexp): + Use grep-find-ignored-directories instead of + vc-directory-exclusion-list. The result should be functionally + similar (the former uses the latter as the default value), but it + should be more consistent and appropriate WRT user + customizations. + (dired-do-find-regexp-and-replace): Update the docstring. + + * lisp/dired.el: Update the corresponding autoloads. + + * doc/emacs/dired.texi (Operating on Files): Update the + documentation accordingly. + +2016-05-03 Dmitry Gutov + + Clear buffer-undo-list when showing xrefs + + * lisp/progmodes/xref.el (xref--show-xref-buffer): Clear + buffer-undo-list and temporarily bind it to t while rendering the + buffer contents. + +2016-05-03 Alan Mackenzie + + Note the quote translation in `message' in section "incompatible changes". + + * etc/NEWS: Note that `message' translates quotes, that the translation + cannot be disabled, and that `format' can be used to get the old + behavior back. + +2016-05-03 Paul Eggert + + * etc/NEWS: Mention (message "%s" (format ...)). + +2016-05-03 Lars Ingebrigtsen + + (Common Keywords): Correct what missing :group means + + * doc/lispref/customize.texi (Common Keywords): Correct what + missing :group means. + +2016-05-03 Eli Zaretskii + + Improve documentation of Dired's 'A' and 'Q' commands + + * lisp/dired-aux.el (dired-do-find-regexp) + (dired-do-find-regexp-and-replace): Mention + 'grep-find-ignored-files' and 'vc-directory-exclusion-list', and + also the fact that REGEXP should be palatable by Grep. (Bug#23426) + * lisp/dired.el: Update the corresponding autoload forms. + + * doc/emacs/dired.texi (Operating on Files): Mention + 'grep-find-ignored-files' and 'vc-directory-exclusion-list'. + (Bug#23429) + +2016-05-03 Paul Eggert + + Doc fixes for quoting + + * doc/emacs/text.texi, doc/lispintro/emacs-lisp-intro.texi: + * doc/lispref/control.texi, doc/lispref/display.texi: + * doc/lispref/help.texi, doc/lispref/strings.texi, lisp/subr.el: + * src/callint.c, src/doprnt.c, src/editfns.c: + Document quoting a bit more systematically. + Problem reported by Alan Mackenzie (Bug#23425). + +2016-05-02 Lars Ingebrigtsen + + posnp doc clarification + + * lisp/subr.el (posnp): Mention that a posn object is returned + from `event-start' (bug#18211). + +2016-05-02 Lars Ingebrigtsen + + Mention what a missing :group does + + * doc/lispref/customize.texi (Common Keywords): Document that + a missing :group reuses the group from the preceding item (bug#21601). + +2016-05-02 Eli Zaretskii + + Fix documentation of dired-aux search/replace commands + + * lisp/dired-aux.el (dired-do-find-regexp) + (dired-do-find-regexp-and-replace): Doc fixes. (Bug#23429) + * lisp/dired.el: Update the corresponding autoload forms. + +2016-05-02 Paul Eggert + + Fix quoting problem in cc-engine debug message + + * lisp/progmodes/cc-engine.el (c-replay-parse-state-state): + Use "%s" format to pass through ‘'’ unscathed (Bug#23425), and + likewise for ‘`’, and ‘%’. + +2016-05-02 Philipp Stephani + + Add electric-quote-string unit test + + * test/automated/electric-tests.el (electric-quote-string): New test. + +2016-05-02 Paul Eggert + + Don’t electrically quote ‘'’ in Python + + Problem reported by Philipp Stephani (Bug#23387). + * lisp/electric.el (electric-quote-post-self-insert-function): + Do not requote a string starter or ender. + +2016-05-02 Dmitry Gutov + + `nreverse' Grep hits before passing them to xref--convert-hits + + * lisp/progmodes/xref.el (xref-collect-matches): `nreverse' hits + before passing them to xref--convert-hits. Fixes a regression + from cc0b7132. + +2016-05-01 Paul Eggert + + * doc/misc/texinfo.tex: Sync from gnulib. + +2016-05-01 Juri Linkov + + * lisp/isearch.el (isearch-forward-symbol-at-point): Add isearch-push-state. + + (Bug#23410) + +2016-05-01 Michael Albinus + + tramp.texi: Revert last change due to backward compatibility + + (cherry picked from commit 910f9a0a936aacbffe9b9b790d7f698dfd287aac) + +2016-05-01 Lars Ingebrigtsen + + cua-prefix-override-inhibit-delay doc fix + + * lisp/emulation/cua-base.el + (cua-prefix-override-inhibit-delay): Typo fix in doc string + (bug#23401). + + (cherry picked from commit 2b4c099822811ede787fc6e575bfbb17b3cc0681) + +2016-05-01 Lars Ingebrigtsen + + global-eldoc-mode doc fix + + * lisp/emacs-lisp/eldoc.el (global-eldoc-mode): Be more + specific about what "applicable" means (bug#23071). + + (cherry picked from commit 25e95b5dd8cd92e03788e589bf99a4b399f03114) + +2016-05-01 Lars Ingebrigtsen + + normal-top-level-add-subdirs-to-load-path doc fix + + * lisp/startup.el (normal-top-level-add-subdirs-to-load-path): + Doc fix (bug#21962). + + (cherry picked from commit 28aaa6d20586e3330a23b017a65e56dd6461c003) + +2016-05-01 Lars Ingebrigtsen + + isearch-search-fun-function doc tweak + + * lisp/isearch.el (isearch-search-fun-function): Mention what + the STRING parameter is (bug#21552). + + (cherry picked from commit cafc2a5940cdc523cfea6dcf1cf540f48367c62a) + +2016-05-01 Lars Ingebrigtsen + + Fill some imenu--index-alist doc lines + + * lisp/imenu.el (imenu--index-alist): Fill some doc lines (bug#21269). + + (cherry picked from commit 4b7bb8f596550628eaa83b82c0f7eabe59a84964) + +2016-05-01 Lars Ingebrigtsen + + Fmarker_position doc string clarification + + * src/marker.c (Fmarker_position): Clarify the doc string + (bug#21231). + + (cherry picked from commit eeac7c57273cec3f9408b18392dd2bafe3be4450) + +2016-05-01 Lars Ingebrigtsen + + Further define-obsolete-* doc fixups + + * lisp/emacs-lisp/byte-run.el (define-obsolete-face-alias): + Fix up last change. + (define-obsolete-variable-alias): Ditto. + + (cherry picked from commit 28e9f4390d8391c2c36be4ef515cf3a2c679a5a5) + +2016-05-01 Lars Ingebrigtsen + + Describe WHEN in all the define-obsolete- macros + + * lisp/emacs-lisp/byte-run.el (define-obsolete-face-alias): + Say more verbosely what WHEN is (bug#21225). + (define-obsolete-function-alias): Describe the WHEN parameter. + (define-obsolete-variable-alias): Ditto. + + (cherry picked from commit 247c388f160581d207e41ca5926990bbf69d4a0f) + +2016-05-01 Lars Ingebrigtsen + + Mention with-silent-modifications in the lispref manual + + * doc/lispref/text.texi (Changing Properties): Document + with-silent-modifications (bug#21171). + + (cherry picked from commit fcd0d854eef6e439d51e8f07cf734d5e34e502b3) + +2016-05-01 Lars Ingebrigtsen + + with-silent-modifications doc clarification + + * lisp/subr.el (with-silent-modifications): Rearrange the doc + string a bit so that the most pertinent information is at the + top (bug#21171). + + (cherry picked from commit e0e70f030e69d9696a963a86f5f7caaff4df06eb) + +2016-05-01 Lars Ingebrigtsen + + clear-visited-file-modtime doc string fix + + * lisp/files.el (clear-visited-file-modtime): Fix possibly + confusing doc string wording (bug#21169). + + (cherry picked from commit 1aaeaf1450756a71c9254a2a5b174c72084ca67a) + +2016-05-01 Lars Ingebrigtsen + + Document mode mode line variables + + * doc/lispref/modes.texi (Mode Line Variables): Document + `mode-line-front-space, `mode-line-misc-info', + `mode-line-end-spaces' (bug#21014). + + (cherry picked from commit bf7a630b0a5d3900f2afb0e7a881ce62e2b9f935) + +2016-05-01 Lars Ingebrigtsen + + Add a cross ref to Optional Mode Line + + * doc/lispref/modes.texi (Mode Line Variables): Add a cross + reference to the Emacs mode line node that explains things + like `display-time-string' (bug#21002). + + (cherry picked from commit a3151a28789f413af73b14fbba557b2a587fca53) + +2016-05-01 Lars Ingebrigtsen + + Add a doc string to display-time-string + + * lisp/time.el: Add a doc string to `display-time-string', + because it's referred to in the manual, and is too mysterious + otherwise (bug#21002). + + (cherry picked from commit 45559c584e5a4ddeed1539b028b50b95baa372f8) + +2016-05-01 Lars Ingebrigtsen + + custom-buffer-style doc fix + + * lisp/cus-edit.el (custom-buffer-style): Document the `tree' + value (bug#20724). + + (cherry picked from commit bcf0291d0cd02095b0809b1eb91f1e5c5c2ac5e3) + +2016-05-01 Lars Ingebrigtsen + + Rearrange the doc of query-replace slightly + + * lisp/replace.el (query-replace): Move the mention of the + interactive prefix arg earlier so that users can find it + (bug#20654). + + (cherry picked from commit bcc10761c3b968fa4534718116a0a601ed7da389) + +2016-05-01 Lars Ingebrigtsen + + apropos-print doc fix + + * lisp/apropos.el (apropos-print): Document the undocumented + parameters (bug#20520). + + (cherry picked from commit 0714d7387812a151f59993ac77c7321724ef79b1) + +2016-05-01 Lars Ingebrigtsen + + completion-table-with-predicate doc string fix + + * lisp/minibuffer.el (completion-table-with-predicate): t -> + non-nil in the doc string (bug#20460). + + (cherry picked from commit b6a4d162208f239bc7804696d611ae52c686f138) + +2016-05-01 Lars Ingebrigtsen + + Fill the completion-table-with-predicate doc string + + * lisp/minibuffer.el (completion-table-with-predicate): Fill + the doc string (bug#20460). + + (cherry picked from commit 207a31432c1ed8b548003a3e4af32c49aa3441e9) + +2016-05-01 Lars Ingebrigtsen + + replace-match-maybe-edit doc clarification + + * lisp/replace.el (replace-match-maybe-edit): Say what + MATCH-DATA is (bug#20304). + + (cherry picked from commit 139874ba53c2e2de9868f8e5234d6ea2bcb97af8) + +2016-05-01 Lars Ingebrigtsen + + add-timeout doc fix + + * lisp/emacs-lisp/timer.el (add-timeout): Mention the return + value (bug#20181). + + (cherry picked from commit 921b40476f597c84d7c34aa289cd43caeb389c4a) + +2016-05-01 Lars Ingebrigtsen + + Extremely minor doc fix in Choosing Window + + * doc/lispref/windows.texi (Choosing Window): There's only one + action alist, I think (bug#20158). + + (cherry picked from commit 6c7e7f421d02d9290d6d1d85320737371160aef7) + +2016-05-01 Lars Ingebrigtsen + + Transform mentions of `eval-after-load' to `with-eval-after-load' + + * doc/lispref/loading.texi (Hooks for Loading): Update text to + not mention `eval-after-load' (bug#20038). + + (cherry picked from commit 9392193be56eebdfac702a0bbb5e954088371c7a) + +2016-05-01 Lars Ingebrigtsen + + cursor-type doc fix + + * src/buffer.c (syms_of_buffer): Mention that cursor-type's + WIDHT/HEIGHT can't exceed the frame char size (bug#19215). + + (cherry picked from commit 77c5f4554ebb3b7c7d49bc881e45a550f6c93987) + +2016-05-01 Lars Ingebrigtsen + + Add a link from Tool Bar to Images + + * doc/lispref/keymaps.texi (Tool Bar): Add a link to the + Images node (bug#19722). + + (cherry picked from commit da5d0786163a91400eced4fddba4a92b652458d1) + +2016-05-01 Lars Ingebrigtsen + + (default-mode-line-format): More explicit obsolete info + + * lisp/subr.el (default-mode-line-format): Be more explicit in + how default values are now handled (bug#19424). + + (cherry picked from commit 9dc5f6d830e72420dc4d41c8f6ca1ca6b28609c0) + +2016-05-01 Lars Ingebrigtsen + + Fcompare_buffer_substrings doc string clarification + + * src/editfns.c (Fcompare_buffer_substrings): Extremely minor + doc string clarification (bug#19255). + + (cherry picked from commit aa692acbb598a1cc8219ed7a87dde25fd7626ba5) + +2016-05-01 Lars Ingebrigtsen + + insert-file-contents-literally doc fix + + * lisp/files.el (insert-file-contents-literally): Say that the + parameters are explained in the other function (bug#18317). + + (cherry picked from commit b6481b19bc9592492b1f70dfecb4de6256f537fe) + +2016-05-01 Lars Ingebrigtsen + + Fix custom types for cursor-in-non-selected-windows + + * lisp/cus-start.el (standard): Use the same custom types for + cursor-in-non-selected-windows as for cursor-type (bug#19214). + + (cherry picked from commit b66bc0cced786e0320e1c3b0758bd3c434d4e8b5) + +2016-05-01 Lars Ingebrigtsen + + Doc clarification to mwheel-scroll + + * lisp/mwheel.el (mwheel-scroll): Mention that the restriction + does not apply to Windows (bug#19209). + + (cherry picked from commit 696052b5fdfbc5c25dff3c6b081aebe70f6d06c7) + +2016-05-01 Lars Ingebrigtsen + + Clarify the doc of eval-expression-print-format + + * lisp/simple.el (eval-expression-print-format): Doc + clarification (bug#19114). + + (cherry picked from commit cd193a871f5a8e1c81ba86fc398ac382fa814383) + +2016-05-01 Lars Ingebrigtsen + + Explictly explain that package-initialize loads the packages + + * lisp/emacs-lisp/package.el (package-initialize): Be explicit + in saying that `package-initialize' obviates adjusting the + path or requiring the packages, as this is a question that + apparently comes up now and then (bug#18829). + + (cherry picked from commit 619e0aedb2f3dbfe6821ac34e2d25b4e5c181117) + +2016-05-01 Lars Ingebrigtsen + + Have the doc strings of `load-path' and `require' mention each other + + * src/fns.c (Frequire): Mention `load-path' and fill the doc + string (bug#18829). + + * src/lread.c (syms_of_lread): Mention that `require' uses + `load-path'. + + (cherry picked from commit 3eca9a03816f95da0030665223c0b5262f223ba7) + +2016-05-01 Lars Ingebrigtsen + + Doc fix for insert-pair-alist + + * lisp/emacs-lisp/lisp.el (insert-pair-alist): Say what + COMMAND-CHAR is (bug#18809). + + (cherry picked from commit 2824c587e9749a8f350f1d3dddd65176b4561dcb) + +2016-05-01 Lars Ingebrigtsen + + Move doc of backup-directory-alist to the Backup node + + * doc/emacs/files.texi (Backup): Move the documentation of + `backup-directory-alist' here from the "Single or Numbered + Backups" node, because it doesn't seem to have much to do with + numbering (bug#18692). + + (cherry picked from commit e77b8d84b4161f2cf8720dec2bf44a3e50134398) + +2016-05-01 Lars Ingebrigtsen + + Tiny doc clarification for create-fontset-from-fontset-spec + + * lisp/international/fontset.el (create-fontset-from-fontset-spec): + Clarify what the optional part is (bug#18686). + + (cherry picked from commit c05d186455ce9907eeb6b21ea4227e453996c681) + +2016-05-01 Lars Ingebrigtsen + + Fill the doc string of font-lock-keywords + + * lisp/font-lock.el (font-lock-keywords): Fill the lines and + reorganise some explanations (bug#21427). + + (cherry picked from commit c05716d3a26ea7518b89eacfccaf70c9d0731df7) + +2016-05-01 Lars Ingebrigtsen + + Doc fix for font-lock-remove-keywords + + * lisp/font-lock.el (font-lock-remove-keywords): Add a link to + `font-lock-add-keywords' to describe KEYWORDS (bug#18634). + + (cherry picked from commit bc00dcf12983cd399127d0eea39647f29778eb02) + +2016-05-01 Lars Ingebrigtsen + + Clarify whitespace-style doc string + + * lisp/whitespace.el (whitespace-style): Doc clarification + (bug#18296). + + (cherry picked from commit d96c720d0cca7c9ffbb4c712ad315bb707d6625c) + +2016-05-01 Lars Ingebrigtsen + + Doc fixed for next-error-buffer-p + + * lisp/simple.el (next-error-buffer-p): Clarify doc string + (bug#18202). + + (cherry picked from commit a10eb168cc96db9f0dab2d75550cbd8f08be2363) + +2016-05-01 Lars Ingebrigtsen + + Tiny doc fix + + * src/fileio.c (Ffile_accessible_directory_p): Tiny doc fix + (and fill) (bug#18201). + + (cherry picked from commit 2ef0040e2363a669d9b93df935d31c98fa130132) + +2016-05-01 Lars Ingebrigtsen + + Doc fix + + * src/keymap.c (Fdefine_prefix_command): Clarify doc string + slightly (bug#18092). + + (cherry picked from commit 6b769c81d024f7eeb90b167e7df6f87d859614d4) + +2016-05-01 Lars Ingebrigtsen + + delsel doc touch ups + + * lisp/delsel.el (delete-selection-helper): Use non-nil + instead of t and clarify function return values (bug#18089). + + (cherry picked from commit d7a5b5be9a5869bcd233434ec3103dd1976d7df7) + +2016-05-01 Lars Ingebrigtsen + + Doc fixes for menu-bar.el + + * lisp/menu-bar.el (clipboard-kill-ring-save): Describe the + REGION parameter (bug#18028). + (clipboard-kill-region): Ditto. + + (cherry picked from commit 33d2c67bff0992ecbc0fe38556683242b9d1a4ae) + +2016-05-01 Lars Ingebrigtsen + + Doc fix + + * lisp/rect.el (delete-whitespace-rectangle): Doc fix (bug#18026). + + (cherry picked from commit 6baca4911ec901579749dbf7596011d90fea3781) + +2016-05-01 Lars Ingebrigtsen + + Minor doc clarification + + * lisp/subr.el (y-or-n-p): Document the return value from "n" + (bug#18024). + + (cherry picked from commit 5d1f3192d484edee92caa46cd7d699da3e920259) + +2016-05-01 Lars Ingebrigtsen + + Fill font-lock-mode doc string + + * lisp/font-core.el (font-lock-mode): Fill the text to make it + narrower (bug#18008). + + (cherry picked from commit 27abf372836532c57be2e9e3ed23413729cc07fc) + +2016-05-01 Lars Ingebrigtsen + + Wrap the auto-generated doc string + + * lisp/emacs-lisp/easy-mmode.el (define-minor-mode): Wrap a + string to make it less likely that we get overlong lines + (bug#17999). + + (cherry picked from commit 323b69664914d687fd4b48593479cea223dfbcb4) + +2016-05-01 Lars Ingebrigtsen + + Clarify hi-lock-find-patterns + + * lisp/hi-lock.el (hi-lock-find-patterns): Doc clarification + (bug#17989). + + (cherry picked from commit 552e90ce7dff3a7107243fdf71c4de3af443e13a) + +2016-05-01 Lars Ingebrigtsen + + Add a doc string to `winner-mode' + + * lisp/winner.el (winner-mode): Add a doc string based on the + comments in the file (bug#17716). + + (cherry picked from commit 2c3ab9b6e39a3d600e7d82deacc24effaec051bb) + +2016-05-01 Lars Ingebrigtsen + + Doc fix for align-newline-and-indent + + * lisp/align.el (align-newline-and-indent): Mention that + alignment is done by `align' (bug#17707). + + (cherry picked from commit 340a224ec3e01706112a07164da9a9f3f369a5aa) + +2016-05-01 Lars Ingebrigtsen + + Doc fix for `kbd' + + * lisp/subr.el (kbd): Describe more fully the format of the + parameter (bug#17039). + + (cherry picked from commit 3a33afe25d8518f194fa4706eaccdb2a786a0348) + +2016-05-01 Lars Ingebrigtsen + + Doc tweak + + * lisp/simple.el (use-empty-active-region): Doc tweak. + There's only one region (bug#16513). + + (cherry picked from commit 35fb7897f161d5e5a87e039dc1e427094640b0c8) + +2016-05-01 Lars Ingebrigtsen + + Link from (emacs)Exiting to (lisp)Killing Emacs + + * doc/emacs/entering.texi (Exiting): Link to the lispref + manual for further customisations (bug#15445). + + (cherry picked from commit bc5f27aa099cdde02ca66e71501b89300685ab28) + +2016-05-01 Lars Ingebrigtsen + + find-lisp doc touchups + + * lisp/find-lisp.el (find-lisp-format): Copy over the doc + string (bug#15047). + (find-lisp-find-files): Clarify doc. + + (cherry picked from commit e4c7657b0d1a31d64ca24bc64b5480cd7687e332) + +2016-05-01 Lars Ingebrigtsen + + Don't have the manual claim that it lists all CL incompatibilities + + * doc/misc/cl.texi (Common Lisp Compatibility): The list of + incompatibilities isn't exhaustive, so don't say that it is + (bug#15171). + + (cherry picked from commit fb685bc91a72508c97ce7e30f970d4157677f371) + +2016-05-01 Lars Ingebrigtsen + + Change all occurrences of "Mouse-[0-9]" to "mouse-[0-9]" + + * doc/emacs/*.texi: Change all occurrences of "Mouse-[0-9]" to + "mouse-[0-9]". These are case sensitive, and the keys are lower case + (bug#14554). + + (cherry picked from commit e4c26271f2c2fe08f8490e25c63a436ab2a804ca) + +2016-05-01 Lars Ingebrigtsen + + Doc string change to enable-recursive-minibuffers + + * src/minibuf.c (syms_of_minibuf): Mention + minibuffer-depth-indicator-mode in the doc string to + enable-recursive-minibuffers (bug#14147). + + (cherry picked from commit 23ba488a5e8290c4de91e0ff4161641efa364c0d) + +2016-05-01 Lars Ingebrigtsen + + Clarify the `interactive' doc string slightly + + * src/callint.c (Finteractive): Clarify the doc string slightly + (bug#14577). + + (cherry picked from commit cd993be60da2d12db0d390001373d486c1091c47) + +2016-05-01 Lars Ingebrigtsen + + Clarify some doc strings + + * lisp/emacs-lisp/syntax.el (syntax-propertize-via-font-lock): + Clarify doc string (bug#8693). + (syntax-propertize): Clarify doc string. + + (cherry picked from commit ad3ef417f3c40f086de9c547d6272e5685595e42) + +2016-05-01 Lars Ingebrigtsen + + Add some concept index entries for custom types + + * doc/lispref/customize.texi (Composite Types): Add concept + index entries for restricted-sexp, radio and choice (bug#7385). + + (cherry picked from commit 388bb723fa078158d3148de05e942f9c01e95dd8) + +2016-05-01 Lars Ingebrigtsen + + Mention `lisp-indent-function' in the lispref manual + + * doc/lispref/macros.texi (Indenting Macros): Mention + `lisp-indent-function' (bug#3393). + + (cherry picked from commit a1627691a896b2afaa264f93534178bc763564c9) + +2016-05-01 Lars Ingebrigtsen + + Clarify doc string of internal compilation function + + * lisp/progmodes/compile.el (compilation-get-file-structure): + Clarify doc string (bug#3137). + + (cherry picked from commit 123191decb7428db3b32a6c01631fa755088393a) + +2016-05-01 Paul Eggert + + Use ‘T *restrict’ proto, not ‘T[restrict]’ + + * src/fns.c (sort_vector_copy): Use a different way to attempt to + work around GCC 3.0-and-earlier incompatibility with C99, one that + does not have problems with modern non-GCC compilers. + +2016-05-01 Eli Zaretskii + + Fix documentation of 'url-retrieve-synchronously' + + * doc/misc/url.texi (Retrieving URLs): Update argument list of + 'url-retrieve-synchronously'. (Bug#23411) + +2016-05-01 Eli Zaretskii + + * lisp/url/url.el (url-retrieve-synchronously): Doc fix. (Bug#23411) + +2016-04-30 Leo Liu + + Fix last change to isearch-update (bug#23406) + + * lisp/isearch.el (isearch-update): Remove (setq cursor-sensor-inhibit + nil) ie remove the original (unless (boundp 'cursor-sensor-inhibit) + ...) form. + +2016-04-30 Leo Liu + + Autoload cursor-sensor-inhibit (bug#23406) + + * lisp/emacs-lisp/cursor-sensor.el (cursor-sensor-inhibit): Autoload. + * lisp/isearch.el (isearch-update): Remove boundp check. + +2016-04-30 Phillip Lord + + org-map-entries: Fix org-agenda-prepare-buffers call + + * lisp/org.el (org-map-entries): Check that buffer-file-name is non-nil + before passing to org-agenda-prepare-buffers. + + This is a backport of commit 44c8cd7136e3fcd1e6bfa08895cac437b7a691fa + from upstream org-mode. Addresses bug #23365. + +2016-04-30 Eli Zaretskii + + Followup for last commit in the user manual + + * doc/emacs/basic.texi (Moving Point): Clarify that + set-goal-column has buffer-local effect. (Bug#23405) + +2016-04-30 Eli Zaretskii + + Improve doc string of 'set-goal-column' + + * lisp/simple.el (set-goal-column): Doc fix. (Bug#23405) + +2016-04-30 Eli Zaretskii + + Fix the MSDOS build + + * config.bat: + * msdos/sedlisp.inp: + * msdos/sedlibmk.inp: + * msdos/sedleim.inp: + * msdos/sedadmin.inp: + * msdos/sed6.inp: + * msdos/sed3v2.inp: + * msdos/sed2v2.inp: + * msdos/sed1v2.inp: Adapt to Emacs 25. + + * src/process.c (remove_slash_colon): Move out of "#ifdef + subprocesses" block, as it its called unconditionally. Move + ADD_SUBFEATURE calls into "#ifdef subprocesses" block, as they + reference variables only defined in that block. + * src/msdos.h: Provide prototypes for IT_set_frame_parameters, + faccessat, msdos_fatal_signal, syms_of_msdos, pthread_sigmask, + dos_keysns, dos_keyread, run_msdos_command, and + syms_of_win16select, to avoid compiler warnings. + * src/msdos.c (SYS_ENVIRON): Define to either '_environ' or + 'environ', depending on the DJGPP version. + Remove declarations of externally-visible Lisp objects, like + Qbackground_color and Qreverse. + (run_msdos_command): First argument is not signed, not unsigned. + Use SYS_ENVIRON. + (sys_select): Use 'timespec_cmp' instead of 'timespec_sign', as + the latter doesn't work when 'time_t' is an unsigned data type. + This caused idle timers to behave incorrectly: they only fired + after a keyboard input event. + * src/frame.c (adjust_frame_size) [MSDOS]: Account for + FRAME_TOP_MARGIN that isn't counted in the frame's number of + lines, but dos_set_window_size needs it to be added. + * src/lread.c (INFINITY, NAN) [DJGPP < 2.05]: Provide definitions. + * src/fns.c (sort_vector_copy) [__GNUC__ < 4]: Provide a prototype + that works around compilation errors with older GCC versions. + * src/w16select.c: Don't declare QCLIPBOARD and QPRIMARY as Lisp + Objects. + * src/filelock.c [MSDOS]: Ifdef away most of the code. Provide + no-op implementations for 'lock_file' and 'unlock_file'. + (Ffile_locked_p) [MSDOS]: Always return nil. This avoids multiple + ifdefs in all users of filelock.c functionality. + * src/conf_post.h (EOVERFLOW, SIZE_MAX) [DJGPP < 2.04]: Define. + * src/emacs.c [MSDOS]: Include dosfns.h, to avoid compiler + warnings. + * src/dosfns.h: Provide prototypes for dos_cleanup, + syms_of_dosfns, and init_dosfns. + * src/deps.mk (atimer.o): Depend on msdos.h. + (emacs.o): Depend on dosfns.h. + * src/atimer.c [MSDOS]: Include msdos.h, to avoid compiler + warnings. + + * lisp/window.el (window--adjust-process-windows): Skip the body + if 'process-list' is not available. This avoids failure to start + up on MS-DOS. + * lisp/vc/diff.el (diff-no-select): Test 'make-process', not + 'start-process', as the latter is now available on all platforms. + * lisp/textmodes/ispell.el (ispell-async-processp): Replace + 'start-process' with 'make-process' in a comment. + * lisp/term/internal.el (IT-unicode-translations): Modify and add + a few translations to display Info files with Unicode markup. Fix + an ancient off-by-one mismatch error with Unicode codepoints. + * lisp/progmodes/compile.el (compilation-start): Test + 'make-process', not 'start-process', as the latter is now + available on all platforms. + * lisp/man.el (Man-build-man-command, Man-getpage-in-background): + Test 'make-process', not 'start-process', as the latter is now + available on all platforms. + * lisp/international/mule-cmds.el (set-coding-system-map): Test + 'make-process', not 'start-process', as the latter is now + available on all platforms. + * lisp/eshell/esh-cmd.el (eshell-do-pipelines-synchronously): Doc + fix. + (eshell-execute-pipeline): Test 'make-process', not + 'start-process', as the latter is now available on all platforms. + +2016-04-30 Andreas Schwab + + Remove \= from format string (bug#18190) + + * lisp/emacs-lisp/eieio.el (defclass): Remove \= from format + string. + +2016-04-30 Eli Zaretskii + + Fix variable-pitch font on MS-Windows + + * lisp/faces.el (variable-pitch) [w32]: Name a variable-pitch font + explicitly, to avoid Emacs picking up a bold-italic variant on + some MS-Windows systems. See this thread for details: + http://lists.gnu.org/archive/html/emacs-devel/2016-04/msg00746.html. + +2016-04-29 Alan Mackenzie + + Restore follow-scroll-up/down to scrolling by the combined size of all windows + + Also rename the current follow-scroll-up/down functions to + follow-scroll-up-window and follow-scroll-down-window. These scroll by the + height of the current window. + + This fixes bug #23347. + + * lisp/follow.el (follow-mode): Tweak the doc string. + (follow-scroll-up-arg, follow-scroll-down-arg): new functions, extracted from + follow-scroll-up/down. + (follow-scroll-up-window, follow-scroll-down-window): Functions renamed from + follow-scroll-up/down. + (follow-scroll-up, follow-scroll-down): Restore the historic functionality. + +2016-04-29 Alan Mackenzie + + Revert unneeded change which harms syntactic parsing. This fixes bug #23308. + + * lisp/progmodes/cc-engine.el (c-invalidate-state-cache): User + c-state-old-cpp-end as an argument to c-with-all-but-one-cpps-commented-out + regardless of the value of `here'. + +2016-04-29 Alan Mackenzie + + Correct indentation of ids in a C++ enum after a protection keyword. + + Also correct the misfontification of the last enum identifier. + + * lisp/progmodes/cc-engine.el (c-forward-keyword-prefixed-id): setq + c-last-identifier-range to nil to ensure that only types recognized by this + macro are set for fontification as types. + (c-backward-typed-enum-colon): Function renamed from + c-backward-colon-prefixed-type. On finding a colon in the backward search, + check it is preceded by an identifier rather than a keyword. + +2016-04-27 Glenn Morris + + * lisp/window.el (window--process-window-list): No-op if no processes. + + This avoids an issue with save-selected-window (from walk-windows) + failing if frame.el is not loaded, eg if the terminal is resized + during startup of a -nw CANNOT_DUMP build. (Bug#23369). + +2016-04-27 Paul Eggert + + Port dumping to NetBSD with PaX + + Problem reported by Thomas Klausner (Bug#23371). + * configure.ac (PAXCTL_dumped, PAXCTL_notdumped): New vars. + Set them to setfattr and/or paxctl commands appropriate for + GNU/Linux and/or NetBSD; the latter prefers paxctl +a. Search + for paxctl only if setfattr is not found. + * src/Makefile.in (PAXCTL_dumped, PAXCTL_notdumped): + New vars, replacing PAXCTL_if_present and SETFATTR_if_present. + All uses changed. + +2016-04-27 Dmitry Gutov + + Don't mistake `for' inside a function for a part of array comprehension + + * lisp/progmodes/js.el (js--indent-in-array-comp): Also check the + depth in parens between the bracket and `for' (bug#23391). + + * test/indent/js.js: Add a corresponding example. + +2016-04-27 Anders Lindgren + + Fix bug#22891: wrong terminal width when a fringe width is zero. + + When either fringe width is zero, Emacs reserved one column for a + continuation glyph. Terminal windows does not take this into + account when the frame is resized. + + * lisp/window.el (window-adjust-process-window-size): Use + `window-max-chars-per-line' instead of `window-body-width'. + * lisp/term.el (term-window-width): Remove function. (It does the + same as `window-max-chars-per-line' but without recent bug fixes.) + (term-mode): Use `window-max-chars-per-line' instead of + `term-window-width'. + + Backport + + (cherry picked from commit 5b5403289888efe8783ae6a405845b925f544ec1) + +2016-04-27 Leo Liu + + Improve last change to vc-git-mode-line-string + + * lisp/vc/vc-git.el (vc-git-mode-line-string): Better fix that caches + the result. + +2016-04-27 Stephen Berman + + Todo mode doc bug fix + + * lisp/calendar/todo-mode.el (todo-show): Correct obsolete and no + longer correct information in doc string. + +2016-04-27 Leo Liu + + Fix revision calculation in vc-git-mode-line-string + + * lisp/vc/vc-git.el (vc-git-mode-line-string): Use + vc-git-working-revision because vc-working-revision needs to decide + the backend and may return nil. + +2016-04-26 Jorgen Schaefer + + Add Python 3.5 keyword "await" + + * lisp/progmodes/python.el (python-font-lock-keywords): Add await as + keyword. + +2016-04-26 Lele Gaifax + + Add new keywords of Python 3.5 + + Python 3.5, released in mid September 2015, introduced a few new + keywords to better support asynchronous code, "async" and "await" + in particular. See https://www.python.org/dev/peps/pep-0492/ for + details. (Bug#21783) + * lisp/progmodes/python.el (python-rx-constituents): Add async + def/for/with as block-start and async def as defun. + * lisp/progmodes/python.el (python-font-lock-keywords): Add async + def/for/with as keyword. + * test/automated/python-tests.el (python-indent-after-async-block-1, + python-indent-after-async-block-2, python-indent-after-async-block-3, + python-nav-beginning-of-defun-3): New tests to test indentation and + navigation for the async keyword. + +2016-04-26 Mark Oteiza + + Partially revert previous change. + + This commit partially reverts 0f332848cdb2ed6d46771914a911cbca194cd51a. + * lisp/rect.el (rectangle--highlight-for-redisplay): Use region face. + This function is for rectangle-mark-mode, not string-rectangle. + +2016-04-25 Paul Eggert + + Say why text-quoting-style is not a user option + + * doc/lispref/help.texi (Keys in Documentation): + * etc/NEWS: Document why text-quoting-style is not a + customizable variable (Bug#23372). + +2016-04-25 Glenn Morris + + * lisp/emacs-lisp/autoload.el (update-directory-autoloads): + Future-proof against non-time-values. + +2016-04-25 Eli Zaretskii + + Don't mention ~/.emacs.bmk literally in doc strings + + * lisp/bookmark.el (bookmark-save-flag, bookmark-load): Don't + mention "~/.emacs.bmk" explicitly as the default bookmark file in + the doc strings. (Bug#23350) + +2016-04-25 YAMAMOTO Mitsuharu + + * etc/NEWS: Explain why multicolor font display is disabled on OS X Cocoa. + +2016-04-24 Paul Eggert + + Port to Ubuntu 16.04 --enable-gcc-warnings + + * src/image.c (gif_load) [HAVE_GIF]: Fix pointer signedness problem. + +2016-04-24 Paul Eggert + + * etc/NEWS: Improve wording of vc-git-log-output-coding-system etc. + +2016-04-24 Tino Calancha + + Don't kill ~/ if it's the top level directory + + * lisp/dired-aux.el (dired-kill-subdir): Don't kill ~/ if it's + the top level directory (bug#23017). + +2016-04-23 Tino Calancha (tiny change) + + describe-char: fix insert char documentation + + * lisp/descr-text.el (describe-char): + Only 'ucs-names' entries can be inserted by unicode name (Bug#23325). + +2016-04-23 Dmitry Gutov + + (vc-git-mode-line-string): Don't use `replace-regexp-in-string' + + * lisp/vc/vc-git.el (vc-git-mode-line-string): Use `substring' + instead of `replace-regexp-in-string', because REV can be nil + (e.g. when FILE is a directory, bug#23344), and we actually know + we only need the first 4 characters. + +2016-04-22 Nicolas Petton + + Bump version to 25.0.93 + + * README: + * configure.ac: + * msdos/sed2v2.inp: Bump Emacs version to 25.0.93. + +2016-04-22 Nicolas Petton + + * etc/AUTHORS: Update the AUTHORS file + + * admin/update_autogen: Use #!/usr/bin/env bash + + * admin/authors.el (authors-ignored-files): Additions. + +2016-04-22 Martin Rudalics + + In x_set_window_size restore do_pending_window_change calls + + * src/xterm.c (x_set_window_size): + * src/w32term.c (x_set_window_size): Restore + do_pending_window_change calls after their stupid removal on + 2015-08-31. + +2016-04-21 Ilya Zakharevich + + Fix Alt-modified keys on some European MS-Windows keyboards + + * src/w32fns.c (deliver_wm_chars): If the reported character is + ASCII, AND Meta modifier is a candidate, behave as if Meta is + present, i.e. fall back to the legacy code. (Bug#23251) + +2016-04-20 Eli Zaretskii + + Document 'help-go-forward' + + * doc/emacs/help.texi (Help Mode): Document and index + 'help-go-forward'. (Bug#23323) + +2016-04-20 Eli Zaretskii + + Revert "Allow to customize names of executables used by grep.el" + + This reverts commit c93ae7a1e5a94541189a8f36984014344d561ffc. + +2016-04-20 Eli Zaretskii + + Revert "Don't use 'find-program'" + + This reverts commit 10597c977d55cbf9304b51c3b364ce58199384a0. + +2016-04-20 Eli Zaretskii + + Revert "Use 'grep-find-program' in check-declare.el" + + This reverts commit 33bef6e90bfd20609d044b8a076c1570c627684a. + +2016-04-20 Eli Zaretskii + + Clarify documentation of 'dired-mark-files-containing-regexp' + + * doc/emacs/dired.texi (Marks vs Flags): Clarify that for files + visited in buffers, 'dired-mark-files-containing-regexp' searches + the buffer rather than the file on disk. (Bug#22694) + + * lisp/dired.el (dired-mark-files-containing-regexp): Clarify that + for files visited in buffers, 'dired-mark-files-containing-regexp' + searches the buffer rather than the file on disk. (Bug#22694) + +2016-04-19 Eli Zaretskii + + Make tmm-menubar work in correct order again + + * lisp/tmm.el (tmm-prompt): Don't reverse 'tmm-km-list' right at the + beginning; instead, pass a reversed copy to 'tmm--completion-table'. + (Bug#23309) + (tmm-menubar): Fix an off-by-one error in determining the menu + item when the function is called with a non-nil 'x-position' + argument. + +2016-04-18 Dmitry Gutov + + Remove the Meta-CVS VC backend + + * lisp/obsolete/vc-mcvs.el: Remove the file (bug#20475). + + * lisp/vc/log-view.el (log-view-extract-comment): Remove the MCVS + reference. + + * doc/misc/efaq-w32.texi (Version control): Same. + +2016-04-18 Michael Albinus + + Fix Bug#23276 + + * lisp/autorevert.el (auto-revert-handler): Ignore errors + coming from `revert-buffer'. (Bug#23276) + +2016-04-17 Reto Zimmermann + + Sync with upstream vhdl mode v3.38.1. + + * lisp/progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update. + (vhdl-mode): No longer set comment-padding. + (vhdl-begin-p): Handle missing space between keyword and parenthesis. + (vhdl-beginning-of-statement-1): Fix indentation for "else generate". + (vhdl-template-else, vhdl-template-elsif): Support generate statement. + (vhdl-re-search-forward, vhdl-re-search-backward): Save match data. + +2016-04-16 Paul Eggert + + Tweak configure.ac syntax in recent module patch + + * configure.ac: Use proper Autoconf parenthesization in + recent HAVE_MODULES patch. Although this doesn’t fix any bugs, + the previous syntax was confusing. + +2016-04-16 Paul Eggert + + Port to GCC 5.3.1 20160406 (Red Hat 5.3.1-6) + + * src/indent.c (Fvertical_motion): Pacify --enable-gcc-warnings + when using the April 6 Fedora patch to GCC. + +2016-04-16 Mark Oteiza + + Make sh-electric-here-document-mode accessible in sh-mode-hook. (Bug#3226) + + * lisp/progmodes/sh-script.el (sh-mode-hook): Add + sh-electric-here-document-mode as an option and the default value. + (sh-mode): Mention sh-mode-hook in docstring. + (sh-mode): Remove sh-electric-here-document-mode invocation. + +2016-04-16 Glenn Morris + + * configure.ac (HAVE_MODULES): Exclude gnu-kfreebsd from previous. + +2016-04-16 Mark Oteiza + + Make use of rectangle-preview custom variable. + + lisp/rect.el (rectangle--string-preview): Only create a preview if + rectangle-preview is non-nil (Bug#23248). + +2016-04-16 Mark Oteiza + + Make use of rectangle-preview face. + + * lisp/rect.el (rectangle--string-preview): + (rectangle--highlight-for-redisplay): Replace 'region with + 'rectangle-preview (Bug#23248). + +2016-04-16 Eli Zaretskii + + Use 'grep-find-program' in check-declare.el + + * lisp/emacs-lisp/check-declare.el (check-declare-directory): Use + 'grep-find-program', not 'find-program'. + +2016-04-16 Eli Zaretskii + + Improve "C-h S" for cl-lib symbols + + * lisp/info-look.el: Add cl.info lookup to emacs-lisp-mode related + manuals. (Bug#23289) + +2016-04-16 Eli Zaretskii + + Fix minor issues with removing left or right fringes + + * lisp/window.el (window-max-chars-per-line): Account for + 'left-fringe-width' and 'right-fringe-width' variables. + + * doc/lispref/windows.texi (Window Sizes): Document the effect on + window text width when setting the width of one or both fringes to + zero. + * doc/emacs/display.texi (Fringes): Document the effect on window + text width when setting the width of one or both fringes to zero. + (Bug#22891) + +2016-04-16 Eli Zaretskii + + Speed up redisplay in ansi-term mode + + * lisp/term.el (ansi-term): Force L2R 'bidi-paragraph-direction'. + (Bug#20611) + +2016-04-16 Philipp Stephani + + Simplify 8-bit character handling by terminal for 'raw-text' + + * lisp/international/mule.el (set-keyboard-coding-system): Treat + 'raw-text' as another coding type that requires 8-bit characters. + * lisp/xt-mouse.el (xterm-mouse--read-coordinate): Use 'no-conversion' + instead of 'latin-1'. + +2016-04-15 Glenn Morris + + * configure.ac (HAVE_MODULES): Treat gnu like gnu-linux. (Bug#22722) + +2016-04-15 Eli Zaretskii + + Fix w32 memory-management problem when extending buffer text + + * src/w32heap.c (mmap_realloc): Only attempt extending a region if + the following region has the same allocation base. Also, use the + original allocation base and enlarged size to commit reserved + memory, to ensure that the allocation base stays at its original + value. This fixes several hard-to-debug problems whereby part of + buffer text was overwritten with binary nulls, because + mmap_realloc copied only part of buffer text when extending it. + See + http://lists.gnu.org/archive/html/emacs-devel/2016-04/msg00325.html + and http://debbugs.gnu.org/cgi/bugreport.cgi?bug=23223#55 for two + examples of the related problems. + +2016-04-14 Michael Albinus + + Fix Bug#20637. Do not merge to master + + * lisp/vc/vc-hooks.el (vc-state, vc-working-revision): + Use `vc-backend' instead of `vc-responsible-backend'. (Bug#20637) + + * test/automated/vc-tests.el (vc-test--state) + (vc-test--working-revision): Deactivate now failing checks. + +2016-04-14 Paul Eggert + + substitute-command-keys keeps quotes’ text props + + Problem reported by Clément Pit--Claudel (Bug#23254). + * src/doc.c: Include intervals.h. + (Fsubstitute_command_keys): If the only substitutions are for + quotes, copy the source string’s text properties too, since no + substring lengths have changed. + +2016-04-13 YAMAMOTO Mitsuharu + + * src/xwidget.c (x_draw_xwidget_glyph_string): More clipping fixes. + +2016-04-12 Dmitry Gutov + + Add semantic-symref-filepattern-alist entry for lisp-interaction-mode + + * lisp/cedet/semantic/symref/grep.el + (semantic-symref-filepattern-alist): + Add entry for lisp-interaction-mode + (http://debbugs.gnu.org/cgi/bugreport.cgi?bug=23223#47) + +2016-04-12 Dmitry Gutov + + Perform xref searches without visiting unopened files + + * lisp/progmodes/xref.el (xref-collect-references): Instead of + calling `semantic-symref-find-references-by-name', use + `semantic-symref-instantiate' and `semantic-symref-perform-search' + directly. Ask for `line-and-text' results (bug#23223). + (xref-collect-matches): Include the line text in the "hit" + structure. + (xref--convert-hits): New function, split off from + `xref-collect-references' and `xref-collect-matches', to convert + "hits" to xref instance list. Create a temporary buffer here, to + use it for post-processing all hit lines. + (xref--collect-matches): Use a different approach for non-visited + files. Insert the line text into the temp buffer, apply the + file's major mode the best we can without reading its whole + contents, syntax-propertize, and search in the result. + (xref--collect-matches-1): Extract, to handle the common logic + between two cases. + (xref--find-buffer-visiting): New function, a wrapper around + `find-buffer-visiting' to amortize its cost. + + * lisp/cedet/semantic/symref/idutils.el + (semantic-symref-idutils--line-re): New constant. + (semantic-symref-parse-tool-output-one-line): Support result type + `line-and-text'. + + * lisp/cedet/semantic/symref/grep.el + (semantic-symref-grep--line-re) + (semantic-symref-parse-tool-output-one-line): Same. + + * lisp/cedet/semantic/symref/cscope.el + (semantic-symref-cscope--line-re) + (semantic-symref-parse-tool-output-one-line): Same. + + * lisp/cedet/semantic/symref/global.el + (semantic-symref-global--line-re) + (semantic-symref-parse-tool-output-one-line): Same. + +2016-04-12 Phillip Lord + + Revert "Prevent bootstrap autoload backup files" + + This reverts commit c23c965bb9d0a4bcc1b6158833ff99aa20fd53e9. + +2016-04-12 Paul Eggert + + Improve time zone documentation + + * doc/lispref/os.texi (Time Zone Rules): + New section, mostly with material moved here from other sections. + * doc/emacs/cmdargs.texi (General Variables): + * doc/lispref/os.texi (Time Conversion, Time Parsing): + Xref new section. + * etc/NEWS, etc/PROBLEMS: + * lisp/org/org.el (org-timestamp-format): + * src/editfns.c (Fformat_time_string, Fdecode_time) + (Fencode_time, Fcurrent_time_string, Fcurrent_time_zone) + (Fset_time_zone_rule): + When documenting time zone rule strings, mention the TZ + environment variable in preference to mentioning the + sort-of-internal function set-time-zone-rule. + +2016-04-12 Phillip Lord + + Prevent bootstrap autoload backup files + + * lisp/emacs-lisp/autoload (autoload-find-generated-file): Suppress + backups in newly created file. + + (autoload-ensure-default-file): Function split into two. + (autoload-ensure-file-writeable): New function from split. + + (Bug#23203) + +2016-04-11 YAMAMOTO Mitsuharu + + Disable multicolor fonts on OS X since they are not supported on free systems + + * src/macfont.m (macfont_list): Don't use color bitmap fonts. + +2016-04-11 Paul Eggert + + Capitalize “Universal Time” in documentation + + It’s a proper noun. + * lisp/vc/add-log.el (add-log-time-zone-rule): Also, fix typo by + mentioning ‘format-time-string’ instead of ‘set-time-zone-rule’. + +2016-04-11 Eli Zaretskii + + Don't use 'find-program' + + * lisp/progmodes/project.el (project-file-completion-table): Use + 'grep-find-program', rather than the obsolete 'find-program'. + +2016-04-11 Paul Eggert + + Sync with gnulib + + This is for picky compilers whose stdint.h fails our C11 tests. + Problem reported for clang by Philipp Stephani (Bug#23261). + This incorporates: + 2016-04-11 stdint: port to strict C11 left shift + * doc/misc/texinfo.tex, lib/stdint.in.h: Copy from gnulib. + +2016-04-11 Leo Liu + + Fix last change on 2016-01-02 + + * lisp/emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-2): Move + `cl-errs-re' before `lisp--el-match-keyword'; don't use `prepend' + which highlights `cl-errs-re' even in comments or strings. + +2016-04-11 Paul Eggert + + Port run-prolog EMACS to SWI-Prolog 7.2.3 + + * lisp/progmodes/prolog.el (prolog-ensure-process): + Work around incompatibility of SWI-Prolog 7.2.3 and earlier + with the new way of dealing with the EMACS and INSIDE_EMACS + environment variables. + +2016-04-10 Eli Zaretskii + + Avoid crashes due to unreasonably large or small text scaling + + * lisp/face-remap.el (text-scale-min-amount) + (text-scale-max-amount): New functions. + (text-scale-set, text-scale-increase): Use them to limit the text + scaling to a reasonable range of values. (Bug#23259) + +2016-04-10 Eli Zaretskii + + Improve documentation of 'with-eval-after-load' + + * lisp/subr.el (with-eval-after-load): Doc fix. (Bug#23258) + +2016-04-10 Eli Zaretskii + + Improve handling of non-ASCII characters in Git log messages + + * lisp/vc/vc-git.el (vc-git-commits-coding-system): Now a defcustom. + (vc-git-log-output-coding-system): New defcustom. + (vc-git-print-log, vc-git-command, vc-git--call): Use + 'vc-git-log-output-coding-system' for reading stuff from Git. + Don't override values of 'coding-system-for-read/write' if they + are bound by caller -- this allows the user to force an encoding + via "C-x RET c". + (vc-git-checkin): On MS-Windows, pass the log message via a + temporary file, to work around the limitations on passing + non-ASCII characters via command-line arguments. Force using the + 'locale-coding-system' for Git command-line arguments. This fixes + problems with non-ASCII commit log messages on MS-Windows. + (Bug#23076) + + * etc/NEWS: Mention the new vc-git related defcustoms. + +2016-04-09 Philipp Stephani + + Remove undefined behavior in OS X dumper. + + Found by Address Sanitizer. + + * src/unexmacosx.c (unexec_write): Use Mach virtual memory API to + avoid undefined behavior when reading arbitrary memory. + +2016-04-09 Joakim Verona + + Fix clipping of xwidgets + + * src/xwidget.c (x_draw_xwidget_glyph_string): Use window_box + instead of calculating the clipping borders manually. Suggested + by YAMAMOTO Mitsuharu . + +2016-04-09 Eli Zaretskii + + Improve Lisp-level documentation of tooltips + + * doc/lispref/display.texi (Tooltips): New section. (Bug#23246) + (Display): Update the chapter menu. + * doc/lispref/text.texi (Special Properties): Make the "tooltip" + index entry more concrete. Change the cross-reference to point to + "Tooltips" in the ELisp manual. + * doc/lispref/elisp.texi (Top): Update the master menu. + * doc/emacs/frames.texi (Tooltips): Include more customization + variables. Add a cross-reference to the ELisp manual. + +2016-04-08 Glenn Morris + + Faces names should not end in "-face". + + * lisp/rect.el (rectangle-preview): Rename from rectangle-preview-face. + * lisp/vc/vc-hooks.el (vc-state-base): Rename from vc-state-base-face. + +2016-04-08 Paul Eggert + + * src/xsmfns.c (syms_of_xsmfns): Remove stray "s in doc strings. + +2016-04-08 Paul Eggert + + Comint and compile no longer set EMACS + + This mostly restores the change that I reverted on March 23, + fixing most of Bug#20202. The only part of the change that is + still reverted is the change to M-x term, where compatibility with + current Bash constrains us from moving too quickly (Bug#20484). + Problem reported by Phillip Lord in: http://bugs.gnu.org/20484#108 + * etc/NEWS: Document this. + * lisp/comint.el (comint-exec-1): + * lisp/net/tramp-sh.el (tramp-remote-process-environment): + * lisp/progmodes/compile.el (compilation-start): + Don’t set EMACS=t in the subsidiary process. + +2016-04-08 Stefan Monnier + + * lisp/subr.el (read-key): Don't let the prompt linger (bug#22714) + +2016-04-08 Eli Zaretskii + + Allow to customize names of executables used by grep.el + + * lisp/progmodes/grep.el (grep-find-program): Renamed from + 'find-program', which was a variable. All uses changed. + (grep-xargs-program): Renamed from 'xargs-program', which was a + variable. All uses changed. + (grep-program): Now a defcustom rather than a simple variable. + (Bug#23219) + +2016-04-08 Alan Third + + Set locale encoding to UTF-8 when run from OS X GUI. + + * src/nsterm.m (ns_init_locale): Append .UTF-8 when setting LANG. + +2016-04-08 Eli Zaretskii + + Avoid signaling errors in 'M-n' at the 'C-x C-f' prompt + + * lisp/ffap.el (ffap-guess-file-name-at-point): Ignore errors + while 'ffap-guesser' runs. (Bug#23218) + +2016-04-08 Marcin Borkowski + + Avoid infinite loop in 'studlify-word' + + * lisp/play/studly.el (studlify-region): Call + 'forward-word-strictly' and 'backward-word-strictly' instead of + 'forward-word' and 'backward-word'. (Bug#19940) + +2016-04-07 Paul Eggert + + Don’t recommend obsolete EMACS env var + + * doc/misc/efaq.texi (Escape sequences in shell output): + Remove long-obsolete (and now-confusing) notes about + the EMACS environment variable in Emacs 21.1 and earlier. + * doc/misc/efaq.texi (^M in the shell buffer): + * etc/PROBLEMS: + Remove obsolescent recommendation to consult the EMACS environment + variable. + +2016-04-07 Glenn Morris + + * lisp/emacs-lisp/package.el: Change from a few days ago needs seq. + + * lisp/emacs-lisp/seq.el: Load cl-lib, not cl-extra. + +2016-04-07 Leo Liu + + Fix "Beginning of buffer" error in forward-page + + * lisp/textmodes/page.el (forward-page): Check before move to prevent + "Beginning of buffer" error. + +2016-04-06 Dmitry Gutov + + Add a `transient' project type + + * lisp/progmodes/project.el (project-roots): Implement for the + `transient' project type (bug#23224). + (project-current): Instead of signaling an error, return a + transient project instance rooted in the chosen directory. + +2016-04-06 Lars Magne Ingebrigtsen + + Revert "Backport HTTPS proxy fix" + + This reverts commit 2d1a6054b161bd1055d4feb11c8c5ac95543f5db. + + It's too late in the Emacs 25 release cycle to add things like this to + Emacs 25.1. It's border line new feature. + +2016-04-06 Tao Fang + + Backport HTTPS proxy fix + + Cherry-picked from 3c623c26ae7d695746e05d8a2e16a67a6256b024 + + Backport: + +2016-04-06 Paul Eggert + + Fix stability confusion in sort-tests + + Problem reported by Philipp Stephani (Bug#23205). + * test/automated/sort-tests.el: + (sort-tests--insert-words-sort-and-compare): + Don’t assume that reversing a sorted list is the same + as sorting with the reverse predicate. This is not true + for stable sorts when items compare equal. + +2016-04-05 Paul Eggert + + Avoid describe-key error with lambdas + + Problem reported by Sho Takemori (Bug#22716). + * lisp/cedet/mode-local.el (describe-mode-local-overload) + (xref-mode-local-overload): Use function-overload-p instead + of assuming the argument is a symbol. + +2016-04-04 Artur Malabarba + + * lisp/emacs-lisp/package.el (package-install-selected-packages): + + Skip unavailable packages. + +2016-04-04 Paul Eggert + + Sync with gnulib + + This incorporates: + 2016-04-03 stdint: detect good enough pre-C++11 stdint.h in C++ mode + 2016-04-01 stddef: support configuring with g++ + * doc/misc/texinfo.tex, lib/stddef.in.h, m4/stdint.m4: + Copy from gnulib. + +2016-04-03 Paul Eggert + + Fix doc for Universal Time + + * doc/lispref/os.texi (Time of Day, Time Conversion): + Be more careful about distinguishing UTC (which is not valid for + pre-1961 time stamps) and UT (which is). + (Time Parsing): Remove stray obsolete paragraph about a + UNIVERSAL argument for ‘format-time-string’. + +2016-04-03 Michael Albinus + + Handle Bug#23186 + + * lisp/net/tramp.el (tramp-encoding-command-switch) + (tramp-encoding-command-interactive): + * lisp/net/tramp-sh.el (tramp-maybe-open-connection): + `tramp-encoding-shell' could be nil. (Bug#23186) + +2016-04-03 Paul Eggert + + More format-time-string change fixups + + * lisp/net/tramp-sh.el (tramp-sh-handle-set-file-times): + * lisp/org/org.el (org-timestamp-format): + Fix doc to match new format-time-string behavior. + * lisp/org/ox-icalendar.el (org-icalendar-convert-timestamp): + Use (not (not X)) to treat non-nil values of utc arg as UTC. + +2016-04-02 Paul Eggert + + make-xwidget unused arg cleanup + + * doc/lispref/display.texi (Xwidgets): Remove stray refs. + * src/xwidget.c (syms_of_xwidget): Qwebkit, not Qwebkit_osr. + +2016-04-02 Joakim Verona + + Remove unused arguments from make-xwidget + + The arguments BEG and END were unused, and are now removed. + + * display.texi (Xwidgets): Document the change + * xwidget.el (make-xwidget, xwidget-insert) + (xwidget-webkit-new-session): Reflect changed arguments + * xwidget.c (Fmake_xwidget, syms_of_xwidget): Reflect changed arguments + +2016-04-02 Eli Zaretskii + + Document incompatible changes in 'format-time-string' + + * etc/NEWS: Mention the incompatible change in the interpretation + of the 3rd argument to 'format-time-string'. (Bug#21943) + +2016-04-02 Eli Zaretskii + + Improve documentation of byte-code objects + + * doc/lispref/compile.texi (Byte-Code Objects): Document the + integer format of the argument descriptor. (Bug#23061) + +2016-04-02 Eli Zaretskii + + Adapt calls to 'format-time-string' to changes in Emacs 25 + + * lisp/vc/pcvs-info.el (cvs-fileinfo-from-entries): Use t as the + last argument to format-time-string. (Bug#23128) + * lisp/gnus/gmm-utils.el (gmm-format-time-string): Use t as the + last argument to format-time-string, when the TZ argument is not a + number, per the doc string. + +2016-04-02 Eli Zaretskii + + Improve vc-diff with Git backend + + * lisp/vc/vc-git.el (vc-git-command): Don't override + coding-system-for-read/write if they are already bound. + Suggested by joaotavora@gmail.com (João Távora). (Bug#20892) + (vc-git-print-log): Don't override coding-system-for-read if it's + already bound. + +2016-04-01 Dmitry Gutov + + (js--continued-expression-p): Special-case unary plus and minus + + * lisp/progmodes/js.el (js--continued-expression-p): Make an + effort to recognize unary plus and minus, in the contexts where + they make sense (https://github.com/mooz/js2-mode/issues/322). + +2016-04-01 Alan Mackenzie + + Prevent C++ Mode wrongly fontifying some identifiers near templates as types + + This fixes debbugs #7917. + + * lisp/progmodes/cc-engine.el (c-forward-keyword-prefixed-id): Accept 'maybe + (from c-forward-type) as sufficient to record an id. Record type id as well + as ref ids. + (c-forward-name): Bind c-last-identifier-range around the call to + c-forward-<>-arglist to prevent it getting corrupted. Don't automatically + assume an identifier is a type when a template ">" is followed by a "(". + (c-forward-type): Don't automatically assume an identifier is a type when a + template ">" is followed by a "(". + + * lisp/progmodes/cc-fonts.el (c-font-lock-<>-arglists): Don't fontify an + identifier as a type when its associated ">" is followed by a "(". + +2016-04-01 Eli Zaretskii + + Avoid crashes due to insanely large columns in tabulated-list-format + + * src/xdisp.c (append_stretch_glyph, produce_xwidget_glyph) + (produce_image_glyph): Limit the pixel width of the produced glyph + to SHRT_MAX. (Bug#23178) + (append_composite_glyph, append_glyph, append_glyphless_glyph): + Add assertions to verify that the pixel width of the glyph will + never overflow a 'short'. + * src/term.c (append_composite_glyph): Add assertion to verify + that the pixel width of the glyph will never overflow a 'short'. + +2016-03-31 Mark Oteiza + + Teach M-x disassemble a default argument. + + Adopts default argument in the same way as `describe-function'. + * lisp/emacs-lisp/disass.el (disassemble): Default to function at point, + if any. + +2016-03-31 Eli Zaretskii + + Fix EOL decoding in vc-annotate with SVN back-end on MS-Windows + + * lisp/vc/vc-annotate.el (vc-annotate): Force DOS EOL decoding on + MS-Windows and MS-DOS, when processing the output of "svn annotate". + +2016-03-31 Michael Albinus + + Fix OS X specific settings in tramp-tests + + * lisp/net/tramp-sh.el (tramp-maybe-open-connection): Use it. + + * lisp/net/tramp.el (tramp-get-local-locale): New defun. + + * test/automated/tramp-tests.el (tramp--test-darwin-p): Remove. + (tramp--test-utf8): Improve settings of coding systems. + Do not use `tramp--test-darwin-p' anymore. (Bug#22145) + +2016-03-30 Alan Mackenzie + + Finish fixing a cacheing bug in CC Mode (see 2016-03-09) + + * lisp/progmodes/cc-cmds.el: (c-beginning-of-defun, c-end-of-defun): Remove + superfluous invocations of c-self-bind-state-cache. + + * lisp/progmodes/cc-defs.el: (c-self-bind-state-cache): Copy and terminate + markers correctly. + + * lisp/progmodes/cc-engine.el (c-record-parse-state-state): Terminate stale + markers. + +2016-03-30 Alan Mackenzie + + Merge branch 'emacs-25' of /home/acm/emacs/emacs.git/emacs-25 into emacs-25 + +2016-03-29 Xue Fuqiao + + * doc/lispref/text.texi (Columns): Remove a nonexistent reference. + + The example was removed by Chong Yidong on Mar 5, 2012. + +2016-03-29 Paul Eggert + + * doc/man/emacsclient.1: Document +line:column option. + +2016-03-29 Eli Zaretskii + + Fix rare problems with echo-area display and multiple frames + + * src/xdisp.c (redisplay_window): Bind inhibit-redisplay non-nil + around the call to x_consider_frame_title, to prevent + resize_mini_window from undoing echo-area display. (Bug#23124) + +2016-03-29 Alan Mackenzie + + In M-%, avoid making buffer-local binding of text-property-default-nonsticky + + This would happen when that variable already has a buffer local binding. Such + a binding would not be seen by read-from-minibuffer. This fixes bug #23127. + + * lisp/replace.el (query-replace-read-from): Move the binding of + text-property-default-nonsticky to inside of a new with-current-buffer buffer + form with the minibuffer as argument. + +2016-03-27 Dmitry Gutov + + Remove prog-indentation-context + + * lisp/progmodes/prog-mode.el: (prog-indentation-context) + (prog-first-column, prog-widen): Remove, as discussed in + http://lists.gnu.org/archive/html/emacs-devel/2016-03/msg01425.html. + + * doc/lispref/text.texi (Mode-Specific Indent): Remove references + to them. + + * etc/NEWS: Ditto. + + * lisp/progmodes/python.el: (prog-widen, prog-first-column): + Remove the compatibility aliases and all uses. + + Do not merge to master. + +2016-03-27 Paul Eggert + + * src/font.c (QCuser_spec): Add missing colon to :user-spec. + +2016-03-27 Eli Zaretskii + + Don't start the 'midnight' timer twice + + * lisp/midnight.el (midnight-mode): Avoid starting the midnight + timer twice when activating the mode the first time. (Bug#23123) + +2016-03-27 YAMAMOTO Mitsuharu + + * src/xwidget.c (Fxwidget_resize): Fix inappropriate use of XFASTINT. + +2016-03-26 Stephen Berman + + Fix todo-mode category movement + + * lisp/calendar/todo-mode.el (todo-move-category): Use moved + category's existing categories sexp instead of invoking + todo-update-categories-sexp in file moved to, in order to take + archived items into account. If the moved category has archived + items, handle the source archive buffer properly. Remove + superfluous code. + +2016-03-26 Glenn Morris + + * lisp/xt-mouse.el (xterm-mouse-utf-8): Add :version. + +2016-03-26 Eli Zaretskii + + Ignore non-nil. non-cons values of unread-command-events + + * src/keyboard.c (requeued_events_pending_p, read_char) + (Finput_pending_p): Use CONSP instead of !NILP to see if there are + unread command events to be processed. (Bug#22976) + +2016-03-26 Eli Zaretskii + + Improve documentatuon of 'truncate-partial-width-windows' + + * src/xdisp.c (syms_of_xdisp) : + Clarify in the doc string how the width of partial-width windows + is computed for the purposes of truncation decision. (Bug#4338) + + * doc/emacs/windows.texi (Split Window): Clarify how the width of + windows is calculated for the purposes of truncation decision. + * doc/emacs/display.texi (Line Truncation): Remove a redundant + index entry. + +2016-03-25 Paul Eggert + + * src/ftfont.c (ftfont_shape_by_flt): Parenthesize as per GNU style. + +2016-03-25 Eli Zaretskii + + Fix 'dired-goto-file' in Dired buffers produced by find-dired + + * lisp/dired.el (dired-goto-file): Try looking for the file as a + relative name with leading sub-directories, before looking for the + basename alone. (Bug#23089) + +2016-03-25 Nicolas Petton + + Fix map-put and map-delete for alists (Bug#23105) + + * lisp/emacs-lisp/map.el (map-put): Do not bind the evaluated place + expression to a new symbol. + * test/lisp/emacs-lisp/map-tests.el: Add a regression test. + +2016-03-25 Eli Zaretskii + + Minor copyedits of documentation for temporary displays + + * doc/emacs/windows.texi (Temporary Displays): Improve indexing. + Minor changes in wording. + (Window Choice, Displaying Buffers, Pop Up Window): Disambiguate + index entries for 'display-buffer'. + + * etc/NEWS: Minor rewording of the entry about temporary displays. + +2016-03-25 Philipp Stephani + + Add customization option for using UTF-8 coordinates in xt-mouse + + * lisp/xt-mouse.el (xterm-mouse-utf-8): New customization option. + (xterm-mouse--read-coordinate): New function to replace + `xterm-mouse--read-utf8-char'; uses UTF-8 only if enabled. + (xterm-mouse--read-number-from-terminal): Adapt to new name. + (xterm-mouse-tracking-enable-sequence) + (xterm-mouse-tracking-disable-sequence): Replace constants with + functions, mark constants as obsolete. + (xterm-mouse--tracking-sequence): New helper function. + (turn-on-xterm-mouse-tracking-on-terminal): Use new functions; + enable UTF-8 only if customization option says so; store UTF-8 + flag in terminal parameter. (Bug#23009) + + * test/automated/xt-mouse-tests.el: Add tests for xt-mouse.el. + +2016-03-25 Eli Zaretskii + + Minor doc string fixes in replace.el + + * lisp/replace.el (query-replace, query-replace-regexp) + (query-replace-regexp-eval, map-query-replace-regexp) + (replace-string, replace-regexp): Clarify in doc strings that + these commands operate from point to the end of the buffer's + accessible portion. (Bug#23067) + +2016-03-25 Eli Zaretskii + + Fix scrolling upwards with 'xwidget-webkit-browse-url' + + * src/xwidget.c (Fxwidget_set_adjustment): Use CHECK_NUMBER instead + of CHECK_NATNUM. Suggested by Shayan Pirani . + (Bug#22918) + +2016-03-25 K. Handa + + Fix display of Indic scripts + + * ftfont.c (ftfont_shape_by_flt): For combining characters out + of the range U+300...U+36F, use the "combining" FLT only with + non-OTF fonts. + +2016-03-25 Eli Zaretskii + + Fix splash screen display at startup + + * src/frame.c (DEFAULT_ROWS): Enlarge to 36, so that the initial + window displayed by "emacs -q" has enough space to show the whole + text even if it includes 2 lines talking about recovering crashes + sessions. (Bug#23074) + + * lisp/startup.el (use-fancy-splash-screens-p): Fix off-by-one + error when computing the window-height from frame-height. + + * etc/NEWS: Mention the change. + +2016-03-25 Martin Rudalics + + Describe temporary displays in Emacs manual + + * doc/emacs/emacs.texi (Temporary Displays): New subsubsection. + * doc/emacs/windows.texi (Window Choice): Minor fixes. + (Temporary Displays): New subsubsection describing display of + temporary buffers and `temp-buffer-resize-mode'. + +2016-03-24 Paul Eggert + + Avoid stray As next to IDLW icons + + * lisp/progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere): + Use "" for empty labels, not "a", as the latter now displays stray + "A"s (Bug#18997). + +2016-03-24 Paul Eggert + + Avoid GTK 3 crash with icons and masks + + Problem reported by Mosè Giordano (Bug#18997). + * src/gtkutil.c (xg_get_pixbuf_from_pixmap): Remove. + (xg_get_pixbuf_from_pix_and_mask): Do not use + xg_get_pixbuf_from_pixmap, as it is poorly documented. Instead, + invoke XGetPixel directly. This is slow but speed is not + important here. Also, fail for unusual situations (not TrueColor, + or images that are not 8 bits per sample) instead of displaying + junk or crashing. + +2016-03-24 Juri Linkov + + * lisp/minibuffer.el (minibuffer-completion-help): Use fit-window-to-buffer + + instead of shrink-window-if-larger-than-buffer. (Bug#23092) + +2016-03-24 Eli Zaretskii + + Define make_save_ptr_ptr unconditionally + + * src/alloc.c (make_save_ptr_ptr): Remove the !(defined + USE_X_TOOLKIT || defined USE_GTK) conditional. Reported by + Philipp Stephani . (Bug#23101) + +2016-03-24 Eli Zaretskii + + Preserve current buffer when popping up TTY menus + + * src/term.c (tty_menu_show): Be sure to save and restore the + current buffer around TTY menu pop-ups. (Bug#23101) + +2016-03-24 Eli Zaretskii + + Improve font selection by family on MS-Windows + + * src/w32font.c (w32font_list_internal): Allow 'ascii-0' charset, + in addition to 'iso10646-1', 'unicode-bmp', and 'unicode-sip'. + This avoids rejecting many font families whose members are shown + by 'font-family-list', in particular 'courier' requested by + info.el. Without this change, many values of ':family' attribute + of a face have no effect on MS-Windows, because they are rejected + due to bogus mismatch of the charset. + +2016-03-23 Paul Eggert + + Comint, term, and compile now set EMACS + + This fixes directory tracking in ansi-term, at the expense of + breaking some usages of 'configure'. Setting EMACS is meant to be + a somewhat temporary measure, until Bash 4.4 comes out and is + common. (Bug#20484). + * etc/NEWS: Document this. + * lisp/comint.el (comint-exec-1): + * lisp/net/tramp-sh.el (tramp-remote-process-environment): + * lisp/progmodes/compile.el (compilation-start): + * lisp/term.el (term-exec-1): + Go back to setting the EMACS environment variable, for backward + compatibility to Bash 4.3 and earlier. + +2016-03-23 Paul Eggert + + Ignore more merges when generating ChangeLog + + * build-aux/gitlog-to-emacslog: Ignore all merges from gnu.org, + not merely those from master and emacs-NN. The ChangeLog entries + they generate are not that useful. + +2016-03-23 Paul Eggert + + Sync with gnulib + + This incorporates: + 2016-03-22 gitlog-to-changelog: suppress ignored chatter + 2016-03-21 sys_select: port to new Cygwin + * build-aux/gitlog-to-changelog, doc/misc/texinfo.tex: + * lib/sys_select.in.h: Copy from gnulib. + +2016-03-23 Paul Eggert + + Resurrect GNUS-NEWS autogeneration + + * doc/misc/gnus-coding.texi (Gnus Maintenance Guide): Update + GNUS-NEWS section to match current file locations and procedure. + * etc/GNUS-NEWS: Regenerate by using new procedure. + * lisp/Makefile.in (update-gnus-news): New rule, containing a + procedure for building GNUS-NEWS. The old procedure got lost + somehow when Gnus was merged into Emacs. + +2016-03-22 Anders Lindgren + + Make `toggle-frame-maximized' respect the dock on OS X (bug#22988). + + * src/nsterm.m (ns_screen_margins): New function. + (ns_screen_margins_ignoring_hidden_dock): New function. + (ns_menu_bar_height): Reimplement in terms of `ns_screen_margins'. + ([EmacsWindow zoom:]): Take all screen margins (except those + originating from a hidden dock) into account. + +2016-03-22 Eli Zaretskii + + Fix bug in displaying header line with a box face + + * src/xdisp.c (get_next_display_element): Handle the case when a + display string acquires the box face from an underlying string, + not from the buffer. (Bug#23091) + +2016-03-21 Kaushal Modi + + Fix an Isearch var to be a string (Bug#23038) + + * isearch.el (isearch--describe-regexp-mode): The `description' var + needs to always be a string. Add the missing default case for the + cond form that ensures that. + + Before this bug fix, for the events when `regexp-function' and + `search-default-mode' both were nil, `description' also stayed nil. So + when `space-before' was non-nil, the "non-string" `description' + (with a value of nil) got passed as an argument to + `replace-regexp-in-string' (where a string was expected). That caused + the error described in Bug#23038. + +2016-03-21 Leo Liu + + Fix (args-out-of-range 1) error in cursor-sensor--detect + + * lisp/emacs-lisp/cursor-sensor.el (cursor-sensor--detect): Don't + hard-code (point-min) as 1 which fails in narrowed buffers. + +2016-03-20 Lars Magne Ingebrigtsen + + Render empty
    • correctly + + * lisp/net/shr.el (shr-tag-ul): Render empty
        • + correctly (bug#22964). + (cherry picked from commit 4f6ea3988b66cf132c67fd0cc26d12eb9a300ba1) + + Backport: + +2016-03-20 Lars Magne Ingebrigtsen + + Ignore invalid base64 encoded embedded images + + * lisp/net/shr.el (shr-image-from-data): Ignore invalid base64 + encoded embedded images (bug#22928). + (cherry picked from commit f2da80d0e1ccd121c4891e869a45aeb9c6b1795d) + + Backport: + +2016-03-20 Lars Magne Ingebrigtsen + + Fix

          and

          newlines with or without
        • in shr + + * lisp/net/shr.el (shr-ensure-newline): Respect that we're in + a
        • , if we are, and don't insert newlines there. + (shr-ensure-paragraph): When mixing newlines and paragraph + ensurements, don't insert too many blank lines. + (shr-tag-div): A
          shouldn't introduce a paragraph, but a + new line. + (cherry picked from commit 292921facaff2f02ac4e8602c1f7ecbdcfe7ef45) + + Backport: + +2016-03-19 Eli Zaretskii + + Avoid errors in 'newline' + + * lisp/simple.el (newline): Don't barf if invoked with + non-positive argument in the middle of a line. (Bug#22490) + +2016-03-19 Michael Albinus + + Fix Bug#23032 + + * doc/misc/eshell.texi (Arguments): Mention the pipe symbol in + remote file names. (Bug#23032) + +2016-03-19 Eli Zaretskii + + Adjudicate review comments in abbrevs.texi + + * doc/lispref/abbrevs.texi (Abbrev Files, Abbrev Expansion): + * doc/emacs/abbrevs.texi (Dabbrev Customization): State the + default values of variables. Suggested by Steve Byrne + . (Bug#23016) + + * admin/release-process (Check manuals): Mark files reviewed by + Steve Byrne. + +2016-03-18 Dmitry Gutov + + Fixup the "normal" matcher; highlight global var symbols, too + + * lisp/progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight + operator name symbols with the "normal" matcher (it actually + needed updating). Highlight global variable symbols, too. + +2016-03-18 Marcin Borkowski + + Honor prefix arg in doc-view-next-line-or-next-page + + * lisp/doc-view.el (doc-view-next-line-or-next-page): Take the + prefix argument into consideration when continuous scrolling is + not in effect (i.e., by default) (bug#19559). + +2016-03-18 Paul Eggert + + Port to strict C99 offsetof + + * src/bidi.c (bidi_copy_it): + * src/lisp.h (CHAR_TABLE_EXTRA_SLOTS): + Use only a single identifier as the second argument of offsetof. + Found by using clang -pedantic. + +2016-03-18 Paul Eggert + + Port to GTK with strict C11 compiler + + * src/gtkutil.c (xg_create_frame_widgets, xg_toggle_notify_cb): + Cast from function type to void * where the C standard requires this. + This works around a problem in the prototypes for + g_signal_handler_find and g_signal_handlers_block_by_func, which + use gpointer instead of GCallback. Found by using gcc -pedantic. + +2016-03-18 Paul Eggert + + Port to GTK with strict C99 compiler + + * src/emacsgtkfixed.c: Use workaround for GNOME bug 683906 only + in glib 2.35.6 and earlier, since the bug is fixed in 2.35.7. + * src/emacsgtkfixed.c (EmacsFixedPrivate): + * src/emacsgtkfixed.h (EmacsFixedClass): + Remove duplicate typedef, which strict C99 does not allow (Bug#23003). + +2016-03-17 Anders Lindgren + + Avoid screen artifacts with new OS X visible bell after scrolling + + * src/nsterm.m (EmacsBell): Save NSView when displaying the + visible bell and set `needsDisplay' when removed. + (hide_bell): Trace. + (ns_copy_bits): Trace. + +2016-03-17 Michael Albinus + + Suppress some Tramp tests for OSX, do not merge with master + + * test/automated/tramp-tests.el (tramp--test-darwin-p): New defun. + (tramp--test-utf8): Use it. (Bug#22145) + +2016-03-17 Glenn Morris + + * lisp/progmodes/xref.el (xref-buffer-name, xref--window): + Move definitions before use. + + * lisp/gnus/mm-decode.el (gnus-format-message): Autoload it. + + * lisp/mail/rmail.el (rmail-mime-entity-truncated): Declare. + +2016-03-17 Glenn Morris + + Address compilation warnings due to 2016-01-03 mml refactoring. + + * lisp/gnus/mml-sec.el (password-cache, mm-encode): Require. + (message-options-get): Autoload. + (message-options-set): Declare. + (mml-secure-cache-passphrase, mml-secure-passphrase-cache-expiry): + Simplify default value. + * lisp/gnus/mml-smime.el (message-options-set): Remove declaration. + * lisp/gnus/mml1991.el, lisp/gnus/mml2015.el: + No longer a need for password-cache. + +2016-03-16 Stefan Monnier + + * lisp/emacs-lisp/smie.el (smie-indent-keyword): Don't burp in strings + + (bug#22960). + +2016-03-16 Glenn Morris + + * lisp/dired-x.el (dired-omit-here-always): Correct error message + for 2016-01-25 change. + + * lisp/dired-x.el (dired-omit-here-always): Replace undefined function + removed 2016-01-30. + + * lisp/xml.el (xml-parse-tag-1): Replace undefined function. + +2016-03-16 Eli Zaretskii + + Avoid segfaults due to frame image cache being absent + + * src/image.c (cache_image): If the frame doesn't have an image + cache, create it. (Bug#23028) + +2016-03-16 Eli Zaretskii + + Improve documentation of glyphless-character display + + * doc/emacs/display.texi (Text Display): Document and index the + 'glyphless-char' face. + +2016-03-16 Dmitry Gutov + + Support safe navigation operator in non-SMIE indentation code + + * lisp/progmodes/ruby-mode.el (ruby-calculate-indent): + Support safe navigation operator in non-SMIE indentation code. + Cherry-picked from + https://github.com/ruby/ruby/commit/68e16ddd7961b86e5013e62ae2954e88638de058. + +2016-03-16 Thomas Fitzsimmons + + Move xsd:base64Binary decoding fix to debbugs.el 0.9.1 + + * lisp/net/soap-client.el (soap-encode-xs-basic-type): Do not + assume xsd:base64Binary values are UTF-8 strings. + (soap-decode-xs-basic-type): Likewise. + (soap-invoke): Document xsd:base64Binary handling. + +2016-03-15 Dmitry Gutov + + Fix Ruby's operator precedence + + * lisp/progmodes/ruby-mode.el (ruby-smie-grammar): + Rearrange the smie-precs->prec2 form. + +2016-03-15 Dmitry Gutov + + (ruby-interpolation-inside-another-interpolation): New failing test + + * test/automated/ruby-mode-tests.el + (ruby-interpolation-inside-another-interpolation): + New failing test. + +2016-03-15 Paul Eggert + + Port to clang 3.7.0 on x86-64 + + * configure.ac: Use AS_IF so that gl_WARN_ADD’s prerequisites are + not done conditionally. This helps clang, which needs + -Wunknown-warning-option later when configured with warnings. + * src/editfns.c (invalid_time): Now _Noreturn, since clang isn’t + smart enough to figure this out on its own if warnings are enabled. + (lisp_time_struct): Redo for clarity, and to pacify clang. + * src/xfns.c (x_real_pos_and_offsets) [USE_XCB]: Don’t use + uninitialized locals. This avoids undefined behavior and pacifies + clang. + +2016-03-15 Glenn Morris + + * test/automated/package-test.el (package-test-signed): Tweak skip + condition, for hydra. + +2016-03-15 Paul Eggert + + Sync with gnulib + + This incorporates: + 2016-03-15 time_rz: port to clang -Wunused-const-variable + 2016-03-15 select: port more to Intel 2016.1.150 compiler + * lib/sys_select.in.h, lib/time_rz.c: Copy from gnulib. + +2016-03-15 Eli Zaretskii + + Fix startup of "emacs -nw" on systems that CANNOT_DUMP + + * src/xdisp.c (syms_of_xdisp) : Initialize to + nil. + + * lisp/loadup.el : Set to 'grow-only' after + loading window.el. (Bug#22975) + +2016-03-14 Dmitry Gutov + + Do not tokenize a comment before continuation as ';' + + * lisp/progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): + Account for a comment right after point. + +2016-03-14 Dmitry Gutov + + Don't misindent arguments of a method call inside continuation + + * lisp/progmodes/ruby-mode.el (ruby-smie-rules): + Use smie-indent-virtual instead of smie-rule-parent (bug#23015). + Simplify the traversal loop. + +2016-03-14 Stefan Monnier + + * src/keyboard.c (echo_keystrokes_p): Don't test cursor_in_echo_area + + (read_key_sequence): Test it here, as before. + (bug#22825). + +2016-03-14 Paul Eggert + + ASCII-only etc/NEWS etc. + + * etc/NEWS, nextstep/README: Revert the recently-added curved + quotes, and stick to ASCII. This typically involves replacing + curved with straight quotes. Since etc/NEWS is viewed so often by + UTF-8-ignorant tools, rewrite its non-ASCII text to spell out + Unicode, e.g., replace ‘‒’ with ‘U+2012 (FIGURE DASH)’. + +2016-03-14 Alan Mackenzie + + Fix a cacheing bug, which led to inordinately slow c-beginning-of-defun. + + * lisp/progmodes/cc-defs.el (c-self-bind-state-cache): New macro. + + * lisp/progmodes/cc-engine.el (c-ssb-lit-begin): Always call c-parse-state + rather than just using the cache variable c-state-cache. + (c-syntactic-skip-backward): Invoke c-self-bind-state-cache to isolate calls + to c-parse-state from other uses of the parse state cache. + + * lisp/progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun): Invoke + c-self-bind-state-cache around the processing, replacing flawed bindings of + c-state-cache. + +2016-03-14 Alan Mackenzie + + Fix a cacheing bug, which led to inordinately slow c-beginning-of-defun. + + * lisp/progmodes/cc-defs.el (c-self-bind-state-cache): New macro. + + * lisp/progmodes/cc-engine.el (c-ssb-lit-begin): Always call c-parse-state + rather than just using the cache variable c-state-cache. + (c-syntactic-skip-backward): Invoke c-self-bind-state-cache to isolate calls + to c-parse-state from other uses of the parse state cache. + + * lisp/progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun): Invoke + c-self-bind-state-cache around the processing, replacing flawed bindings of + c-state-cache. + +2016-03-14 Kaushal Modi + + Fix Isearch prompt when invoked with an argument + + * lisp/isearch.el (isearch--describe-regexp-mode): With + `search-default-mode' set to nil, if user does C-u C-s, the minibuffer + now displays "Regexp I-search: " again. But if the user has set + `search-default-mode' to t, and then does C-s, the minibuffer now + displays "I-search: " because the default search mode is now regexp + mode. Comments have been added to explain the priority of conditions + in the `cond' form. (Bug#22991) + +2016-03-14 Cesar Quiroz (tiny change) + + Fix a typo in the Emacs manual + + * doc/emacs/maintaining.texi (VC Directory Commands): Fix a typo + in a command name. + +2016-03-14 Paul Eggert + + Curved quotes in etc/NEWS etc. + + * etc/NEWS, nextstep/README: Prefer curved quotes in the + recently-changed text documentation. See: + http://lists.gnu.org/archive/html/emacs-devel/2016-03/msg00860.html + +2016-03-14 Paul Eggert + + Fix some single quotes in documentation + + * doc/emacs/anti.texi (Antinews): Avoid confusion in info and PDF + when documenting quoting styles. + * etc/NEWS, nextstep/README: In these plain text files, quote + 'like this' consistently, rather than also (sometimes) ‘like this’ + or (more often) `like this'. + +2016-03-13 Dmitry Gutov + + Make lisp-completion-at-point's argument optional + + * lisp/progmodes/elisp-mode.el (lisp-completion-at-point): Make + the argument optional, like it was before the rename. + +2016-03-13 Dmitry Gutov + + Tweak the left precedence of '=>' + + * lisp/progmodes/ruby-mode.el (ruby-smie-grammar): Tweak the left + precedence of '=>', to improve indentation and sexp navigation. + +2016-03-13 Dmitry Gutov + + Indent '.' relative to the first sibling expression + + * lisp/progmodes/ruby-mode.el (ruby-smie-rules): + Indent '.' relative to the first sibling expression, instead of the + parent token (bug#17213). + +2016-03-13 Dmitry Gutov + + Make '.' associative, for easier sexp navigation + + * lisp/progmodes/ruby-mode.el (ruby-smie-grammar): + Make '.' associative, for easier sexp navigation. + +2016-03-13 Phillip Lord + + Revert "Simplify "Visit New File" to "New File"" + + This reverts commit d457fd9dc782465e1547f74021390c9d5951d6af. + +2016-03-12 Phillip Lord + + Simplify "Visit New File" to "New File" + + * doc/emacs/files.texi,lisp/menu-bar.el (menu-bar-file-menu), + lisp/startup.el(normal-mouse-start-screen, + normal-no-mouse-startup-screen): Change label "Visit New File" to "New + File". + +2016-03-12 Eli Zaretskii + + Update Unicode notes for importing a new Unicode version + + * admin/notes/unicode: Mention the need to update otf-script-alist + in fontset.el when importing data files from a new Unicode + version. + +2016-03-12 Eli Zaretskii + + Import new data files from Unicode 9.0.0beta + + * admin/unidata/UnicodeData.txt: + * admin/unidata/Blocks.txt: + * admin/unidata/BidiMirroring.txt: + * admin/unidata/BidiBrackets.txt: Update from Unicode 9.0.0beta. + * admin/unidata/unidata-gen.el (unidata-gen-files): Bind + 'coding-system-for-read' to 'utf-8, as various Unicode data files + now actually use non-ASCII characters. + (unidata-setup-list, unidata-get-name): Support the new Tangut + Ideographs block. + + * lisp/international/characters.el (standard-case-table): Add new + characters from Unicode 9.0.0. + (standard-category-table): Add Arabic block u+08A0..u+08FF. Add + Cyrillic Extended-C block. + (char-width-table): Update ranges per Unicode 9.0.0. + * lisp/international/fontset.el (script-representative-chars): Add + new scripts defined by Unicode 9.0.0. + (otf-script-alist): Add new OTF script tags. + * lisp/international/mule-cmds.el (ucs-names): Update ranges per + Unicode 9.0.0 additions. + +2016-03-12 Eli Zaretskii + + Avoid errors in forms-mode when default major mode is text + + * lisp/forms.el (forms-mode): Bind + change-major-mode-with-file-name to nil when calling + set-visited-file-name. (Bug#22982) + +2016-03-12 Eli Zaretskii + + Avoid crashes at startup on systems that CANNOT_DUMP + + * src/xdisp.c (syms_of_xdisp) : New + boolean variable. + (init_iterator, reseat_to_string) + (Fcurrent_bidi_paragraph_direction) + (Fbidi_find_overridden_directionality): Use + redisplay--inhibit-bidi instead of purify-flag, to determine when + it's safe to reorder bidirectional text. + + * lisp/loadup.el (redisplay--inhibit-bidi): Set to t at the + beginning of the file. Reset to nil when charprop.el is + successfully loaded, or when we are going to dump, whichever + happens last. (Bug#22975) + +2016-03-12 Eli Zaretskii + + Fix documentation of seq.el functions + + * doc/lispref/sequences.texi (Sequence Functions): Fix typos. Add + cross-references. Fix formatting. (Bug#22992) + +2016-03-11 Dmitry Gutov + + Support Ruby 2.3.0's safe navigation operator + + * lisp/progmodes/ruby-mode.el (ruby-smie--forward-token) + (ruby-smie--backward-token): Tokenize '&.' as '.'. + (ruby-smie--implicit-semi-p): Check for possible '&' before '.'. + + * test/indent/ruby.rb: Add an example using safe navigation + operator. Fix a syntax error in existing example. + +2016-03-11 John Wiegley + + Update Emacs manual section related to character folding + + * search.texi: Character folding is not on by default. + +2016-03-11 Eli Zaretskii + + Update admin/notes/unicode + + * admin/notes/unicode: Update the list of files from the UCD we + are using. Mention the possible need to change 'ucs-names' when + importing a new version of the Unicode Standard. + +2016-03-10 Dmitry Gutov + + Add symref-filepattern entries for c?perl-mode + + * lisp/cedet/semantic/symref/grep.el + (semantic-symref-filepattern-alist): Add entries for perl-mode and + cperl-mode. + +2016-03-10 Ken Raeburn + + Don't use XRANDR 1.3 extensions if the server doesn't support them. + + * src/xterm.h (struct x_display_info): Add fields to save XRANDR + version number. + * src/xfns.c (x_get_monitor_attributes): Save the version numbers + after querying the X server. + (x_get_monitor_attributes_xrandr): Don't use XRRGetOutputPrimary or + XRRGetScreenResourcesCurrent if the server doesn't support at least + RANDR version 1.3. Conditionalize the code blocks on compiling + against library version 1.3 or better, rather than feature tests for + each function. + * configure.ac: Stop testing for those two functions. + +2016-03-10 Paul Eggert + + Sync with gnulib + + This incorporates: + 2016-03-08 intprops: make .h file license match module + 2016-03-08 acl: fix missing return on Cygwin + 2016-03-05 extern-inline: port to PGI CC + * doc/misc/texinfo.tex, lib/intprops.h, lib/set-permissions.c: + * m4/extern-inline.m4: + Copy from gnulib. + +2016-03-10 Paul Eggert + + Rework C source files to avoid ^( + + Work around Bug#22884 by rewording comments and strings to avoid ‘(’ + at the start of a line unless it starts a function. This change + is a short-term hack; in the longer run we plan to fix cc-mode’s + performance for C files that have ‘(’ at the start of a line in a + comment or string. + +2016-03-10 Eli Zaretskii + + By default, etags produces unqualified Perl tag names + + * lib-src/etags.c (Perl_functions): Produce unqualified names, + unless -Q was specified. + (print_help): Update the description of -Q. + + * doc/man/etags.1: Update the documentation of -Q. + + * test/etags/ETAGS.good_1: + * test/etags/ETAGS.good_2: + * test/etags/ETAGS.good_3: + * test/etags/ETAGS.good_4: + * test/etags/ETAGS.good_5: + * test/etags/CTAGS.good: Adapt the expected test results to the + changed Perl functionality. + +2016-03-10 Dmitry Gutov + + Indent methods with keyword names correctly + + * lisp/progmodes/ruby-mode.el (ruby-smie--at-dot-call): + Rename to ruby-smie--before-method-name. Now also check if we're + after a 'def' keyword. Update both callers. + +2016-03-10 Dmitry Gutov + + Propertize character literals and special global variables differently + + * lisp/progmodes/ruby-mode.el (ruby-syntax-propertize): Propertize + character literals and global variables with special names with + prefix and symbol syntax classes, for SMIE to tokenize them + together automatically. + (ruby-font-lock-keywords): Fix an old regression in highlighting + character literals. + +2016-03-09 John Wiegley + + Change how /etc/NEWS presents character folding + + * NEWS: Note that character folding is no longer the default. + +2016-03-09 John Wiegley + + Revert "Revert "Backport: * lisp/isearch.el: Turn char-folding off by default"" + + This reverts commit a91b4b51ddf2575d821adb8b84fdf32cff83886e. + +2016-03-09 Andreas Schwab + + Properly handle lambda as read function (bug 22961) + + * src/lread.c (readchar): Be more strict about checking for + string in cons for read_vector. + (unreadchar): Likewise. + +2016-03-09 Dmitry Gutov + + Propertize operator symbol names with symbol syntax class + + * lisp/progmodes/ruby-mode.el (ruby-syntax-propertize): + Do it here. + (ruby-font-lock-keywords): Instead of handling them here. Leave + highlighting them to the "normal" matcher, because now we can. + (ruby-smie--forward-token, ruby-smie--backward-token): + Likewise, don't special-case operator symbols anymore. + (ruby-smie--args-separator-p): Simplify the regexp, match operator + names with \s_. + (ruby-smie--implicit-semi-p): Handle the special cases of ? and = + at EOL the same way: check if the character has been assigned the + symbol syntax class by syntax-propertize. + +2016-03-09 Dmitry Gutov + + Stop recognizing :#{} as symbol in ruby-mode + + * lisp/progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove + the weird part that recognized colon followed by interpolation + construct without quotes (e.g. ':#{abc}') as symbol, which is just a + syntax error in any modern version of Ruby. Fix nearby bug reference. + +2016-03-09 Dmitry Gutov + + Allow using the left shift operator without spaces on both sides + + * lisp/progmodes/ruby-mode.el (ruby-singleton-class-p): Rename to + ruby-verify-heredoc, reverse the meaning of the return value, and + short-circuit if preceded by a symbol not separated by whitespace. + + * test/automated/ruby-mode-tests.el (ruby-no-heredoc-left-shift) + (ruby-no-heredoc-class-self): New tests. + +2016-03-08 Andreas Schwab + + Properly handle unquoting in wdired (bug 22938) + + The recorded old names are not quoted, don't unquote them. + + * lisp/wdired.el (wdired-normalize-filename): Add argument + unquotep, only unquote if non-nil. + (wdired-get-filename): Don't unquote the old file name. + (wdired-get-previous-link): Always unquote. + +2016-03-06 Dmitry Gutov + + Allow splat operator before percent literal + + * lisp/progmodes/ruby-mode.el (ruby-syntax-propertize): + Allow splat operator before percent literal. + +2016-03-06 Dmitry Gutov + + Don't apply the return value of goto-char as syntax class + + * lisp/progmodes/ruby-mode.el (ruby-syntax-propertize): Don't + apply the return value of goto-char as syntax class. + +2016-03-06 Dmitry Gutov + + Guard against nested percent literals + + * lisp/progmodes/ruby-mode.el + (ruby-syntax-propertize-percent-literal): + Don't check the syntax status. + (ruby-syntax-propertize): Check it here. And also guard against + being in a larger percent literal. + + * test/automated/ruby-mode-tests.el + (ruby-no-nested-percent-literals): New test. + +2016-03-06 Dmitry Gutov + + Recognize iuwu-mod after an escaped newline + + * lisp/progmodes/ruby-mode.el (ruby-smie--bosp): Check if the + newline is escaped. + (ruby-smie-rules): Indent iuwu-mod after an escaped newline + correctly. + +2016-03-06 Andreas Schwab + + Fix symbolic mode string conversion for s and t + + * lisp/files.el (file-modes-char-to-right): Fix values for ?s and + ?t. + (file-modes-symbolic-to-number): Default to a for ts permissions. + +2016-03-06 Eli Zaretskii + + Update 'ucs-names' database + + * lisp/international/mule-cmds.el (ucs-names): Update used and + unused ranges from the latest UnicodeData.txt. + +2016-03-06 Eli Zaretskii + + Improve doc string of 'shell-command' + + * lisp/simple.el (shell-command): Mention that COMMAND is prompted + for. (Bug#22926) + +2016-03-06 Eli Zaretskii + + Make the code in movemail_strftime more general + + * lib-src/movemail.c (movemail_strftime): Transform the format + string passed by the caller instead of using a separate format + string. + +2016-03-06 Eli Zaretskii + + Speed up redisplay of binary files with long series of nulls + + * src/bidi.c (bidi_resolve_weak): Avoid entering a loop searching + for a character needed for resolving the type of a series of BN + and ET characters, as required by rule W5 of UAX#9, if the results + of the resolution are known in advance, because we are at level + zero, and the previous strong character was L. + (bidi_resolve_neutral): Partially resurrect the optimization for a + long series of control characters in an otherwise strictly L2R + text. + (bidi_level_of_next_char): Don't enter the loop that searches for + a paragraph separator if the current character is already at base + embedding level. (Bug#22739) + +2016-03-05 Dmitry Gutov + + Remove the highlighting support for quoting 'like this' inside Lisp docstrings + + Remove the highlighting support for quoting 'like this' inside + Lisp docstrings. This part of + c4151ebe15479de4c2e511b068cdf9af6a4576cf seems to have been + unintentional, considering substitute-command-keys gives wrong + output for such usage. + * lisp/emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-2) + (lisp-cl-font-lock-keywords-2): Do not highlight text between two + straight quotes as symbol. + +2016-03-05 Paul Eggert + + Restore leading space in movemail pop output + + * lib-src/movemail.c (movemail_strftime) [WINDOWSNT]: New function. + (strftime) [WINDOWSNT]: New macro. + (mbx_delimit_begin): Go back to previous version of this code, + now that there’s a special-purpose WINDOWSNT implementation + that should do the right thing. That way, the output continues + to use leading space rather than leading zero for day of month. + +2016-03-05 Eli Zaretskii + + Fix bidi-paragraph-direction in Rmail view buffer + + * lisp/mail/rmail.el (rmail-show-message-1): Reset + bidi-paragraph-direction to nil before formatting the message for + display. + +2016-03-05 Dmitry Gutov + + Don't misindent computed property generator methods + + * lisp/progmodes/js.el (js--looking-at-operator-p): + Don't misindent computed property generator methods + (https://github.com/mooz/js2-mode/issues/317). + +2016-03-05 Eli Zaretskii + + Fix mbox files produced by movemail on MS-Windows + + * lib-src/movemail.c (mbx_delimit_begin): Use portable strftime + format specifiers, as at least the MS-Windows version of strftime + doesn't support %e and %T. + +2016-03-04 Paul Eggert + + doc string file descriptor exhaustion fix + + * src/doc.c (get_doc_string): Move newly-added check to a better + location (Bug#22814). + +2016-03-04 Michael Albinus + + Fix Bug#22814 + + * src/doc.c (get_doc_string): Raise an error in case too many + files are open. (Bug#22814) + +2016-03-04 Lars Ingebrigtsen + + Fix insertion of edited servers in the dribble file + + * lisp/gnus/gnus-srvr.el (gnus-server-update-server): Don't + insert explicit newlines, because they're quoted (bug#22903). + + Backport: + + (cherry picked from commit ca4e30058eba0531f38fff75f14734acffab84ea) + +2016-03-04 Martin Rudalics + + Fix previous fix of enlarge-/shrink-window + + * lisp/window.el (enlarge-window, shrink-window): Consistently + signal user-error instead of error. Resize minibuffer window by + delta lines instead of pixels. When a window cannot be resized, + signal an error only when this function was invoked by a command + in the enlarge-/shrink-window group (this restores the behavior + before the fix of bug#22723 for the non-interactive case). + +2016-03-03 Artur Malabarba + + * lisp/isearch.el (isearch-define-mode-toggle): Fix toggling logic + +2016-03-03 Mark Oteiza + + Complete temperature units in calc-convert-temperature + + * lisp/calc/calc-units.el (calc-convert-temperature): Complete with + temperature units in math-standard-units. + +2016-03-02 Dmitry Gutov + + Make sure to use case-sensitive search + + * lisp/progmodes/xref.el (xref-collect-references): Make sure to + use case-sensitive search. + +2016-03-02 Ulf Jasper + + Prevent infinite loop on not-well-formed xml. (Bug#16344) + + * lisp/xml.el (xml-parse-tag-1): Prevent inifinite loop. (Bug#16344) + * test/automated/xml-parse-tests.el (xml-parse-tests--bad-data): Add + test cases for Bug#16344. + +2016-03-02 Alan Third + + Add the missing test case for the previous patch + + lisp/dabbrev.el (dabbrev--substitute-expansion): Return EXPANSION after + any processing. + lisp/dabbrev.el (dabbrev-expand): Set EXPANSION to the return value of + DABBREV--SUBSTITUTE-EXPANSION. + test/automated/dabbrev-tests.el (dabbrev-expand-test): Test for bug#1948. + +2016-03-02 Alan Third + + Use the correct dabbrev expansion + + lisp/dabbrev.el (dabbrev--substitute-expansion): Return EXPANSION after + any processing. + lisp/dabbrev.el (dabbrev-expand): Set EXPANSION to the return value of + DABBREV--SUBSTITUTE-EXPANSION. + test/automated/dabbrev-tests.el (dabbrev-expand-test): Test for bug#1948. + +2016-03-02 Nicolas Petton + + Bump version to 25.0.92 + + * README: + * configure.ac: + * msdos/sed2v2.inp: Bump version to 25.0.92. + +2016-03-02 Nicolas Petton + + * etc/AUTHORS: Update the AUTHORS file + +2016-03-02 Nicolas Petton + + authors.el updates + + * admin/authors.el (authors-ignored-files): Addition. + 2016-03-02 Michael Albinus Fix Bug#22859 @@ -28665,7 +32494,7 @@ This file records repository revisions from commit 9d56a21e6a696ad19ac65c4b405aeca44785884a (exclusive) to -commit 06da00c6cfb5f3cafbad92bd4584a0f50343a568 (inclusive). +commit 4b2d77d8dbd5b051bb681bacaee4a6faffbbdde9 (inclusive). See ChangeLog.1 for earlier changes. ;; Local Variables: commit 4b2d77d8dbd5b051bb681bacaee4a6faffbbdde9 Author: Stefan Monnier Date: Sat Jun 11 17:38:11 2016 -0400 * lisp/emacs-lisp/macroexp.el (macroexp--expand-all): Fix (bug#19704) Don't rewrite (funcall 'f ...) to (f ...). diff --git a/lisp/emacs-lisp/macroexp.el b/lisp/emacs-lisp/macroexp.el index ed4d6e4..310ca29 100644 --- a/lisp/emacs-lisp/macroexp.el +++ b/lisp/emacs-lisp/macroexp.el @@ -261,7 +261,7 @@ Assumes the caller has bound `macroexpand-all-environment'." (format "%s quoted with ' rather than with #'" (list 'lambda (nth 1 f) '...)) (macroexp--expand-all `(,fun ,arg1 ,f . ,args)))) - (`(funcall (,(or 'quote 'function) ,(and f (pred symbolp)) . ,_) . ,args) + (`(funcall #',(and f (pred symbolp)) . ,args) ;; Rewrite (funcall #'foo bar) to (foo bar), in case `foo' ;; has a compiler-macro. (macroexp--expand-all `(,f . ,args))) commit 12e009e52f09c27e5b29cf8394eff5e8efdba9b6 Author: Phillip Lord Date: Fri Jun 10 22:59:55 2016 +0100 Restore initial undo boundary with viper * lisp/emulation/viper-cmd.el (viper-adjust-undo): Add back last undo boundary if it has been removed. Addresses Bug#22295. diff --git a/lisp/emulation/viper-cmd.el b/lisp/emulation/viper-cmd.el index 93cf3b0..4bd819a 100644 --- a/lisp/emulation/viper-cmd.el +++ b/lisp/emulation/viper-cmd.el @@ -1715,8 +1715,9 @@ invokes the command before that, etc." (let ((inhibit-quit t) tmp tmp2) (setq viper-undo-needs-adjustment nil) - (if (listp buffer-undo-list) - (if (setq tmp (memq viper-buffer-undo-list-mark buffer-undo-list)) + (when (listp buffer-undo-list) + (let ((had-boundary (null (car buffer-undo-list)))) + (if (setq tmp (memq viper-buffer-undo-list-mark buffer-undo-list)) (progn (setq tmp2 (cdr tmp)) ; the part after mark @@ -1729,8 +1730,11 @@ invokes the command before that, etc." (delq viper-buffer-undo-list-mark buffer-undo-list)) ;; restore tail of buffer-undo-list (setq buffer-undo-list (nconc buffer-undo-list tmp2))) - (setq buffer-undo-list (delq nil buffer-undo-list))))) - )) + (setq buffer-undo-list (delq nil buffer-undo-list))) + ;; The top-level loop only adds boundaries if there has been + ;; modifications in the buffer, so make sure we don't accidentally + ;; drop the "final" boundary (bug#22295). + (if had-boundary (undo-boundary))))))) (defun viper-set-complex-command-for-undo () commit 291fe0aade6560490abbe5c08d231c18edbb4737 Author: Phillip Lord Date: Fri Jun 10 22:30:49 2016 +0100 Revert "Fix viper undo breakage from undo-boundary changes" This reverts commit c0139e32f1f3bb287b04e02a69a7848d6a040003. diff --git a/lisp/emulation/viper-cmd.el b/lisp/emulation/viper-cmd.el index 6b8fa46..93cf3b0 100644 --- a/lisp/emulation/viper-cmd.el +++ b/lisp/emulation/viper-cmd.el @@ -631,7 +631,7 @@ (viper-over-whitespace-line)) (indent-to-left-margin)) (viper-add-newline-at-eob-if-necessary) - (viper-complete-complex-command-for-undo) + (viper-adjust-undo) (if (eq viper-current-state 'emacs-state) (viper-restore-cursor-color 'after-emacs-mode) @@ -1570,7 +1570,7 @@ If the prefix argument ARG is non-nil, it is used instead of `val'." (if (and (eolp) (not (bolp))) (backward-char 1)) )) - (viper-complete-complex-command-for-undo) ; take care of undo + (viper-adjust-undo) ; take care of undo ;; If the prev cmd was rotating the command ring, this means that `.' has ;; just executed a command from that ring. So, push it on the ring again. ;; If we are just executing previous command , then don't push viper-d-com @@ -1671,7 +1671,6 @@ invokes the command before that, etc." (undo-start) (undo-more 2) - (viper-complete-complex-command-for-undo) ;;(setq undo-beg-posn (or undo-beg-posn (point)) ;; undo-end-posn (or undo-end-posn (point))) ;;(setq undo-beg-posn (or undo-beg-posn before-undo-pt) @@ -1711,17 +1710,37 @@ invokes the command before that, etc." ;; The following two functions are used to set up undo properly. ;; In VI, unlike Emacs, if you open a line, say, and add a bunch of lines, ;; they are undone all at once. -(defun viper-complete-complex-command-for-undo () - (setq undo-auto-disable-boundaries nil) - (setq viper-undo-in-complex-command nil) - (undo-boundary)) +(defun viper-adjust-undo () + (if viper-undo-needs-adjustment + (let ((inhibit-quit t) + tmp tmp2) + (setq viper-undo-needs-adjustment nil) + (if (listp buffer-undo-list) + (if (setq tmp (memq viper-buffer-undo-list-mark buffer-undo-list)) + (progn + (setq tmp2 (cdr tmp)) ; the part after mark + + ;; cut tail from buffer-undo-list temporarily by direct + ;; manipulation with pointers in buffer-undo-list + (setcdr tmp nil) + + (setq buffer-undo-list (delq nil buffer-undo-list)) + (setq buffer-undo-list + (delq viper-buffer-undo-list-mark buffer-undo-list)) + ;; restore tail of buffer-undo-list + (setq buffer-undo-list (nconc buffer-undo-list tmp2))) + (setq buffer-undo-list (delq nil buffer-undo-list))))) + )) (defun viper-set-complex-command-for-undo () - (when (not viper-undo-in-complex-command) - (setq undo-auto-disable-boundaries t) - (setq viper-undo-in-complex-command t) - (undo-boundary))) + (if (listp buffer-undo-list) + (if (not viper-undo-needs-adjustment) + (let ((inhibit-quit t)) + (setq buffer-undo-list + (cons viper-buffer-undo-list-mark buffer-undo-list)) + (setq viper-undo-needs-adjustment t))))) + ;;; Viper's destructive Command ring utilities @@ -2585,7 +2604,7 @@ These keys are ESC, RET, and LineFeed." (delete-char 1 t) (insert char)) - (viper-complete-complex-command-for-undo) + (viper-adjust-undo) (backward-char arg) )) diff --git a/lisp/emulation/viper-init.el b/lisp/emulation/viper-init.el index c1e7662..104245b 100644 --- a/lisp/emulation/viper-init.el +++ b/lisp/emulation/viper-init.el @@ -370,8 +370,13 @@ Use `\\[viper-set-expert-level]' to change this.") ;; VI-style Undo ;; Used to 'undo' complex commands, such as replace and insert commands. -(viper-deflocalvar viper-undo-in-complex-command nil) -(put 'viper-undo-in-complex-command 'permanent-local t) +(viper-deflocalvar viper-undo-needs-adjustment nil) +(put 'viper-undo-needs-adjustment 'permanent-local t) + +;; A mark that Viper puts on buffer-undo-list. Marks the beginning of a +;; complex command that must be undone atomically. If inserted, it is +;; erased by viper-change-state-to-vi and viper-repeat. +(defconst viper-buffer-undo-list-mark 'viper) (defcustom viper-keep-point-on-undo nil "Non-nil means not to move point while undoing commands. diff --git a/lisp/simple.el b/lisp/simple.el index e38bf70..b66827d 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -2839,18 +2839,6 @@ buffers that were changed during the last command.") If set to non-nil, this will effectively disable the timer.") -(defvar-local undo-auto-disable-boundaries nil - "Disable the automatic addition of boundaries. - -If set to non-nil, `undo-boundary' will not be called -automatically in a buffer either at the end of a command, or as a -result of `undo-auto-current-boundary-timer'. - -When this is set to non-nil, it is important to ensure that -`undo-boundary' is called frequently enough. Failure to do so -will result in user-visible warnings that the situation is -probably a bug.") - (defvar undo-auto--this-command-amalgamating nil "Non-nil if `this-command' should be amalgamated. This variable is set to nil by `undo-auto--boundaries' and is set @@ -2890,8 +2878,7 @@ REASON describes the reason that the boundary is being added; see (dolist (b undo-auto--undoably-changed-buffers) (when (buffer-live-p b) (with-current-buffer b - (unless undo-auto-disable-boundaries - (undo-auto--ensure-boundary cause))))) + (undo-auto--ensure-boundary cause)))) (setq undo-auto--undoably-changed-buffers nil)) (defun undo-auto--boundary-timer () @@ -2916,10 +2903,10 @@ default values.") "Add an `undo-boundary' in appropriate buffers." (undo-auto--boundaries (let ((amal undo-auto--this-command-amalgamating)) - (setq undo-auto--this-command-amalgamating nil) - (if amal - 'amalgamate - 'command)))) + (setq undo-auto--this-command-amalgamating nil) + (if amal + 'amalgamate + 'command)))) (defun undo-auto-amalgamate () "Amalgamate undo if necessary. commit 6921f4a5961fb53f8fb24d1a5a3f94266f990f6e Author: Ken Brown Date: Sat Jun 11 08:31:27 2016 -0400 Fix dbus crash on 32-bit Cygwin * src/dbusbind.c (Fdbus__init_bus): Use make_save_pointer to store connection address. (Bug#23741) (xd_lisp_dbus_to_dbus): Use XSAVE_POINTER to retrieve connection address. diff --git a/src/dbusbind.c b/src/dbusbind.c index d3a32c0..56bfd71 100644 --- a/src/dbusbind.c +++ b/src/dbusbind.c @@ -943,7 +943,7 @@ xd_get_connection_references (DBusConnection *connection) static DBusConnection* xd_lisp_dbus_to_dbus (Lisp_Object bus) { - return (DBusConnection *) (intptr_t) XFASTINT (bus); + return (DBusConnection *) XSAVE_POINTER (bus, 0); } /* Return D-Bus connection address. BUS is either a Lisp symbol, @@ -1187,7 +1187,7 @@ this connection to those buses. */) XD_SIGNAL1 (build_string ("Cannot add watch functions")); /* Add bus to list of registered buses. */ - XSETFASTINT (val, (intptr_t) connection); + val = make_save_ptr (connection); xd_registered_buses = Fcons (Fcons (bus, val), xd_registered_buses); /* Cleanup. */ commit e18ee60b02d08b2f075903005798d3d6064dc013 (tag: refs/tags/emacs-25.0.95) Author: Nicolas Petton Date: Sat Jun 11 00:24:29 2016 +0200 Bump version to 25.0.95 * README: * configure.ac: * lisp/ldefs-boot.el: * msdos/sed2v2.inp: Bump Emacs version to 25.0.95. diff --git a/README b/README index 0cac434..1e5d535 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ Copyright (C) 2001-2016 Free Software Foundation, Inc. See the end of the file for license conditions. -This directory tree holds version 25.0.94 of GNU Emacs, the extensible, +This directory tree holds version 25.0.95 of GNU Emacs, the extensible, customizable, self-documenting real-time display editor. The file INSTALL in this directory says how to build and install GNU diff --git a/configure.ac b/configure.ac index 677d4e1..678e98e 100644 --- a/configure.ac +++ b/configure.ac @@ -23,7 +23,7 @@ dnl along with GNU Emacs. If not, see . AC_PREREQ(2.65) dnl Note this is parsed by (at least) make-dist and lisp/cedet/ede/emacs.el. -AC_INIT(GNU Emacs, 25.0.94, bug-gnu-emacs@gnu.org) +AC_INIT(GNU Emacs, 25.0.95, bug-gnu-emacs@gnu.org) dnl Set emacs_config_options to the options of 'configure', quoted for the shell, dnl and then quoted again for a C string. Separate options with spaces. diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 3fc3dd1..e2022ca 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el @@ -3,7 +3,7 @@ ;;; Code: -;;;### (autoloads nil "5x5" "play/5x5.el" (22150 28228 674072 702000)) +;;;### (autoloads nil "5x5" "play/5x5.el" (22330 59913 969323 446000)) ;;; Generated autoloads from play/5x5.el (autoload '5x5 "5x5" "\ @@ -65,8 +65,8 @@ should return a grid vector array that is the new solution. ;;;*** -;;;### (autoloads nil "ada-mode" "progmodes/ada-mode.el" (22197 58438 -;;;;;; 383460 447000)) +;;;### (autoloads nil "ada-mode" "progmodes/ada-mode.el" (22330 59913 +;;;;;; 977323 421000)) ;;; Generated autoloads from progmodes/ada-mode.el (autoload 'ada-add-extensions "ada-mode" "\ @@ -85,8 +85,8 @@ Ada mode is the major mode for editing Ada code. ;;;*** -;;;### (autoloads nil "ada-stmt" "progmodes/ada-stmt.el" (22150 28228 -;;;;;; 750072 702000)) +;;;### (autoloads nil "ada-stmt" "progmodes/ada-stmt.el" (22330 59913 +;;;;;; 978323 418000)) ;;; Generated autoloads from progmodes/ada-stmt.el (autoload 'ada-header "ada-stmt" "\ @@ -96,8 +96,8 @@ Insert a descriptive header at the top of the file. ;;;*** -;;;### (autoloads nil "ada-xref" "progmodes/ada-xref.el" (22150 28228 -;;;;;; 754072 702000)) +;;;### (autoloads nil "ada-xref" "progmodes/ada-xref.el" (22331 17372 +;;;;;; 88369 281000)) ;;; Generated autoloads from progmodes/ada-xref.el (autoload 'ada-find-file "ada-xref" "\ @@ -108,8 +108,8 @@ Completion is available. ;;;*** -;;;### (autoloads nil "add-log" "vc/add-log.el" (22284 55604 194845 -;;;;;; 171000)) +;;;### (autoloads nil "add-log" "vc/add-log.el" (22331 17372 121369 +;;;;;; 164000)) ;;; Generated autoloads from vc/add-log.el (put 'change-log-default-name 'safe-local-variable 'string-or-null-p) @@ -238,8 +238,8 @@ old-style time formats for entries are supported. ;;;*** -;;;### (autoloads nil "advice" "emacs-lisp/advice.el" (22150 28227 -;;;;;; 338072 702000)) +;;;### (autoloads nil "advice" "emacs-lisp/advice.el" (22331 17371 +;;;;;; 987369 640000)) ;;; Generated autoloads from emacs-lisp/advice.el (defvar ad-redefinition-action 'warn "\ @@ -374,7 +374,7 @@ usage: (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...) ;;;*** -;;;### (autoloads nil "align" "align.el" (22311 14138 946375 715000)) +;;;### (autoloads nil "align" "align.el" (22331 17371 979369 668000)) ;;; Generated autoloads from align.el (autoload 'align "align" "\ @@ -479,7 +479,7 @@ indented. ;;;*** -;;;### (autoloads nil "allout" "allout.el" (22189 64323 68321 19000)) +;;;### (autoloads nil "allout" "allout.el" (22330 59913 751324 119000)) ;;; Generated autoloads from allout.el (push (purecopy '(allout 2 3)) package--builtin-versions) @@ -839,8 +839,8 @@ for details on preparing Emacs for automatic allout activation. ;;;*** -;;;### (autoloads nil "allout-widgets" "allout-widgets.el" (22150 -;;;;;; 28226 938072 702000)) +;;;### (autoloads nil "allout-widgets" "allout-widgets.el" (22330 +;;;;;; 59913 751324 119000)) ;;; Generated autoloads from allout-widgets.el (push (purecopy '(allout-widgets 1 0)) package--builtin-versions) @@ -898,8 +898,8 @@ outline hot-spot navigation (see `allout-mode'). ;;;*** -;;;### (autoloads nil "ange-ftp" "net/ange-ftp.el" (22150 28228 350072 -;;;;;; 702000)) +;;;### (autoloads nil "ange-ftp" "net/ange-ftp.el" (22330 59913 952323 +;;;;;; 498000)) ;;; Generated autoloads from net/ange-ftp.el (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) @@ -920,8 +920,8 @@ directory, so that Emacs will know its current contents. ;;;*** -;;;### (autoloads nil "animate" "play/animate.el" (22150 28228 674072 -;;;;;; 702000)) +;;;### (autoloads nil "animate" "play/animate.el" (22330 59913 969323 +;;;;;; 446000)) ;;; Generated autoloads from play/animate.el (autoload 'animate-string "animate" "\ @@ -953,8 +953,8 @@ the buffer *Birthday-Present-for-Name*. ;;;*** -;;;### (autoloads nil "ansi-color" "ansi-color.el" (22150 28226 942072 -;;;;;; 702000)) +;;;### (autoloads nil "ansi-color" "ansi-color.el" (22330 59913 751324 +;;;;;; 119000)) ;;; Generated autoloads from ansi-color.el (push (purecopy '(ansi-color 3 4 2)) package--builtin-versions) @@ -980,8 +980,8 @@ This is a good function to put in `comint-output-filter-functions'. ;;;*** -;;;### (autoloads nil "antlr-mode" "progmodes/antlr-mode.el" (22182 -;;;;;; 44208 579853 279000)) +;;;### (autoloads nil "antlr-mode" "progmodes/antlr-mode.el" (22330 +;;;;;; 59913 978323 418000)) ;;; Generated autoloads from progmodes/antlr-mode.el (push (purecopy '(antlr-mode 2 2 3)) package--builtin-versions) @@ -1017,8 +1017,8 @@ Used in `antlr-mode'. Also a useful function in `java-mode-hook'. ;;;*** -;;;### (autoloads nil "appt" "calendar/appt.el" (22150 28227 46072 -;;;;;; 702000)) +;;;### (autoloads nil "appt" "calendar/appt.el" (22331 17371 981369 +;;;;;; 661000)) ;;; Generated autoloads from calendar/appt.el (autoload 'appt-add "appt" "\ @@ -1039,8 +1039,8 @@ ARG is positive, otherwise off. ;;;*** -;;;### (autoloads nil "apropos" "apropos.el" (22311 14138 958375 -;;;;;; 715000)) +;;;### (autoloads nil "apropos" "apropos.el" (22331 17371 980369 +;;;;;; 665000)) ;;; Generated autoloads from apropos.el (autoload 'apropos-read-pattern "apropos" "\ @@ -1156,8 +1156,8 @@ Returns list of symbols and documentation found. ;;;*** -;;;### (autoloads nil "arc-mode" "arc-mode.el" (22150 28226 946072 -;;;;;; 702000)) +;;;### (autoloads nil "arc-mode" "arc-mode.el" (22330 59913 751324 +;;;;;; 119000)) ;;; Generated autoloads from arc-mode.el (autoload 'archive-mode "arc-mode" "\ @@ -1177,7 +1177,7 @@ archive. ;;;*** -;;;### (autoloads nil "array" "array.el" (22150 28226 946072 702000)) +;;;### (autoloads nil "array" "array.el" (22330 59913 751324 119000)) ;;; Generated autoloads from array.el (autoload 'array-mode "array" "\ @@ -1248,8 +1248,8 @@ Entering array mode calls the function `array-mode-hook'. ;;;*** -;;;### (autoloads nil "artist" "textmodes/artist.el" (22150 28229 -;;;;;; 86072 702000)) +;;;### (autoloads nil "artist" "textmodes/artist.el" (22330 59913 +;;;;;; 988323 387000)) ;;; Generated autoloads from textmodes/artist.el (push (purecopy '(artist 1 2 6)) package--builtin-versions) @@ -1455,8 +1455,8 @@ Keymap summary ;;;*** -;;;### (autoloads nil "asm-mode" "progmodes/asm-mode.el" (22150 28228 -;;;;;; 758072 702000)) +;;;### (autoloads nil "asm-mode" "progmodes/asm-mode.el" (22330 59913 +;;;;;; 978323 418000)) ;;; Generated autoloads from progmodes/asm-mode.el (autoload 'asm-mode "asm-mode" "\ @@ -1483,8 +1483,8 @@ Special commands: ;;;*** -;;;### (autoloads nil "auth-source" "gnus/auth-source.el" (22150 -;;;;;; 28227 658072 702000)) +;;;### (autoloads nil "auth-source" "gnus/auth-source.el" (22331 +;;;;;; 17372 13369 548000)) ;;; Generated autoloads from gnus/auth-source.el (defvar auth-source-cache-expiry 7200 "\ @@ -1496,8 +1496,8 @@ let-binding.") ;;;*** -;;;### (autoloads nil "autoarg" "autoarg.el" (22150 28226 946072 -;;;;;; 702000)) +;;;### (autoloads nil "autoarg" "autoarg.el" (22330 59913 751324 +;;;;;; 119000)) ;;; Generated autoloads from autoarg.el (defvar autoarg-mode nil "\ @@ -1559,8 +1559,8 @@ This is similar to `autoarg-mode' but rebinds the keypad keys ;;;*** -;;;### (autoloads nil "autoconf" "progmodes/autoconf.el" (22150 28228 -;;;;;; 758072 702000)) +;;;### (autoloads nil "autoconf" "progmodes/autoconf.el" (22330 59913 +;;;;;; 978323 418000)) ;;; Generated autoloads from progmodes/autoconf.el (autoload 'autoconf-mode "autoconf" "\ @@ -1570,8 +1570,8 @@ Major mode for editing Autoconf configure.ac files. ;;;*** -;;;### (autoloads nil "autoinsert" "autoinsert.el" (22192 2880 903382 -;;;;;; 391000)) +;;;### (autoloads nil "autoinsert" "autoinsert.el" (22330 59913 751324 +;;;;;; 119000)) ;;; Generated autoloads from autoinsert.el (autoload 'auto-insert "autoinsert" "\ @@ -1610,8 +1610,8 @@ insert a template for the file depending on the mode of the buffer. ;;;*** -;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (22302 -;;;;;; 35693 265420 723000)) +;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (22331 +;;;;;; 17371 988369 637000)) ;;; Generated autoloads from emacs-lisp/autoload.el (put 'generated-autoload-file 'safe-local-variable 'stringp) @@ -1662,8 +1662,8 @@ should be non-nil). ;;;*** -;;;### (autoloads nil "autorevert" "autorevert.el" (22292 49734 698738 -;;;;;; 351000)) +;;;### (autoloads nil "autorevert" "autorevert.el" (22331 17371 980369 +;;;;;; 665000)) ;;; Generated autoloads from autorevert.el (autoload 'auto-revert-mode "autorevert" "\ @@ -1752,7 +1752,7 @@ specifies in the mode line. ;;;*** -;;;### (autoloads nil "avoid" "avoid.el" (22150 28226 946072 702000)) +;;;### (autoloads nil "avoid" "avoid.el" (22330 59913 751324 119000)) ;;; Generated autoloads from avoid.el (defvar mouse-avoidance-mode nil "\ @@ -1790,8 +1790,8 @@ definition of \"random distance\".) ;;;*** -;;;### (autoloads nil "bat-mode" "progmodes/bat-mode.el" (22150 28228 -;;;;;; 758072 702000)) +;;;### (autoloads nil "bat-mode" "progmodes/bat-mode.el" (22330 59913 +;;;;;; 978323 418000)) ;;; Generated autoloads from progmodes/bat-mode.el (add-to-list 'auto-mode-alist '("\\.\\(bat\\|cmd\\)\\'" . bat-mode)) @@ -1809,8 +1809,8 @@ Run script using `bat-run' and `bat-run-args'. ;;;*** -;;;### (autoloads nil "battery" "battery.el" (22216 22852 972596 -;;;;;; 491000)) +;;;### (autoloads nil "battery" "battery.el" (22331 17371 980369 +;;;;;; 665000)) ;;; Generated autoloads from battery.el (put 'battery-mode-line-string 'risky-local-variable t) @@ -1846,8 +1846,8 @@ seconds. ;;;*** -;;;### (autoloads nil "benchmark" "emacs-lisp/benchmark.el" (22150 -;;;;;; 28227 338072 702000)) +;;;### (autoloads nil "benchmark" "emacs-lisp/benchmark.el" (22330 +;;;;;; 59913 928323 572000)) ;;; Generated autoloads from emacs-lisp/benchmark.el (autoload 'benchmark-run "benchmark" "\ @@ -1883,8 +1883,8 @@ For non-interactive use see also `benchmark-run' and ;;;*** -;;;### (autoloads nil "bibtex" "textmodes/bibtex.el" (22150 28229 -;;;;;; 94072 702000)) +;;;### (autoloads nil "bibtex" "textmodes/bibtex.el" (22330 59913 +;;;;;; 990323 381000)) ;;; Generated autoloads from textmodes/bibtex.el (autoload 'bibtex-initialize "bibtex" "\ @@ -1976,7 +1976,7 @@ A prefix arg negates the value of `bibtex-search-entry-globally'. ;;;*** ;;;### (autoloads nil "bibtex-style" "textmodes/bibtex-style.el" -;;;;;; (22150 28229 86072 702000)) +;;;;;; (22330 59913 990323 381000)) ;;; Generated autoloads from textmodes/bibtex-style.el (autoload 'bibtex-style-mode "bibtex-style" "\ @@ -1986,8 +1986,8 @@ Major mode for editing BibTeX style files. ;;;*** -;;;### (autoloads nil "binhex" "mail/binhex.el" (22150 28228 226072 -;;;;;; 702000)) +;;;### (autoloads nil "binhex" "mail/binhex.el" (22330 59913 947323 +;;;;;; 514000)) ;;; Generated autoloads from mail/binhex.el (defconst binhex-begin-line "^:...............................................................$" "\ @@ -2011,8 +2011,8 @@ Binhex decode region between START and END. ;;;*** -;;;### (autoloads nil "blackbox" "play/blackbox.el" (22150 28228 -;;;;;; 674072 702000)) +;;;### (autoloads nil "blackbox" "play/blackbox.el" (22330 59913 +;;;;;; 969323 446000)) ;;; Generated autoloads from play/blackbox.el (autoload 'blackbox "blackbox" "\ @@ -2131,8 +2131,8 @@ a reflection. ;;;*** -;;;### (autoloads nil "bookmark" "bookmark.el" (22301 64691 837087 -;;;;;; 484000)) +;;;### (autoloads nil "bookmark" "bookmark.el" (22330 59913 737324 +;;;;;; 162000)) ;;; Generated autoloads from bookmark.el (define-key ctl-x-r-map "b" 'bookmark-jump) (define-key ctl-x-r-map "m" 'bookmark-set) @@ -2356,8 +2356,8 @@ Incremental search of bookmarks, hiding the non-matches as we go. ;;;*** -;;;### (autoloads nil "browse-url" "net/browse-url.el" (22189 64323 -;;;;;; 280321 19000)) +;;;### (autoloads nil "browse-url" "net/browse-url.el" (22330 59913 +;;;;;; 952323 498000)) ;;; Generated autoloads from net/browse-url.el (defvar browse-url-browser-function 'browse-url-default-browser "\ @@ -2705,7 +2705,7 @@ from `browse-url-elinks-wrapper'. ;;;*** -;;;### (autoloads nil "bs" "bs.el" (22150 28226 950072 702000)) +;;;### (autoloads nil "bs" "bs.el" (22330 59913 751324 119000)) ;;; Generated autoloads from bs.el (push (purecopy '(bs 1 17)) package--builtin-versions) @@ -2746,8 +2746,8 @@ name of buffer configuration. ;;;*** -;;;### (autoloads nil "bubbles" "play/bubbles.el" (22150 28228 674072 -;;;;;; 702000)) +;;;### (autoloads nil "bubbles" "play/bubbles.el" (22330 59913 969323 +;;;;;; 446000)) ;;; Generated autoloads from play/bubbles.el (autoload 'bubbles "bubbles" "\ @@ -2769,7 +2769,7 @@ columns on its right towards the left. ;;;*** ;;;### (autoloads nil "bug-reference" "progmodes/bug-reference.el" -;;;;;; (22150 28228 758072 702000)) +;;;;;; (22330 59913 978323 418000)) ;;; Generated autoloads from progmodes/bug-reference.el (put 'bug-reference-url-format 'safe-local-variable (lambda (s) (or (stringp s) (and (symbolp s) (get s 'bug-reference-url-format))))) @@ -2789,8 +2789,8 @@ Like `bug-reference-mode', but only buttonize in comments and strings. ;;;*** -;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (22195 -;;;;;; 16710 339344 967000)) +;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (22331 +;;;;;; 17371 989369 633000)) ;;; Generated autoloads from emacs-lisp/bytecomp.el (put 'byte-compile-dynamic 'safe-local-variable 'booleanp) (put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp) @@ -2910,16 +2910,16 @@ and corresponding effects. ;;;*** -;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (22192 -;;;;;; 2880 911382 391000)) +;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (22330 +;;;;;; 59913 919323 600000)) ;;; Generated autoloads from calendar/cal-china.el (put 'calendar-chinese-time-zone 'risky-local-variable t) ;;;*** -;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (22150 28227 -;;;;;; 50072 702000)) +;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (22330 59913 +;;;;;; 919323 600000)) ;;; Generated autoloads from calendar/cal-dst.el (put 'calendar-daylight-savings-starts 'risky-local-variable t) @@ -2930,8 +2930,8 @@ and corresponding effects. ;;;*** -;;;### (autoloads nil "cal-hebrew" "calendar/cal-hebrew.el" (22150 -;;;;;; 28227 50072 702000)) +;;;### (autoloads nil "cal-hebrew" "calendar/cal-hebrew.el" (22331 +;;;;;; 17371 981369 661000)) ;;; Generated autoloads from calendar/cal-hebrew.el (autoload 'calendar-hebrew-list-yahrzeits "cal-hebrew" "\ @@ -2943,7 +2943,7 @@ from the cursor position. ;;;*** -;;;### (autoloads nil "calc" "calc/calc.el" (22150 28227 26072 702000)) +;;;### (autoloads nil "calc" "calc/calc.el" (22330 59913 918323 603000)) ;;; Generated autoloads from calc/calc.el (define-key ctl-x-map "*" 'calc-dispatch) @@ -3029,8 +3029,8 @@ See Info node `(calc)Defining Functions'. ;;;*** -;;;### (autoloads nil "calc-undo" "calc/calc-undo.el" (22150 28227 -;;;;;; 22072 702000)) +;;;### (autoloads nil "calc-undo" "calc/calc-undo.el" (22330 59913 +;;;;;; 918323 603000)) ;;; Generated autoloads from calc/calc-undo.el (autoload 'calc-undo "calc-undo" "\ @@ -3040,8 +3040,8 @@ See Info node `(calc)Defining Functions'. ;;;*** -;;;### (autoloads nil "calculator" "calculator.el" (22222 61645 281665 -;;;;;; 355000)) +;;;### (autoloads nil "calculator" "calculator.el" (22331 17371 981369 +;;;;;; 661000)) ;;; Generated autoloads from calculator.el (autoload 'calculator "calculator" "\ @@ -3052,8 +3052,8 @@ See the documentation for `calculator-mode' for more information. ;;;*** -;;;### (autoloads nil "calendar" "calendar/calendar.el" (22192 2880 -;;;;;; 919382 391000)) +;;;### (autoloads nil "calendar" "calendar/calendar.el" (22330 59913 +;;;;;; 919323 600000)) ;;; Generated autoloads from calendar/calendar.el (autoload 'calendar "calendar" "\ @@ -3096,8 +3096,8 @@ This function is suitable for execution in an init file. ;;;*** -;;;### (autoloads nil "canlock" "gnus/canlock.el" (22150 28227 658072 -;;;;;; 702000)) +;;;### (autoloads nil "canlock" "gnus/canlock.el" (22331 17372 13369 +;;;;;; 548000)) ;;; Generated autoloads from gnus/canlock.el (autoload 'canlock-insert-header "canlock" "\ @@ -3114,8 +3114,8 @@ it fails. ;;;*** -;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (22312 -;;;;;; 35002 232754 775000)) +;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (22331 +;;;;;; 17372 91369 271000)) ;;; Generated autoloads from progmodes/cc-engine.el (autoload 'c-guess-basic-syntax "cc-engine" "\ @@ -3125,8 +3125,8 @@ Return the syntactic context of the current line. ;;;*** -;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (22150 28228 -;;;;;; 790072 702000)) +;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (22330 59913 +;;;;;; 978323 418000)) ;;; Generated autoloads from progmodes/cc-guess.el (defvar c-guess-guessed-offsets-alist nil "\ @@ -3224,8 +3224,8 @@ the absolute file name of the file if STYLE-NAME is nil. ;;;*** -;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (22162 19398 -;;;;;; 889892 547000)) +;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (22331 17372 +;;;;;; 92369 267000)) ;;; Generated autoloads from progmodes/cc-mode.el (autoload 'c-initialize-cc-mode "cc-mode" "\ @@ -3383,8 +3383,8 @@ Key bindings: ;;;*** -;;;### (autoloads nil "cc-styles" "progmodes/cc-styles.el" (22150 -;;;;;; 28228 798072 702000)) +;;;### (autoloads nil "cc-styles" "progmodes/cc-styles.el" (22330 +;;;;;; 59913 978323 418000)) ;;; Generated autoloads from progmodes/cc-styles.el (autoload 'c-set-style "cc-styles" "\ @@ -3435,8 +3435,8 @@ and exists only for compatibility reasons. ;;;*** -;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (22321 49972 -;;;;;; 996789 707000)) +;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (22331 17377 +;;;;;; 953348 450000)) ;;; Generated autoloads from progmodes/cc-vars.el (put 'c-basic-offset 'safe-local-variable 'integerp) (put 'c-backslash-column 'safe-local-variable 'integerp) @@ -3444,8 +3444,8 @@ and exists only for compatibility reasons. ;;;*** -;;;### (autoloads nil "ccl" "international/ccl.el" (22150 28228 106072 -;;;;;; 702000)) +;;;### (autoloads nil "ccl" "international/ccl.el" (22330 59913 939323 +;;;;;; 538000)) ;;; Generated autoloads from international/ccl.el (autoload 'ccl-compile "ccl" "\ @@ -3738,8 +3738,8 @@ See the documentation of `define-ccl-program' for the detail of CCL program. ;;;*** -;;;### (autoloads nil "cconv" "emacs-lisp/cconv.el" (22150 28227 -;;;;;; 358072 702000)) +;;;### (autoloads nil "cconv" "emacs-lisp/cconv.el" (22330 59913 +;;;;;; 929323 569000)) ;;; Generated autoloads from emacs-lisp/cconv.el (autoload 'cconv-closure-convert "cconv" "\ @@ -3758,15 +3758,15 @@ Add the warnings that closure conversion would encounter. ;;;*** -;;;### (autoloads nil "cedet" "cedet/cedet.el" (22150 28227 146072 -;;;;;; 702000)) +;;;### (autoloads nil "cedet" "cedet/cedet.el" (22330 59913 920323 +;;;;;; 597000)) ;;; Generated autoloads from cedet/cedet.el (push (purecopy '(cedet 2 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "cfengine" "progmodes/cfengine.el" (22150 28228 -;;;;;; 802072 702000)) +;;;### (autoloads nil "cfengine" "progmodes/cfengine.el" (22330 59913 +;;;;;; 978323 418000)) ;;; Generated autoloads from progmodes/cfengine.el (push (purecopy '(cfengine 1 4)) package--builtin-versions) @@ -3795,8 +3795,8 @@ Choose `cfengine2-mode' or `cfengine3-mode' by buffer contents. ;;;*** -;;;### (autoloads nil "char-fold" "char-fold.el" (22332 20294 657693 -;;;;;; 779000)) +;;;### (autoloads nil "char-fold" "char-fold.el" (22363 8343 507348 +;;;;;; 797000)) ;;; Generated autoloads from char-fold.el (autoload 'char-fold-to-regexp "char-fold" "\ @@ -3815,15 +3815,15 @@ from which to start. ;;;*** -;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (22150 28227 -;;;;;; 358072 702000)) +;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (22330 59913 +;;;;;; 929323 569000)) ;;; Generated autoloads from emacs-lisp/chart.el (push (purecopy '(chart 0 2)) package--builtin-versions) ;;;*** ;;;### (autoloads nil "check-declare" "emacs-lisp/check-declare.el" -;;;;;; (22296 46772 428104 103000)) +;;;;;; (22331 17371 989369 633000)) ;;; Generated autoloads from emacs-lisp/check-declare.el (autoload 'check-declare-file "check-declare" "\ @@ -3840,8 +3840,8 @@ Returns non-nil if any false statements are found. ;;;*** -;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (22197 -;;;;;; 58438 127460 447000)) +;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (22331 +;;;;;; 17371 990369 629000)) ;;; Generated autoloads from emacs-lisp/checkdoc.el (push (purecopy '(checkdoc 0 6 2)) package--builtin-versions) (put 'checkdoc-force-docstrings-flag 'safe-local-variable #'booleanp) @@ -4051,8 +4051,8 @@ Find package keywords that aren't in `finder-known-keywords'. ;;;*** -;;;### (autoloads nil "china-util" "language/china-util.el" (22150 -;;;;;; 28228 162072 702000)) +;;;### (autoloads nil "china-util" "language/china-util.el" (22330 +;;;;;; 59913 940323 535000)) ;;; Generated autoloads from language/china-util.el (autoload 'decode-hz-region "china-util" "\ @@ -4089,8 +4089,8 @@ Encode the text in the current buffer to HZ. ;;;*** -;;;### (autoloads nil "chistory" "chistory.el" (22150 28227 274072 -;;;;;; 702000)) +;;;### (autoloads nil "chistory" "chistory.el" (22330 59913 751324 +;;;;;; 119000)) ;;; Generated autoloads from chistory.el (autoload 'repeat-matching-complex-command "chistory" "\ @@ -4129,8 +4129,8 @@ and runs the normal hook `command-history-hook'. ;;;*** -;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (22150 -;;;;;; 28227 366072 702000)) +;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (22330 +;;;;;; 59913 929323 569000)) ;;; Generated autoloads from emacs-lisp/cl-indent.el (autoload 'common-lisp-indent-function "cl-indent" "\ @@ -4213,8 +4213,8 @@ instead. ;;;*** -;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (22220 19926 -;;;;;; 380329 271000)) +;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (22330 59913 +;;;;;; 929323 569000)) ;;; Generated autoloads from emacs-lisp/cl-lib.el (push (purecopy '(cl-lib 1 0)) package--builtin-versions) @@ -4232,8 +4232,8 @@ a future Emacs interpreter will be able to use it.") ;;;*** -;;;### (autoloads nil "cmacexp" "progmodes/cmacexp.el" (22150 28228 -;;;;;; 802072 702000)) +;;;### (autoloads nil "cmacexp" "progmodes/cmacexp.el" (22330 59913 +;;;;;; 978323 418000)) ;;; Generated autoloads from progmodes/cmacexp.el (autoload 'c-macro-expand "cmacexp" "\ @@ -4253,8 +4253,8 @@ For use inside Lisp programs, see also `c-macro-expansion'. ;;;*** -;;;### (autoloads nil "cmuscheme" "cmuscheme.el" (22150 28227 274072 -;;;;;; 702000)) +;;;### (autoloads nil "cmuscheme" "cmuscheme.el" (22330 59913 752324 +;;;;;; 116000)) ;;; Generated autoloads from cmuscheme.el (autoload 'run-scheme "cmuscheme" "\ @@ -4274,7 +4274,7 @@ is run). ;;;*** -;;;### (autoloads nil "color" "color.el" (22150 28227 274072 702000)) +;;;### (autoloads nil "color" "color.el" (22330 59913 752324 116000)) ;;; Generated autoloads from color.el (autoload 'color-name-to-rgb "color" "\ @@ -4293,7 +4293,7 @@ If FRAME cannot display COLOR, return nil. ;;;*** -;;;### (autoloads nil "comint" "comint.el" (22280 21348 921123 491000)) +;;;### (autoloads nil "comint" "comint.el" (22331 17371 984369 651000)) ;;; Generated autoloads from comint.el (defvar comint-output-filter-functions '(ansi-color-process-output comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\ @@ -4394,8 +4394,8 @@ REGEXP-GROUP is the regular expression group in REGEXP to use. ;;;*** -;;;### (autoloads nil "compare-w" "vc/compare-w.el" (22150 28229 -;;;;;; 250072 702000)) +;;;### (autoloads nil "compare-w" "vc/compare-w.el" (22330 59914 +;;;;;; 8323 325000)) ;;; Generated autoloads from vc/compare-w.el (autoload 'compare-windows "compare-w" "\ @@ -4431,8 +4431,8 @@ on third call it again advances points to the next difference and so on. ;;;*** -;;;### (autoloads nil "compile" "progmodes/compile.el" (22311 14139 -;;;;;; 218375 715000)) +;;;### (autoloads nil "compile" "progmodes/compile.el" (22331 17372 +;;;;;; 94369 260000)) ;;; Generated autoloads from progmodes/compile.el (defvar compilation-mode-hook nil "\ @@ -4613,8 +4613,8 @@ This is the value of `next-error-function' in Compilation buffers. ;;;*** -;;;### (autoloads nil "completion" "completion.el" (22197 58438 91460 -;;;;;; 447000)) +;;;### (autoloads nil "completion" "completion.el" (22330 59913 752324 +;;;;;; 116000)) ;;; Generated autoloads from completion.el (defvar dynamic-completion-mode nil "\ @@ -4637,8 +4637,8 @@ if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "conf-mode" "textmodes/conf-mode.el" (22150 -;;;;;; 28229 94072 702000)) +;;;### (autoloads nil "conf-mode" "textmodes/conf-mode.el" (22330 +;;;;;; 59913 990323 381000)) ;;; Generated autoloads from textmodes/conf-mode.el (autoload 'conf-mode "conf-mode" "\ @@ -4793,8 +4793,8 @@ For details see `conf-mode'. Example: ;;;*** -;;;### (autoloads nil "cookie1" "play/cookie1.el" (22150 28228 674072 -;;;;;; 702000)) +;;;### (autoloads nil "cookie1" "play/cookie1.el" (22330 59913 969323 +;;;;;; 446000)) ;;; Generated autoloads from play/cookie1.el (autoload 'cookie "cookie1" "\ @@ -4822,8 +4822,8 @@ and subsequent calls on the same file won't go to disk. ;;;*** -;;;### (autoloads nil "copyright" "emacs-lisp/copyright.el" (22150 -;;;;;; 28227 374072 702000)) +;;;### (autoloads nil "copyright" "emacs-lisp/copyright.el" (22330 +;;;;;; 59913 929323 569000)) ;;; Generated autoloads from emacs-lisp/copyright.el (put 'copyright-at-end-flag 'safe-local-variable 'booleanp) (put 'copyright-names-regexp 'safe-local-variable 'stringp) @@ -4861,8 +4861,8 @@ If FIX is non-nil, run `copyright-fix-years' instead. ;;;*** -;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (22197 -;;;;;; 58438 427460 447000)) +;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (22330 +;;;;;; 59913 979323 415000)) ;;; Generated autoloads from progmodes/cperl-mode.el (put 'cperl-indent-level 'safe-local-variable 'integerp) (put 'cperl-brace-offset 'safe-local-variable 'integerp) @@ -5060,8 +5060,8 @@ Run a `perldoc' on the word around point. ;;;*** -;;;### (autoloads nil "cpp" "progmodes/cpp.el" (22150 28228 806072 -;;;;;; 702000)) +;;;### (autoloads nil "cpp" "progmodes/cpp.el" (22330 59913 979323 +;;;;;; 415000)) ;;; Generated autoloads from progmodes/cpp.el (autoload 'cpp-highlight-buffer "cpp" "\ @@ -5079,8 +5079,8 @@ Edit display information for cpp conditionals. ;;;*** -;;;### (autoloads nil "crm" "emacs-lisp/crm.el" (22150 28227 374072 -;;;;;; 702000)) +;;;### (autoloads nil "crm" "emacs-lisp/crm.el" (22330 59913 929323 +;;;;;; 569000)) ;;; Generated autoloads from emacs-lisp/crm.el (autoload 'completing-read-multiple "crm" "\ @@ -5106,8 +5106,8 @@ with empty strings removed. ;;;*** -;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (22192 2874 -;;;;;; 475382 391000)) +;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (22331 17372 +;;;;;; 112369 196000)) ;;; Generated autoloads from textmodes/css-mode.el (autoload 'css-mode "css-mode" "\ @@ -5123,8 +5123,8 @@ Major mode to edit \"Sassy CSS\" files. ;;;*** -;;;### (autoloads nil "cua-base" "emulation/cua-base.el" (22311 14139 -;;;;;; 66375 715000)) +;;;### (autoloads nil "cua-base" "emulation/cua-base.el" (22330 59913 +;;;;;; 931323 563000)) ;;; Generated autoloads from emulation/cua-base.el (defvar cua-mode nil "\ @@ -5170,8 +5170,8 @@ Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings. ;;;*** -;;;### (autoloads nil "cua-rect" "emulation/cua-rect.el" (22150 28227 -;;;;;; 462072 702000)) +;;;### (autoloads nil "cua-rect" "emulation/cua-rect.el" (22330 59913 +;;;;;; 931323 563000)) ;;; Generated autoloads from emulation/cua-rect.el (autoload 'cua-rectangle-mark-mode "cua-rect" "\ @@ -5183,7 +5183,7 @@ Activates the region if needed. Only lasts until the region is deactivated. ;;;*** ;;;### (autoloads nil "cursor-sensor" "emacs-lisp/cursor-sensor.el" -;;;;;; (22309 58853 326986 699000)) +;;;;;; (22330 59913 927323 575000)) ;;; Generated autoloads from emacs-lisp/cursor-sensor.el (defvar cursor-sensor-inhibit nil) @@ -5205,8 +5205,8 @@ is entering the area covered by the text-property property or leaving it. ;;;*** -;;;### (autoloads nil "cus-edit" "cus-edit.el" (22311 14138 970375 -;;;;;; 715000)) +;;;### (autoloads nil "cus-edit" "cus-edit.el" (22331 17371 985369 +;;;;;; 647000)) ;;; Generated autoloads from cus-edit.el (defvar custom-browse-sort-alphabetically nil "\ @@ -5525,8 +5525,8 @@ The format is suitable for use with `easy-menu-define'. ;;;*** -;;;### (autoloads nil "cus-theme" "cus-theme.el" (22150 28227 290072 -;;;;;; 702000)) +;;;### (autoloads nil "cus-theme" "cus-theme.el" (22330 59913 752324 +;;;;;; 116000)) ;;; Generated autoloads from cus-theme.el (autoload 'customize-create-theme "cus-theme" "\ @@ -5559,8 +5559,8 @@ omitted, a buffer named *Custom Themes* is used. ;;;*** -;;;### (autoloads nil "cvs-status" "vc/cvs-status.el" (22150 28229 -;;;;;; 250072 702000)) +;;;### (autoloads nil "cvs-status" "vc/cvs-status.el" (22330 59914 +;;;;;; 9323 322000)) ;;; Generated autoloads from vc/cvs-status.el (autoload 'cvs-status-mode "cvs-status" "\ @@ -5570,8 +5570,8 @@ Mode used for cvs status output. ;;;*** -;;;### (autoloads nil "cwarn" "progmodes/cwarn.el" (22150 28228 810072 -;;;;;; 702000)) +;;;### (autoloads nil "cwarn" "progmodes/cwarn.el" (22330 59913 980323 +;;;;;; 412000)) ;;; Generated autoloads from progmodes/cwarn.el (push (purecopy '(cwarn 1 3 1)) package--builtin-versions) @@ -5616,8 +5616,8 @@ See `cwarn-mode' for more information on Cwarn mode. ;;;*** -;;;### (autoloads nil "cyril-util" "language/cyril-util.el" (22150 -;;;;;; 28228 162072 702000)) +;;;### (autoloads nil "cyril-util" "language/cyril-util.el" (22330 +;;;;;; 59913 940323 535000)) ;;; Generated autoloads from language/cyril-util.el (autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\ @@ -5645,8 +5645,8 @@ If the argument is nil, we return the display table to its standard state. ;;;*** -;;;### (autoloads nil "dabbrev" "dabbrev.el" (22232 11079 208267 -;;;;;; 636000)) +;;;### (autoloads nil "dabbrev" "dabbrev.el" (22330 59913 752324 +;;;;;; 116000)) ;;; Generated autoloads from dabbrev.el (put 'dabbrev-case-fold-search 'risky-local-variable t) (put 'dabbrev-case-replace 'risky-local-variable t) @@ -5692,8 +5692,8 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]. ;;;*** -;;;### (autoloads nil "data-debug" "cedet/data-debug.el" (22150 28227 -;;;;;; 146072 702000)) +;;;### (autoloads nil "data-debug" "cedet/data-debug.el" (22330 59913 +;;;;;; 920323 597000)) ;;; Generated autoloads from cedet/data-debug.el (autoload 'data-debug-new-buffer "data-debug" "\ @@ -5703,7 +5703,7 @@ Create a new data-debug buffer with NAME. ;;;*** -;;;### (autoloads nil "dbus" "net/dbus.el" (22150 28228 354072 702000)) +;;;### (autoloads nil "dbus" "net/dbus.el" (22330 59913 952323 498000)) ;;; Generated autoloads from net/dbus.el (autoload 'dbus-handle-event "dbus" "\ @@ -5716,8 +5716,8 @@ If the HANDLER returns a `dbus-error', it is propagated as return message. ;;;*** -;;;### (autoloads nil "dcl-mode" "progmodes/dcl-mode.el" (22150 28228 -;;;;;; 810072 702000)) +;;;### (autoloads nil "dcl-mode" "progmodes/dcl-mode.el" (22330 59913 +;;;;;; 980323 412000)) ;;; Generated autoloads from progmodes/dcl-mode.el (autoload 'dcl-mode "dcl-mode" "\ @@ -5843,8 +5843,8 @@ There is some minimal font-lock support (see vars ;;;*** -;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (22150 28227 -;;;;;; 378072 702000)) +;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (22330 59913 +;;;;;; 929323 569000)) ;;; Generated autoloads from emacs-lisp/debug.el (setq debugger 'debug) @@ -5887,8 +5887,8 @@ To specify a nil argument interactively, exit with an empty minibuffer. ;;;*** -;;;### (autoloads nil "decipher" "play/decipher.el" (22150 28228 -;;;;;; 674072 702000)) +;;;### (autoloads nil "decipher" "play/decipher.el" (22330 59913 +;;;;;; 969323 446000)) ;;; Generated autoloads from play/decipher.el (autoload 'decipher "decipher" "\ @@ -5916,8 +5916,8 @@ The most useful commands are: ;;;*** -;;;### (autoloads nil "delim-col" "delim-col.el" (22150 28227 290072 -;;;;;; 702000)) +;;;### (autoloads nil "delim-col" "delim-col.el" (22330 59913 752324 +;;;;;; 116000)) ;;; Generated autoloads from delim-col.el (push (purecopy '(delim-col 2 1)) package--builtin-versions) @@ -5942,7 +5942,7 @@ START and END delimits the corners of text rectangle. ;;;*** -;;;### (autoloads nil "delsel" "delsel.el" (22311 14138 978375 715000)) +;;;### (autoloads nil "delsel" "delsel.el" (22330 59913 737324 162000)) ;;; Generated autoloads from delsel.el (defalias 'pending-delete-mode 'delete-selection-mode) @@ -5975,8 +5975,8 @@ information on adapting behavior of commands in Delete Selection mode. ;;;*** -;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (22229 34898 -;;;;;; 796051 395000)) +;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (22331 17371 +;;;;;; 991369 626000)) ;;; Generated autoloads from emacs-lisp/derived.el (autoload 'define-derived-mode "derived" "\ @@ -6042,8 +6042,8 @@ the first time the mode is used. ;;;*** -;;;### (autoloads nil "descr-text" "descr-text.el" (22338 59064 750791 -;;;;;; 248000)) +;;;### (autoloads nil "descr-text" "descr-text.el" (22363 8343 507348 +;;;;;; 797000)) ;;; Generated autoloads from descr-text.el (autoload 'describe-text-properties "descr-text" "\ @@ -6092,7 +6092,7 @@ This function is meant to be used as a value of ;;;*** -;;;### (autoloads nil "desktop" "desktop.el" (22348 8503 57396 683000)) +;;;### (autoloads nil "desktop" "desktop.el" (22363 8343 508348 793000)) ;;; Generated autoloads from desktop.el (defvar desktop-save-mode nil "\ @@ -6320,8 +6320,8 @@ Revert to the last loaded desktop. ;;;*** -;;;### (autoloads nil "deuglify" "gnus/deuglify.el" (22150 28227 -;;;;;; 658072 702000)) +;;;### (autoloads nil "deuglify" "gnus/deuglify.el" (22330 59913 +;;;;;; 938323 541000)) ;;; Generated autoloads from gnus/deuglify.el (autoload 'gnus-article-outlook-unwrap-lines "deuglify" "\ @@ -6353,8 +6353,8 @@ Deuglify broken Outlook (Express) articles and redisplay. ;;;*** -;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (22192 -;;;;;; 2880 939382 391000)) +;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (22330 +;;;;;; 59913 919323 600000)) ;;; Generated autoloads from calendar/diary-lib.el (autoload 'diary "diary-lib" "\ @@ -6396,7 +6396,7 @@ Major mode for editing the diary file. ;;;*** -;;;### (autoloads nil "diff" "vc/diff.el" (22308 37947 246422 527000)) +;;;### (autoloads nil "diff" "vc/diff.el" (22330 59913 993323 372000)) ;;; Generated autoloads from vc/diff.el (defvar diff-switches (purecopy "-u") "\ @@ -6444,8 +6444,8 @@ This requires the external program `diff' to be in your `exec-path'. ;;;*** -;;;### (autoloads nil "diff-mode" "vc/diff-mode.el" (22150 28229 -;;;;;; 250072 702000)) +;;;### (autoloads nil "diff-mode" "vc/diff-mode.el" (22330 59914 +;;;;;; 9323 322000)) ;;; Generated autoloads from vc/diff-mode.el (autoload 'diff-mode "diff-mode" "\ @@ -6477,7 +6477,7 @@ the mode if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "dig" "net/dig.el" (22150 28228 354072 702000)) +;;;### (autoloads nil "dig" "net/dig.el" (22330 59913 952323 498000)) ;;; Generated autoloads from net/dig.el (autoload 'dig "dig" "\ @@ -6488,7 +6488,7 @@ Optional arguments are passed to `dig-invoke'. ;;;*** -;;;### (autoloads nil "dired" "dired.el" (22313 55864 533239 164000)) +;;;### (autoloads nil "dired" "dired.el" (22331 17371 987369 640000)) ;;; Generated autoloads from dired.el (defvar dired-listing-switches (purecopy "-al") "\ @@ -6614,8 +6614,8 @@ Keybindings: ;;;*** -;;;### (autoloads nil "dirtrack" "dirtrack.el" (22150 28227 310072 -;;;;;; 702000)) +;;;### (autoloads nil "dirtrack" "dirtrack.el" (22330 59913 752324 +;;;;;; 116000)) ;;; Generated autoloads from dirtrack.el (autoload 'dirtrack-mode "dirtrack" "\ @@ -6645,8 +6645,8 @@ from `default-directory'. ;;;*** -;;;### (autoloads nil "disass" "emacs-lisp/disass.el" (22270 22707 -;;;;;; 603851 575000)) +;;;### (autoloads nil "disass" "emacs-lisp/disass.el" (22330 59913 +;;;;;; 929323 569000)) ;;; Generated autoloads from emacs-lisp/disass.el (autoload 'disassemble "disass" "\ @@ -6660,8 +6660,8 @@ redefine OBJECT if it is a symbol. ;;;*** -;;;### (autoloads nil "disp-table" "disp-table.el" (22150 28227 310072 -;;;;;; 702000)) +;;;### (autoloads nil "disp-table" "disp-table.el" (22330 59913 752324 +;;;;;; 116000)) ;;; Generated autoloads from disp-table.el (autoload 'make-display-table "disp-table" "\ @@ -6782,8 +6782,8 @@ in `.emacs'. ;;;*** -;;;### (autoloads nil "dissociate" "play/dissociate.el" (22150 28228 -;;;;;; 674072 702000)) +;;;### (autoloads nil "dissociate" "play/dissociate.el" (22330 59913 +;;;;;; 969323 446000)) ;;; Generated autoloads from play/dissociate.el (autoload 'dissociated-press "dissociate" "\ @@ -6799,7 +6799,7 @@ Default is 2. ;;;*** -;;;### (autoloads nil "dnd" "dnd.el" (22150 28227 314072 702000)) +;;;### (autoloads nil "dnd" "dnd.el" (22330 59913 752324 116000)) ;;; 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)) "\ @@ -6819,8 +6819,8 @@ if some action was made, or nil if the URL is ignored.") ;;;*** -;;;### (autoloads nil "dns-mode" "textmodes/dns-mode.el" (22150 28229 -;;;;;; 98072 702000)) +;;;### (autoloads nil "dns-mode" "textmodes/dns-mode.el" (22330 59913 +;;;;;; 990323 381000)) ;;; Generated autoloads from textmodes/dns-mode.el (autoload 'dns-mode "dns-mode" "\ @@ -6843,8 +6843,8 @@ Locate SOA record and increment the serial field. ;;;*** -;;;### (autoloads nil "doc-view" "doc-view.el" (22253 13631 322961 -;;;;;; 36000)) +;;;### (autoloads nil "doc-view" "doc-view.el" (22330 59913 752324 +;;;;;; 116000)) ;;; Generated autoloads from doc-view.el (autoload 'doc-view-mode-p "doc-view" "\ @@ -6890,8 +6890,8 @@ See the command `doc-view-mode' for more information on this mode. ;;;*** -;;;### (autoloads nil "doctor" "play/doctor.el" (22150 28228 678072 -;;;;;; 702000)) +;;;### (autoloads nil "doctor" "play/doctor.el" (22330 59913 969323 +;;;;;; 446000)) ;;; Generated autoloads from play/doctor.el (autoload 'doctor "doctor" "\ @@ -6901,7 +6901,7 @@ Switch to *doctor* buffer and start giving psychotherapy. ;;;*** -;;;### (autoloads nil "double" "double.el" (22150 28227 318072 702000)) +;;;### (autoloads nil "double" "double.el" (22330 59913 753324 113000)) ;;; Generated autoloads from double.el (autoload 'double-mode "double" "\ @@ -6917,8 +6917,8 @@ strings when pressed twice. See `double-map' for details. ;;;*** -;;;### (autoloads nil "dunnet" "play/dunnet.el" (22160 10656 10679 -;;;;;; 927000)) +;;;### (autoloads nil "dunnet" "play/dunnet.el" (22330 59913 969323 +;;;;;; 446000)) ;;; Generated autoloads from play/dunnet.el (push (purecopy '(dunnet 2 2)) package--builtin-versions) @@ -6929,8 +6929,8 @@ Switch to *dungeon* buffer and start game. ;;;*** -;;;### (autoloads nil "easy-mmode" "emacs-lisp/easy-mmode.el" (22311 -;;;;;; 14139 6375 715000)) +;;;### (autoloads nil "easy-mmode" "emacs-lisp/easy-mmode.el" (22331 +;;;;;; 17371 991369 626000)) ;;; Generated autoloads from emacs-lisp/easy-mmode.el (defalias 'easy-mmode-define-minor-mode 'define-minor-mode) @@ -7072,8 +7072,8 @@ CSS contains a list of syntax specifications of the form (CHAR . SYNTAX). ;;;*** -;;;### (autoloads nil "easymenu" "emacs-lisp/easymenu.el" (22150 -;;;;;; 28227 398072 702000)) +;;;### (autoloads nil "easymenu" "emacs-lisp/easymenu.el" (22330 +;;;;;; 59913 929323 569000)) ;;; Generated autoloads from emacs-lisp/easymenu.el (autoload 'easy-menu-define "easymenu" "\ @@ -7211,8 +7211,8 @@ To implement dynamic menus, either call this from ;;;*** -;;;### (autoloads nil "ebnf2ps" "progmodes/ebnf2ps.el" (22150 28228 -;;;;;; 814072 702000)) +;;;### (autoloads nil "ebnf2ps" "progmodes/ebnf2ps.el" (22330 59913 +;;;;;; 981323 409000)) ;;; Generated autoloads from progmodes/ebnf2ps.el (push (purecopy '(ebnf2ps 4 4)) package--builtin-versions) @@ -7477,8 +7477,8 @@ See `ebnf-style-database' documentation. ;;;*** -;;;### (autoloads nil "ebrowse" "progmodes/ebrowse.el" (22150 28228 -;;;;;; 814072 702000)) +;;;### (autoloads nil "ebrowse" "progmodes/ebrowse.el" (22330 59913 +;;;;;; 981323 409000)) ;;; Generated autoloads from progmodes/ebrowse.el (autoload 'ebrowse-tree-mode "ebrowse" "\ @@ -7626,8 +7626,8 @@ Display statistics for a class tree. ;;;*** -;;;### (autoloads nil "ebuff-menu" "ebuff-menu.el" (22150 28227 318072 -;;;;;; 702000)) +;;;### (autoloads nil "ebuff-menu" "ebuff-menu.el" (22330 59913 912323 +;;;;;; 622000)) ;;; Generated autoloads from ebuff-menu.el (autoload 'electric-buffer-list "ebuff-menu" "\ @@ -7659,8 +7659,8 @@ Run hooks in `electric-buffer-menu-mode-hook' on entry. ;;;*** -;;;### (autoloads nil "echistory" "echistory.el" (22150 28227 318072 -;;;;;; 702000)) +;;;### (autoloads nil "echistory" "echistory.el" (22330 59913 912323 +;;;;;; 622000)) ;;; Generated autoloads from echistory.el (autoload 'Electric-command-history-redo-expression "echistory" "\ @@ -7671,8 +7671,8 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. ;;;*** -;;;### (autoloads nil "ecomplete" "gnus/ecomplete.el" (22150 28227 -;;;;;; 658072 702000)) +;;;### (autoloads nil "ecomplete" "gnus/ecomplete.el" (22331 17372 +;;;;;; 13369 548000)) ;;; Generated autoloads from gnus/ecomplete.el (autoload 'ecomplete-setup "ecomplete" "\ @@ -7682,7 +7682,7 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. ;;;*** -;;;### (autoloads nil "ede" "cedet/ede.el" (22189 64323 68321 19000)) +;;;### (autoloads nil "ede" "cedet/ede.el" (22330 59913 920323 597000)) ;;; Generated autoloads from cedet/ede.el (push (purecopy '(ede 1 2)) package--builtin-versions) @@ -7709,8 +7709,8 @@ an EDE controlled project. ;;;*** -;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (22189 64323 -;;;;;; 92321 19000)) +;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (22331 17371 +;;;;;; 992369 622000)) ;;; Generated autoloads from emacs-lisp/edebug.el (defvar edebug-all-defs nil "\ @@ -7774,7 +7774,7 @@ Toggle edebugging of all forms. ;;;*** -;;;### (autoloads nil "ediff" "vc/ediff.el" (22150 28229 274072 702000)) +;;;### (autoloads nil "ediff" "vc/ediff.el" (22331 17372 122369 161000)) ;;; Generated autoloads from vc/ediff.el (push (purecopy '(ediff 2 81 4)) package--builtin-versions) @@ -8046,8 +8046,8 @@ With optional NODE, goes to that node. ;;;*** -;;;### (autoloads nil "ediff-help" "vc/ediff-help.el" (22150 28229 -;;;;;; 254072 702000)) +;;;### (autoloads nil "ediff-help" "vc/ediff-help.el" (22330 59914 +;;;;;; 9323 322000)) ;;; Generated autoloads from vc/ediff-help.el (autoload 'ediff-customize "ediff-help" "\ @@ -8057,8 +8057,8 @@ With optional NODE, goes to that node. ;;;*** -;;;### (autoloads nil "ediff-mult" "vc/ediff-mult.el" (22189 64323 -;;;;;; 332321 19000)) +;;;### (autoloads nil "ediff-mult" "vc/ediff-mult.el" (22330 59914 +;;;;;; 9323 322000)) ;;; Generated autoloads from vc/ediff-mult.el (autoload 'ediff-show-registry "ediff-mult" "\ @@ -8070,8 +8070,8 @@ Display Ediff's registry. ;;;*** -;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (22150 28229 -;;;;;; 270072 702000)) +;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (22331 17372 +;;;;;; 122369 161000)) ;;; Generated autoloads from vc/ediff-util.el (autoload 'ediff-toggle-multiframe "ediff-util" "\ @@ -8090,8 +8090,8 @@ To change the default, set the variable `ediff-use-toolbar-p', which see. ;;;*** -;;;### (autoloads nil "edmacro" "edmacro.el" (22150 28227 318072 -;;;;;; 702000)) +;;;### (autoloads nil "edmacro" "edmacro.el" (22330 59913 912323 +;;;;;; 622000)) ;;; Generated autoloads from edmacro.el (push (purecopy '(edmacro 2 1)) package--builtin-versions) @@ -8140,8 +8140,8 @@ or nil, use a compact 80-column format. ;;;*** -;;;### (autoloads nil "edt" "emulation/edt.el" (22204 31687 809113 -;;;;;; 480000)) +;;;### (autoloads nil "edt" "emulation/edt.el" (22330 59913 931323 +;;;;;; 563000)) ;;; Generated autoloads from emulation/edt.el (autoload 'edt-set-scroll-margins "edt" "\ @@ -8158,7 +8158,7 @@ Turn on EDT Emulation. ;;;*** -;;;### (autoloads nil "ehelp" "ehelp.el" (22150 28227 318072 702000)) +;;;### (autoloads nil "ehelp" "ehelp.el" (22330 59913 912323 622000)) ;;; Generated autoloads from ehelp.el (autoload 'with-electric-help "ehelp" "\ @@ -8194,15 +8194,15 @@ BUFFER is put back into its original major mode. ;;;*** -;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (22321 50034 -;;;;;; 860789 707000)) +;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (22331 17377 +;;;;;; 951348 457000)) ;;; Generated autoloads from emacs-lisp/eieio.el (push (purecopy '(eieio 1 4)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (22150 -;;;;;; 28612 762072 702000)) +;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (22331 +;;;;;; 17371 993369 619000)) ;;; Generated autoloads from emacs-lisp/eieio-core.el (push (purecopy '(eieio-core 1 4)) package--builtin-versions) @@ -8218,8 +8218,8 @@ It creates an autoload function for CNAME's constructor. ;;;*** -;;;### (autoloads nil "elec-pair" "elec-pair.el" (22150 28227 322072 -;;;;;; 702000)) +;;;### (autoloads nil "elec-pair" "elec-pair.el" (22330 59913 912323 +;;;;;; 622000)) ;;; Generated autoloads from elec-pair.el (defvar electric-pair-text-pairs '((34 . 34)) "\ @@ -8261,8 +8261,8 @@ Toggle `electric-pair-mode' only in this buffer. ;;;*** -;;;### (autoloads nil "elide-head" "elide-head.el" (22150 28227 322072 -;;;;;; 702000)) +;;;### (autoloads nil "elide-head" "elide-head.el" (22330 59913 912323 +;;;;;; 622000)) ;;; Generated autoloads from elide-head.el (autoload 'elide-head "elide-head" "\ @@ -8277,8 +8277,8 @@ This is suitable as an entry on `find-file-hook' or appropriate mode hooks. ;;;*** -;;;### (autoloads nil "elint" "emacs-lisp/elint.el" (22150 28227 -;;;;;; 422072 702000)) +;;;### (autoloads nil "elint" "emacs-lisp/elint.el" (22330 59913 +;;;;;; 929323 569000)) ;;; Generated autoloads from emacs-lisp/elint.el (autoload 'elint-file "elint" "\ @@ -8313,8 +8313,8 @@ optional prefix argument REINIT is non-nil. ;;;*** -;;;### (autoloads nil "elp" "emacs-lisp/elp.el" (22150 28227 422072 -;;;;;; 702000)) +;;;### (autoloads nil "elp" "emacs-lisp/elp.el" (22330 59913 929323 +;;;;;; 569000)) ;;; Generated autoloads from emacs-lisp/elp.el (autoload 'elp-instrument-function "elp" "\ @@ -8348,8 +8348,8 @@ displayed. ;;;*** -;;;### (autoloads nil "emacs-lock" "emacs-lock.el" (22150 28227 458072 -;;;;;; 702000)) +;;;### (autoloads nil "emacs-lock" "emacs-lock.el" (22330 59913 912323 +;;;;;; 622000)) ;;; Generated autoloads from emacs-lock.el (autoload 'emacs-lock-mode "emacs-lock" "\ @@ -8376,8 +8376,8 @@ Other values are interpreted as usual. ;;;*** -;;;### (autoloads nil "emacsbug" "mail/emacsbug.el" (22150 28228 -;;;;;; 226072 702000)) +;;;### (autoloads nil "emacsbug" "mail/emacsbug.el" (22331 17372 +;;;;;; 50369 416000)) ;;; Generated autoloads from mail/emacsbug.el (autoload 'report-emacs-bug "emacsbug" "\ @@ -8390,8 +8390,7 @@ Prompts for bug subject. Leaves you in a mail buffer. ;;;*** -;;;### (autoloads nil "emerge" "vc/emerge.el" (22086 11930 378062 -;;;;;; 731000)) +;;;### (autoloads nil "emerge" "vc/emerge.el" (22330 59914 9323 322000)) ;;; Generated autoloads from vc/emerge.el (autoload 'emerge-files "emerge" "\ @@ -8451,8 +8450,8 @@ Emerge two RCS revisions of a file, with another revision as ancestor. ;;;*** -;;;### (autoloads nil "enriched" "textmodes/enriched.el" (22150 28229 -;;;;;; 98072 702000)) +;;;### (autoloads nil "enriched" "textmodes/enriched.el" (22330 59913 +;;;;;; 990323 381000)) ;;; Generated autoloads from textmodes/enriched.el (autoload 'enriched-mode "enriched" "\ @@ -8487,7 +8486,7 @@ Commands: ;;;*** -;;;### (autoloads nil "epa" "epa.el" (22150 28227 482072 702000)) +;;;### (autoloads nil "epa" "epa.el" (22331 17371 998369 601000)) ;;; Generated autoloads from epa.el (autoload 'epa-list-keys "epa" "\ @@ -8675,8 +8674,8 @@ Insert selected KEYS after the point. ;;;*** -;;;### (autoloads nil "epa-dired" "epa-dired.el" (22150 28227 478072 -;;;;;; 702000)) +;;;### (autoloads nil "epa-dired" "epa-dired.el" (22330 59913 912323 +;;;;;; 622000)) ;;; Generated autoloads from epa-dired.el (autoload 'epa-dired-do-decrypt "epa-dired" "\ @@ -8701,8 +8700,8 @@ Encrypt marked files. ;;;*** -;;;### (autoloads nil "epa-file" "epa-file.el" (22150 28227 482072 -;;;;;; 702000)) +;;;### (autoloads nil "epa-file" "epa-file.el" (22330 59913 912323 +;;;;;; 622000)) ;;; Generated autoloads from epa-file.el (autoload 'epa-file-handler "epa-file" "\ @@ -8722,8 +8721,8 @@ Encrypt marked files. ;;;*** -;;;### (autoloads nil "epa-mail" "epa-mail.el" (22150 28227 482072 -;;;;;; 702000)) +;;;### (autoloads nil "epa-mail" "epa-mail.el" (22330 59913 912323 +;;;;;; 622000)) ;;; Generated autoloads from epa-mail.el (autoload 'epa-mail-mode "epa-mail" "\ @@ -8801,7 +8800,7 @@ if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "epg" "epg.el" (22217 43732 468164 355000)) +;;;### (autoloads nil "epg" "epg.el" (22330 59913 912323 622000)) ;;; Generated autoloads from epg.el (push (purecopy '(epg 1 0 0)) package--builtin-versions) @@ -8812,8 +8811,8 @@ Return a context object. ;;;*** -;;;### (autoloads nil "epg-config" "epg-config.el" (22334 62023 634741 -;;;;;; 204000)) +;;;### (autoloads nil "epg-config" "epg-config.el" (22330 59913 912323 +;;;;;; 622000)) ;;; Generated autoloads from epg-config.el (autoload 'epg-find-configuration "epg-config" "\ @@ -8847,7 +8846,7 @@ Look at CONFIG and try to expand GROUP. ;;;*** -;;;### (autoloads nil "erc" "erc/erc.el" (22197 58438 151460 447000)) +;;;### (autoloads nil "erc" "erc/erc.el" (22331 17372 1369 590000)) ;;; Generated autoloads from erc/erc.el (push (purecopy '(erc 5 3)) package--builtin-versions) @@ -8896,36 +8895,36 @@ Otherwise, connect to HOST:PORT as USER and /join CHANNEL. ;;;*** -;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (22150 -;;;;;; 28227 506072 702000)) +;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (22330 +;;;;;; 59913 933323 557000)) ;;; Generated autoloads from erc/erc-autoaway.el (autoload 'erc-autoaway-mode "erc-autoaway") ;;;*** -;;;### (autoloads nil "erc-button" "erc/erc-button.el" (22195 16710 -;;;;;; 391344 967000)) +;;;### (autoloads nil "erc-button" "erc/erc-button.el" (22331 17371 +;;;;;; 999369 597000)) ;;; Generated autoloads from erc/erc-button.el (autoload 'erc-button-mode "erc-button" nil t) ;;;*** -;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (22150 28227 -;;;;;; 510072 702000)) +;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (22331 17371 +;;;;;; 999369 597000)) ;;; Generated autoloads from erc/erc-capab.el (autoload 'erc-capab-identify-mode "erc-capab" nil t) ;;;*** -;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (22150 28227 -;;;;;; 510072 702000)) +;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (22331 17371 +;;;;;; 999369 597000)) ;;; Generated autoloads from erc/erc-compat.el (autoload 'erc-define-minor-mode "erc-compat") ;;;*** -;;;### (autoloads nil "erc-dcc" "erc/erc-dcc.el" (22150 28227 510072 -;;;;;; 702000)) +;;;### (autoloads nil "erc-dcc" "erc/erc-dcc.el" (22331 17371 999369 +;;;;;; 597000)) ;;; Generated autoloads from erc/erc-dcc.el (autoload 'erc-dcc-mode "erc-dcc") @@ -8955,14 +8954,14 @@ that subcommand. ;;;*** ;;;### (autoloads nil "erc-desktop-notifications" "erc/erc-desktop-notifications.el" -;;;;;; (22150 28227 510072 702000)) +;;;;;; (22330 59913 933323 557000)) ;;; Generated autoloads from erc/erc-desktop-notifications.el (autoload 'erc-notifications-mode "erc-desktop-notifications" "" t) ;;;*** -;;;### (autoloads nil "erc-ezbounce" "erc/erc-ezbounce.el" (22150 -;;;;;; 28227 510072 702000)) +;;;### (autoloads nil "erc-ezbounce" "erc/erc-ezbounce.el" (22330 +;;;;;; 59913 933323 557000)) ;;; Generated autoloads from erc/erc-ezbounce.el (autoload 'erc-cmd-ezb "erc-ezbounce" "\ @@ -9024,8 +9023,8 @@ Add EZBouncer convenience functions to ERC. ;;;*** -;;;### (autoloads nil "erc-fill" "erc/erc-fill.el" (22150 28227 510072 -;;;;;; 702000)) +;;;### (autoloads nil "erc-fill" "erc/erc-fill.el" (22330 59913 933323 +;;;;;; 557000)) ;;; Generated autoloads from erc/erc-fill.el (autoload 'erc-fill-mode "erc-fill" nil t) @@ -9037,8 +9036,8 @@ You can put this on `erc-insert-modify-hook' and/or `erc-send-modify-hook'. ;;;*** -;;;### (autoloads nil "erc-identd" "erc/erc-identd.el" (22150 28227 -;;;;;; 510072 702000)) +;;;### (autoloads nil "erc-identd" "erc/erc-identd.el" (22330 59913 +;;;;;; 933323 557000)) ;;; Generated autoloads from erc/erc-identd.el (autoload 'erc-identd-mode "erc-identd") @@ -9059,8 +9058,8 @@ system. ;;;*** -;;;### (autoloads nil "erc-imenu" "erc/erc-imenu.el" (22150 28227 -;;;;;; 514072 702000)) +;;;### (autoloads nil "erc-imenu" "erc/erc-imenu.el" (22330 59913 +;;;;;; 933323 557000)) ;;; Generated autoloads from erc/erc-imenu.el (autoload 'erc-create-imenu-index "erc-imenu" "\ @@ -9070,22 +9069,22 @@ system. ;;;*** -;;;### (autoloads nil "erc-join" "erc/erc-join.el" (22150 28227 514072 -;;;;;; 702000)) +;;;### (autoloads nil "erc-join" "erc/erc-join.el" (22330 59913 933323 +;;;;;; 557000)) ;;; Generated autoloads from erc/erc-join.el (autoload 'erc-autojoin-mode "erc-join" nil t) ;;;*** -;;;### (autoloads nil "erc-list" "erc/erc-list.el" (22150 28227 514072 -;;;;;; 702000)) +;;;### (autoloads nil "erc-list" "erc/erc-list.el" (22330 59913 933323 +;;;;;; 557000)) ;;; Generated autoloads from erc/erc-list.el (autoload 'erc-list-mode "erc-list") ;;;*** -;;;### (autoloads nil "erc-log" "erc/erc-log.el" (22150 28227 514072 -;;;;;; 702000)) +;;;### (autoloads nil "erc-log" "erc/erc-log.el" (22330 59913 933323 +;;;;;; 557000)) ;;; Generated autoloads from erc/erc-log.el (autoload 'erc-log-mode "erc-log" nil t) @@ -9114,8 +9113,8 @@ You can save every individual message by putting this function on ;;;*** -;;;### (autoloads nil "erc-match" "erc/erc-match.el" (22150 28227 -;;;;;; 514072 702000)) +;;;### (autoloads nil "erc-match" "erc/erc-match.el" (22331 17371 +;;;;;; 999369 597000)) ;;; Generated autoloads from erc/erc-match.el (autoload 'erc-match-mode "erc-match") @@ -9161,15 +9160,15 @@ Delete dangerous-host interactively to `erc-dangerous-hosts'. ;;;*** -;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (22150 28227 514072 -;;;;;; 702000)) +;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (22330 59913 933323 +;;;;;; 557000)) ;;; Generated autoloads from erc/erc-menu.el (autoload 'erc-menu-mode "erc-menu" nil t) ;;;*** -;;;### (autoloads nil "erc-netsplit" "erc/erc-netsplit.el" (22150 -;;;;;; 28227 514072 702000)) +;;;### (autoloads nil "erc-netsplit" "erc/erc-netsplit.el" (22330 +;;;;;; 59913 933323 557000)) ;;; Generated autoloads from erc/erc-netsplit.el (autoload 'erc-netsplit-mode "erc-netsplit") @@ -9180,8 +9179,8 @@ Show who's gone. ;;;*** -;;;### (autoloads nil "erc-networks" "erc/erc-networks.el" (22189 -;;;;;; 64323 128321 19000)) +;;;### (autoloads nil "erc-networks" "erc/erc-networks.el" (22330 +;;;;;; 59913 933323 557000)) ;;; Generated autoloads from erc/erc-networks.el (autoload 'erc-determine-network "erc-networks" "\ @@ -9198,8 +9197,8 @@ Interactively select a server to connect to using `erc-server-alist'. ;;;*** -;;;### (autoloads nil "erc-notify" "erc/erc-notify.el" (22150 28227 -;;;;;; 518072 702000)) +;;;### (autoloads nil "erc-notify" "erc/erc-notify.el" (22330 59913 +;;;;;; 933323 557000)) ;;; Generated autoloads from erc/erc-notify.el (autoload 'erc-notify-mode "erc-notify" nil t) @@ -9217,36 +9216,36 @@ with args, toggle notify status of people. ;;;*** -;;;### (autoloads nil "erc-page" "erc/erc-page.el" (22150 28227 518072 -;;;;;; 702000)) +;;;### (autoloads nil "erc-page" "erc/erc-page.el" (22330 59913 933323 +;;;;;; 557000)) ;;; Generated autoloads from erc/erc-page.el (autoload 'erc-page-mode "erc-page") ;;;*** -;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (22195 -;;;;;; 16710 595344 967000)) +;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (22330 +;;;;;; 59913 933323 557000)) ;;; Generated autoloads from erc/erc-pcomplete.el (autoload 'erc-completion-mode "erc-pcomplete" nil t) ;;;*** -;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (22150 28227 -;;;;;; 518072 702000)) +;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (22330 59913 +;;;;;; 933323 557000)) ;;; Generated autoloads from erc/erc-replace.el (autoload 'erc-replace-mode "erc-replace") ;;;*** -;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (22150 28227 518072 -;;;;;; 702000)) +;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (22330 59913 933323 +;;;;;; 557000)) ;;; Generated autoloads from erc/erc-ring.el (autoload 'erc-ring-mode "erc-ring" nil t) ;;;*** -;;;### (autoloads nil "erc-services" "erc/erc-services.el" (22150 -;;;;;; 28227 518072 702000)) +;;;### (autoloads nil "erc-services" "erc/erc-services.el" (22330 +;;;;;; 59913 933323 557000)) ;;; Generated autoloads from erc/erc-services.el (autoload 'erc-services-mode "erc-services" nil t) @@ -9263,15 +9262,15 @@ When called interactively, read the password using `read-passwd'. ;;;*** -;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (22150 28227 -;;;;;; 518072 702000)) +;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (22330 59913 +;;;;;; 933323 557000)) ;;; Generated autoloads from erc/erc-sound.el (autoload 'erc-sound-mode "erc-sound") ;;;*** -;;;### (autoloads nil "erc-speedbar" "erc/erc-speedbar.el" (22150 -;;;;;; 28227 518072 702000)) +;;;### (autoloads nil "erc-speedbar" "erc/erc-speedbar.el" (22330 +;;;;;; 59913 933323 557000)) ;;; Generated autoloads from erc/erc-speedbar.el (autoload 'erc-speedbar-browser "erc-speedbar" "\ @@ -9282,22 +9281,22 @@ This will add a speedbar major display mode. ;;;*** -;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (22150 -;;;;;; 28227 518072 702000)) +;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (22330 +;;;;;; 59913 933323 557000)) ;;; Generated autoloads from erc/erc-spelling.el (autoload 'erc-spelling-mode "erc-spelling" nil t) ;;;*** -;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (22150 28227 -;;;;;; 518072 702000)) +;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (22331 17372 +;;;;;; 369 594000)) ;;; Generated autoloads from erc/erc-stamp.el (autoload 'erc-timestamp-mode "erc-stamp" nil t) ;;;*** -;;;### (autoloads nil "erc-track" "erc/erc-track.el" (22195 16710 -;;;;;; 599344 967000)) +;;;### (autoloads nil "erc-track" "erc/erc-track.el" (22331 17372 +;;;;;; 369 594000)) ;;; Generated autoloads from erc/erc-track.el (defvar erc-track-minor-mode nil "\ @@ -9323,8 +9322,8 @@ keybindings will not do anything useful. ;;;*** -;;;### (autoloads nil "erc-truncate" "erc/erc-truncate.el" (22150 -;;;;;; 28227 522072 702000)) +;;;### (autoloads nil "erc-truncate" "erc/erc-truncate.el" (22330 +;;;;;; 59913 933323 557000)) ;;; Generated autoloads from erc/erc-truncate.el (autoload 'erc-truncate-mode "erc-truncate" nil t) @@ -9343,8 +9342,8 @@ Meant to be used in hooks, like `erc-insert-post-hook'. ;;;*** -;;;### (autoloads nil "erc-xdcc" "erc/erc-xdcc.el" (22150 28227 522072 -;;;;;; 702000)) +;;;### (autoloads nil "erc-xdcc" "erc/erc-xdcc.el" (22330 59913 933323 +;;;;;; 557000)) ;;; Generated autoloads from erc/erc-xdcc.el (autoload 'erc-xdcc-mode "erc-xdcc") @@ -9355,8 +9354,8 @@ Add a file to `erc-xdcc-files'. ;;;*** -;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (22182 4679 395463 -;;;;;; 499000)) +;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (22331 17371 995369 +;;;;;; 612000)) ;;; Generated autoloads from emacs-lisp/ert.el (autoload 'ert-deftest "ert" "\ @@ -9425,8 +9424,8 @@ Display the documentation for TEST-OR-TEST-NAME (a symbol or ert-test). ;;;*** -;;;### (autoloads nil "ert-x" "emacs-lisp/ert-x.el" (22150 28227 -;;;;;; 426072 702000)) +;;;### (autoloads nil "ert-x" "emacs-lisp/ert-x.el" (22331 17371 +;;;;;; 994369 615000)) ;;; Generated autoloads from emacs-lisp/ert-x.el (put 'ert-with-test-buffer 'lisp-indent-function 1) @@ -9438,8 +9437,8 @@ Kill all test buffers that are still live. ;;;*** -;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (22150 28227 -;;;;;; 542072 702000)) +;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (22331 17372 +;;;;;; 1369 590000)) ;;; Generated autoloads from eshell/esh-mode.el (autoload 'eshell-mode "esh-mode" "\ @@ -9449,8 +9448,8 @@ Emacs shell interactive mode. ;;;*** -;;;### (autoloads nil "eshell" "eshell/eshell.el" (22150 28227 542072 -;;;;;; 702000)) +;;;### (autoloads nil "eshell" "eshell/eshell.el" (22331 17372 2369 +;;;;;; 587000)) ;;; Generated autoloads from eshell/eshell.el (push (purecopy '(eshell 2 4 2)) package--builtin-versions) @@ -9485,8 +9484,8 @@ corresponding to a successful execution. ;;;*** -;;;### (autoloads nil "etags" "progmodes/etags.el" (22315 11204 909560 -;;;;;; 191000)) +;;;### (autoloads nil "etags" "progmodes/etags.el" (22330 59913 971323 +;;;;;; 440000)) ;;; Generated autoloads from progmodes/etags.el (defvar tags-file-name nil "\ @@ -9801,8 +9800,8 @@ for \\[find-tag] (which see). ;;;*** -;;;### (autoloads nil "ethio-util" "language/ethio-util.el" (22150 -;;;;;; 28228 166072 702000)) +;;;### (autoloads nil "ethio-util" "language/ethio-util.el" (22330 +;;;;;; 59913 940323 535000)) ;;; Generated autoloads from language/ethio-util.el (autoload 'setup-ethiopic-environment-internal "ethio-util" "\ @@ -9970,7 +9969,7 @@ With ARG, insert that many delimiters. ;;;*** -;;;### (autoloads nil "eudc" "net/eudc.el" (22150 28228 354072 702000)) +;;;### (autoloads nil "eudc" "net/eudc.el" (22331 17372 58369 388000)) ;;; Generated autoloads from net/eudc.el (autoload 'eudc-set-server "eudc" "\ @@ -10024,8 +10023,8 @@ This does nothing except loading eudc by autoload side-effect. ;;;*** -;;;### (autoloads nil "eudc-bob" "net/eudc-bob.el" (22150 28228 354072 -;;;;;; 702000)) +;;;### (autoloads nil "eudc-bob" "net/eudc-bob.el" (22330 59913 952323 +;;;;;; 498000)) ;;; Generated autoloads from net/eudc-bob.el (autoload 'eudc-display-generic-binary "eudc-bob" "\ @@ -10060,8 +10059,8 @@ Display a button for the JPEG DATA. ;;;*** -;;;### (autoloads nil "eudc-export" "net/eudc-export.el" (22150 28228 -;;;;;; 354072 702000)) +;;;### (autoloads nil "eudc-export" "net/eudc-export.el" (22330 59913 +;;;;;; 952323 498000)) ;;; Generated autoloads from net/eudc-export.el (autoload 'eudc-insert-record-at-point-into-bbdb "eudc-export" "\ @@ -10077,8 +10076,8 @@ Call `eudc-insert-record-at-point-into-bbdb' if on a record. ;;;*** -;;;### (autoloads nil "eudc-hotlist" "net/eudc-hotlist.el" (22150 -;;;;;; 28228 354072 702000)) +;;;### (autoloads nil "eudc-hotlist" "net/eudc-hotlist.el" (22330 +;;;;;; 59913 953323 495000)) ;;; Generated autoloads from net/eudc-hotlist.el (autoload 'eudc-edit-hotlist "eudc-hotlist" "\ @@ -10088,8 +10087,8 @@ Edit the hotlist of directory servers in a specialized buffer. ;;;*** -;;;### (autoloads nil "ewoc" "emacs-lisp/ewoc.el" (22150 28227 430072 -;;;;;; 702000)) +;;;### (autoloads nil "ewoc" "emacs-lisp/ewoc.el" (22330 59913 929323 +;;;;;; 569000)) ;;; Generated autoloads from emacs-lisp/ewoc.el (autoload 'ewoc-create "ewoc" "\ @@ -10115,7 +10114,7 @@ fourth arg NOSEP non-nil inhibits this. ;;;*** -;;;### (autoloads nil "eww" "net/eww.el" (22229 34898 904051 395000)) +;;;### (autoloads nil "eww" "net/eww.el" (22331 17372 58369 388000)) ;;; Generated autoloads from net/eww.el (defvar eww-suggest-uris '(eww-links-at-point url-get-url-at-point eww-current-url) "\ @@ -10162,8 +10161,8 @@ Display the bookmarks. ;;;*** -;;;### (autoloads nil "executable" "progmodes/executable.el" (22150 -;;;;;; 28228 818072 702000)) +;;;### (autoloads nil "executable" "progmodes/executable.el" (22330 +;;;;;; 59913 981323 409000)) ;;; Generated autoloads from progmodes/executable.el (autoload 'executable-command-find-posix-p "executable" "\ @@ -10198,7 +10197,7 @@ file modes. ;;;*** -;;;### (autoloads nil "expand" "expand.el" (22150 28227 542072 702000)) +;;;### (autoloads nil "expand" "expand.el" (22330 59913 912323 622000)) ;;; Generated autoloads from expand.el (autoload 'expand-add-abbrevs "expand" "\ @@ -10247,8 +10246,8 @@ This is used only in conjunction with `expand-add-abbrevs'. ;;;*** -;;;### (autoloads nil "f90" "progmodes/f90.el" (22197 58438 431460 -;;;;;; 447000)) +;;;### (autoloads nil "f90" "progmodes/f90.el" (22330 59913 981323 +;;;;;; 409000)) ;;; Generated autoloads from progmodes/f90.el (autoload 'f90-mode "f90" "\ @@ -10315,8 +10314,8 @@ with no args, if that value is non-nil. ;;;*** -;;;### (autoloads nil "face-remap" "face-remap.el" (22283 34751 141333 -;;;;;; 844000)) +;;;### (autoloads nil "face-remap" "face-remap.el" (22330 59913 738324 +;;;;;; 159000)) ;;; Generated autoloads from face-remap.el (autoload 'face-remap-add-relative "face-remap" "\ @@ -10475,8 +10474,8 @@ Besides the choice of face, it is the same as `buffer-face-mode'. ;;;*** -;;;### (autoloads nil "feedmail" "mail/feedmail.el" (22092 27717 -;;;;;; 880268 464000)) +;;;### (autoloads nil "feedmail" "mail/feedmail.el" (22330 59913 +;;;;;; 947323 514000)) ;;; Generated autoloads from mail/feedmail.el (push (purecopy '(feedmail 11)) package--builtin-versions) @@ -10530,7 +10529,7 @@ you can set `feedmail-queue-reminder-alist' to nil. ;;;*** -;;;### (autoloads nil "ffap" "ffap.el" (22279 37684 340180 436000)) +;;;### (autoloads nil "ffap" "ffap.el" (22331 17372 3369 583000)) ;;; Generated autoloads from ffap.el (autoload 'ffap-next "ffap" "\ @@ -10593,8 +10592,8 @@ Evaluate the forms in variable `ffap-bindings'. ;;;*** -;;;### (autoloads nil "filecache" "filecache.el" (22150 28227 554072 -;;;;;; 702000)) +;;;### (autoloads nil "filecache" "filecache.el" (22330 59913 912323 +;;;;;; 622000)) ;;; Generated autoloads from filecache.el (autoload 'file-cache-add-directory "filecache" "\ @@ -10651,8 +10650,8 @@ the name is considered already unique; only the second substitution ;;;*** -;;;### (autoloads nil "filenotify" "filenotify.el" (22230 55750 327718 -;;;;;; 91000)) +;;;### (autoloads nil "filenotify" "filenotify.el" (22330 59913 912323 +;;;;;; 622000)) ;;; Generated autoloads from filenotify.el (autoload 'file-notify-handle-event "filenotify" "\ @@ -10667,8 +10666,7 @@ Otherwise, signal a `file-notify-error'. ;;;*** -;;;### (autoloads nil "files-x" "files-x.el" (22189 64323 128321 -;;;;;; 19000)) +;;;### (autoloads nil "files-x" "files-x.el" (22331 17372 3369 583000)) ;;; Generated autoloads from files-x.el (autoload 'add-file-local-variable "files-x" "\ @@ -10733,8 +10731,8 @@ Copy directory-local variables to the -*- line. ;;;*** -;;;### (autoloads nil "filesets" "filesets.el" (22150 28227 578072 -;;;;;; 702000)) +;;;### (autoloads nil "filesets" "filesets.el" (22330 59913 912323 +;;;;;; 622000)) ;;; Generated autoloads from filesets.el (autoload 'filesets-init "filesets" "\ @@ -10745,8 +10743,8 @@ Set up hooks, load the cache file -- if existing -- and build the menu. ;;;*** -;;;### (autoloads nil "find-cmd" "find-cmd.el" (22150 28227 578072 -;;;;;; 702000)) +;;;### (autoloads nil "find-cmd" "find-cmd.el" (22330 59913 913323 +;;;;;; 619000)) ;;; Generated autoloads from find-cmd.el (push (purecopy '(find-cmd 0 6)) package--builtin-versions) @@ -10766,8 +10764,8 @@ result is a string that should be ready for the command line. ;;;*** -;;;### (autoloads nil "find-dired" "find-dired.el" (22150 28227 578072 -;;;;;; 702000)) +;;;### (autoloads nil "find-dired" "find-dired.el" (22331 17372 5369 +;;;;;; 576000)) ;;; Generated autoloads from find-dired.el (autoload 'find-dired "find-dired" "\ @@ -10807,8 +10805,8 @@ use in place of \"-ls\" as the final argument. ;;;*** -;;;### (autoloads nil "find-file" "find-file.el" (22150 28227 578072 -;;;;;; 702000)) +;;;### (autoloads nil "find-file" "find-file.el" (22331 17372 5369 +;;;;;; 576000)) ;;; 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)))) "\ @@ -10898,8 +10896,8 @@ Visit the file you click on in another window. ;;;*** -;;;### (autoloads nil "find-func" "emacs-lisp/find-func.el" (22343 -;;;;;; 35624 796272 343000)) +;;;### (autoloads nil "find-func" "emacs-lisp/find-func.el" (22363 +;;;;;; 8343 508348 793000)) ;;; Generated autoloads from emacs-lisp/find-func.el (autoload 'find-library "find-func" "\ @@ -11069,8 +11067,8 @@ Define some key bindings for the find-function family of functions. ;;;*** -;;;### (autoloads nil "find-lisp" "find-lisp.el" (22311 14139 134375 -;;;;;; 715000)) +;;;### (autoloads nil "find-lisp" "find-lisp.el" (22330 59913 738324 +;;;;;; 159000)) ;;; Generated autoloads from find-lisp.el (autoload 'find-lisp-find-dired "find-lisp" "\ @@ -11090,7 +11088,7 @@ Change the filter on a `find-lisp-find-dired' buffer to REGEXP. ;;;*** -;;;### (autoloads nil "finder" "finder.el" (22150 28227 578072 702000)) +;;;### (autoloads nil "finder" "finder.el" (22330 59913 913323 619000)) ;;; Generated autoloads from finder.el (push (purecopy '(finder 1 0)) package--builtin-versions) @@ -11112,8 +11110,8 @@ Find packages matching a given keyword. ;;;*** -;;;### (autoloads nil "flow-ctrl" "flow-ctrl.el" (22150 28227 578072 -;;;;;; 702000)) +;;;### (autoloads nil "flow-ctrl" "flow-ctrl.el" (22330 59913 913323 +;;;;;; 619000)) ;;; Generated autoloads from flow-ctrl.el (autoload 'enable-flow-control "flow-ctrl" "\ @@ -11134,8 +11132,8 @@ to get the effect of a C-q. ;;;*** -;;;### (autoloads nil "flow-fill" "gnus/flow-fill.el" (22150 28227 -;;;;;; 658072 702000)) +;;;### (autoloads nil "flow-fill" "gnus/flow-fill.el" (22331 17372 +;;;;;; 13369 548000)) ;;; Generated autoloads from gnus/flow-fill.el (autoload 'fill-flowed-encode "flow-fill" "\ @@ -11150,8 +11148,8 @@ to get the effect of a C-q. ;;;*** -;;;### (autoloads nil "flymake" "progmodes/flymake.el" (22150 28228 -;;;;;; 818072 702000)) +;;;### (autoloads nil "flymake" "progmodes/flymake.el" (22330 59913 +;;;;;; 981323 409000)) ;;; Generated autoloads from progmodes/flymake.el (push (purecopy '(flymake 0 3)) package--builtin-versions) @@ -11181,8 +11179,8 @@ Turn flymake mode off. ;;;*** -;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (22197 58438 -;;;;;; 711460 447000)) +;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (22331 17372 +;;;;;; 113369 193000)) ;;; Generated autoloads from textmodes/flyspell.el (autoload 'flyspell-prog-mode "flyspell" "\ @@ -11252,14 +11250,14 @@ Flyspell whole buffer. ;;;*** -;;;### (autoloads nil "foldout" "foldout.el" (22150 28227 582072 -;;;;;; 702000)) +;;;### (autoloads nil "foldout" "foldout.el" (22330 59913 913323 +;;;;;; 619000)) ;;; Generated autoloads from foldout.el (push (purecopy '(foldout 1 10)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "follow" "follow.el" (22308 37947 126422 527000)) +;;;### (autoloads nil "follow" "follow.el" (22330 59913 738324 159000)) ;;; Generated autoloads from follow.el (autoload 'turn-on-follow-mode "follow" "\ @@ -11381,8 +11379,8 @@ selected if the original window is the first one in the frame. ;;;*** -;;;### (autoloads nil "footnote" "mail/footnote.el" (22349 57434 -;;;;;; 509387 559000)) +;;;### (autoloads nil "footnote" "mail/footnote.el" (22363 8343 521348 +;;;;;; 743000)) ;;; Generated autoloads from mail/footnote.el (push (purecopy '(footnote 0 19)) package--builtin-versions) @@ -11401,7 +11399,7 @@ play around with the following keys: ;;;*** -;;;### (autoloads nil "forms" "forms.el" (22253 13631 334961 36000)) +;;;### (autoloads nil "forms" "forms.el" (22330 59913 913323 619000)) ;;; Generated autoloads from forms.el (autoload 'forms-mode "forms" "\ @@ -11437,8 +11435,8 @@ Visit a file in Forms mode in other window. ;;;*** -;;;### (autoloads nil "fortran" "progmodes/fortran.el" (22153 4424 -;;;;;; 620360 262000)) +;;;### (autoloads nil "fortran" "progmodes/fortran.el" (22330 59913 +;;;;;; 983323 402000)) ;;; Generated autoloads from progmodes/fortran.el (autoload 'fortran-mode "fortran" "\ @@ -11515,8 +11513,8 @@ with no args, if that value is non-nil. ;;;*** -;;;### (autoloads nil "fortune" "play/fortune.el" (22150 28228 678072 -;;;;;; 702000)) +;;;### (autoloads nil "fortune" "play/fortune.el" (22331 17372 87369 +;;;;;; 285000)) ;;; Generated autoloads from play/fortune.el (autoload 'fortune-add-fortune "fortune" "\ @@ -11564,8 +11562,8 @@ and choose the directory as the fortune-file. ;;;*** -;;;### (autoloads nil "frameset" "frameset.el" (22182 4679 399463 -;;;;;; 499000)) +;;;### (autoloads nil "frameset" "frameset.el" (22330 59913 913323 +;;;;;; 619000)) ;;; Generated autoloads from frameset.el (defvar frameset-session-filter-alist '((name . :never) (left . frameset-filter-iconified) (minibuffer . frameset-filter-minibuffer) (top . frameset-filter-iconified)) "\ @@ -11751,15 +11749,15 @@ Interactively, reads the register using `register-read-with-preview'. ;;;*** -;;;### (autoloads nil "gamegrid" "play/gamegrid.el" (22182 4679 471463 -;;;;;; 499000)) +;;;### (autoloads nil "gamegrid" "play/gamegrid.el" (22330 59913 +;;;;;; 969323 446000)) ;;; Generated autoloads from play/gamegrid.el (push (purecopy '(gamegrid 1 2)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (22150 28228 -;;;;;; 822072 702000)) +;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (22330 59913 +;;;;;; 983323 402000)) ;;; Generated autoloads from progmodes/gdb-mi.el (defvar gdb-enable-debug nil "\ @@ -11837,8 +11835,8 @@ detailed description of this mode. ;;;*** -;;;### (autoloads nil "generic" "emacs-lisp/generic.el" (22150 28227 -;;;;;; 430072 702000)) +;;;### (autoloads nil "generic" "emacs-lisp/generic.el" (22330 59913 +;;;;;; 929323 569000)) ;;; Generated autoloads from emacs-lisp/generic.el (defvar generic-mode-list nil "\ @@ -11918,8 +11916,8 @@ regular expression that can be used as an element of ;;;*** -;;;### (autoloads nil "glasses" "progmodes/glasses.el" (22150 28228 -;;;;;; 822072 702000)) +;;;### (autoloads nil "glasses" "progmodes/glasses.el" (22330 59913 +;;;;;; 983323 402000)) ;;; Generated autoloads from progmodes/glasses.el (autoload 'glasses-mode "glasses" "\ @@ -11933,8 +11931,8 @@ add virtual separators (like underscores) at places they belong to. ;;;*** -;;;### (autoloads nil "gmm-utils" "gnus/gmm-utils.el" (22272 64438 -;;;;;; 224671 103000)) +;;;### (autoloads nil "gmm-utils" "gnus/gmm-utils.el" (22331 17372 +;;;;;; 14369 544000)) ;;; Generated autoloads from gnus/gmm-utils.el (autoload 'gmm-regexp-concat "gmm-utils" "\ @@ -11988,7 +11986,7 @@ DEFAULT-MAP specifies the default key map for ICON-LIST. ;;;*** -;;;### (autoloads nil "gnus" "gnus/gnus.el" (22165 43181 87854 955000)) +;;;### (autoloads nil "gnus" "gnus/gnus.el" (22331 17372 26369 502000)) ;;; Generated autoloads from gnus/gnus.el (push (purecopy '(gnus 5 13)) package--builtin-versions) (when (fboundp 'custom-autoload) @@ -12038,8 +12036,8 @@ prompt the user for the name of an NNTP server to use. ;;;*** -;;;### (autoloads nil "gnus-agent" "gnus/gnus-agent.el" (22182 4679 -;;;;;; 403463 499000)) +;;;### (autoloads nil "gnus-agent" "gnus/gnus-agent.el" (22331 17372 +;;;;;; 14369 544000)) ;;; Generated autoloads from gnus/gnus-agent.el (autoload 'gnus-unplugged "gnus-agent" "\ @@ -12129,8 +12127,8 @@ CLEAN is obsolete and ignored. ;;;*** -;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (22284 55604 -;;;;;; 142845 171000)) +;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (22331 17372 +;;;;;; 16369 537000)) ;;; Generated autoloads from gnus/gnus-art.el (autoload 'gnus-article-prepare-display "gnus-art" "\ @@ -12140,8 +12138,8 @@ Make the current buffer look like a nice article. ;;;*** -;;;### (autoloads nil "gnus-bookmark" "gnus/gnus-bookmark.el" (22150 -;;;;;; 28227 674072 702000)) +;;;### (autoloads nil "gnus-bookmark" "gnus/gnus-bookmark.el" (22331 +;;;;;; 17372 16369 537000)) ;;; Generated autoloads from gnus/gnus-bookmark.el (autoload 'gnus-bookmark-set "gnus-bookmark" "\ @@ -12164,8 +12162,8 @@ deletion, or > if it is flagged for displaying. ;;;*** -;;;### (autoloads nil "gnus-cache" "gnus/gnus-cache.el" (22150 28227 -;;;;;; 678072 702000)) +;;;### (autoloads nil "gnus-cache" "gnus/gnus-cache.el" (22331 17372 +;;;;;; 16369 537000)) ;;; Generated autoloads from gnus/gnus-cache.el (autoload 'gnus-jog-cache "gnus-cache" "\ @@ -12206,8 +12204,8 @@ supported. ;;;*** -;;;### (autoloads nil "gnus-delay" "gnus/gnus-delay.el" (22150 28227 -;;;;;; 682072 702000)) +;;;### (autoloads nil "gnus-delay" "gnus/gnus-delay.el" (22331 17372 +;;;;;; 17369 534000)) ;;; Generated autoloads from gnus/gnus-delay.el (autoload 'gnus-delay-article "gnus-delay" "\ @@ -12242,8 +12240,8 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil. ;;;*** -;;;### (autoloads nil "gnus-diary" "gnus/gnus-diary.el" (22150 28227 -;;;;;; 686072 702000)) +;;;### (autoloads nil "gnus-diary" "gnus/gnus-diary.el" (22331 17372 +;;;;;; 17369 534000)) ;;; Generated autoloads from gnus/gnus-diary.el (autoload 'gnus-user-format-function-d "gnus-diary" "\ @@ -12258,8 +12256,8 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil. ;;;*** -;;;### (autoloads nil "gnus-dired" "gnus/gnus-dired.el" (22150 28227 -;;;;;; 686072 702000)) +;;;### (autoloads nil "gnus-dired" "gnus/gnus-dired.el" (22331 17372 +;;;;;; 17369 534000)) ;;; Generated autoloads from gnus/gnus-dired.el (autoload 'turn-on-gnus-dired-mode "gnus-dired" "\ @@ -12269,8 +12267,8 @@ Convenience method to turn on gnus-dired-mode. ;;;*** -;;;### (autoloads nil "gnus-draft" "gnus/gnus-draft.el" (22150 28227 -;;;;;; 686072 702000)) +;;;### (autoloads nil "gnus-draft" "gnus/gnus-draft.el" (22331 17372 +;;;;;; 17369 534000)) ;;; Generated autoloads from gnus/gnus-draft.el (autoload 'gnus-draft-reminder "gnus-draft" "\ @@ -12280,8 +12278,8 @@ Reminder user if there are unsent drafts. ;;;*** -;;;### (autoloads nil "gnus-fun" "gnus/gnus-fun.el" (22165 43181 -;;;;;; 71854 955000)) +;;;### (autoloads nil "gnus-fun" "gnus/gnus-fun.el" (22331 17372 +;;;;;; 17369 534000)) ;;; Generated autoloads from gnus/gnus-fun.el (autoload 'gnus--random-face-with-type "gnus-fun" "\ @@ -12346,8 +12344,8 @@ Insert a random Face header from `gnus-face-directory'. ;;;*** -;;;### (autoloads nil "gnus-gravatar" "gnus/gnus-gravatar.el" (22192 -;;;;;; 2880 975382 391000)) +;;;### (autoloads nil "gnus-gravatar" "gnus/gnus-gravatar.el" (22331 +;;;;;; 17372 17369 534000)) ;;; Generated autoloads from gnus/gnus-gravatar.el (autoload 'gnus-treat-from-gravatar "gnus-gravatar" "\ @@ -12364,8 +12362,8 @@ If gravatars are already displayed, remove them. ;;;*** -;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (22150 28227 -;;;;;; 694072 702000)) +;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (22331 17372 +;;;;;; 18369 530000)) ;;; Generated autoloads from gnus/gnus-group.el (autoload 'gnus-fetch-group "gnus-group" "\ @@ -12382,8 +12380,8 @@ Pop up a frame and enter GROUP. ;;;*** -;;;### (autoloads nil "gnus-html" "gnus/gnus-html.el" (22150 28227 -;;;;;; 694072 702000)) +;;;### (autoloads nil "gnus-html" "gnus/gnus-html.el" (22331 17372 +;;;;;; 18369 530000)) ;;; Generated autoloads from gnus/gnus-html.el (autoload 'gnus-article-html "gnus-html" "\ @@ -12398,8 +12396,8 @@ Pop up a frame and enter GROUP. ;;;*** -;;;### (autoloads nil "gnus-kill" "gnus/gnus-kill.el" (22189 64323 -;;;;;; 180321 19000)) +;;;### (autoloads nil "gnus-kill" "gnus/gnus-kill.el" (22330 59913 +;;;;;; 938323 541000)) ;;; Generated autoloads from gnus/gnus-kill.el (defalias 'gnus-batch-kill 'gnus-batch-score) @@ -12412,8 +12410,8 @@ Usage: emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score ;;;*** -;;;### (autoloads nil "gnus-ml" "gnus/gnus-ml.el" (22150 28227 698072 -;;;;;; 702000)) +;;;### (autoloads nil "gnus-ml" "gnus/gnus-ml.el" (22331 17372 19369 +;;;;;; 526000)) ;;; Generated autoloads from gnus/gnus-ml.el (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" "\ @@ -12436,8 +12434,8 @@ Minor mode for providing mailing-list commands. ;;;*** -;;;### (autoloads nil "gnus-mlspl" "gnus/gnus-mlspl.el" (22150 28227 -;;;;;; 698072 702000)) +;;;### (autoloads nil "gnus-mlspl" "gnus/gnus-mlspl.el" (22330 59913 +;;;;;; 938323 541000)) ;;; Generated autoloads from gnus/gnus-mlspl.el (autoload 'gnus-group-split-setup "gnus-mlspl" "\ @@ -12537,8 +12535,8 @@ Calling (gnus-group-split-fancy nil nil \"mail.others\") returns: ;;;*** -;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (22150 28227 -;;;;;; 702072 702000)) +;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (22331 17372 +;;;;;; 19369 526000)) ;;; Generated autoloads from gnus/gnus-msg.el (autoload 'gnus-msg-mail "gnus-msg" "\ @@ -12565,7 +12563,7 @@ Like `message-reply'. ;;;*** ;;;### (autoloads nil "gnus-notifications" "gnus/gnus-notifications.el" -;;;;;; (22150 28227 702072 702000)) +;;;;;; (22331 17372 19369 526000)) ;;; Generated autoloads from gnus/gnus-notifications.el (autoload 'gnus-notifications "gnus-notifications" "\ @@ -12581,8 +12579,8 @@ This is typically a function to add in ;;;*** -;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (22192 2880 -;;;;;; 983382 391000)) +;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (22331 17372 +;;;;;; 19369 526000)) ;;; Generated autoloads from gnus/gnus-picon.el (autoload 'gnus-treat-from-picon "gnus-picon" "\ @@ -12605,8 +12603,8 @@ If picons are already displayed, remove them. ;;;*** -;;;### (autoloads nil "gnus-range" "gnus/gnus-range.el" (22150 28227 -;;;;;; 702072 702000)) +;;;### (autoloads nil "gnus-range" "gnus/gnus-range.el" (22330 59913 +;;;;;; 938323 541000)) ;;; Generated autoloads from gnus/gnus-range.el (autoload 'gnus-sorted-difference "gnus-range" "\ @@ -12673,8 +12671,8 @@ Add NUM into sorted LIST by side effect. ;;;*** -;;;### (autoloads nil "gnus-registry" "gnus/gnus-registry.el" (22150 -;;;;;; 28227 702072 702000)) +;;;### (autoloads nil "gnus-registry" "gnus/gnus-registry.el" (22331 +;;;;;; 17372 19369 526000)) ;;; Generated autoloads from gnus/gnus-registry.el (autoload 'gnus-registry-initialize "gnus-registry" "\ @@ -12689,8 +12687,8 @@ Install the registry hooks. ;;;*** -;;;### (autoloads nil "gnus-sieve" "gnus/gnus-sieve.el" (22150 28227 -;;;;;; 806072 702000)) +;;;### (autoloads nil "gnus-sieve" "gnus/gnus-sieve.el" (22330 59913 +;;;;;; 938323 541000)) ;;; Generated autoloads from gnus/gnus-sieve.el (autoload 'gnus-sieve-update "gnus-sieve" "\ @@ -12717,8 +12715,8 @@ See the documentation for these variables and functions for details. ;;;*** -;;;### (autoloads nil "gnus-spec" "gnus/gnus-spec.el" (22150 28227 -;;;;;; 806072 702000)) +;;;### (autoloads nil "gnus-spec" "gnus/gnus-spec.el" (22331 17372 +;;;;;; 20369 523000)) ;;; Generated autoloads from gnus/gnus-spec.el (autoload 'gnus-update-format "gnus-spec" "\ @@ -12728,8 +12726,8 @@ Update the format specification near point. ;;;*** -;;;### (autoloads nil "gnus-start" "gnus/gnus-start.el" (22197 58438 -;;;;;; 235460 447000)) +;;;### (autoloads nil "gnus-start" "gnus/gnus-start.el" (22331 17372 +;;;;;; 21369 519000)) ;;; Generated autoloads from gnus/gnus-start.el (autoload 'gnus-declare-backend "gnus-start" "\ @@ -12739,8 +12737,8 @@ Declare back end NAME with ABILITIES as a Gnus back end. ;;;*** -;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (22199 13769 -;;;;;; 464900 836000)) +;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (22331 17372 +;;;;;; 24369 509000)) ;;; Generated autoloads from gnus/gnus-sum.el (autoload 'gnus-summary-bookmark-jump "gnus-sum" "\ @@ -12751,8 +12749,8 @@ BOOKMARK is a bookmark name or a bookmark record. ;;;*** -;;;### (autoloads nil "gnus-sync" "gnus/gnus-sync.el" (22150 28227 -;;;;;; 862072 702000)) +;;;### (autoloads nil "gnus-sync" "gnus/gnus-sync.el" (22331 17372 +;;;;;; 24369 509000)) ;;; Generated autoloads from gnus/gnus-sync.el (autoload 'gnus-sync-initialize "gnus-sync" "\ @@ -12767,8 +12765,8 @@ Install the sync hooks. ;;;*** -;;;### (autoloads nil "gnus-win" "gnus/gnus-win.el" (22150 28227 -;;;;;; 938072 702000)) +;;;### (autoloads nil "gnus-win" "gnus/gnus-win.el" (22331 17372 +;;;;;; 25369 505000)) ;;; Generated autoloads from gnus/gnus-win.el (autoload 'gnus-add-configuration "gnus-win" "\ @@ -12778,8 +12776,8 @@ Add the window configuration CONF to `gnus-buffer-configuration'. ;;;*** -;;;### (autoloads nil "gnutls" "net/gnutls.el" (22150 28228 358072 -;;;;;; 702000)) +;;;### (autoloads nil "gnutls" "net/gnutls.el" (22331 17372 58369 +;;;;;; 388000)) ;;; Generated autoloads from net/gnutls.el (defvar gnutls-min-prime-bits 256 "\ @@ -12795,8 +12793,8 @@ A value of nil says to use the default GnuTLS value.") ;;;*** -;;;### (autoloads nil "gomoku" "play/gomoku.el" (22182 4679 471463 -;;;;;; 499000)) +;;;### (autoloads nil "gomoku" "play/gomoku.el" (22330 59913 969323 +;;;;;; 446000)) ;;; Generated autoloads from play/gomoku.el (autoload 'gomoku "gomoku" "\ @@ -12822,8 +12820,8 @@ Use \\[describe-mode] for more info. ;;;*** -;;;### (autoloads nil "goto-addr" "net/goto-addr.el" (22150 28228 -;;;;;; 358072 702000)) +;;;### (autoloads nil "goto-addr" "net/goto-addr.el" (22330 59913 +;;;;;; 953323 495000)) ;;; Generated autoloads from net/goto-addr.el (define-obsolete-function-alias 'goto-address-at-mouse 'goto-address-at-point "22.1") @@ -12864,8 +12862,8 @@ Like `goto-address-mode', but only for comments and strings. ;;;*** -;;;### (autoloads nil "gravatar" "gnus/gravatar.el" (22150 28227 -;;;;;; 942072 702000)) +;;;### (autoloads nil "gravatar" "gnus/gravatar.el" (22331 17372 +;;;;;; 26369 502000)) ;;; Generated autoloads from gnus/gravatar.el (autoload 'gravatar-retrieve "gravatar" "\ @@ -12881,8 +12879,8 @@ Retrieve MAIL-ADDRESS gravatar and returns it. ;;;*** -;;;### (autoloads nil "grep" "progmodes/grep.el" (22296 46772 464104 -;;;;;; 103000)) +;;;### (autoloads nil "grep" "progmodes/grep.el" (22331 17372 94369 +;;;;;; 260000)) ;;; Generated autoloads from progmodes/grep.el (defvar grep-window-height nil "\ @@ -13049,7 +13047,7 @@ file name to `*.gz', and sets `grep-highlight-matches' to `always'. ;;;*** -;;;### (autoloads nil "gs" "gs.el" (22150 28228 26072 702000)) +;;;### (autoloads nil "gs" "gs.el" (22330 59913 913323 619000)) ;;; Generated autoloads from gs.el (autoload 'gs-load-image "gs" "\ @@ -13062,8 +13060,8 @@ the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful. ;;;*** -;;;### (autoloads nil "gud" "progmodes/gud.el" (22189 64323 288321 -;;;;;; 19000)) +;;;### (autoloads nil "gud" "progmodes/gud.el" (22331 17372 95369 +;;;;;; 256000)) ;;; Generated autoloads from progmodes/gud.el (autoload 'gud-gdb "gud" "\ @@ -13159,8 +13157,8 @@ it if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (22150 28227 434072 -;;;;;; 702000)) +;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (22330 59913 929323 +;;;;;; 569000)) ;;; Generated autoloads from emacs-lisp/gv.el (autoload 'gv-get "gv" "\ @@ -13262,8 +13260,8 @@ binding mode. ;;;*** -;;;### (autoloads nil "handwrite" "play/handwrite.el" (22150 28228 -;;;;;; 678072 702000)) +;;;### (autoloads nil "handwrite" "play/handwrite.el" (22330 59913 +;;;;;; 969323 446000)) ;;; Generated autoloads from play/handwrite.el (autoload 'handwrite "handwrite" "\ @@ -13280,8 +13278,8 @@ Variables: `handwrite-linespace' (default 12) ;;;*** -;;;### (autoloads nil "hanoi" "play/hanoi.el" (22086 11930 130062 -;;;;;; 731000)) +;;;### (autoloads nil "hanoi" "play/hanoi.el" (22330 59913 969323 +;;;;;; 446000)) ;;; Generated autoloads from play/hanoi.el (autoload 'hanoi "hanoi" "\ @@ -13308,8 +13306,8 @@ to be updated. ;;;*** -;;;### (autoloads nil "hashcash" "mail/hashcash.el" (22150 28228 -;;;;;; 230072 702000)) +;;;### (autoloads nil "hashcash" "mail/hashcash.el" (22330 59913 +;;;;;; 947323 514000)) ;;; Generated autoloads from mail/hashcash.el (autoload 'hashcash-insert-payment "hashcash" "\ @@ -13351,8 +13349,8 @@ Prefix arg sets default accept amount temporarily. ;;;*** -;;;### (autoloads nil "help-at-pt" "help-at-pt.el" (22150 28228 26072 -;;;;;; 702000)) +;;;### (autoloads nil "help-at-pt" "help-at-pt.el" (22330 59913 913323 +;;;;;; 619000)) ;;; Generated autoloads from help-at-pt.el (autoload 'help-at-pt-string "help-at-pt" "\ @@ -13479,8 +13477,8 @@ different regions. With numeric argument ARG, behaves like ;;;*** -;;;### (autoloads nil "help-fns" "help-fns.el" (22211 4933 601358 -;;;;;; 144000)) +;;;### (autoloads nil "help-fns" "help-fns.el" (22363 8343 512348 +;;;;;; 778000)) ;;; Generated autoloads from help-fns.el (autoload 'describe-function "help-fns" "\ @@ -13567,8 +13565,8 @@ Produce a texinfo buffer with sorted doc-strings from the DOC file. ;;;*** -;;;### (autoloads nil "help-macro" "help-macro.el" (22150 28228 26072 -;;;;;; 702000)) +;;;### (autoloads nil "help-macro" "help-macro.el" (22330 59913 913323 +;;;;;; 619000)) ;;; Generated autoloads from help-macro.el (defvar three-step-help nil "\ @@ -13582,8 +13580,8 @@ gives the window that lists the options.") ;;;*** -;;;### (autoloads nil "help-mode" "help-mode.el" (22220 19926 384329 -;;;;;; 271000)) +;;;### (autoloads nil "help-mode" "help-mode.el" (22331 17372 37369 +;;;;;; 462000)) ;;; Generated autoloads from help-mode.el (autoload 'help-mode "help-mode" "\ @@ -13684,8 +13682,8 @@ BOOKMARK is a bookmark name or a bookmark record. ;;;*** -;;;### (autoloads nil "helper" "emacs-lisp/helper.el" (22150 28227 -;;;;;; 434072 702000)) +;;;### (autoloads nil "helper" "emacs-lisp/helper.el" (22330 59913 +;;;;;; 929323 569000)) ;;; Generated autoloads from emacs-lisp/helper.el (autoload 'Helper-describe-bindings "helper" "\ @@ -13700,7 +13698,7 @@ Provide help for current mode. ;;;*** -;;;### (autoloads nil "hexl" "hexl.el" (22150 28228 26072 702000)) +;;;### (autoloads nil "hexl" "hexl.el" (22330 59913 913323 619000)) ;;; Generated autoloads from hexl.el (autoload 'hexl-mode "hexl" "\ @@ -13794,8 +13792,8 @@ This discards the buffer's undo information. ;;;*** -;;;### (autoloads nil "hi-lock" "hi-lock.el" (22311 14139 174375 -;;;;;; 715000)) +;;;### (autoloads nil "hi-lock" "hi-lock.el" (22330 59913 739324 +;;;;;; 156000)) ;;; Generated autoloads from hi-lock.el (autoload 'hi-lock-mode "hi-lock" "\ @@ -13963,8 +13961,8 @@ be found in variable `hi-lock-interactive-patterns'. ;;;*** -;;;### (autoloads nil "hideif" "progmodes/hideif.el" (22197 58438 -;;;;;; 447460 447000)) +;;;### (autoloads nil "hideif" "progmodes/hideif.el" (22330 59913 +;;;;;; 983323 402000)) ;;; Generated autoloads from progmodes/hideif.el (autoload 'hide-ifdef-mode "hideif" "\ @@ -14011,8 +14009,8 @@ Several variables affect how the hiding is done: ;;;*** -;;;### (autoloads nil "hideshow" "progmodes/hideshow.el" (22150 28228 -;;;;;; 830072 702000)) +;;;### (autoloads nil "hideshow" "progmodes/hideshow.el" (22331 17372 +;;;;;; 95369 256000)) ;;; 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))) "\ @@ -14074,8 +14072,8 @@ Unconditionally turn off `hs-minor-mode'. ;;;*** -;;;### (autoloads nil "hilit-chg" "hilit-chg.el" (22150 28228 30072 -;;;;;; 702000)) +;;;### (autoloads nil "hilit-chg" "hilit-chg.el" (22330 59913 913323 +;;;;;; 619000)) ;;; Generated autoloads from hilit-chg.el (autoload 'highlight-changes-mode "hilit-chg" "\ @@ -14207,8 +14205,8 @@ See `highlight-changes-mode' for more information on Highlight-Changes mode. ;;;*** -;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (22150 28228 30072 -;;;;;; 702000)) +;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (22330 59913 913323 +;;;;;; 619000)) ;;; Generated autoloads from hippie-exp.el (push (purecopy '(hippie-exp 1 6)) package--builtin-versions) @@ -14240,7 +14238,8 @@ argument VERBOSE non-nil makes the function verbose. ;;;*** -;;;### (autoloads nil "hl-line" "hl-line.el" (22150 28228 30072 702000)) +;;;### (autoloads nil "hl-line" "hl-line.el" (22330 59913 913323 +;;;;;; 619000)) ;;; Generated autoloads from hl-line.el (autoload 'hl-line-mode "hl-line" "\ @@ -14290,8 +14289,8 @@ Global-Hl-Line mode uses the functions `global-hl-line-unhighlight' and ;;;*** -;;;### (autoloads nil "holidays" "calendar/holidays.el" (22150 28227 -;;;;;; 78072 702000)) +;;;### (autoloads nil "holidays" "calendar/holidays.el" (22330 59913 +;;;;;; 920323 597000)) ;;; Generated autoloads from calendar/holidays.el (defvar holiday-general-holidays (mapcar 'purecopy '((holiday-fixed 1 1 "New Year's Day") (holiday-float 1 1 3 "Martin Luther King Day") (holiday-fixed 2 2 "Groundhog Day") (holiday-fixed 2 14 "Valentine's Day") (holiday-float 2 1 3 "President's Day") (holiday-fixed 3 17 "St. Patrick's Day") (holiday-fixed 4 1 "April Fools' Day") (holiday-float 5 0 2 "Mother's Day") (holiday-float 5 1 -1 "Memorial Day") (holiday-fixed 6 14 "Flag Day") (holiday-float 6 0 3 "Father's Day") (holiday-fixed 7 4 "Independence Day") (holiday-float 9 1 1 "Labor Day") (holiday-float 10 1 2 "Columbus Day") (holiday-fixed 10 31 "Halloween") (holiday-fixed 11 11 "Veteran's Day") (holiday-float 11 4 4 "Thanksgiving"))) "\ @@ -14401,8 +14400,8 @@ The optional LABEL is used to label the buffer created. ;;;*** -;;;### (autoloads nil "html2text" "gnus/html2text.el" (22150 28227 -;;;;;; 946072 702000)) +;;;### (autoloads nil "html2text" "gnus/html2text.el" (22331 17372 +;;;;;; 26369 502000)) ;;; Generated autoloads from gnus/html2text.el (autoload 'html2text "html2text" "\ @@ -14412,8 +14411,8 @@ Convert HTML to plain text in the current buffer. ;;;*** -;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (22174 41792 -;;;;;; 975867 435000)) +;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (22331 17372 +;;;;;; 38369 459000)) ;;; Generated autoloads from htmlfontify.el (push (purecopy '(htmlfontify 0 21)) package--builtin-versions) @@ -14446,8 +14445,8 @@ You may also want to set `hfy-page-header' and `hfy-page-footer'. ;;;*** -;;;### (autoloads nil "ibuf-macs" "ibuf-macs.el" (22150 28228 50072 -;;;;;; 702000)) +;;;### (autoloads nil "ibuf-macs" "ibuf-macs.el" (22330 59913 913323 +;;;;;; 619000)) ;;; Generated autoloads from ibuf-macs.el (autoload 'define-ibuffer-column "ibuf-macs" "\ @@ -14549,8 +14548,7 @@ bound to the current value of the filter. ;;;*** -;;;### (autoloads nil "ibuffer" "ibuffer.el" (22150 28612 886072 -;;;;;; 702000)) +;;;### (autoloads nil "ibuffer" "ibuffer.el" (22331 17372 39369 455000)) ;;; Generated autoloads from ibuffer.el (autoload 'ibuffer-list-buffers "ibuffer" "\ @@ -14589,8 +14587,8 @@ FORMATS is the value to use for `ibuffer-formats'. ;;;*** -;;;### (autoloads nil "icalendar" "calendar/icalendar.el" (22150 -;;;;;; 28227 78072 702000)) +;;;### (autoloads nil "icalendar" "calendar/icalendar.el" (22330 +;;;;;; 59913 920323 597000)) ;;; Generated autoloads from calendar/icalendar.el (push (purecopy '(icalendar 0 19)) package--builtin-versions) @@ -14643,8 +14641,8 @@ buffer `*icalendar-errors*'. ;;;*** -;;;### (autoloads nil "icomplete" "icomplete.el" (22150 28228 54072 -;;;;;; 702000)) +;;;### (autoloads nil "icomplete" "icomplete.el" (22331 17372 39369 +;;;;;; 455000)) ;;; Generated autoloads from icomplete.el (defvar icomplete-mode nil "\ @@ -14684,8 +14682,8 @@ completions: ;;;*** -;;;### (autoloads nil "icon" "progmodes/icon.el" (22197 58438 447460 -;;;;;; 447000)) +;;;### (autoloads nil "icon" "progmodes/icon.el" (22330 59913 983323 +;;;;;; 402000)) ;;; Generated autoloads from progmodes/icon.el (autoload 'icon-mode "icon" "\ @@ -14725,8 +14723,8 @@ with no args, if that value is non-nil. ;;;*** -;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (22150 -;;;;;; 28228 850072 702000)) +;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (22330 +;;;;;; 59913 984323 399000)) ;;; Generated autoloads from progmodes/idlw-shell.el (autoload 'idlwave-shell "idlw-shell" "\ @@ -14751,8 +14749,8 @@ See also the variable `idlwave-shell-prompt-pattern'. ;;;*** -;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (22197 58438 -;;;;;; 467460 447000)) +;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (22330 59913 +;;;;;; 984323 399000)) ;;; Generated autoloads from progmodes/idlwave.el (push (purecopy '(idlwave 6 1 22)) package--builtin-versions) @@ -14881,7 +14879,7 @@ The main features of this mode are ;;;*** -;;;### (autoloads nil "ido" "ido.el" (22150 28228 82072 702000)) +;;;### (autoloads nil "ido" "ido.el" (22330 59913 913323 619000)) ;;; Generated autoloads from ido.el (defvar ido-mode nil "\ @@ -15143,7 +15141,7 @@ DEF, if non-nil, is the default value. ;;;*** -;;;### (autoloads nil "ielm" "ielm.el" (22150 28228 82072 702000)) +;;;### (autoloads nil "ielm" "ielm.el" (22330 59913 913323 619000)) ;;; Generated autoloads from ielm.el (autoload 'ielm "ielm" "\ @@ -15155,7 +15153,7 @@ See `inferior-emacs-lisp-mode' for details. ;;;*** -;;;### (autoloads nil "iimage" "iimage.el" (22150 28228 82072 702000)) +;;;### (autoloads nil "iimage" "iimage.el" (22330 59913 913323 619000)) ;;; Generated autoloads from iimage.el (define-obsolete-function-alias 'turn-on-iimage-mode 'iimage-mode "24.1") @@ -15171,7 +15169,7 @@ the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'. ;;;*** -;;;### (autoloads nil "image" "image.el" (22150 28228 86072 702000)) +;;;### (autoloads nil "image" "image.el" (22331 17372 40369 452000)) ;;; Generated autoloads from image.el (autoload 'image-type-from-data "image" "\ @@ -15364,8 +15362,8 @@ If Emacs is compiled without ImageMagick support, this does nothing. ;;;*** -;;;### (autoloads nil "image-dired" "image-dired.el" (22150 28228 -;;;;;; 86072 702000)) +;;;### (autoloads nil "image-dired" "image-dired.el" (22331 17372 +;;;;;; 39369 455000)) ;;; Generated autoloads from image-dired.el (push (purecopy '(image-dired 0 4 11)) package--builtin-versions) @@ -15502,8 +15500,8 @@ easy-to-use form. ;;;*** -;;;### (autoloads nil "image-file" "image-file.el" (22150 28228 86072 -;;;;;; 702000)) +;;;### (autoloads nil "image-file" "image-file.el" (22330 59913 913323 +;;;;;; 619000)) ;;; 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")) "\ @@ -15566,8 +15564,8 @@ An image file is one whose name has an extension in ;;;*** -;;;### (autoloads nil "image-mode" "image-mode.el" (22174 53239 753341 -;;;;;; 435000)) +;;;### (autoloads nil "image-mode" "image-mode.el" (22331 17372 40369 +;;;;;; 452000)) ;;; Generated autoloads from image-mode.el (autoload 'image-mode "image-mode" "\ @@ -15614,7 +15612,7 @@ on these modes. ;;;*** -;;;### (autoloads nil "imenu" "imenu.el" (22311 14139 174375 715000)) +;;;### (autoloads nil "imenu" "imenu.el" (22330 59913 739324 156000)) ;;; Generated autoloads from imenu.el (defvar imenu-sort-function nil "\ @@ -15752,8 +15750,8 @@ for more information. ;;;*** -;;;### (autoloads nil "ind-util" "language/ind-util.el" (22150 28228 -;;;;;; 190072 702000)) +;;;### (autoloads nil "ind-util" "language/ind-util.el" (22330 59913 +;;;;;; 941323 532000)) ;;; Generated autoloads from language/ind-util.el (autoload 'indian-compose-region "ind-util" "\ @@ -15783,8 +15781,8 @@ Convert old Emacs Devanagari characters to UCS. ;;;*** -;;;### (autoloads nil "inf-lisp" "progmodes/inf-lisp.el" (22150 28228 -;;;;;; 862072 702000)) +;;;### (autoloads nil "inf-lisp" "progmodes/inf-lisp.el" (22330 59913 +;;;;;; 984323 399000)) ;;; Generated autoloads from progmodes/inf-lisp.el (autoload 'inferior-lisp "inf-lisp" "\ @@ -15802,7 +15800,7 @@ of `inferior-lisp-program'). Runs the hooks from ;;;*** -;;;### (autoloads nil "info" "info.el" (22150 28228 98072 702000)) +;;;### (autoloads nil "info" "info.el" (22331 17372 41369 448000)) ;;; Generated autoloads from info.el (defcustom Info-default-directory-list (let* ((config-dir (file-name-as-directory (or (and (featurep 'ns) (let ((dir (expand-file-name "../info" data-directory))) (if (file-directory-p dir) dir))) configure-info-directory))) (prefixes (prune-directory-list '("/usr/local/" "/usr/" "/opt/" "/"))) (suffixes '("share/" "" "gnu/" "gnu/lib/" "gnu/lib/emacs/" "emacs/" "lib/" "lib/emacs/")) (standard-info-dirs (apply #'nconc (mapcar (lambda (pfx) (let ((dirs (mapcar (lambda (sfx) (concat pfx sfx "info/")) suffixes))) (prune-directory-list dirs))) prefixes))) (dirs (if (member config-dir standard-info-dirs) (nconc standard-info-dirs (list config-dir)) (cons config-dir standard-info-dirs)))) (if (not (eq system-type 'windows-nt)) dirs (let* ((instdir (file-name-directory invocation-directory)) (dir1 (expand-file-name "../info/" instdir)) (dir2 (expand-file-name "../../../info/" instdir))) (cond ((file-exists-p dir1) (append dirs (list dir1))) ((file-exists-p dir2) (append dirs (list dir2))) (t dirs))))) "\ @@ -16014,8 +16012,8 @@ completion alternatives to currently visited manuals. ;;;*** -;;;### (autoloads nil "info-look" "info-look.el" (22291 28851 633608 -;;;;;; 847000)) +;;;### (autoloads nil "info-look" "info-look.el" (22330 59913 740324 +;;;;;; 153000)) ;;; Generated autoloads from info-look.el (autoload 'info-lookup-reset "info-look" "\ @@ -16062,8 +16060,8 @@ Perform completion on file preceding point. ;;;*** -;;;### (autoloads nil "info-xref" "info-xref.el" (22150 28228 94072 -;;;;;; 702000)) +;;;### (autoloads nil "info-xref" "info-xref.el" (22330 59913 914323 +;;;;;; 615000)) ;;; Generated autoloads from info-xref.el (push (purecopy '(info-xref 3)) package--builtin-versions) @@ -16146,8 +16144,8 @@ the sources handy. ;;;*** -;;;### (autoloads nil "informat" "informat.el" (22150 28228 102072 -;;;;;; 702000)) +;;;### (autoloads nil "informat" "informat.el" (22330 59913 914323 +;;;;;; 615000)) ;;; Generated autoloads from informat.el (autoload 'Info-tagify "informat" "\ @@ -16192,8 +16190,8 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\" ;;;*** -;;;### (autoloads nil "inline" "emacs-lisp/inline.el" (22171 34371 -;;;;;; 930658 796000)) +;;;### (autoloads nil "inline" "emacs-lisp/inline.el" (22330 59913 +;;;;;; 929323 569000)) ;;; Generated autoloads from emacs-lisp/inline.el (autoload 'define-inline "inline" "\ @@ -16207,8 +16205,8 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\" ;;;*** -;;;### (autoloads nil "inversion" "cedet/inversion.el" (22150 28227 -;;;;;; 218072 702000)) +;;;### (autoloads nil "inversion" "cedet/inversion.el" (22330 59913 +;;;;;; 920323 597000)) ;;; Generated autoloads from cedet/inversion.el (push (purecopy '(inversion 1 3)) package--builtin-versions) @@ -16220,8 +16218,8 @@ Only checks one based on which kind of Emacs is being run. ;;;*** -;;;### (autoloads nil "isearch-x" "international/isearch-x.el" (22150 -;;;;;; 28228 106072 702000)) +;;;### (autoloads nil "isearch-x" "international/isearch-x.el" (22330 +;;;;;; 59913 939323 538000)) ;;; Generated autoloads from international/isearch-x.el (autoload 'isearch-toggle-specified-input-method "isearch-x" "\ @@ -16241,8 +16239,8 @@ Toggle input method in interactive search. ;;;*** -;;;### (autoloads nil "isearchb" "isearchb.el" (22150 28228 154072 -;;;;;; 702000)) +;;;### (autoloads nil "isearchb" "isearchb.el" (22330 59913 914323 +;;;;;; 615000)) ;;; Generated autoloads from isearchb.el (push (purecopy '(isearchb 1 5)) package--builtin-versions) @@ -16256,8 +16254,8 @@ accessed via isearchb. ;;;*** -;;;### (autoloads nil "iso-cvt" "international/iso-cvt.el" (22150 -;;;;;; 28228 106072 702000)) +;;;### (autoloads nil "iso-cvt" "international/iso-cvt.el" (22330 +;;;;;; 59913 939323 538000)) ;;; Generated autoloads from international/iso-cvt.el (autoload 'iso-spanish "iso-cvt" "\ @@ -16348,15 +16346,15 @@ Add submenus to the File menu, to convert to and from various formats. ;;;*** ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" -;;;;;; (22150 28228 106072 702000)) +;;;;;; (22330 59913 939323 538000)) ;;; Generated autoloads from international/iso-transl.el (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) (autoload 'iso-transl-ctl-x-8-map "iso-transl" "Keymap for C-x 8 prefix." t 'keymap) ;;;*** -;;;### (autoloads nil "ispell" "textmodes/ispell.el" (22308 37947 -;;;;;; 230422 527000)) +;;;### (autoloads nil "ispell" "textmodes/ispell.el" (22331 17372 +;;;;;; 114369 189000)) ;;; Generated autoloads from textmodes/ispell.el (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) @@ -16589,8 +16587,8 @@ You can bind this to the key C-c i in GNUS or mail by adding to ;;;*** -;;;### (autoloads nil "japan-util" "language/japan-util.el" (22150 -;;;;;; 28228 190072 702000)) +;;;### (autoloads nil "japan-util" "language/japan-util.el" (22330 +;;;;;; 59913 941323 532000)) ;;; Generated autoloads from language/japan-util.el (autoload 'setup-japanese-environment-internal "japan-util" "\ @@ -16667,8 +16665,8 @@ If non-nil, second arg INITIAL-INPUT is a string to insert before reading. ;;;*** -;;;### (autoloads nil "jka-compr" "jka-compr.el" (22150 28228 158072 -;;;;;; 702000)) +;;;### (autoloads nil "jka-compr" "jka-compr.el" (22330 59913 914323 +;;;;;; 615000)) ;;; Generated autoloads from jka-compr.el (defvar jka-compr-inhibit nil "\ @@ -16691,7 +16689,8 @@ by `jka-compr-installed'. ;;;*** -;;;### (autoloads nil "js" "progmodes/js.el" (22323 5347 50589 123000)) +;;;### (autoloads nil "js" "progmodes/js.el" (22331 17377 954348 +;;;;;; 447000)) ;;; Generated autoloads from progmodes/js.el (push (purecopy '(js 9)) package--builtin-versions) @@ -16718,14 +16717,14 @@ locally, like so: ;;;*** -;;;### (autoloads nil "json" "json.el" (22197 58438 339460 447000)) +;;;### (autoloads nil "json" "json.el" (22330 59913 914323 615000)) ;;; Generated autoloads from json.el (push (purecopy '(json 1 4)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "keypad" "emulation/keypad.el" (22150 28227 -;;;;;; 462072 702000)) +;;;### (autoloads nil "keypad" "emulation/keypad.el" (22330 59913 +;;;;;; 931323 563000)) ;;; Generated autoloads from emulation/keypad.el (defvar keypad-setup nil "\ @@ -16780,8 +16779,8 @@ the decimal key on the keypad is mapped to DECIMAL instead of `.' ;;;*** -;;;### (autoloads nil "kinsoku" "international/kinsoku.el" (22150 -;;;;;; 28228 106072 702000)) +;;;### (autoloads nil "kinsoku" "international/kinsoku.el" (22330 +;;;;;; 59913 939323 538000)) ;;; Generated autoloads from international/kinsoku.el (autoload 'kinsoku "kinsoku" "\ @@ -16802,8 +16801,8 @@ the context of text formatting. ;;;*** -;;;### (autoloads nil "kkc" "international/kkc.el" (22150 28228 106072 -;;;;;; 702000)) +;;;### (autoloads nil "kkc" "international/kkc.el" (22330 59913 940323 +;;;;;; 535000)) ;;; Generated autoloads from international/kkc.el (defvar kkc-after-update-conversion-functions nil "\ @@ -16825,7 +16824,7 @@ and the return value is the length of the conversion. ;;;*** -;;;### (autoloads nil "kmacro" "kmacro.el" (22150 28228 162072 702000)) +;;;### (autoloads nil "kmacro" "kmacro.el" (22331 17372 42369 445000)) ;;; Generated autoloads from kmacro.el (global-set-key "\C-x(" 'kmacro-start-macro) (global-set-key "\C-x)" 'kmacro-end-macro) @@ -16937,8 +16936,8 @@ If kbd macro currently being defined end it before activating it. ;;;*** -;;;### (autoloads nil "korea-util" "language/korea-util.el" (22150 -;;;;;; 28228 194072 702000)) +;;;### (autoloads nil "korea-util" "language/korea-util.el" (22330 +;;;;;; 59913 941323 532000)) ;;; Generated autoloads from language/korea-util.el (defvar default-korean-keyboard (purecopy (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "")) "\ @@ -16952,8 +16951,8 @@ The kind of Korean keyboard for Korean input method. ;;;*** -;;;### (autoloads nil "lao-util" "language/lao-util.el" (22150 28228 -;;;;;; 194072 702000)) +;;;### (autoloads nil "lao-util" "language/lao-util.el" (22330 59913 +;;;;;; 941323 532000)) ;;; Generated autoloads from language/lao-util.el (autoload 'lao-compose-string "lao-util" "\ @@ -16990,8 +16989,8 @@ Transcribe Romanized Lao string STR to Lao character string. ;;;*** -;;;### (autoloads nil "latexenc" "international/latexenc.el" (22150 -;;;;;; 28228 106072 702000)) +;;;### (autoloads nil "latexenc" "international/latexenc.el" (22330 +;;;;;; 59913 940323 535000)) ;;; Generated autoloads from international/latexenc.el (defvar latex-inputenc-coding-alist (purecopy '(("ansinew" . windows-1252) ("applemac" . mac-roman) ("ascii" . us-ascii) ("cp1250" . windows-1250) ("cp1252" . windows-1252) ("cp1257" . cp1257) ("cp437de" . cp437) ("cp437" . cp437) ("cp850" . cp850) ("cp852" . cp852) ("cp858" . cp858) ("cp865" . cp865) ("latin1" . iso-8859-1) ("latin2" . iso-8859-2) ("latin3" . iso-8859-3) ("latin4" . iso-8859-4) ("latin5" . iso-8859-5) ("latin9" . iso-8859-15) ("next" . next) ("utf8" . utf-8) ("utf8x" . utf-8))) "\ @@ -17023,7 +17022,7 @@ coding system names is determined from `latex-inputenc-coding-alist'. ;;;*** ;;;### (autoloads nil "latin1-disp" "international/latin1-disp.el" -;;;;;; (22150 28228 110072 702000)) +;;;;;; (22330 59913 940323 535000)) ;;; Generated autoloads from international/latin1-disp.el (defvar latin1-display nil "\ @@ -17064,8 +17063,8 @@ use either \\[customize] or the function `latin1-display'.") ;;;*** -;;;### (autoloads nil "ld-script" "progmodes/ld-script.el" (22150 -;;;;;; 28228 866072 702000)) +;;;### (autoloads nil "ld-script" "progmodes/ld-script.el" (22330 +;;;;;; 59913 984323 399000)) ;;; Generated autoloads from progmodes/ld-script.el (autoload 'ld-script-mode "ld-script" "\ @@ -17075,8 +17074,8 @@ A major mode to edit GNU ld script files ;;;*** -;;;### (autoloads nil "let-alist" "emacs-lisp/let-alist.el" (22150 -;;;;;; 28227 434072 702000)) +;;;### (autoloads nil "let-alist" "emacs-lisp/let-alist.el" (22331 +;;;;;; 17371 995369 612000)) ;;; Generated autoloads from emacs-lisp/let-alist.el (push (purecopy '(let-alist 1 0 4)) package--builtin-versions) @@ -17115,7 +17114,7 @@ displayed in the example above. ;;;*** -;;;### (autoloads nil "life" "play/life.el" (22150 28228 678072 702000)) +;;;### (autoloads nil "life" "play/life.el" (22330 59913 969323 446000)) ;;; Generated autoloads from play/life.el (autoload 'life "life" "\ @@ -17128,7 +17127,7 @@ generations (this defaults to 1). ;;;*** -;;;### (autoloads nil "linum" "linum.el" (22150 28228 210072 702000)) +;;;### (autoloads nil "linum" "linum.el" (22331 17372 49369 420000)) ;;; Generated autoloads from linum.el (push (purecopy '(linum 0 9 24)) package--builtin-versions) @@ -17166,8 +17165,8 @@ See `linum-mode' for more information on Linum mode. ;;;*** -;;;### (autoloads nil "loadhist" "loadhist.el" (22150 28228 210072 -;;;;;; 702000)) +;;;### (autoloads nil "loadhist" "loadhist.el" (22330 59913 914323 +;;;;;; 615000)) ;;; Generated autoloads from loadhist.el (autoload 'unload-feature "loadhist" "\ @@ -17198,7 +17197,7 @@ something strange, such as redefining an Emacs function. ;;;*** -;;;### (autoloads nil "locate" "locate.el" (22150 28228 210072 702000)) +;;;### (autoloads nil "locate" "locate.el" (22330 59913 914323 615000)) ;;; Generated autoloads from locate.el (defvar locate-ls-subdir-switches (purecopy "-al") "\ @@ -17250,8 +17249,8 @@ except that FILTER is not optional. ;;;*** -;;;### (autoloads nil "log-edit" "vc/log-edit.el" (22150 28229 278072 -;;;;;; 702000)) +;;;### (autoloads nil "log-edit" "vc/log-edit.el" (22330 59914 9323 +;;;;;; 322000)) ;;; Generated autoloads from vc/log-edit.el (autoload 'log-edit "log-edit" "\ @@ -17282,8 +17281,8 @@ done. Otherwise, it uses the current buffer. ;;;*** -;;;### (autoloads nil "log-view" "vc/log-view.el" (22294 5044 399300 -;;;;;; 64000)) +;;;### (autoloads nil "log-view" "vc/log-view.el" (22330 59914 8323 +;;;;;; 325000)) ;;; Generated autoloads from vc/log-view.el (autoload 'log-view-mode "log-view" "\ @@ -17293,7 +17292,7 @@ Major mode for browsing CVS log output. ;;;*** -;;;### (autoloads nil "lpr" "lpr.el" (22150 28228 210072 702000)) +;;;### (autoloads nil "lpr" "lpr.el" (22331 17372 50369 416000)) ;;; Generated autoloads from lpr.el (defvar lpr-windows-system (memq system-type '(ms-dos windows-nt)) "\ @@ -17388,8 +17387,7 @@ for further customization of the printer command. ;;;*** -;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (22220 19926 384329 -;;;;;; 271000)) +;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (22331 17372 50369 416000)) ;;; Generated autoloads from ls-lisp.el (defvar ls-lisp-support-shell-wildcards t "\ @@ -17400,8 +17398,8 @@ Otherwise they are treated as Emacs regexps (for backward compatibility).") ;;;*** -;;;### (autoloads nil "lunar" "calendar/lunar.el" (22150 28227 78072 -;;;;;; 702000)) +;;;### (autoloads nil "lunar" "calendar/lunar.el" (22330 59913 920323 +;;;;;; 597000)) ;;; Generated autoloads from calendar/lunar.el (autoload 'lunar-phases "lunar" "\ @@ -17413,8 +17411,8 @@ This function is suitable for execution in an init file. ;;;*** -;;;### (autoloads nil "m4-mode" "progmodes/m4-mode.el" (22150 28228 -;;;;;; 866072 702000)) +;;;### (autoloads nil "m4-mode" "progmodes/m4-mode.el" (22330 59913 +;;;;;; 984323 399000)) ;;; Generated autoloads from progmodes/m4-mode.el (autoload 'm4-mode "m4-mode" "\ @@ -17424,7 +17422,7 @@ A major mode to edit m4 macro files. ;;;*** -;;;### (autoloads nil "macros" "macros.el" (22150 28228 210072 702000)) +;;;### (autoloads nil "macros" "macros.el" (22330 59913 914323 615000)) ;;; Generated autoloads from macros.el (autoload 'name-last-kbd-macro "macros" "\ @@ -17513,8 +17511,8 @@ and then select the region of un-tablified names and use ;;;*** -;;;### (autoloads nil "mail-extr" "mail/mail-extr.el" (22197 58438 -;;;;;; 343460 447000)) +;;;### (autoloads nil "mail-extr" "mail/mail-extr.el" (22331 17372 +;;;;;; 51369 413000)) ;;; Generated autoloads from mail/mail-extr.el (autoload 'mail-extract-address-components "mail-extr" "\ @@ -17544,8 +17542,8 @@ Convert mail domain DOMAIN to the country it corresponds to. ;;;*** -;;;### (autoloads nil "mail-hist" "mail/mail-hist.el" (22150 28228 -;;;;;; 230072 702000)) +;;;### (autoloads nil "mail-hist" "mail/mail-hist.el" (22330 59913 +;;;;;; 947323 514000)) ;;; Generated autoloads from mail/mail-hist.el (autoload 'mail-hist-define-keys "mail-hist" "\ @@ -17574,8 +17572,8 @@ This function normally would be called when the message is sent. ;;;*** -;;;### (autoloads nil "mail-utils" "mail/mail-utils.el" (22150 28228 -;;;;;; 230072 702000)) +;;;### (autoloads nil "mail-utils" "mail/mail-utils.el" (22330 59913 +;;;;;; 947323 514000)) ;;; Generated autoloads from mail/mail-utils.el (defvar mail-use-rfc822 nil "\ @@ -17649,8 +17647,8 @@ matches may be returned from the message body. ;;;*** -;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (22197 58438 -;;;;;; 343460 447000)) +;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (22330 59913 +;;;;;; 947323 514000)) ;;; Generated autoloads from mail/mailabbrev.el (defvar mail-abbrevs-mode nil "\ @@ -17700,8 +17698,8 @@ double-quotes. ;;;*** -;;;### (autoloads nil "mailalias" "mail/mailalias.el" (22189 64323 -;;;;;; 268321 19000)) +;;;### (autoloads nil "mailalias" "mail/mailalias.el" (22330 59913 +;;;;;; 947323 514000)) ;;; Generated autoloads from mail/mailalias.el (defvar mail-complete-style 'angles "\ @@ -17754,8 +17752,8 @@ current header, calls `mail-complete-function' and passes prefix ARG if any. ;;;*** -;;;### (autoloads nil "mailclient" "mail/mailclient.el" (22182 4679 -;;;;;; 423463 499000)) +;;;### (autoloads nil "mailclient" "mail/mailclient.el" (22330 59913 +;;;;;; 947323 514000)) ;;; Generated autoloads from mail/mailclient.el (autoload 'mailclient-send-it "mailclient" "\ @@ -17767,8 +17765,8 @@ The mail client is taken to be the handler of mailto URLs. ;;;*** -;;;### (autoloads nil "make-mode" "progmodes/make-mode.el" (22221 -;;;;;; 40772 751009 663000)) +;;;### (autoloads nil "make-mode" "progmodes/make-mode.el" (22330 +;;;;;; 59913 984323 399000)) ;;; Generated autoloads from progmodes/make-mode.el (autoload 'makefile-mode "make-mode" "\ @@ -17885,8 +17883,8 @@ An adapted `makefile-mode' that knows about imake. ;;;*** -;;;### (autoloads nil "makesum" "makesum.el" (22150 28228 258072 -;;;;;; 702000)) +;;;### (autoloads nil "makesum" "makesum.el" (22330 59913 914323 +;;;;;; 615000)) ;;; Generated autoloads from makesum.el (autoload 'make-command-summary "makesum" "\ @@ -17897,7 +17895,7 @@ Previous contents of that buffer are killed first. ;;;*** -;;;### (autoloads nil "man" "man.el" (22316 32055 822608 108000)) +;;;### (autoloads nil "man" "man.el" (22330 59913 741324 150000)) ;;; Generated autoloads from man.el (defalias 'manual-entry 'man) @@ -17953,14 +17951,14 @@ Default bookmark handler for Man buffers. ;;;*** -;;;### (autoloads nil "map" "emacs-lisp/map.el" (22262 28597 583325 -;;;;;; 308000)) +;;;### (autoloads nil "map" "emacs-lisp/map.el" (22330 59913 930323 +;;;;;; 566000)) ;;; Generated autoloads from emacs-lisp/map.el (push (purecopy '(map 1 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "master" "master.el" (22150 28228 262072 702000)) +;;;### (autoloads nil "master" "master.el" (22330 59913 914323 615000)) ;;; Generated autoloads from master.el (push (purecopy '(master 1 0 2)) package--builtin-versions) @@ -17983,8 +17981,8 @@ yourself the value of `master-of' by calling `master-show-slave'. ;;;*** -;;;### (autoloads nil "mb-depth" "mb-depth.el" (22150 28228 262072 -;;;;;; 702000)) +;;;### (autoloads nil "mb-depth" "mb-depth.el" (22330 59913 914323 +;;;;;; 615000)) ;;; Generated autoloads from mb-depth.el (defvar minibuffer-depth-indicate-mode nil "\ @@ -18012,14 +18010,14 @@ recursion depth in the minibuffer prompt. This is only useful if ;;;*** -;;;### (autoloads nil "md4" "md4.el" (22150 28228 262072 702000)) +;;;### (autoloads nil "md4" "md4.el" (22330 59913 914323 615000)) ;;; Generated autoloads from md4.el (push (purecopy '(md4 1 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "message" "gnus/message.el" (22201 55498 114885 -;;;;;; 567000)) +;;;### (autoloads nil "message" "gnus/message.el" (22331 17372 28369 +;;;;;; 494000)) ;;; 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) @@ -18184,8 +18182,8 @@ which specify the range to operate on. ;;;*** -;;;### (autoloads nil "meta-mode" "progmodes/meta-mode.el" (22150 -;;;;;; 28228 870072 702000)) +;;;### (autoloads nil "meta-mode" "progmodes/meta-mode.el" (22330 +;;;;;; 59913 984323 399000)) ;;; Generated autoloads from progmodes/meta-mode.el (push (purecopy '(meta-mode 1 0)) package--builtin-versions) @@ -18201,8 +18199,8 @@ Major mode for editing MetaPost sources. ;;;*** -;;;### (autoloads nil "metamail" "mail/metamail.el" (22150 28228 -;;;;;; 234072 702000)) +;;;### (autoloads nil "metamail" "mail/metamail.el" (22330 59913 +;;;;;; 947323 514000)) ;;; Generated autoloads from mail/metamail.el (autoload 'metamail-interpret-header "metamail" "\ @@ -18245,8 +18243,8 @@ redisplayed as output is inserted. ;;;*** -;;;### (autoloads nil "mh-comp" "mh-e/mh-comp.el" (22150 28228 294072 -;;;;;; 702000)) +;;;### (autoloads nil "mh-comp" "mh-e/mh-comp.el" (22331 17372 56369 +;;;;;; 395000)) ;;; Generated autoloads from mh-e/mh-comp.el (autoload 'mh-smail "mh-comp" "\ @@ -18336,7 +18334,7 @@ delete the draft message. ;;;*** -;;;### (autoloads nil "mh-e" "mh-e/mh-e.el" (22150 28228 298072 702000)) +;;;### (autoloads nil "mh-e" "mh-e/mh-e.el" (22331 17372 56369 395000)) ;;; Generated autoloads from mh-e/mh-e.el (push (purecopy '(mh-e 8 6)) package--builtin-versions) @@ -18353,8 +18351,8 @@ Display version information about MH-E and the MH mail handling system. ;;;*** -;;;### (autoloads nil "mh-folder" "mh-e/mh-folder.el" (22150 28228 -;;;;;; 302072 702000)) +;;;### (autoloads nil "mh-folder" "mh-e/mh-folder.el" (22330 59913 +;;;;;; 949323 508000)) ;;; Generated autoloads from mh-e/mh-folder.el (autoload 'mh-rmail "mh-folder" "\ @@ -18435,8 +18433,8 @@ perform the operation on all messages in that region. ;;;*** -;;;### (autoloads nil "midnight" "midnight.el" (22265 4790 36806 -;;;;;; 924000)) +;;;### (autoloads nil "midnight" "midnight.el" (22330 59913 914323 +;;;;;; 615000)) ;;; Generated autoloads from midnight.el (defvar midnight-mode nil "\ @@ -18477,8 +18475,8 @@ to its second argument TM. ;;;*** -;;;### (autoloads nil "minibuf-eldef" "minibuf-eldef.el" (22150 28228 -;;;;;; 322072 702000)) +;;;### (autoloads nil "minibuf-eldef" "minibuf-eldef.el" (22330 59913 +;;;;;; 914323 615000)) ;;; Generated autoloads from minibuf-eldef.el (defvar minibuffer-electric-default-mode nil "\ @@ -18508,7 +18506,7 @@ is modified to remove the default indication. ;;;*** -;;;### (autoloads nil "misc" "misc.el" (22150 28228 326072 702000)) +;;;### (autoloads nil "misc" "misc.el" (22330 59913 914323 615000)) ;;; Generated autoloads from misc.el (autoload 'butterfly "misc" "\ @@ -18536,8 +18534,8 @@ The return value is always nil. ;;;*** -;;;### (autoloads nil "misearch" "misearch.el" (22150 28228 326072 -;;;;;; 702000)) +;;;### (autoloads nil "misearch" "misearch.el" (22330 59913 914323 +;;;;;; 615000)) ;;; Generated autoloads from misearch.el (add-hook 'isearch-mode-hook 'multi-isearch-setup) @@ -18625,8 +18623,8 @@ whose file names match the specified wildcard. ;;;*** -;;;### (autoloads nil "mixal-mode" "progmodes/mixal-mode.el" (22150 -;;;;;; 28228 874072 702000)) +;;;### (autoloads nil "mixal-mode" "progmodes/mixal-mode.el" (22330 +;;;;;; 59913 984323 399000)) ;;; Generated autoloads from progmodes/mixal-mode.el (push (purecopy '(mixal-mode 0 1)) package--builtin-versions) @@ -18637,8 +18635,8 @@ Major mode for the mixal asm language. ;;;*** -;;;### (autoloads nil "mm-encode" "gnus/mm-encode.el" (22150 28227 -;;;;;; 978072 702000)) +;;;### (autoloads nil "mm-encode" "gnus/mm-encode.el" (22330 59913 +;;;;;; 939323 538000)) ;;; Generated autoloads from gnus/mm-encode.el (autoload 'mm-default-file-encoding "mm-encode" "\ @@ -18648,8 +18646,8 @@ Return a default encoding for FILE. ;;;*** -;;;### (autoloads nil "mm-extern" "gnus/mm-extern.el" (22150 28227 -;;;;;; 978072 702000)) +;;;### (autoloads nil "mm-extern" "gnus/mm-extern.el" (22330 59913 +;;;;;; 939323 538000)) ;;; Generated autoloads from gnus/mm-extern.el (autoload 'mm-extern-cache-contents "mm-extern" "\ @@ -18667,8 +18665,8 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. ;;;*** -;;;### (autoloads nil "mm-partial" "gnus/mm-partial.el" (22150 28227 -;;;;;; 978072 702000)) +;;;### (autoloads nil "mm-partial" "gnus/mm-partial.el" (22331 17372 +;;;;;; 28369 494000)) ;;; Generated autoloads from gnus/mm-partial.el (autoload 'mm-inline-partial "mm-partial" "\ @@ -18681,8 +18679,8 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. ;;;*** -;;;### (autoloads nil "mm-url" "gnus/mm-url.el" (22150 28227 978072 -;;;;;; 702000)) +;;;### (autoloads nil "mm-url" "gnus/mm-url.el" (22331 17372 28369 +;;;;;; 494000)) ;;; Generated autoloads from gnus/mm-url.el (autoload 'mm-url-insert-file-contents "mm-url" "\ @@ -18698,8 +18696,8 @@ Insert file contents of URL using `mm-url-program'. ;;;*** -;;;### (autoloads nil "mm-uu" "gnus/mm-uu.el" (22150 28227 982072 -;;;;;; 702000)) +;;;### (autoloads nil "mm-uu" "gnus/mm-uu.el" (22331 17372 29369 +;;;;;; 491000)) ;;; Generated autoloads from gnus/mm-uu.el (autoload 'mm-uu-dissect "mm-uu" "\ @@ -18718,7 +18716,7 @@ Assume text has been decoded if DECODED is non-nil. ;;;*** -;;;### (autoloads nil "mml" "gnus/mml.el" (22150 28227 986072 702000)) +;;;### (autoloads nil "mml" "gnus/mml.el" (22331 17372 30369 487000)) ;;; Generated autoloads from gnus/mml.el (autoload 'mml-to-mime "mml" "\ @@ -18743,8 +18741,8 @@ body) or \"attachment\" (separate from the body). ;;;*** -;;;### (autoloads nil "mml1991" "gnus/mml1991.el" (22250 23504 507503 -;;;;;; 448000)) +;;;### (autoloads nil "mml1991" "gnus/mml1991.el" (22331 17372 30369 +;;;;;; 487000)) ;;; Generated autoloads from gnus/mml1991.el (autoload 'mml1991-encrypt "mml1991" "\ @@ -18759,8 +18757,8 @@ body) or \"attachment\" (separate from the body). ;;;*** -;;;### (autoloads nil "mml2015" "gnus/mml2015.el" (22250 23504 507503 -;;;;;; 448000)) +;;;### (autoloads nil "mml2015" "gnus/mml2015.el" (22331 17372 30369 +;;;;;; 487000)) ;;; Generated autoloads from gnus/mml2015.el (autoload 'mml2015-decrypt "mml2015" "\ @@ -18800,16 +18798,16 @@ body) or \"attachment\" (separate from the body). ;;;*** -;;;### (autoloads nil "mode-local" "cedet/mode-local.el" (22276 61491 -;;;;;; 202868 4000)) +;;;### (autoloads nil "mode-local" "cedet/mode-local.el" (22330 59913 +;;;;;; 920323 597000)) ;;; Generated autoloads from cedet/mode-local.el (put 'define-overloadable-function 'doc-string-elt 3) ;;;*** -;;;### (autoloads nil "modula2" "progmodes/modula2.el" (22086 11930 -;;;;;; 214062 731000)) +;;;### (autoloads nil "modula2" "progmodes/modula2.el" (22330 59913 +;;;;;; 984323 399000)) ;;; Generated autoloads from progmodes/modula2.el (defalias 'modula-2-mode 'm2-mode) @@ -18842,8 +18840,8 @@ followed by the first character of the construct. ;;;*** -;;;### (autoloads nil "morse" "play/morse.el" (22150 28228 682072 -;;;;;; 702000)) +;;;### (autoloads nil "morse" "play/morse.el" (22330 59913 969323 +;;;;;; 446000)) ;;; Generated autoloads from play/morse.el (autoload 'morse-region "morse" "\ @@ -18868,8 +18866,8 @@ Convert NATO phonetic alphabet in region to ordinary ASCII text. ;;;*** -;;;### (autoloads nil "mouse-drag" "mouse-drag.el" (22150 28228 326072 -;;;;;; 702000)) +;;;### (autoloads nil "mouse-drag" "mouse-drag.el" (22330 59913 914323 +;;;;;; 615000)) ;;; Generated autoloads from mouse-drag.el (autoload 'mouse-drag-throw "mouse-drag" "\ @@ -18916,7 +18914,7 @@ To test this function, evaluate: ;;;*** -;;;### (autoloads nil "mpc" "mpc.el" (22150 28228 326072 702000)) +;;;### (autoloads nil "mpc" "mpc.el" (22331 17372 57369 391000)) ;;; Generated autoloads from mpc.el (autoload 'mpc "mpc" "\ @@ -18926,7 +18924,7 @@ Main entry point for MPC. ;;;*** -;;;### (autoloads nil "mpuz" "play/mpuz.el" (22150 28228 682072 702000)) +;;;### (autoloads nil "mpuz" "play/mpuz.el" (22330 59913 969323 446000)) ;;; Generated autoloads from play/mpuz.el (autoload 'mpuz "mpuz" "\ @@ -18936,7 +18934,7 @@ Multiplication puzzle with GNU Emacs. ;;;*** -;;;### (autoloads nil "msb" "msb.el" (22150 28228 338072 702000)) +;;;### (autoloads nil "msb" "msb.el" (22330 59913 914323 615000)) ;;; Generated autoloads from msb.el (defvar msb-mode nil "\ @@ -18962,8 +18960,8 @@ different buffer menu using the function `msb'. ;;;*** -;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (22150 -;;;;;; 28228 114072 702000)) +;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (22330 +;;;;;; 59913 940323 535000)) ;;; Generated autoloads from international/mule-diag.el (autoload 'list-character-sets "mule-diag" "\ @@ -19095,8 +19093,8 @@ The default is 20. If LIMIT is negative, do not limit the listing. ;;;*** -;;;### (autoloads nil "mule-util" "international/mule-util.el" (22165 -;;;;;; 44248 411854 955000)) +;;;### (autoloads nil "mule-util" "international/mule-util.el" (22330 +;;;;;; 59913 940323 535000)) ;;; Generated autoloads from international/mule-util.el (defsubst string-to-list (string) "\ @@ -19255,8 +19253,8 @@ QUALITY can be: ;;;*** -;;;### (autoloads nil "net-utils" "net/net-utils.el" (22150 28228 -;;;;;; 378072 702000)) +;;;### (autoloads nil "net-utils" "net/net-utils.el" (22331 17372 +;;;;;; 58369 388000)) ;;; Generated autoloads from net/net-utils.el (autoload 'ifconfig "net-utils" "\ @@ -19350,8 +19348,8 @@ Open a network connection to HOST on PORT. ;;;*** -;;;### (autoloads nil "netrc" "net/netrc.el" (22150 28228 378072 -;;;;;; 702000)) +;;;### (autoloads nil "netrc" "net/netrc.el" (22330 59913 953323 +;;;;;; 495000)) ;;; Generated autoloads from net/netrc.el (autoload 'netrc-credentials "netrc" "\ @@ -19363,8 +19361,8 @@ listed in the PORTS list. ;;;*** -;;;### (autoloads nil "network-stream" "net/network-stream.el" (22150 -;;;;;; 28228 378072 702000)) +;;;### (autoloads nil "network-stream" "net/network-stream.el" (22331 +;;;;;; 17372 58369 388000)) ;;; Generated autoloads from net/network-stream.el (autoload 'open-network-stream "network-stream" "\ @@ -19460,8 +19458,8 @@ asynchronously, if possible. ;;;*** -;;;### (autoloads nil "newst-backend" "net/newst-backend.el" (22150 -;;;;;; 28228 378072 702000)) +;;;### (autoloads nil "newst-backend" "net/newst-backend.el" (22331 +;;;;;; 17372 59369 384000)) ;;; Generated autoloads from net/newst-backend.el (autoload 'newsticker-running-p "newst-backend" "\ @@ -19483,7 +19481,7 @@ Run `newsticker-start-hook' if newsticker was not running already. ;;;*** ;;;### (autoloads nil "newst-plainview" "net/newst-plainview.el" -;;;;;; (22150 28228 382072 702000)) +;;;;;; (22330 59913 953323 495000)) ;;; Generated autoloads from net/newst-plainview.el (autoload 'newsticker-plainview "newst-plainview" "\ @@ -19493,8 +19491,8 @@ Start newsticker plainview. ;;;*** -;;;### (autoloads nil "newst-reader" "net/newst-reader.el" (22165 -;;;;;; 41682 87102 999000)) +;;;### (autoloads nil "newst-reader" "net/newst-reader.el" (22330 +;;;;;; 59913 953323 495000)) ;;; Generated autoloads from net/newst-reader.el (autoload 'newsticker-show-news "newst-reader" "\ @@ -19504,8 +19502,8 @@ Start reading news. You may want to bind this to a key. ;;;*** -;;;### (autoloads nil "newst-ticker" "net/newst-ticker.el" (22150 -;;;;;; 28228 382072 702000)) +;;;### (autoloads nil "newst-ticker" "net/newst-ticker.el" (22330 +;;;;;; 59913 953323 495000)) ;;; Generated autoloads from net/newst-ticker.el (autoload 'newsticker-ticker-running-p "newst-ticker" "\ @@ -19525,8 +19523,8 @@ running already. ;;;*** -;;;### (autoloads nil "newst-treeview" "net/newst-treeview.el" (22196 -;;;;;; 37575 156683 383000)) +;;;### (autoloads nil "newst-treeview" "net/newst-treeview.el" (22330 +;;;;;; 59913 953323 495000)) ;;; Generated autoloads from net/newst-treeview.el (autoload 'newsticker-treeview "newst-treeview" "\ @@ -19536,8 +19534,8 @@ Start newsticker treeview. ;;;*** -;;;### (autoloads nil "nndiary" "gnus/nndiary.el" (22150 28227 990072 -;;;;;; 702000)) +;;;### (autoloads nil "nndiary" "gnus/nndiary.el" (22331 17372 30369 +;;;;;; 487000)) ;;; Generated autoloads from gnus/nndiary.el (autoload 'nndiary-generate-nov-databases "nndiary" "\ @@ -19547,8 +19545,8 @@ Generate NOV databases in all nndiary directories. ;;;*** -;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (22150 28227 990072 -;;;;;; 702000)) +;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (22331 17372 31369 +;;;;;; 484000)) ;;; Generated autoloads from gnus/nndoc.el (autoload 'nndoc-add-type "nndoc" "\ @@ -19562,8 +19560,8 @@ symbol in the alist. ;;;*** -;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (22150 28227 -;;;;;; 994072 702000)) +;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (22331 17372 +;;;;;; 31369 484000)) ;;; Generated autoloads from gnus/nnfolder.el (autoload 'nnfolder-generate-active-file "nnfolder" "\ @@ -19574,7 +19572,7 @@ This command does not work if you use short group names. ;;;*** -;;;### (autoloads nil "nnml" "gnus/nnml.el" (22150 28228 2072 702000)) +;;;### (autoloads nil "nnml" "gnus/nnml.el" (22331 17372 33369 477000)) ;;; Generated autoloads from gnus/nnml.el (autoload 'nnml-generate-nov-databases "nnml" "\ @@ -19584,7 +19582,7 @@ Generate NOV databases in all nnml directories. ;;;*** -;;;### (autoloads nil "novice" "novice.el" (22150 28228 446072 702000)) +;;;### (autoloads nil "novice" "novice.el" (22330 59913 914323 615000)) ;;; Generated autoloads from novice.el (define-obsolete-variable-alias 'disabled-command-hook 'disabled-command-function "22.1") @@ -19616,8 +19614,8 @@ future sessions. ;;;*** -;;;### (autoloads nil "nroff-mode" "textmodes/nroff-mode.el" (22150 -;;;;;; 28229 102072 702000)) +;;;### (autoloads nil "nroff-mode" "textmodes/nroff-mode.el" (22330 +;;;;;; 59913 990323 381000)) ;;; Generated autoloads from textmodes/nroff-mode.el (autoload 'nroff-mode "nroff-mode" "\ @@ -19631,14 +19629,14 @@ closing requests for requests that are used in matched pairs. ;;;*** -;;;### (autoloads nil "ntlm" "net/ntlm.el" (22150 28228 386072 702000)) +;;;### (autoloads nil "ntlm" "net/ntlm.el" (22330 59913 953323 495000)) ;;; Generated autoloads from net/ntlm.el (push (purecopy '(ntlm 2 0 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "nxml-glyph" "nxml/nxml-glyph.el" (22150 28228 -;;;;;; 450072 702000)) +;;;### (autoloads nil "nxml-glyph" "nxml/nxml-glyph.el" (22331 17372 +;;;;;; 65369 363000)) ;;; Generated autoloads from nxml/nxml-glyph.el (autoload 'nxml-glyph-display-string "nxml-glyph" "\ @@ -19650,8 +19648,8 @@ Return nil if the face cannot display a glyph for N. ;;;*** -;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (22150 28228 -;;;;;; 450072 702000)) +;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (22331 17372 +;;;;;; 65369 363000)) ;;; Generated autoloads from nxml/nxml-mode.el (autoload 'nxml-mode "nxml-mode" "\ @@ -19711,8 +19709,8 @@ Many aspects this mode can be customized using ;;;*** -;;;### (autoloads nil "nxml-uchnm" "nxml/nxml-uchnm.el" (22150 28228 -;;;;;; 454072 702000)) +;;;### (autoloads nil "nxml-uchnm" "nxml/nxml-uchnm.el" (22331 17372 +;;;;;; 66369 359000)) ;;; Generated autoloads from nxml/nxml-uchnm.el (autoload 'nxml-enable-unicode-char-name-sets "nxml-uchnm" "\ @@ -19724,8 +19722,8 @@ the variable `nxml-enabled-unicode-blocks'. ;;;*** -;;;### (autoloads nil "octave" "progmodes/octave.el" (22197 58438 -;;;;;; 503460 447000)) +;;;### (autoloads nil "octave" "progmodes/octave.el" (22330 59913 +;;;;;; 985323 396000)) ;;; Generated autoloads from progmodes/octave.el (autoload 'octave-mode "octave" "\ @@ -19762,8 +19760,8 @@ startup file, `~/.emacs-octave'. ;;;*** -;;;### (autoloads nil "opascal" "progmodes/opascal.el" (22156 23699 -;;;;;; 542755 538000)) +;;;### (autoloads nil "opascal" "progmodes/opascal.el" (22330 59913 +;;;;;; 985323 396000)) ;;; Generated autoloads from progmodes/opascal.el (define-obsolete-function-alias 'delphi-mode 'opascal-mode "24.4") @@ -19798,7 +19796,7 @@ Coloring: ;;;*** -;;;### (autoloads nil "org" "org/org.el" (22309 58853 550986 699000)) +;;;### (autoloads nil "org" "org/org.el" (22363 8343 528348 716000)) ;;; Generated autoloads from org/org.el (autoload 'org-babel-do-load-languages "org" "\ @@ -20019,8 +20017,8 @@ Call the customize function with org as argument. ;;;*** -;;;### (autoloads nil "org-agenda" "org/org-agenda.el" (22150 28228 -;;;;;; 558072 702000)) +;;;### (autoloads nil "org-agenda" "org/org-agenda.el" (22331 17372 +;;;;;; 77369 320000)) ;;; Generated autoloads from org/org-agenda.el (autoload 'org-toggle-sticky-agenda "org-agenda" "\ @@ -20293,8 +20291,8 @@ to override `appt-message-warning-time'. ;;;*** -;;;### (autoloads nil "org-capture" "org/org-capture.el" (22150 28228 -;;;;;; 558072 702000)) +;;;### (autoloads nil "org-capture" "org/org-capture.el" (22330 59913 +;;;;;; 965323 458000)) ;;; Generated autoloads from org/org-capture.el (autoload 'org-capture-string "org-capture" "\ @@ -20336,8 +20334,8 @@ Set `org-capture-templates' to be similar to `org-remember-templates'. ;;;*** -;;;### (autoloads nil "org-colview" "org/org-colview.el" (22150 28228 -;;;;;; 582072 702000)) +;;;### (autoloads nil "org-colview" "org/org-colview.el" (22331 17372 +;;;;;; 78369 317000)) ;;; Generated autoloads from org/org-colview.el (autoload 'org-columns-remove-overlays "org-colview" "\ @@ -20400,8 +20398,8 @@ Turn on or update column view in the agenda. ;;;*** -;;;### (autoloads nil "org-compat" "org/org-compat.el" (22192 2874 -;;;;;; 471382 391000)) +;;;### (autoloads nil "org-compat" "org/org-compat.el" (22331 17372 +;;;;;; 78369 317000)) ;;; Generated autoloads from org/org-compat.el (autoload 'org-check-version "org-compat" "\ @@ -20411,8 +20409,8 @@ Try very hard to provide sensible version strings. ;;;*** -;;;### (autoloads nil "org-macs" "org/org-macs.el" (22150 28228 602072 -;;;;;; 702000)) +;;;### (autoloads nil "org-macs" "org/org-macs.el" (22331 17372 79369 +;;;;;; 313000)) ;;; Generated autoloads from org/org-macs.el (autoload 'org-load-noerror-mustsuffix "org-macs" "\ @@ -20422,8 +20420,8 @@ Load FILE with optional arguments NOERROR and MUSTSUFFIX. Drop the MUSTSUFFIX a ;;;*** -;;;### (autoloads nil "org-version" "org/org-version.el" (22086 11930 -;;;;;; 98062 731000)) +;;;### (autoloads nil "org-version" "org/org-version.el" (22330 59913 +;;;;;; 966323 455000)) ;;; Generated autoloads from org/org-version.el (autoload 'org-release "org-version" "\ @@ -20440,8 +20438,8 @@ The Git version of org-mode. ;;;*** -;;;### (autoloads nil "outline" "outline.el" (22150 28228 666072 -;;;;;; 702000)) +;;;### (autoloads nil "outline" "outline.el" (22330 59913 914323 +;;;;;; 615000)) ;;; Generated autoloads from outline.el (put 'outline-regexp 'safe-local-variable 'stringp) (put 'outline-heading-end-regexp 'safe-local-variable 'stringp) @@ -20484,8 +20482,8 @@ See the command `outline-mode' for more information on this mode. ;;;*** -;;;### (autoloads nil "package" "emacs-lisp/package.el" (22338 59064 -;;;;;; 814791 248000)) +;;;### (autoloads nil "package" "emacs-lisp/package.el" (22363 8343 +;;;;;; 509348 790000)) ;;; Generated autoloads from emacs-lisp/package.el (push (purecopy '(package 1 1 0)) package--builtin-versions) @@ -20603,7 +20601,7 @@ The list is displayed in a buffer named `*Packages*'. ;;;*** -;;;### (autoloads nil "paren" "paren.el" (22150 28228 666072 702000)) +;;;### (autoloads nil "paren" "paren.el" (22330 59913 914323 615000)) ;;; Generated autoloads from paren.el (defvar show-paren-mode nil "\ @@ -20630,8 +20628,8 @@ matching parenthesis is highlighted in `show-paren-style' after ;;;*** -;;;### (autoloads nil "parse-time" "calendar/parse-time.el" (22226 -;;;;;; 58701 641313 948000)) +;;;### (autoloads nil "parse-time" "calendar/parse-time.el" (22331 +;;;;;; 17371 982369 658000)) ;;; Generated autoloads from calendar/parse-time.el (put 'parse-time-rules 'risky-local-variable t) @@ -20644,8 +20642,8 @@ unknown are returned as nil. ;;;*** -;;;### (autoloads nil "pascal" "progmodes/pascal.el" (22197 58438 -;;;;;; 503460 447000)) +;;;### (autoloads nil "pascal" "progmodes/pascal.el" (22330 59913 +;;;;;; 985323 396000)) ;;; Generated autoloads from progmodes/pascal.el (autoload 'pascal-mode "pascal" "\ @@ -20694,8 +20692,8 @@ See also the user variables `pascal-type-keywords', `pascal-start-keywords' and ;;;*** -;;;### (autoloads nil "password-cache" "password-cache.el" (22150 -;;;;;; 28228 666072 702000)) +;;;### (autoloads nil "password-cache" "password-cache.el" (22330 +;;;;;; 59913 914323 615000)) ;;; Generated autoloads from password-cache.el (defvar password-cache t "\ @@ -20716,8 +20714,8 @@ Check if KEY is in the cache. ;;;*** -;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (22195 16710 -;;;;;; 371344 967000)) +;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (22330 59913 +;;;;;; 930323 566000)) ;;; Generated autoloads from emacs-lisp/pcase.el (autoload 'pcase "pcase" "\ @@ -20837,8 +20835,8 @@ to this macro. ;;;*** -;;;### (autoloads nil "pcmpl-cvs" "pcmpl-cvs.el" (22150 28228 666072 -;;;;;; 702000)) +;;;### (autoloads nil "pcmpl-cvs" "pcmpl-cvs.el" (22330 59913 914323 +;;;;;; 615000)) ;;; Generated autoloads from pcmpl-cvs.el (autoload 'pcomplete/cvs "pcmpl-cvs" "\ @@ -20848,8 +20846,8 @@ Completion rules for the `cvs' command. ;;;*** -;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (22150 28228 666072 -;;;;;; 702000)) +;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (22331 17372 87369 +;;;;;; 285000)) ;;; Generated autoloads from pcmpl-gnu.el (autoload 'pcomplete/gzip "pcmpl-gnu" "\ @@ -20876,8 +20874,8 @@ Completion for the GNU tar utility. ;;;*** -;;;### (autoloads nil "pcmpl-linux" "pcmpl-linux.el" (22150 28228 -;;;;;; 670072 702000)) +;;;### (autoloads nil "pcmpl-linux" "pcmpl-linux.el" (22330 59913 +;;;;;; 914323 615000)) ;;; Generated autoloads from pcmpl-linux.el (autoload 'pcomplete/kill "pcmpl-linux" "\ @@ -20897,8 +20895,8 @@ Completion for GNU/Linux `mount'. ;;;*** -;;;### (autoloads nil "pcmpl-rpm" "pcmpl-rpm.el" (22150 28228 670072 -;;;;;; 702000)) +;;;### (autoloads nil "pcmpl-rpm" "pcmpl-rpm.el" (22330 59913 914323 +;;;;;; 615000)) ;;; Generated autoloads from pcmpl-rpm.el (autoload 'pcomplete/rpm "pcmpl-rpm" "\ @@ -20908,8 +20906,8 @@ Completion for the `rpm' command. ;;;*** -;;;### (autoloads nil "pcmpl-unix" "pcmpl-unix.el" (22150 28228 670072 -;;;;;; 702000)) +;;;### (autoloads nil "pcmpl-unix" "pcmpl-unix.el" (22330 59913 914323 +;;;;;; 615000)) ;;; Generated autoloads from pcmpl-unix.el (autoload 'pcomplete/cd "pcmpl-unix" "\ @@ -20964,8 +20962,8 @@ Includes files as well as host names followed by a colon. ;;;*** -;;;### (autoloads nil "pcmpl-x" "pcmpl-x.el" (22150 28228 670072 -;;;;;; 702000)) +;;;### (autoloads nil "pcmpl-x" "pcmpl-x.el" (22330 59913 914323 +;;;;;; 615000)) ;;; Generated autoloads from pcmpl-x.el (autoload 'pcomplete/tlmgr "pcmpl-x" "\ @@ -20989,8 +20987,8 @@ Completion for the `ag' command. ;;;*** -;;;### (autoloads nil "pcomplete" "pcomplete.el" (22150 28228 674072 -;;;;;; 702000)) +;;;### (autoloads nil "pcomplete" "pcomplete.el" (22330 59913 914323 +;;;;;; 615000)) ;;; Generated autoloads from pcomplete.el (autoload 'pcomplete "pcomplete" "\ @@ -21047,7 +21045,7 @@ Setup `shell-mode' to use pcomplete. ;;;*** -;;;### (autoloads nil "pcvs" "vc/pcvs.el" (22182 4679 527463 499000)) +;;;### (autoloads nil "pcvs" "vc/pcvs.el" (22330 59914 12323 313000)) ;;; Generated autoloads from vc/pcvs.el (autoload 'cvs-checkout "pcvs" "\ @@ -21122,8 +21120,8 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d ;;;*** -;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (22150 28229 -;;;;;; 278072 702000)) +;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (22330 59914 +;;;;;; 9323 322000)) ;;; 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)) "\ @@ -21131,8 +21129,8 @@ Global menu used by PCL-CVS.") ;;;*** -;;;### (autoloads nil "perl-mode" "progmodes/perl-mode.el" (22197 -;;;;;; 58438 503460 447000)) +;;;### (autoloads nil "perl-mode" "progmodes/perl-mode.el" (22330 +;;;;;; 59913 985323 396000)) ;;; Generated autoloads from progmodes/perl-mode.el (put 'perl-indent-level 'safe-local-variable 'integerp) (put 'perl-continued-statement-offset 'safe-local-variable 'integerp) @@ -21193,8 +21191,8 @@ Turning on Perl mode runs the normal hook `perl-mode-hook'. ;;;*** -;;;### (autoloads nil "picture" "textmodes/picture.el" (22168 58180 -;;;;;; 311008 971000)) +;;;### (autoloads nil "picture" "textmodes/picture.el" (22330 59913 +;;;;;; 990323 381000)) ;;; Generated autoloads from textmodes/picture.el (autoload 'picture-mode "picture" "\ @@ -21274,8 +21272,8 @@ they are not by default assigned to keys. ;;;*** -;;;### (autoloads nil "pinentry" "net/pinentry.el" (22218 64587 997919 -;;;;;; 743000)) +;;;### (autoloads nil "pinentry" "net/pinentry.el" (22330 59913 953323 +;;;;;; 495000)) ;;; Generated autoloads from net/pinentry.el (push (purecopy '(pinentry 0 1)) package--builtin-versions) @@ -21292,8 +21290,8 @@ will not be shown. ;;;*** -;;;### (autoloads nil "plstore" "gnus/plstore.el" (22150 28228 10072 -;;;;;; 702000)) +;;;### (autoloads nil "plstore" "gnus/plstore.el" (22331 17372 34369 +;;;;;; 473000)) ;;; Generated autoloads from gnus/plstore.el (autoload 'plstore-open "plstore" "\ @@ -21308,8 +21306,8 @@ Major mode for editing PLSTORE files. ;;;*** -;;;### (autoloads nil "po" "textmodes/po.el" (22150 28229 106072 -;;;;;; 702000)) +;;;### (autoloads nil "po" "textmodes/po.el" (22330 59913 990323 +;;;;;; 381000)) ;;; Generated autoloads from textmodes/po.el (autoload 'po-find-file-coding-system "po" "\ @@ -21320,7 +21318,7 @@ Called through `file-coding-system-alist', before the file is visited for real. ;;;*** -;;;### (autoloads nil "pong" "play/pong.el" (22150 28228 682072 702000)) +;;;### (autoloads nil "pong" "play/pong.el" (22330 59913 969323 446000)) ;;; Generated autoloads from play/pong.el (autoload 'pong "pong" "\ @@ -21336,7 +21334,7 @@ pong-mode keybindings:\\ ;;;*** -;;;### (autoloads nil "pop3" "gnus/pop3.el" (22150 28228 14072 702000)) +;;;### (autoloads nil "pop3" "gnus/pop3.el" (22331 17372 35369 469000)) ;;; Generated autoloads from gnus/pop3.el (autoload 'pop3-movemail "pop3" "\ @@ -21347,8 +21345,8 @@ Use streaming commands. ;;;*** -;;;### (autoloads nil "pp" "emacs-lisp/pp.el" (22150 28227 454072 -;;;;;; 702000)) +;;;### (autoloads nil "pp" "emacs-lisp/pp.el" (22330 59913 930323 +;;;;;; 566000)) ;;; Generated autoloads from emacs-lisp/pp.el (autoload 'pp-to-string "pp" "\ @@ -21398,8 +21396,8 @@ Ignores leading comment characters. ;;;*** -;;;### (autoloads nil "printing" "printing.el" (22338 59064 978791 -;;;;;; 248000)) +;;;### (autoloads nil "printing" "printing.el" (22363 8343 529348 +;;;;;; 712000)) ;;; Generated autoloads from printing.el (push (purecopy '(printing 6 9 3)) package--builtin-versions) @@ -21987,7 +21985,7 @@ are both set to t. ;;;*** -;;;### (autoloads nil "proced" "proced.el" (22150 28228 702072 702000)) +;;;### (autoloads nil "proced" "proced.el" (22331 17372 88369 281000)) ;;; Generated autoloads from proced.el (autoload 'proced "proced" "\ @@ -22005,8 +22003,8 @@ Proced buffers. ;;;*** -;;;### (autoloads nil "profiler" "profiler.el" (22150 28228 702072 -;;;;;; 702000)) +;;;### (autoloads nil "profiler" "profiler.el" (22330 59913 914323 +;;;;;; 615000)) ;;; Generated autoloads from profiler.el (autoload 'profiler-start "profiler" "\ @@ -22034,8 +22032,8 @@ Open profile FILENAME. ;;;*** -;;;### (autoloads nil "project" "progmodes/project.el" (22315 11204 -;;;;;; 929560 191000)) +;;;### (autoloads nil "project" "progmodes/project.el" (22330 59913 +;;;;;; 975323 427000)) ;;; Generated autoloads from progmodes/project.el (autoload 'project-current "project" "\ @@ -22077,8 +22075,8 @@ recognized. ;;;*** -;;;### (autoloads nil "prolog" "progmodes/prolog.el" (22283 34751 -;;;;;; 181333 844000)) +;;;### (autoloads nil "prolog" "progmodes/prolog.el" (22331 17372 +;;;;;; 97369 249000)) ;;; Generated autoloads from progmodes/prolog.el (autoload 'prolog-mode "prolog" "\ @@ -22111,7 +22109,7 @@ With prefix argument ARG, restart the Prolog process if running before. ;;;*** -;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (22150 28228 986072 702000)) +;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (22330 59913 914323 615000)) ;;; 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")) "\ @@ -22122,8 +22120,8 @@ The default value is (\"/usr/local/share/emacs/fonts/bdf\").") ;;;*** -;;;### (autoloads nil "ps-mode" "progmodes/ps-mode.el" (22197 58438 -;;;;;; 507460 447000)) +;;;### (autoloads nil "ps-mode" "progmodes/ps-mode.el" (22331 17372 +;;;;;; 97369 249000)) ;;; Generated autoloads from progmodes/ps-mode.el (push (purecopy '(ps-mode 1 1 9)) package--builtin-versions) @@ -22169,8 +22167,8 @@ Typing \\\\[ps-run-goto-error] when the cursor is at the number ;;;*** -;;;### (autoloads nil "ps-print" "ps-print.el" (22220 19926 440329 -;;;;;; 271000)) +;;;### (autoloads nil "ps-print" "ps-print.el" (22331 17372 104369 +;;;;;; 224000)) ;;; Generated autoloads from ps-print.el (push (purecopy '(ps-print 7 3 5)) package--builtin-versions) @@ -22367,8 +22365,8 @@ If EXTENSION is any other symbol, it is ignored. ;;;*** -;;;### (autoloads nil "pulse" "cedet/pulse.el" (22150 28227 222072 -;;;;;; 702000)) +;;;### (autoloads nil "pulse" "cedet/pulse.el" (22330 59913 920323 +;;;;;; 597000)) ;;; Generated autoloads from cedet/pulse.el (push (purecopy '(pulse 1 0)) package--builtin-versions) @@ -22386,8 +22384,8 @@ Optional argument FACE specifies the face to do the highlighting. ;;;*** -;;;### (autoloads nil "python" "progmodes/python.el" (22304 40885 -;;;;;; 57243 884000)) +;;;### (autoloads nil "python" "progmodes/python.el" (22363 8343 +;;;;;; 530348 709000)) ;;; Generated autoloads from progmodes/python.el (push (purecopy '(python 0 25 1)) package--builtin-versions) @@ -22424,7 +22422,7 @@ Major mode for editing Python files. ;;;*** -;;;### (autoloads nil "qp" "gnus/qp.el" (22150 28228 14072 702000)) +;;;### (autoloads nil "qp" "gnus/qp.el" (22331 17372 35369 469000)) ;;; Generated autoloads from gnus/qp.el (autoload 'quoted-printable-decode-region "qp" "\ @@ -22443,8 +22441,8 @@ them into characters should be done separately. ;;;*** -;;;### (autoloads nil "quail" "international/quail.el" (22174 10581 -;;;;;; 673112 520000)) +;;;### (autoloads nil "quail" "international/quail.el" (22330 59913 +;;;;;; 940323 535000)) ;;; Generated autoloads from international/quail.el (autoload 'quail-title "quail" "\ @@ -22674,8 +22672,8 @@ of each directory. ;;;*** -;;;### (autoloads nil "quail/hangul" "leim/quail/hangul.el" (22150 -;;;;;; 28228 202072 702000)) +;;;### (autoloads nil "quail/hangul" "leim/quail/hangul.el" (22330 +;;;;;; 59913 945323 520000)) ;;; Generated autoloads from leim/quail/hangul.el (autoload 'hangul-input-method-activate "quail/hangul" "\ @@ -22688,7 +22686,7 @@ HELP-TEXT is a text set in `hangul-input-method-help-text'. ;;;*** ;;;### (autoloads nil "quail/uni-input" "leim/quail/uni-input.el" -;;;;;; (22150 28228 210072 702000)) +;;;;;; (22330 59913 945323 520000)) ;;; Generated autoloads from leim/quail/uni-input.el (autoload 'ucs-input-activate "quail/uni-input" "\ @@ -22702,8 +22700,8 @@ While this input method is active, the variable ;;;*** -;;;### (autoloads nil "quickurl" "net/quickurl.el" (22197 58438 347460 -;;;;;; 447000)) +;;;### (autoloads nil "quickurl" "net/quickurl.el" (22330 59913 953323 +;;;;;; 495000)) ;;; 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" "\ @@ -22774,8 +22772,7 @@ Display `quickurl-list' as a formatted list using `quickurl-list-mode'. ;;;*** -;;;### (autoloads nil "rcirc" "net/rcirc.el" (22150 28228 390072 -;;;;;; 702000)) +;;;### (autoloads nil "rcirc" "net/rcirc.el" (22331 17372 59369 384000)) ;;; Generated autoloads from net/rcirc.el (autoload 'rcirc "rcirc" "\ @@ -22814,8 +22811,8 @@ if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "re-builder" "emacs-lisp/re-builder.el" (22150 -;;;;;; 28227 454072 702000)) +;;;### (autoloads nil "re-builder" "emacs-lisp/re-builder.el" (22330 +;;;;;; 59913 930323 566000)) ;;; Generated autoloads from emacs-lisp/re-builder.el (defalias 'regexp-builder 're-builder) @@ -22833,8 +22830,7 @@ matching parts of the target buffer will be highlighted. ;;;*** -;;;### (autoloads nil "recentf" "recentf.el" (22349 29365 690989 -;;;;;; 559000)) +;;;### (autoloads nil "recentf" "recentf.el" (22363 8343 534348 693000)) ;;; Generated autoloads from recentf.el (defvar recentf-mode nil "\ @@ -22861,7 +22857,7 @@ were operated on recently. ;;;*** -;;;### (autoloads nil "rect" "rect.el" (22311 14139 238375 715000)) +;;;### (autoloads nil "rect" "rect.el" (22331 17372 104369 224000)) ;;; Generated autoloads from rect.el (autoload 'delete-rectangle "rect" "\ @@ -23001,8 +22997,8 @@ Activates the region if needed. Only lasts until the region is deactivated. ;;;*** -;;;### (autoloads nil "refill" "textmodes/refill.el" (22150 28229 -;;;;;; 106072 702000)) +;;;### (autoloads nil "refill" "textmodes/refill.el" (22330 59913 +;;;;;; 990323 381000)) ;;; Generated autoloads from textmodes/refill.el (autoload 'refill-mode "refill" "\ @@ -23022,8 +23018,8 @@ For true \"word wrap\" behavior, use `visual-line-mode' instead. ;;;*** -;;;### (autoloads nil "reftex" "textmodes/reftex.el" (22179 28801 -;;;;;; 466001 468000)) +;;;### (autoloads nil "reftex" "textmodes/reftex.el" (22331 17372 +;;;;;; 117369 178000)) ;;; Generated autoloads from textmodes/reftex.el (autoload 'reftex-citation "reftex-cite" nil t) (autoload 'reftex-all-document-files "reftex-parse") @@ -23076,8 +23072,8 @@ This enforces rescanning the buffer on next use. ;;;*** -;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (22182 -;;;;;; 44208 583853 279000)) +;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (22330 +;;;;;; 59913 990323 381000)) ;;; 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)))) @@ -23086,8 +23082,8 @@ This enforces rescanning the buffer on next use. ;;;*** -;;;### (autoloads nil "regexp-opt" "emacs-lisp/regexp-opt.el" (22150 -;;;;;; 28227 454072 702000)) +;;;### (autoloads nil "regexp-opt" "emacs-lisp/regexp-opt.el" (22330 +;;;;;; 59913 930323 566000)) ;;; Generated autoloads from emacs-lisp/regexp-opt.el (autoload 'regexp-opt "regexp-opt" "\ @@ -23116,15 +23112,15 @@ This means the number of non-shy regexp grouping constructs ;;;*** -;;;### (autoloads nil "regi" "emacs-lisp/regi.el" (22150 28227 454072 -;;;;;; 702000)) +;;;### (autoloads nil "regi" "emacs-lisp/regi.el" (22330 59913 930323 +;;;;;; 566000)) ;;; Generated autoloads from emacs-lisp/regi.el (push (purecopy '(regi 1 8)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "remember" "textmodes/remember.el" (22150 28229 -;;;;;; 130072 702000)) +;;;### (autoloads nil "remember" "textmodes/remember.el" (22330 59913 +;;;;;; 991323 378000)) ;;; Generated autoloads from textmodes/remember.el (push (purecopy '(remember 2 0)) package--builtin-versions) @@ -23178,7 +23174,7 @@ to turn the *scratch* buffer into your notes buffer. ;;;*** -;;;### (autoloads nil "repeat" "repeat.el" (22150 28228 994072 702000)) +;;;### (autoloads nil "repeat" "repeat.el" (22330 59913 915323 612000)) ;;; Generated autoloads from repeat.el (push (purecopy '(repeat 0 51)) package--builtin-versions) @@ -23201,8 +23197,8 @@ recently executed command not bound to an input event\". ;;;*** -;;;### (autoloads nil "reporter" "mail/reporter.el" (22150 28228 -;;;;;; 234072 702000)) +;;;### (autoloads nil "reporter" "mail/reporter.el" (22330 59913 +;;;;;; 947323 514000)) ;;; Generated autoloads from mail/reporter.el (autoload 'reporter-submit-bug-report "reporter" "\ @@ -23233,8 +23229,8 @@ mail-sending package is used for editing and sending the message. ;;;*** -;;;### (autoloads nil "reposition" "reposition.el" (22150 28228 994072 -;;;;;; 702000)) +;;;### (autoloads nil "reposition" "reposition.el" (22330 59913 915323 +;;;;;; 612000)) ;;; Generated autoloads from reposition.el (autoload 'reposition-window "reposition" "\ @@ -23260,7 +23256,7 @@ first comment line visible (if point is in a comment). ;;;*** -;;;### (autoloads nil "reveal" "reveal.el" (22150 28228 994072 702000)) +;;;### (autoloads nil "reveal" "reveal.el" (22330 59913 915323 612000)) ;;; Generated autoloads from reveal.el (autoload 'reveal-mode "reveal" "\ @@ -23296,8 +23292,8 @@ the mode if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "ring" "emacs-lisp/ring.el" (22150 28227 454072 -;;;;;; 702000)) +;;;### (autoloads nil "ring" "emacs-lisp/ring.el" (22330 59913 930323 +;;;;;; 566000)) ;;; Generated autoloads from emacs-lisp/ring.el (autoload 'ring-p "ring" "\ @@ -23312,8 +23308,8 @@ Make a ring that can contain SIZE elements. ;;;*** -;;;### (autoloads nil "rlogin" "net/rlogin.el" (22150 28228 394072 -;;;;;; 702000)) +;;;### (autoloads nil "rlogin" "net/rlogin.el" (22330 59913 953323 +;;;;;; 495000)) ;;; Generated autoloads from net/rlogin.el (autoload 'rlogin "rlogin" "\ @@ -23357,8 +23353,8 @@ variable. ;;;*** -;;;### (autoloads nil "rmail" "mail/rmail.el" (22250 56969 841825 -;;;;;; 171000)) +;;;### (autoloads nil "rmail" "mail/rmail.el" (22331 17372 51369 +;;;;;; 413000)) ;;; Generated autoloads from mail/rmail.el (defvar rmail-file-name (purecopy "~/RMAIL") "\ @@ -23555,8 +23551,8 @@ Set PASSWORD to be used for retrieving mail from a POP or IMAP server. ;;;*** -;;;### (autoloads nil "rmailout" "mail/rmailout.el" (22150 28228 -;;;;;; 246072 702000)) +;;;### (autoloads nil "rmailout" "mail/rmailout.el" (22330 59913 +;;;;;; 948323 511000)) ;;; Generated autoloads from mail/rmailout.el (put 'rmail-output-file-alist 'risky-local-variable t) @@ -23620,8 +23616,8 @@ than appending to it. Deletes the message after writing if ;;;*** -;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (22150 28228 -;;;;;; 454072 702000)) +;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (22331 17372 +;;;;;; 66369 359000)) ;;; Generated autoloads from nxml/rng-cmpct.el (autoload 'rng-c-load-schema "rng-cmpct" "\ @@ -23632,8 +23628,8 @@ Return a pattern. ;;;*** -;;;### (autoloads nil "rng-nxml" "nxml/rng-nxml.el" (22150 28228 -;;;;;; 458072 702000)) +;;;### (autoloads nil "rng-nxml" "nxml/rng-nxml.el" (22331 17372 +;;;;;; 67369 356000)) ;;; Generated autoloads from nxml/rng-nxml.el (autoload 'rng-nxml-mode-init "rng-nxml" "\ @@ -23645,8 +23641,8 @@ Validation will be enabled if `rng-nxml-auto-validate-flag' is non-nil. ;;;*** -;;;### (autoloads nil "rng-valid" "nxml/rng-valid.el" (22150 28228 -;;;;;; 462072 702000)) +;;;### (autoloads nil "rng-valid" "nxml/rng-valid.el" (22331 17372 +;;;;;; 67369 356000)) ;;; Generated autoloads from nxml/rng-valid.el (autoload 'rng-validate-mode "rng-valid" "\ @@ -23676,8 +23672,8 @@ to use for finding the schema. ;;;*** -;;;### (autoloads nil "rng-xsd" "nxml/rng-xsd.el" (22150 28228 462072 -;;;;;; 702000)) +;;;### (autoloads nil "rng-xsd" "nxml/rng-xsd.el" (22331 17372 67369 +;;;;;; 356000)) ;;; Generated autoloads from nxml/rng-xsd.el (put 'http://www\.w3\.org/2001/XMLSchema-datatypes 'rng-dt-compile 'rng-xsd-compile) @@ -23704,8 +23700,8 @@ must be equal. ;;;*** -;;;### (autoloads nil "robin" "international/robin.el" (22086 11929 -;;;;;; 882062 731000)) +;;;### (autoloads nil "robin" "international/robin.el" (22330 59913 +;;;;;; 940323 535000)) ;;; Generated autoloads from international/robin.el (autoload 'robin-define-package "robin" "\ @@ -23737,7 +23733,7 @@ Start using robin package NAME, which is a string. ;;;*** -;;;### (autoloads nil "rot13" "rot13.el" (22150 28228 994072 702000)) +;;;### (autoloads nil "rot13" "rot13.el" (22330 59913 915323 612000)) ;;; Generated autoloads from rot13.el (autoload 'rot13 "rot13" "\ @@ -23774,8 +23770,8 @@ Toggle the use of ROT13 encoding for the current window. ;;;*** -;;;### (autoloads nil "rst" "textmodes/rst.el" (22150 28229 146072 -;;;;;; 702000)) +;;;### (autoloads nil "rst" "textmodes/rst.el" (22330 59913 991323 +;;;;;; 378000)) ;;; Generated autoloads from textmodes/rst.el (add-to-list 'auto-mode-alist (purecopy '("\\.re?st\\'" . rst-mode))) @@ -23805,8 +23801,8 @@ for modes derived from Text mode, like Mail mode. ;;;*** -;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (22324 -;;;;;; 26168 770040 988000)) +;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (22363 +;;;;;; 8343 531348 705000)) ;;; Generated autoloads from progmodes/ruby-mode.el (push (purecopy '(ruby-mode 1 2)) package--builtin-versions) @@ -23823,8 +23819,8 @@ Major mode for editing Ruby code. ;;;*** -;;;### (autoloads nil "ruler-mode" "ruler-mode.el" (22150 28228 994072 -;;;;;; 702000)) +;;;### (autoloads nil "ruler-mode" "ruler-mode.el" (22330 59913 915323 +;;;;;; 612000)) ;;; Generated autoloads from ruler-mode.el (push (purecopy '(ruler-mode 1 6)) package--builtin-versions) @@ -23842,8 +23838,8 @@ if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "rx" "emacs-lisp/rx.el" (22150 28227 454072 -;;;;;; 702000)) +;;;### (autoloads nil "rx" "emacs-lisp/rx.el" (22330 59913 930323 +;;;;;; 566000)) ;;; Generated autoloads from emacs-lisp/rx.el (autoload 'rx-to-string "rx" "\ @@ -24154,15 +24150,15 @@ enclosed in `(and ...)'. ;;;*** -;;;### (autoloads nil "sasl-ntlm" "net/sasl-ntlm.el" (22150 28228 -;;;;;; 394072 702000)) +;;;### (autoloads nil "sasl-ntlm" "net/sasl-ntlm.el" (22330 59913 +;;;;;; 953323 495000)) ;;; Generated autoloads from net/sasl-ntlm.el (push (purecopy '(sasl 1 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "savehist" "savehist.el" (22150 28228 994072 -;;;;;; 702000)) +;;;### (autoloads nil "savehist" "savehist.el" (22330 59913 915323 +;;;;;; 612000)) ;;; Generated autoloads from savehist.el (push (purecopy '(savehist 24)) package--builtin-versions) @@ -24195,8 +24191,8 @@ histories, which is probably undesirable. ;;;*** -;;;### (autoloads nil "saveplace" "saveplace.el" (22224 16978 400323 -;;;;;; 324000)) +;;;### (autoloads nil "saveplace" "saveplace.el" (22330 59913 915323 +;;;;;; 612000)) ;;; Generated autoloads from saveplace.el (defvar save-place-mode nil "\ @@ -24234,8 +24230,8 @@ file: ;;;*** -;;;### (autoloads nil "scheme" "progmodes/scheme.el" (22150 28228 -;;;;;; 910072 702000)) +;;;### (autoloads nil "scheme" "progmodes/scheme.el" (22331 17372 +;;;;;; 98369 246000)) ;;; Generated autoloads from progmodes/scheme.el (autoload 'scheme-mode "scheme" "\ @@ -24274,8 +24270,8 @@ that variable's value is a string. ;;;*** -;;;### (autoloads nil "score-mode" "gnus/score-mode.el" (22150 28228 -;;;;;; 18072 702000)) +;;;### (autoloads nil "score-mode" "gnus/score-mode.el" (22330 59913 +;;;;;; 939323 538000)) ;;; Generated autoloads from gnus/score-mode.el (autoload 'gnus-score-mode "score-mode" "\ @@ -24288,8 +24284,8 @@ This mode is an extended emacs-lisp mode. ;;;*** -;;;### (autoloads nil "scroll-all" "scroll-all.el" (22150 28228 994072 -;;;;;; 702000)) +;;;### (autoloads nil "scroll-all" "scroll-all.el" (22330 59913 915323 +;;;;;; 612000)) ;;; Generated autoloads from scroll-all.el (defvar scroll-all-mode nil "\ @@ -24315,8 +24311,8 @@ one window apply to all visible windows in the same frame. ;;;*** -;;;### (autoloads nil "scroll-lock" "scroll-lock.el" (22150 28228 -;;;;;; 994072 702000)) +;;;### (autoloads nil "scroll-lock" "scroll-lock.el" (22330 59913 +;;;;;; 915323 612000)) ;;; Generated autoloads from scroll-lock.el (autoload 'scroll-lock-mode "scroll-lock" "\ @@ -24332,16 +24328,16 @@ vertically fixed relative to window boundaries during scrolling. ;;;*** -;;;### (autoloads nil "secrets" "net/secrets.el" (22150 28228 394072 -;;;;;; 702000)) +;;;### (autoloads nil "secrets" "net/secrets.el" (22330 59913 954323 +;;;;;; 492000)) ;;; Generated autoloads from net/secrets.el (when (featurep 'dbusbind) (autoload 'secrets-show-secrets "secrets" nil t)) ;;;*** -;;;### (autoloads nil "semantic" "cedet/semantic.el" (22150 28227 -;;;;;; 222072 702000)) +;;;### (autoloads nil "semantic" "cedet/semantic.el" (22330 59913 +;;;;;; 920323 597000)) ;;; Generated autoloads from cedet/semantic.el (push (purecopy '(semantic 2 2)) package--builtin-versions) @@ -24400,7 +24396,7 @@ Semantic mode. ;;;*** ;;;### (autoloads nil "semantic/bovine/grammar" "cedet/semantic/bovine/grammar.el" -;;;;;; (22150 28227 234072 702000)) +;;;;;; (22330 59913 922323 591000)) ;;; Generated autoloads from cedet/semantic/bovine/grammar.el (autoload 'bovine-grammar-mode "semantic/bovine/grammar" "\ @@ -24411,7 +24407,7 @@ Major mode for editing Bovine grammars. ;;;*** ;;;### (autoloads nil "semantic/wisent/grammar" "cedet/semantic/wisent/grammar.el" -;;;;;; (22150 28227 266072 702000)) +;;;;;; (22330 59913 923323 588000)) ;;; Generated autoloads from cedet/semantic/wisent/grammar.el (autoload 'wisent-grammar-mode "semantic/wisent/grammar" "\ @@ -24421,8 +24417,8 @@ Major mode for editing Wisent grammars. ;;;*** -;;;### (autoloads nil "sendmail" "mail/sendmail.el" (22224 36171 -;;;;;; 816467 383000)) +;;;### (autoloads nil "sendmail" "mail/sendmail.el" (22330 59913 +;;;;;; 948323 511000)) ;;; Generated autoloads from mail/sendmail.el (defvar mail-from-style 'default "\ @@ -24703,14 +24699,14 @@ Like `mail' command, but display mail buffer in another frame. ;;;*** -;;;### (autoloads nil "seq" "emacs-lisp/seq.el" (22278 49573 67090 -;;;;;; 835000)) +;;;### (autoloads nil "seq" "emacs-lisp/seq.el" (22331 17371 996369 +;;;;;; 608000)) ;;; Generated autoloads from emacs-lisp/seq.el (push (purecopy '(seq 2 3)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "server" "server.el" (22150 28228 998072 702000)) +;;;### (autoloads nil "server" "server.el" (22331 17372 105369 221000)) ;;; Generated autoloads from server.el (put 'server-host 'risky-local-variable t) @@ -24778,7 +24774,7 @@ only these files will be asked to be saved. ;;;*** -;;;### (autoloads nil "ses" "ses.el" (22342 56118 896613 383000)) +;;;### (autoloads nil "ses" "ses.el" (22363 8343 535348 689000)) ;;; Generated autoloads from ses.el (autoload 'ses-mode "ses" "\ @@ -24822,8 +24818,8 @@ formula: ;;;*** -;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (22150 -;;;;;; 28229 150072 702000)) +;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (22331 +;;;;;; 17372 117369 178000)) ;;; Generated autoloads from textmodes/sgml-mode.el (autoload 'sgml-mode "sgml-mode" "\ @@ -24888,8 +24884,8 @@ To work around that, do: ;;;*** -;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (22291 -;;;;;; 28851 657608 847000)) +;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (22331 +;;;;;; 17372 99369 242000)) ;;; Generated autoloads from progmodes/sh-script.el (push (purecopy '(sh-script 2 0 6)) package--builtin-versions) (put 'sh-shell 'safe-local-variable 'symbolp) @@ -24954,8 +24950,8 @@ with your script for an edit-interpret-debug cycle. ;;;*** -;;;### (autoloads nil "shadow" "emacs-lisp/shadow.el" (22150 28227 -;;;;;; 454072 702000)) +;;;### (autoloads nil "shadow" "emacs-lisp/shadow.el" (22330 59913 +;;;;;; 930323 566000)) ;;; Generated autoloads from emacs-lisp/shadow.el (autoload 'list-load-path-shadows "shadow" "\ @@ -25004,8 +25000,8 @@ function, `load-path-shadows-find'. ;;;*** -;;;### (autoloads nil "shadowfile" "shadowfile.el" (22150 28229 14072 -;;;;;; 702000)) +;;;### (autoloads nil "shadowfile" "shadowfile.el" (22330 59913 915323 +;;;;;; 612000)) ;;; Generated autoloads from shadowfile.el (autoload 'shadow-define-cluster "shadowfile" "\ @@ -25043,7 +25039,7 @@ Set up file shadowing. ;;;*** -;;;### (autoloads nil "shell" "shell.el" (22150 28229 14072 702000)) +;;;### (autoloads nil "shell" "shell.el" (22330 59913 915323 612000)) ;;; Generated autoloads from shell.el (defvar shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe") "\ @@ -25091,7 +25087,7 @@ Otherwise, one argument `-i' is passed to the shell. ;;;*** -;;;### (autoloads nil "shr" "net/shr.el" (22255 55369 13338 944000)) +;;;### (autoloads nil "shr" "net/shr.el" (22331 17372 60369 381000)) ;;; Generated autoloads from net/shr.el (autoload 'shr-render-region "shr" "\ @@ -25108,8 +25104,8 @@ DOM should be a parse tree as generated by ;;;*** -;;;### (autoloads nil "sieve" "gnus/sieve.el" (22150 28228 18072 -;;;;;; 702000)) +;;;### (autoloads nil "sieve" "gnus/sieve.el" (22331 17372 35369 +;;;;;; 469000)) ;;; Generated autoloads from gnus/sieve.el (autoload 'sieve-manage "sieve" "\ @@ -25134,8 +25130,8 @@ DOM should be a parse tree as generated by ;;;*** -;;;### (autoloads nil "sieve-mode" "gnus/sieve-mode.el" (22150 28228 -;;;;;; 18072 702000)) +;;;### (autoloads nil "sieve-mode" "gnus/sieve-mode.el" (22331 17372 +;;;;;; 35369 469000)) ;;; Generated autoloads from gnus/sieve-mode.el (autoload 'sieve-mode "sieve-mode" "\ @@ -25150,8 +25146,8 @@ Turning on Sieve mode runs `sieve-mode-hook'. ;;;*** -;;;### (autoloads nil "simula" "progmodes/simula.el" (22197 58438 -;;;;;; 563460 447000)) +;;;### (autoloads nil "simula" "progmodes/simula.el" (22330 59913 +;;;;;; 985323 396000)) ;;; Generated autoloads from progmodes/simula.el (autoload 'simula-mode "simula" "\ @@ -25199,8 +25195,8 @@ with no arguments, if that value is non-nil. ;;;*** -;;;### (autoloads nil "skeleton" "skeleton.el" (22197 58438 667460 -;;;;;; 447000)) +;;;### (autoloads nil "skeleton" "skeleton.el" (22330 59913 915323 +;;;;;; 612000)) ;;; Generated autoloads from skeleton.el (defvar skeleton-filter-function 'identity "\ @@ -25319,8 +25315,8 @@ twice for the others. ;;;*** -;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (22150 28229 -;;;;;; 286072 702000)) +;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (22331 17372 +;;;;;; 123369 157000)) ;;; Generated autoloads from vc/smerge-mode.el (autoload 'smerge-ediff "smerge-mode" "\ @@ -25347,8 +25343,8 @@ If no conflict maker is found, turn off `smerge-mode'. ;;;*** -;;;### (autoloads nil "smiley" "gnus/smiley.el" (22150 28228 18072 -;;;;;; 702000)) +;;;### (autoloads nil "smiley" "gnus/smiley.el" (22331 17372 36369 +;;;;;; 466000)) ;;; Generated autoloads from gnus/smiley.el (autoload 'smiley-region "smiley" "\ @@ -25365,8 +25361,8 @@ interactively. If there's no argument, do it at the current buffer. ;;;*** -;;;### (autoloads nil "smtpmail" "mail/smtpmail.el" (22150 28228 -;;;;;; 254072 702000)) +;;;### (autoloads nil "smtpmail" "mail/smtpmail.el" (22331 17372 +;;;;;; 53369 406000)) ;;; Generated autoloads from mail/smtpmail.el (autoload 'smtpmail-send-it "smtpmail" "\ @@ -25381,8 +25377,8 @@ Send mail that was queued as a result of setting `smtpmail-queue-mail'. ;;;*** -;;;### (autoloads nil "snake" "play/snake.el" (22150 28228 682072 -;;;;;; 702000)) +;;;### (autoloads nil "snake" "play/snake.el" (22331 17372 87369 +;;;;;; 285000)) ;;; Generated autoloads from play/snake.el (autoload 'snake "snake" "\ @@ -25405,8 +25401,8 @@ Snake mode keybindings: ;;;*** -;;;### (autoloads nil "snmp-mode" "net/snmp-mode.el" (22150 28228 -;;;;;; 402072 702000)) +;;;### (autoloads nil "snmp-mode" "net/snmp-mode.el" (22330 59913 +;;;;;; 954323 492000)) ;;; Generated autoloads from net/snmp-mode.el (autoload 'snmp-mode "snmp-mode" "\ @@ -25435,15 +25431,15 @@ then `snmpv2-mode-hook'. ;;;*** -;;;### (autoloads nil "soap-client" "net/soap-client.el" (22249 52871 -;;;;;; 284284 99000)) +;;;### (autoloads nil "soap-client" "net/soap-client.el" (22331 17372 +;;;;;; 61369 377000)) ;;; Generated autoloads from net/soap-client.el (push (purecopy '(soap-client 3 0 2)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "solar" "calendar/solar.el" (22284 55604 54845 -;;;;;; 171000)) +;;;### (autoloads nil "solar" "calendar/solar.el" (22331 17371 982369 +;;;;;; 658000)) ;;; Generated autoloads from calendar/solar.el (autoload 'sunrise-sunset "solar" "\ @@ -25458,8 +25454,8 @@ This function is suitable for execution in an init file. ;;;*** -;;;### (autoloads nil "solitaire" "play/solitaire.el" (22150 28228 -;;;;;; 682072 702000)) +;;;### (autoloads nil "solitaire" "play/solitaire.el" (22330 59913 +;;;;;; 970323 443000)) ;;; Generated autoloads from play/solitaire.el (autoload 'solitaire "solitaire" "\ @@ -25534,7 +25530,7 @@ Pick your favorite shortcuts: ;;;*** -;;;### (autoloads nil "sort" "sort.el" (22150 28229 18072 702000)) +;;;### (autoloads nil "sort" "sort.el" (22330 59913 915323 612000)) ;;; Generated autoloads from sort.el (put 'sort-fold-case 'safe-local-variable 'booleanp) @@ -25709,7 +25705,7 @@ is non-nil, it also prints a message describing the number of deletions. ;;;*** -;;;### (autoloads nil "spam" "gnus/spam.el" (22150 28228 22072 702000)) +;;;### (autoloads nil "spam" "gnus/spam.el" (22331 17372 36369 466000)) ;;; Generated autoloads from gnus/spam.el (autoload 'spam-initialize "spam" "\ @@ -25723,8 +25719,8 @@ installed through `spam-necessary-extra-headers'. ;;;*** -;;;### (autoloads nil "spam-report" "gnus/spam-report.el" (22150 -;;;;;; 28228 22072 702000)) +;;;### (autoloads nil "spam-report" "gnus/spam-report.el" (22331 +;;;;;; 17372 36369 466000)) ;;; Generated autoloads from gnus/spam-report.el (autoload 'spam-report-process-queue "spam-report" "\ @@ -25766,8 +25762,8 @@ Spam reports will be queued with the method used when ;;;*** -;;;### (autoloads nil "speedbar" "speedbar.el" (22189 64323 312321 -;;;;;; 19000)) +;;;### (autoloads nil "speedbar" "speedbar.el" (22330 59913 915323 +;;;;;; 612000)) ;;; Generated autoloads from speedbar.el (defalias 'speedbar 'speedbar-frame-mode) @@ -25791,8 +25787,8 @@ selected. If the speedbar frame is active, then select the attached frame. ;;;*** -;;;### (autoloads nil "spook" "play/spook.el" (22150 28228 682072 -;;;;;; 702000)) +;;;### (autoloads nil "spook" "play/spook.el" (22330 59913 970323 +;;;;;; 443000)) ;;; Generated autoloads from play/spook.el (autoload 'spook "spook" "\ @@ -25807,8 +25803,8 @@ Return a vector containing the lines from `spook-phrases-file'. ;;;*** -;;;### (autoloads nil "sql" "progmodes/sql.el" (22203 10834 812791 -;;;;;; 123000)) +;;;### (autoloads nil "sql" "progmodes/sql.el" (22331 17372 100369 +;;;;;; 239000)) ;;; Generated autoloads from progmodes/sql.el (push (purecopy '(sql 3 5)) package--builtin-versions) @@ -26274,15 +26270,15 @@ Run vsql as an inferior process. ;;;*** -;;;### (autoloads nil "srecode" "cedet/srecode.el" (22150 28227 270072 -;;;;;; 702000)) +;;;### (autoloads nil "srecode" "cedet/srecode.el" (22330 59913 920323 +;;;;;; 597000)) ;;; Generated autoloads from cedet/srecode.el (push (purecopy '(srecode 1 2)) package--builtin-versions) ;;;*** ;;;### (autoloads nil "srecode/srt-mode" "cedet/srecode/srt-mode.el" -;;;;;; (22150 28227 274072 702000)) +;;;;;; (22330 59913 926323 578000)) ;;; Generated autoloads from cedet/srecode/srt-mode.el (autoload 'srecode-template-mode "srecode/srt-mode" "\ @@ -26294,8 +26290,8 @@ Major-mode for writing SRecode macros. ;;;*** -;;;### (autoloads nil "starttls" "gnus/starttls.el" (22150 28228 -;;;;;; 22072 702000)) +;;;### (autoloads nil "starttls" "gnus/starttls.el" (22331 17372 +;;;;;; 36369 466000)) ;;; Generated autoloads from gnus/starttls.el (autoload 'starttls-open-stream "starttls" "\ @@ -26318,7 +26314,8 @@ GnuTLS requires a port number. ;;;*** -;;;### (autoloads nil "strokes" "strokes.el" (22182 4679 511463 499000)) +;;;### (autoloads nil "strokes" "strokes.el" (22330 59913 915323 +;;;;;; 612000)) ;;; Generated autoloads from strokes.el (autoload 'strokes-global-set-stroke "strokes" "\ @@ -26432,8 +26429,8 @@ Read a complex stroke and insert its glyph into the current buffer. ;;;*** -;;;### (autoloads nil "studly" "play/studly.el" (22279 37684 392180 -;;;;;; 436000)) +;;;### (autoloads nil "studly" "play/studly.el" (22330 59913 969323 +;;;;;; 446000)) ;;; Generated autoloads from play/studly.el (autoload 'studlify-region "studly" "\ @@ -26453,8 +26450,8 @@ Studlify-case the current buffer. ;;;*** -;;;### (autoloads nil "subword" "progmodes/subword.el" (22150 28228 -;;;;;; 930072 702000)) +;;;### (autoloads nil "subword" "progmodes/subword.el" (22330 59913 +;;;;;; 985323 396000)) ;;; Generated autoloads from progmodes/subword.el (define-obsolete-function-alias 'capitalized-words-mode 'subword-mode "25.1") @@ -26548,8 +26545,8 @@ See `superword-mode' for more information on Superword mode. ;;;*** -;;;### (autoloads nil "supercite" "mail/supercite.el" (22150 28228 -;;;;;; 254072 702000)) +;;;### (autoloads nil "supercite" "mail/supercite.el" (22330 59913 +;;;;;; 948323 511000)) ;;; Generated autoloads from mail/supercite.el (autoload 'sc-cite-original "supercite" "\ @@ -26581,8 +26578,8 @@ and `sc-post-hook' is run after the guts of this function. ;;;*** -;;;### (autoloads nil "t-mouse" "t-mouse.el" (22204 31687 849113 -;;;;;; 480000)) +;;;### (autoloads nil "t-mouse" "t-mouse.el" (22330 59913 915323 +;;;;;; 612000)) ;;; Generated autoloads from t-mouse.el (define-obsolete-function-alias 't-mouse-mode 'gpm-mouse-mode "23.1") @@ -26615,7 +26612,7 @@ GPM. This is due to limitations in GPM and the Linux kernel. ;;;*** -;;;### (autoloads nil "tabify" "tabify.el" (22150 28229 26072 702000)) +;;;### (autoloads nil "tabify" "tabify.el" (22330 59913 915323 612000)) ;;; Generated autoloads from tabify.el (autoload 'untabify "tabify" "\ @@ -26644,8 +26641,8 @@ The variable `tab-width' controls the spacing of tab stops. ;;;*** -;;;### (autoloads nil "table" "textmodes/table.el" (22186 51800 574004 -;;;;;; 628000)) +;;;### (autoloads nil "table" "textmodes/table.el" (22331 17372 118369 +;;;;;; 175000)) ;;; Generated autoloads from textmodes/table.el (autoload 'table-insert "table" "\ @@ -27216,7 +27213,7 @@ converts a table into plain text without frames. It is a companion to ;;;*** -;;;### (autoloads nil "talk" "talk.el" (22150 28229 26072 702000)) +;;;### (autoloads nil "talk" "talk.el" (22330 59913 915323 612000)) ;;; Generated autoloads from talk.el (autoload 'talk-connect "talk" "\ @@ -27231,8 +27228,8 @@ Connect to the Emacs talk group from the current X display or tty frame. ;;;*** -;;;### (autoloads nil "tar-mode" "tar-mode.el" (22150 28229 26072 -;;;;;; 702000)) +;;;### (autoloads nil "tar-mode" "tar-mode.el" (22330 59913 915323 +;;;;;; 612000)) ;;; Generated autoloads from tar-mode.el (autoload 'tar-mode "tar-mode" "\ @@ -27255,8 +27252,8 @@ See also: variables `tar-update-datestamp' and `tar-anal-blocksize'. ;;;*** -;;;### (autoloads nil "tcl" "progmodes/tcl.el" (22150 28228 934072 -;;;;;; 702000)) +;;;### (autoloads nil "tcl" "progmodes/tcl.el" (22330 59913 985323 +;;;;;; 396000)) ;;; Generated autoloads from progmodes/tcl.el (autoload 'tcl-mode "tcl" "\ @@ -27304,8 +27301,8 @@ Prefix argument means invert sense of `tcl-use-smart-word-finder'. ;;;*** -;;;### (autoloads nil "telnet" "net/telnet.el" (22150 28228 406072 -;;;;;; 702000)) +;;;### (autoloads nil "telnet" "net/telnet.el" (22330 59913 954323 +;;;;;; 492000)) ;;; Generated autoloads from net/telnet.el (autoload 'telnet "telnet" "\ @@ -27330,7 +27327,7 @@ Normally input is edited in Emacs and sent a line at a time. ;;;*** -;;;### (autoloads nil "term" "term.el" (22305 18655 603719 883000)) +;;;### (autoloads nil "term" "term.el" (22331 17372 109369 207000)) ;;; Generated autoloads from term.el (autoload 'make-term "term" "\ @@ -27372,8 +27369,8 @@ use in that buffer. ;;;*** -;;;### (autoloads nil "testcover" "emacs-lisp/testcover.el" (22150 -;;;;;; 28227 458072 702000)) +;;;### (autoloads nil "testcover" "emacs-lisp/testcover.el" (22330 +;;;;;; 59913 930323 566000)) ;;; Generated autoloads from emacs-lisp/testcover.el (autoload 'testcover-this-defun "testcover" "\ @@ -27383,8 +27380,8 @@ Start coverage on function under point. ;;;*** -;;;### (autoloads nil "tetris" "play/tetris.el" (22189 64323 280321 -;;;;;; 19000)) +;;;### (autoloads nil "tetris" "play/tetris.el" (22330 59913 970323 +;;;;;; 443000)) ;;; Generated autoloads from play/tetris.el (push (purecopy '(tetris 2 1)) package--builtin-versions) @@ -27409,8 +27406,8 @@ tetris-mode keybindings: ;;;*** -;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (22197 58438 -;;;;;; 727460 447000)) +;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (22331 17372 +;;;;;; 119369 171000)) ;;; Generated autoloads from textmodes/tex-mode.el (defvar tex-shell-file-name nil "\ @@ -27711,8 +27708,8 @@ Major mode to edit DocTeX files. ;;;*** -;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (22197 58438 -;;;;;; 759460 447000)) +;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (22330 59913 +;;;;;; 991323 378000)) ;;; Generated autoloads from textmodes/texinfmt.el (autoload 'texinfo-format-buffer "texinfmt" "\ @@ -27751,8 +27748,8 @@ if large. You can use `Info-split' to do this manually. ;;;*** -;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (22197 58438 -;;;;;; 759460 447000)) +;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (22331 17372 +;;;;;; 119369 171000)) ;;; Generated autoloads from textmodes/texinfo.el (defvar texinfo-open-quote (purecopy "``") "\ @@ -27836,8 +27833,8 @@ value of `texinfo-mode-hook'. ;;;*** -;;;### (autoloads nil "thai-util" "language/thai-util.el" (22150 -;;;;;; 28228 198072 702000)) +;;;### (autoloads nil "thai-util" "language/thai-util.el" (22330 +;;;;;; 59913 941323 532000)) ;;; Generated autoloads from language/thai-util.el (autoload 'thai-compose-region "thai-util" "\ @@ -27864,8 +27861,8 @@ Compose Thai characters in the current buffer. ;;;*** -;;;### (autoloads nil "thingatpt" "thingatpt.el" (22225 37858 570976 -;;;;;; 240000)) +;;;### (autoloads nil "thingatpt" "thingatpt.el" (22331 17372 120369 +;;;;;; 168000)) ;;; Generated autoloads from thingatpt.el (autoload 'forward-thing "thingatpt" "\ @@ -27929,7 +27926,7 @@ Return the Lisp list at point, or nil if none is found. ;;;*** -;;;### (autoloads nil "thumbs" "thumbs.el" (22150 28229 198072 702000)) +;;;### (autoloads nil "thumbs" "thumbs.el" (22330 59913 915323 612000)) ;;; Generated autoloads from thumbs.el (autoload 'thumbs-find-thumb "thumbs" "\ @@ -27963,15 +27960,15 @@ In dired, call the setroot program on the image at point. ;;;*** -;;;### (autoloads nil "thunk" "emacs-lisp/thunk.el" (22150 28227 -;;;;;; 458072 702000)) +;;;### (autoloads nil "thunk" "emacs-lisp/thunk.el" (22330 59913 +;;;;;; 931323 563000)) ;;; Generated autoloads from emacs-lisp/thunk.el (push (purecopy '(thunk 1 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "tibet-util" "language/tibet-util.el" (22150 -;;;;;; 28228 198072 702000)) +;;;### (autoloads nil "tibet-util" "language/tibet-util.el" (22330 +;;;;;; 59913 941323 532000)) ;;; Generated autoloads from language/tibet-util.el (autoload 'tibetan-char-p "tibet-util" "\ @@ -28044,8 +28041,8 @@ See also docstring of the function tibetan-compose-region. ;;;*** -;;;### (autoloads nil "tildify" "textmodes/tildify.el" (22165 43181 -;;;;;; 139854 955000)) +;;;### (autoloads nil "tildify" "textmodes/tildify.el" (22330 59913 +;;;;;; 991323 378000)) ;;; Generated autoloads from textmodes/tildify.el (push (purecopy '(tildify 4 6 1)) package--builtin-versions) @@ -28111,7 +28108,7 @@ variable will be set to the representation. ;;;*** -;;;### (autoloads nil "time" "time.el" (22311 14139 302375 715000)) +;;;### (autoloads nil "time" "time.el" (22330 59913 743324 144000)) ;;; Generated autoloads from time.el (defvar display-time-day-and-date nil "\ @@ -28174,8 +28171,8 @@ Return a string giving the duration of the Emacs initialization. ;;;*** -;;;### (autoloads nil "time-date" "calendar/time-date.el" (22150 -;;;;;; 28227 82072 702000)) +;;;### (autoloads nil "time-date" "calendar/time-date.el" (22331 +;;;;;; 17371 982369 658000)) ;;; Generated autoloads from calendar/time-date.el (autoload 'date-to-time "time-date" "\ @@ -28278,8 +28275,8 @@ Convert the time interval in seconds to a short string. ;;;*** -;;;### (autoloads nil "time-stamp" "time-stamp.el" (22212 25823 511089 -;;;;;; 159000)) +;;;### (autoloads nil "time-stamp" "time-stamp.el" (22331 17372 120369 +;;;;;; 168000)) ;;; 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) @@ -28319,8 +28316,8 @@ With ARG, turn time stamping on if and only if arg is positive. ;;;*** -;;;### (autoloads nil "timeclock" "calendar/timeclock.el" (22150 -;;;;;; 28227 82072 702000)) +;;;### (autoloads nil "timeclock" "calendar/timeclock.el" (22331 +;;;;;; 17371 983369 654000)) ;;; Generated autoloads from calendar/timeclock.el (push (purecopy '(timeclock 2 6 1)) package--builtin-versions) @@ -28431,7 +28428,7 @@ relative only to the time worked today, and not to past time. ;;;*** ;;;### (autoloads nil "titdic-cnv" "international/titdic-cnv.el" -;;;;;; (22150 28228 134072 702000)) +;;;;;; (22330 59913 940323 535000)) ;;; Generated autoloads from international/titdic-cnv.el (autoload 'titdic-convert "titdic-cnv" "\ @@ -28453,7 +28450,7 @@ To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\". ;;;*** -;;;### (autoloads nil "tmm" "tmm.el" (22295 25908 202516 451000)) +;;;### (autoloads nil "tmm" "tmm.el" (22330 59913 743324 144000)) ;;; Generated autoloads from tmm.el (define-key global-map "\M-`" 'tmm-menubar) (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse) @@ -28495,8 +28492,8 @@ Its value should be an event that has a binding in MENU. ;;;*** -;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (22315 -;;;;;; 11204 757560 191000)) +;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (22330 +;;;;;; 59913 919323 600000)) ;;; Generated autoloads from calendar/todo-mode.el (autoload 'todo-show "todo-mode" "\ @@ -28561,8 +28558,8 @@ Mode for displaying and reprioritizing top priority Todo. ;;;*** -;;;### (autoloads nil "tool-bar" "tool-bar.el" (22150 28229 202072 -;;;;;; 702000)) +;;;### (autoloads nil "tool-bar" "tool-bar.el" (22330 59913 915323 +;;;;;; 612000)) ;;; Generated autoloads from tool-bar.el (autoload 'toggle-tool-bar-mode-from-frame "tool-bar" "\ @@ -28632,8 +28629,8 @@ holds a keymap. ;;;*** -;;;### (autoloads nil "tq" "emacs-lisp/tq.el" (22150 28227 458072 -;;;;;; 702000)) +;;;### (autoloads nil "tq" "emacs-lisp/tq.el" (22330 59913 931323 +;;;;;; 563000)) ;;; Generated autoloads from emacs-lisp/tq.el (autoload 'tq-create "tq" "\ @@ -28646,8 +28643,8 @@ to a tcp server on another machine. ;;;*** -;;;### (autoloads nil "trace" "emacs-lisp/trace.el" (22150 28227 -;;;;;; 458072 702000)) +;;;### (autoloads nil "trace" "emacs-lisp/trace.el" (22330 59913 +;;;;;; 931323 563000)) ;;; Generated autoloads from emacs-lisp/trace.el (defvar trace-buffer "*trace-output*" "\ @@ -28692,8 +28689,7 @@ the output buffer or changing the window configuration. ;;;*** -;;;### (autoloads nil "tramp" "net/tramp.el" (22272 64438 268671 -;;;;;; 103000)) +;;;### (autoloads nil "tramp" "net/tramp.el" (22331 17372 65369 363000)) ;;; Generated autoloads from net/tramp.el (defvar tramp-mode t "\ @@ -28808,8 +28804,8 @@ Discard Tramp from loading remote files. ;;;*** -;;;### (autoloads nil "tramp-ftp" "net/tramp-ftp.el" (22150 28228 -;;;;;; 410072 702000)) +;;;### (autoloads nil "tramp-ftp" "net/tramp-ftp.el" (22331 17372 +;;;;;; 61369 377000)) ;;; Generated autoloads from net/tramp-ftp.el (autoload 'tramp-ftp-enable-ange-ftp "tramp-ftp" "\ @@ -28819,15 +28815,15 @@ Discard Tramp from loading remote files. ;;;*** -;;;### (autoloads nil "trampver" "net/trampver.el" (22150 28228 442072 -;;;;;; 702000)) +;;;### (autoloads nil "trampver" "net/trampver.el" (22331 17372 65369 +;;;;;; 363000)) ;;; Generated autoloads from net/trampver.el (push (purecopy '(tramp 2 2 13 25 1)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "tutorial" "tutorial.el" (22150 28229 206072 -;;;;;; 702000)) +;;;### (autoloads nil "tutorial" "tutorial.el" (22330 59913 915323 +;;;;;; 612000)) ;;; Generated autoloads from tutorial.el (autoload 'help-with-tutorial "tutorial" "\ @@ -28851,8 +28847,8 @@ resumed later. ;;;*** -;;;### (autoloads nil "tv-util" "language/tv-util.el" (22086 11929 -;;;;;; 906062 731000)) +;;;### (autoloads nil "tv-util" "language/tv-util.el" (22330 59913 +;;;;;; 941323 532000)) ;;; Generated autoloads from language/tv-util.el (autoload 'tai-viet-composition-function "tv-util" "\ @@ -28862,8 +28858,8 @@ resumed later. ;;;*** -;;;### (autoloads nil "two-column" "textmodes/two-column.el" (22150 -;;;;;; 28229 198072 702000)) +;;;### (autoloads nil "two-column" "textmodes/two-column.el" (22330 +;;;;;; 59913 991323 378000)) ;;; Generated autoloads from textmodes/two-column.el (autoload '2C-command "two-column" () t 'keymap) (global-set-key "\C-x6" '2C-command) @@ -28910,8 +28906,8 @@ First column's text sSs Second column's text ;;;*** -;;;### (autoloads nil "type-break" "type-break.el" (22189 64323 316321 -;;;;;; 19000)) +;;;### (autoloads nil "type-break" "type-break.el" (22330 59913 915323 +;;;;;; 612000)) ;;; Generated autoloads from type-break.el (defvar type-break-mode nil "\ @@ -29044,7 +29040,7 @@ FRAC should be the inverse of the fractional value; for example, a value of ;;;*** -;;;### (autoloads nil "uce" "mail/uce.el" (22150 28228 258072 702000)) +;;;### (autoloads nil "uce" "mail/uce.el" (22330 59913 948323 511000)) ;;; Generated autoloads from mail/uce.el (autoload 'uce-reply-to-uce "uce" "\ @@ -29058,7 +29054,7 @@ You might need to set `uce-mail-reader' before using this. ;;;*** ;;;### (autoloads nil "ucs-normalize" "international/ucs-normalize.el" -;;;;;; (22150 28228 134072 702000)) +;;;;;; (22330 59913 940323 535000)) ;;; Generated autoloads from international/ucs-normalize.el (autoload 'ucs-normalize-NFD-region "ucs-normalize" "\ @@ -29123,8 +29119,8 @@ Normalize the string STR by the Unicode NFC and Mac OS's HFS Plus. ;;;*** -;;;### (autoloads nil "underline" "textmodes/underline.el" (22150 -;;;;;; 28229 198072 702000)) +;;;### (autoloads nil "underline" "textmodes/underline.el" (22330 +;;;;;; 59913 991323 378000)) ;;; Generated autoloads from textmodes/underline.el (autoload 'underline-region "underline" "\ @@ -29144,8 +29140,8 @@ which specify the range to operate on. ;;;*** -;;;### (autoloads nil "unrmail" "mail/unrmail.el" (22150 28228 258072 -;;;;;; 702000)) +;;;### (autoloads nil "unrmail" "mail/unrmail.el" (22330 59913 948323 +;;;;;; 511000)) ;;; Generated autoloads from mail/unrmail.el (autoload 'batch-unrmail "unrmail" "\ @@ -29165,8 +29161,8 @@ The variable `unrmail-mbox-format' controls which mbox format to use. ;;;*** -;;;### (autoloads nil "unsafep" "emacs-lisp/unsafep.el" (22150 28227 -;;;;;; 458072 702000)) +;;;### (autoloads nil "unsafep" "emacs-lisp/unsafep.el" (22330 59913 +;;;;;; 931323 563000)) ;;; Generated autoloads from emacs-lisp/unsafep.el (autoload 'unsafep "unsafep" "\ @@ -29178,7 +29174,7 @@ UNSAFEP-VARS is a list of symbols with local bindings. ;;;*** -;;;### (autoloads nil "url" "url/url.el" (22311 14139 302375 715000)) +;;;### (autoloads nil "url" "url/url.el" (22331 17372 121369 164000)) ;;; Generated autoloads from url/url.el (autoload 'url-retrieve "url" "\ @@ -29228,8 +29224,8 @@ to the server. ;;;*** -;;;### (autoloads nil "url-auth" "url/url-auth.el" (22150 28229 210072 -;;;;;; 702000)) +;;;### (autoloads nil "url-auth" "url/url-auth.el" (22330 59913 992323 +;;;;;; 375000)) ;;; Generated autoloads from url/url-auth.el (autoload 'url-get-authentication "url-auth" "\ @@ -29270,8 +29266,8 @@ RATING a rating between 1 and 10 of the strength of the authentication. ;;;*** -;;;### (autoloads nil "url-cache" "url/url-cache.el" (22150 28229 -;;;;;; 210072 702000)) +;;;### (autoloads nil "url-cache" "url/url-cache.el" (22330 59913 +;;;;;; 992323 375000)) ;;; Generated autoloads from url/url-cache.el (autoload 'url-store-in-cache "url-cache" "\ @@ -29292,8 +29288,8 @@ Extract FNAM from the local disk cache. ;;;*** -;;;### (autoloads nil "url-cid" "url/url-cid.el" (22150 28229 210072 -;;;;;; 702000)) +;;;### (autoloads nil "url-cid" "url/url-cid.el" (22330 59913 992323 +;;;;;; 375000)) ;;; Generated autoloads from url/url-cid.el (autoload 'url-cid "url-cid" "\ @@ -29303,8 +29299,8 @@ Extract FNAM from the local disk cache. ;;;*** -;;;### (autoloads nil "url-dav" "url/url-dav.el" (22150 28229 214072 -;;;;;; 702000)) +;;;### (autoloads nil "url-dav" "url/url-dav.el" (22330 59913 992323 +;;;;;; 375000)) ;;; Generated autoloads from url/url-dav.el (autoload 'url-dav-supported-p "url-dav" "\ @@ -29338,8 +29334,8 @@ added to this list, so most requests can just pass in nil. ;;;*** -;;;### (autoloads nil "url-file" "url/url-file.el" (22150 28229 214072 -;;;;;; 702000)) +;;;### (autoloads nil "url-file" "url/url-file.el" (22330 59913 992323 +;;;;;; 375000)) ;;; Generated autoloads from url/url-file.el (autoload 'url-file "url-file" "\ @@ -29349,8 +29345,8 @@ Handle file: and ftp: URLs. ;;;*** -;;;### (autoloads nil "url-gw" "url/url-gw.el" (22150 28229 218072 -;;;;;; 702000)) +;;;### (autoloads nil "url-gw" "url/url-gw.el" (22331 17372 120369 +;;;;;; 168000)) ;;; Generated autoloads from url/url-gw.el (autoload 'url-gateway-nslookup-host "url-gw" "\ @@ -29371,8 +29367,8 @@ overriding the value of `url-gateway-method'. ;;;*** -;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (22150 -;;;;;; 28229 218072 702000)) +;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (22331 +;;;;;; 17372 120369 168000)) ;;; Generated autoloads from url/url-handlers.el (defvar url-handler-mode nil "\ @@ -29434,8 +29430,8 @@ if it had been inserted from a file named URL. ;;;*** -;;;### (autoloads nil "url-http" "url/url-http.el" (22229 34898 908051 -;;;;;; 395000)) +;;;### (autoloads nil "url-http" "url/url-http.el" (22331 17372 121369 +;;;;;; 164000)) ;;; Generated autoloads from url/url-http.el (autoload 'url-default-expander "url-expand") @@ -29447,8 +29443,8 @@ if it had been inserted from a file named URL. ;;;*** -;;;### (autoloads nil "url-irc" "url/url-irc.el" (22150 28229 222072 -;;;;;; 702000)) +;;;### (autoloads nil "url-irc" "url/url-irc.el" (22330 59913 992323 +;;;;;; 375000)) ;;; Generated autoloads from url/url-irc.el (autoload 'url-irc "url-irc" "\ @@ -29458,8 +29454,8 @@ if it had been inserted from a file named URL. ;;;*** -;;;### (autoloads nil "url-ldap" "url/url-ldap.el" (22150 28229 222072 -;;;;;; 702000)) +;;;### (autoloads nil "url-ldap" "url/url-ldap.el" (22330 59913 992323 +;;;;;; 375000)) ;;; Generated autoloads from url/url-ldap.el (autoload 'url-ldap "url-ldap" "\ @@ -29472,8 +29468,8 @@ URL can be a URL string, or a URL vector of the type returned by ;;;*** -;;;### (autoloads nil "url-mailto" "url/url-mailto.el" (22150 28229 -;;;;;; 222072 702000)) +;;;### (autoloads nil "url-mailto" "url/url-mailto.el" (22330 59913 +;;;;;; 992323 375000)) ;;; Generated autoloads from url/url-mailto.el (autoload 'url-mail "url-mailto" "\ @@ -29488,8 +29484,8 @@ Handle the mailto: URL syntax. ;;;*** -;;;### (autoloads nil "url-misc" "url/url-misc.el" (22150 28229 222072 -;;;;;; 702000)) +;;;### (autoloads nil "url-misc" "url/url-misc.el" (22330 59913 992323 +;;;;;; 375000)) ;;; Generated autoloads from url/url-misc.el (autoload 'url-man "url-misc" "\ @@ -29520,8 +29516,8 @@ Fetch a data URL (RFC 2397). ;;;*** -;;;### (autoloads nil "url-news" "url/url-news.el" (22150 28229 222072 -;;;;;; 702000)) +;;;### (autoloads nil "url-news" "url/url-news.el" (22330 59913 992323 +;;;;;; 375000)) ;;; Generated autoloads from url/url-news.el (autoload 'url-news "url-news" "\ @@ -29536,8 +29532,8 @@ Fetch a data URL (RFC 2397). ;;;*** -;;;### (autoloads nil "url-ns" "url/url-ns.el" (22150 28229 222072 -;;;;;; 702000)) +;;;### (autoloads nil "url-ns" "url/url-ns.el" (22330 59913 992323 +;;;;;; 375000)) ;;; Generated autoloads from url/url-ns.el (autoload 'isPlainHostName "url-ns" "\ @@ -29577,8 +29573,8 @@ Fetch a data URL (RFC 2397). ;;;*** -;;;### (autoloads nil "url-parse" "url/url-parse.el" (22150 28229 -;;;;;; 222072 702000)) +;;;### (autoloads nil "url-parse" "url/url-parse.el" (22330 59913 +;;;;;; 992323 375000)) ;;; Generated autoloads from url/url-parse.el (autoload 'url-recreate-url "url-parse" "\ @@ -29629,8 +29625,8 @@ parses to ;;;*** -;;;### (autoloads nil "url-privacy" "url/url-privacy.el" (22150 28229 -;;;;;; 222072 702000)) +;;;### (autoloads nil "url-privacy" "url/url-privacy.el" (22330 59913 +;;;;;; 992323 375000)) ;;; Generated autoloads from url/url-privacy.el (autoload 'url-setup-privacy-info "url-privacy" "\ @@ -29640,8 +29636,8 @@ Setup variables that expose info about you and your system. ;;;*** -;;;### (autoloads nil "url-queue" "url/url-queue.el" (22150 28229 -;;;;;; 226072 702000)) +;;;### (autoloads nil "url-queue" "url/url-queue.el" (22331 17372 +;;;;;; 121369 164000)) ;;; Generated autoloads from url/url-queue.el (autoload 'url-queue-retrieve "url-queue" "\ @@ -29655,8 +29651,8 @@ The variable `url-queue-timeout' sets a timeout. ;;;*** -;;;### (autoloads nil "url-tramp" "url/url-tramp.el" (22165 43181 -;;;;;; 143854 955000)) +;;;### (autoloads nil "url-tramp" "url/url-tramp.el" (22330 59913 +;;;;;; 992323 375000)) ;;; Generated autoloads from url/url-tramp.el (defvar url-tramp-protocols '("ftp" "ssh" "scp" "rsync" "telnet") "\ @@ -29674,8 +29670,8 @@ would have been passed to OPERATION. ;;;*** -;;;### (autoloads nil "url-util" "url/url-util.el" (22150 28229 234072 -;;;;;; 702000)) +;;;### (autoloads nil "url-util" "url/url-util.el" (22331 17372 121369 +;;;;;; 164000)) ;;; Generated autoloads from url/url-util.el (defvar url-debug nil "\ @@ -29843,8 +29839,8 @@ This uses `url-current-object', set locally to the buffer. ;;;*** -;;;### (autoloads nil "userlock" "userlock.el" (22150 28229 234072 -;;;;;; 702000)) +;;;### (autoloads nil "userlock" "userlock.el" (22330 59913 915323 +;;;;;; 612000)) ;;; Generated autoloads from userlock.el (autoload 'ask-user-about-lock "userlock" "\ @@ -29872,8 +29868,8 @@ The buffer in question is current when this function is called. ;;;*** -;;;### (autoloads nil "utf-7" "international/utf-7.el" (22150 28228 -;;;;;; 134072 702000)) +;;;### (autoloads nil "utf-7" "international/utf-7.el" (22330 59913 +;;;;;; 940323 535000)) ;;; Generated autoloads from international/utf-7.el (autoload 'utf-7-post-read-conversion "utf-7" "\ @@ -29898,7 +29894,7 @@ The buffer in question is current when this function is called. ;;;*** -;;;### (autoloads nil "utf7" "gnus/utf7.el" (22150 28228 26072 702000)) +;;;### (autoloads nil "utf7" "gnus/utf7.el" (22331 17372 37369 462000)) ;;; Generated autoloads from gnus/utf7.el (autoload 'utf7-encode "utf7" "\ @@ -29908,8 +29904,8 @@ Encode UTF-7 STRING. Use IMAP modification if FOR-IMAP is non-nil. ;;;*** -;;;### (autoloads nil "uudecode" "mail/uudecode.el" (22150 28228 -;;;;;; 258072 702000)) +;;;### (autoloads nil "uudecode" "mail/uudecode.el" (22330 59913 +;;;;;; 948323 511000)) ;;; Generated autoloads from mail/uudecode.el (autoload 'uudecode-decode-region-external "uudecode" "\ @@ -29933,7 +29929,7 @@ If FILE-NAME is non-nil, save the result to FILE-NAME. ;;;*** -;;;### (autoloads nil "vc" "vc/vc.el" (22341 35254 403552 371000)) +;;;### (autoloads nil "vc" "vc/vc.el" (22363 8343 539348 674000)) ;;; Generated autoloads from vc/vc.el (defvar vc-checkout-hook nil "\ @@ -30249,8 +30245,8 @@ Return the branch part of a revision number REV. ;;;*** -;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (22271 43574 -;;;;;; 247751 139000)) +;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (22330 59914 +;;;;;; 13323 310000)) ;;; Generated autoloads from vc/vc-annotate.el (autoload 'vc-annotate "vc-annotate" "\ @@ -30289,8 +30285,8 @@ should be applied to the background or to the foreground. ;;;*** -;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (22150 28229 290072 -;;;;;; 702000)) +;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (22331 17372 123369 +;;;;;; 157000)) ;;; Generated autoloads from vc/vc-bzr.el (defconst vc-bzr-admin-dirname ".bzr" "\ @@ -30306,8 +30302,8 @@ Name of the format file in a .bzr directory.") ;;;*** -;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (22341 35254 355552 -;;;;;; 371000)) +;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (22363 8343 539348 +;;;;;; 674000)) ;;; Generated autoloads from vc/vc-cvs.el (defun vc-cvs-registered (f) "Return non-nil if file F is registered with CVS." @@ -30318,8 +30314,8 @@ Name of the format file in a .bzr directory.") ;;;*** -;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (22150 28229 294072 -;;;;;; 702000)) +;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (22330 59914 13323 +;;;;;; 310000)) ;;; Generated autoloads from vc/vc-dir.el (autoload 'vc-dir "vc-dir" "\ @@ -30343,8 +30339,8 @@ These are the commands available for use in the file status buffer: ;;;*** -;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (22150 -;;;;;; 28229 294072 702000)) +;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (22331 +;;;;;; 17372 124369 153000)) ;;; Generated autoloads from vc/vc-dispatcher.el (autoload 'vc-do-command "vc-dispatcher" "\ @@ -30367,8 +30363,8 @@ case, and the process object in the asynchronous case. ;;;*** -;;;### (autoloads nil "vc-git" "vc/vc-git.el" (22305 18655 607719 -;;;;;; 883000)) +;;;### (autoloads nil "vc-git" "vc/vc-git.el" (22331 17372 124369 +;;;;;; 153000)) ;;; Generated autoloads from vc/vc-git.el (defun vc-git-registered (file) "Return non-nil if FILE is registered with git." @@ -30379,7 +30375,7 @@ case, and the process object in the asynchronous case. ;;;*** -;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (22188 43494 205543 203000)) +;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (22331 17372 124369 153000)) ;;; Generated autoloads from vc/vc-hg.el (defun vc-hg-registered (file) "Return non-nil if FILE is registered with hg." @@ -30390,8 +30386,8 @@ case, and the process object in the asynchronous case. ;;;*** -;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (22188 43494 205543 -;;;;;; 203000)) +;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (22330 59914 13323 +;;;;;; 310000)) ;;; Generated autoloads from vc/vc-mtn.el (defconst vc-mtn-admin-dir "_MTN" "\ @@ -30407,8 +30403,8 @@ Name of the monotone directory's format file.") ;;;*** -;;;### (autoloads nil "vc-rcs" "vc/vc-rcs.el" (22150 28229 302072 -;;;;;; 702000)) +;;;### (autoloads nil "vc-rcs" "vc/vc-rcs.el" (22331 17372 125369 +;;;;;; 150000)) ;;; Generated autoloads from vc/vc-rcs.el (defvar vc-rcs-master-templates (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ @@ -30421,8 +30417,8 @@ For a description of possible values, see `vc-check-master-templates'.") ;;;*** -;;;### (autoloads nil "vc-sccs" "vc/vc-sccs.el" (22150 28229 302072 -;;;;;; 702000)) +;;;### (autoloads nil "vc-sccs" "vc/vc-sccs.el" (22330 59914 13323 +;;;;;; 310000)) ;;; Generated autoloads from vc/vc-sccs.el (defvar vc-sccs-master-templates (purecopy '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ @@ -30440,8 +30436,8 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) ;;;*** -;;;### (autoloads nil "vc-src" "vc/vc-src.el" (22150 28229 302072 -;;;;;; 702000)) +;;;### (autoloads nil "vc-src" "vc/vc-src.el" (22331 17372 125369 +;;;;;; 150000)) ;;; Generated autoloads from vc/vc-src.el (defvar vc-src-master-templates (purecopy '("%s.src/%s,v")) "\ @@ -30454,8 +30450,8 @@ For a description of possible values, see `vc-check-master-templates'.") ;;;*** -;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (22150 28229 302072 -;;;;;; 702000)) +;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (22330 59914 13323 +;;;;;; 310000)) ;;; Generated autoloads from vc/vc-svn.el (defun vc-svn-registered (f) (let ((admin-dir (cond ((and (eq system-type 'windows-nt) @@ -30468,8 +30464,8 @@ For a description of possible values, see `vc-check-master-templates'.") ;;;*** -;;;### (autoloads nil "vera-mode" "progmodes/vera-mode.el" (22197 -;;;;;; 58438 563460 447000)) +;;;### (autoloads nil "vera-mode" "progmodes/vera-mode.el" (22330 +;;;;;; 59913 985323 396000)) ;;; Generated autoloads from progmodes/vera-mode.el (push (purecopy '(vera-mode 2 28)) package--builtin-versions) (add-to-list 'auto-mode-alist (cons (purecopy "\\.vr[hi]?\\'") 'vera-mode)) @@ -30528,7 +30524,7 @@ Key bindings: ;;;*** ;;;### (autoloads nil "verilog-mode" "progmodes/verilog-mode.el" -;;;;;; (22197 58438 615460 447000)) +;;;;;; (22331 17372 102369 231000)) ;;; Generated autoloads from progmodes/verilog-mode.el (autoload 'verilog-mode "verilog-mode" "\ @@ -30667,8 +30663,8 @@ Key bindings specific to `verilog-mode-map' are: ;;;*** -;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (22292 -;;;;;; 49734 746738 351000)) +;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (22363 +;;;;;; 8343 534348 693000)) ;;; Generated autoloads from progmodes/vhdl-mode.el (autoload 'vhdl-mode "vhdl-mode" "\ @@ -31036,7 +31032,7 @@ Usage: SPECIAL MENUES: As an alternative to the speedbar, an index menu can be added (set option `vhdl-index-menu' to non-nil) or made accessible as a mouse menu - (e.g. add \"(global-set-key '[S-down-mouse-3] 'imenu)\" to your start-up + (e.g. add \"(global-set-key [S-down-mouse-3] \\='imenu)\" to your start-up file) for browsing the file contents (is not populated if buffer is larger than 256000). Also, a source file menu can be added (set option `vhdl-source-file-menu' to non-nil) for browsing the @@ -31222,8 +31218,8 @@ Key bindings: ;;;*** -;;;### (autoloads nil "viet-util" "language/viet-util.el" (22150 -;;;;;; 28228 198072 702000)) +;;;### (autoloads nil "viet-util" "language/viet-util.el" (22330 +;;;;;; 59913 941323 532000)) ;;; Generated autoloads from language/viet-util.el (autoload 'viet-encode-viscii-char "viet-util" "\ @@ -31267,7 +31263,7 @@ Convert Vietnamese characters of the current buffer to `VIQR' mnemonics. ;;;*** -;;;### (autoloads nil "view" "view.el" (22150 28229 322072 702000)) +;;;### (autoloads nil "view" "view.el" (22363 8343 540348 670000)) ;;; Generated autoloads from view.el (defvar view-remove-frame-by-deleting t "\ @@ -31450,7 +31446,7 @@ x exchanges point and mark. Mark ring is pushed at start of every successful search and when jump to line occurs. The mark is set on jump to buffer start or end. \\[point-to-register] save current position in character register. -' go to position saved in character register. +\\=' go to position saved in character register. s do forward incremental search. r do reverse incremental search. \\[View-search-regexp-forward] searches forward for regular expression, starting after current page. @@ -31523,8 +31519,8 @@ Exit View mode and make the current buffer editable. ;;;*** -;;;### (autoloads nil "viper" "emulation/viper.el" (22150 28227 478072 -;;;;;; 702000)) +;;;### (autoloads nil "viper" "emulation/viper.el" (22331 17371 998369 +;;;;;; 601000)) ;;; Generated autoloads from emulation/viper.el (push (purecopy '(viper 3 14 1)) package--builtin-versions) @@ -31541,8 +31537,8 @@ Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Top'. ;;;*** -;;;### (autoloads nil "warnings" "emacs-lisp/warnings.el" (22150 -;;;;;; 28227 458072 702000)) +;;;### (autoloads nil "warnings" "emacs-lisp/warnings.el" (22330 +;;;;;; 59913 931323 563000)) ;;; Generated autoloads from emacs-lisp/warnings.el (defvar warning-prefix-function nil "\ @@ -31632,7 +31628,7 @@ this is equivalent to `display-warning', using ;;;*** -;;;### (autoloads nil "wdired" "wdired.el" (22240 5212 92626 379000)) +;;;### (autoloads nil "wdired" "wdired.el" (22331 17372 126369 146000)) ;;; Generated autoloads from wdired.el (push (purecopy '(wdired 2 0)) package--builtin-versions) @@ -31650,8 +31646,8 @@ See `wdired-mode'. ;;;*** -;;;### (autoloads nil "webjump" "net/webjump.el" (22150 28228 442072 -;;;;;; 702000)) +;;;### (autoloads nil "webjump" "net/webjump.el" (22330 59913 954323 +;;;;;; 492000)) ;;; Generated autoloads from net/webjump.el (autoload 'webjump "webjump" "\ @@ -31667,8 +31663,8 @@ Please submit bug reports and other feedback to the author, Neil W. Van Dyke ;;;*** -;;;### (autoloads nil "which-func" "progmodes/which-func.el" (22150 -;;;;;; 28228 986072 702000)) +;;;### (autoloads nil "which-func" "progmodes/which-func.el" (22331 +;;;;;; 17372 103369 228000)) ;;; Generated autoloads from progmodes/which-func.el (put 'which-func-format 'risky-local-variable t) (put 'which-func-current 'risky-local-variable t) @@ -31699,8 +31695,8 @@ in certain major modes. ;;;*** -;;;### (autoloads nil "whitespace" "whitespace.el" (22311 14139 310375 -;;;;;; 715000)) +;;;### (autoloads nil "whitespace" "whitespace.el" (22330 59913 743324 +;;;;;; 144000)) ;;; Generated autoloads from whitespace.el (push (purecopy '(whitespace 13 2 2)) package--builtin-versions) @@ -32070,8 +32066,8 @@ cleaning up these problems. ;;;*** -;;;### (autoloads nil "wid-browse" "wid-browse.el" (22150 28229 326072 -;;;;;; 702000)) +;;;### (autoloads nil "wid-browse" "wid-browse.el" (22330 59913 916323 +;;;;;; 609000)) ;;; Generated autoloads from wid-browse.el (autoload 'widget-browse-at "wid-browse" "\ @@ -32099,8 +32095,8 @@ if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "wid-edit" "wid-edit.el" (22150 28229 330072 -;;;;;; 702000)) +;;;### (autoloads nil "wid-edit" "wid-edit.el" (22331 17372 126369 +;;;;;; 146000)) ;;; Generated autoloads from wid-edit.el (autoload 'widgetp "wid-edit" "\ @@ -32142,8 +32138,8 @@ Setup current buffer so editing string widgets works. ;;;*** -;;;### (autoloads nil "windmove" "windmove.el" (22150 28229 330072 -;;;;;; 702000)) +;;;### (autoloads nil "windmove" "windmove.el" (22330 59913 916323 +;;;;;; 609000)) ;;; Generated autoloads from windmove.el (autoload 'windmove-left "windmove" "\ @@ -32195,7 +32191,7 @@ Default MODIFIER is `shift'. ;;;*** -;;;### (autoloads nil "winner" "winner.el" (22311 14139 326375 715000)) +;;;### (autoloads nil "winner" "winner.el" (22330 59913 743324 144000)) ;;; Generated autoloads from winner.el (defvar winner-mode nil "\ @@ -32225,7 +32221,7 @@ you can press `C-c ' (calling `winner-redo'). ;;;*** -;;;### (autoloads nil "woman" "woman.el" (22216 22853 52596 491000)) +;;;### (autoloads nil "woman" "woman.el" (22330 59913 916323 609000)) ;;; Generated autoloads from woman.el (push (purecopy '(woman 0 551)) package--builtin-versions) @@ -32274,7 +32270,7 @@ Default bookmark handler for Woman buffers. ;;;*** -;;;### (autoloads nil "xml" "xml.el" (22249 52924 872284 99000)) +;;;### (autoloads nil "xml" "xml.el" (22330 59913 916323 609000)) ;;; Generated autoloads from xml.el (autoload 'xml-parse-file "xml" "\ @@ -32330,8 +32326,8 @@ Both features can be combined by providing a cons cell ;;;*** -;;;### (autoloads nil "xmltok" "nxml/xmltok.el" (22150 28228 462072 -;;;;;; 702000)) +;;;### (autoloads nil "xmltok" "nxml/xmltok.el" (22331 17372 67369 +;;;;;; 356000)) ;;; Generated autoloads from nxml/xmltok.el (autoload 'xmltok-get-declared-encoding-position "xmltok" "\ @@ -32349,8 +32345,8 @@ If LIMIT is non-nil, then do not consider characters beyond LIMIT. ;;;*** -;;;### (autoloads nil "xref" "progmodes/xref.el" (22319 8247 203689 -;;;;;; 39000)) +;;;### (autoloads nil "xref" "progmodes/xref.el" (22330 59913 977323 +;;;;;; 421000)) ;;; Generated autoloads from progmodes/xref.el (autoload 'xref-find-backend "xref" "\ @@ -32417,8 +32413,8 @@ IGNORES is a list of glob patterns. ;;;*** -;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (22290 7990 504790 -;;;;;; 288000)) +;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (22330 59913 743324 +;;;;;; 144000)) ;;; Generated autoloads from xt-mouse.el (defvar xterm-mouse-mode nil "\ @@ -32448,7 +32444,8 @@ down the SHIFT key while pressing the mouse button. ;;;*** -;;;### (autoloads nil "xwidget" "xwidget.el" (22327 2357 177818 859000)) +;;;### (autoloads nil "xwidget" "xwidget.el" (22331 17377 954348 +;;;;;; 447000)) ;;; Generated autoloads from xwidget.el (autoload 'xwidget-webkit-browse-url "xwidget" "\ @@ -32460,7 +32457,7 @@ Interactively, URL defaults to the string looking like a url around point. ;;;*** -;;;### (autoloads nil "yenc" "gnus/yenc.el" (22150 28228 26072 702000)) +;;;### (autoloads nil "yenc" "gnus/yenc.el" (22331 17372 37369 462000)) ;;; Generated autoloads from gnus/yenc.el (autoload 'yenc-decode-region "yenc" "\ @@ -32475,7 +32472,7 @@ Extract file name from an yenc header. ;;;*** -;;;### (autoloads nil "zone" "play/zone.el" (22150 28228 682072 702000)) +;;;### (autoloads nil "zone" "play/zone.el" (22330 59913 970323 443000)) ;;; Generated autoloads from play/zone.el (autoload 'zone "zone" "\ @@ -32491,44 +32488,46 @@ Zone out, completely. ;;;;;; "calc/calc-fin.el" "calc/calc-forms.el" "calc/calc-frac.el" ;;;;;; "calc/calc-funcs.el" "calc/calc-graph.el" "calc/calc-help.el" ;;;;;; "calc/calc-incom.el" "calc/calc-keypd.el" "calc/calc-lang.el" -;;;;;; "calc/calc-loaddefs.el" "calc/calc-macs.el" "calc/calc-map.el" -;;;;;; "calc/calc-math.el" "calc/calc-menu.el" "calc/calc-misc.el" -;;;;;; "calc/calc-mode.el" "calc/calc-mtx.el" "calc/calc-nlfit.el" -;;;;;; "calc/calc-poly.el" "calc/calc-prog.el" "calc/calc-rewr.el" -;;;;;; "calc/calc-rules.el" "calc/calc-sel.el" "calc/calc-stat.el" -;;;;;; "calc/calc-store.el" "calc/calc-stuff.el" "calc/calc-trail.el" -;;;;;; "calc/calc-units.el" "calc/calc-vec.el" "calc/calc-yank.el" -;;;;;; "calc/calcalg2.el" "calc/calcalg3.el" "calc/calccomp.el" -;;;;;; "calc/calcsel2.el" "calendar/cal-bahai.el" "calendar/cal-coptic.el" -;;;;;; "calendar/cal-french.el" "calendar/cal-html.el" "calendar/cal-islam.el" -;;;;;; "calendar/cal-iso.el" "calendar/cal-julian.el" "calendar/cal-loaddefs.el" -;;;;;; "calendar/cal-mayan.el" "calendar/cal-menu.el" "calendar/cal-move.el" -;;;;;; "calendar/cal-persia.el" "calendar/cal-tex.el" "calendar/cal-x.el" -;;;;;; "calendar/diary-loaddefs.el" "calendar/hol-loaddefs.el" "cdl.el" -;;;;;; "cedet/cedet-cscope.el" "cedet/cedet-files.el" "cedet/cedet-global.el" -;;;;;; "cedet/cedet-idutils.el" "cedet/ede/auto.el" "cedet/ede/autoconf-edit.el" -;;;;;; "cedet/ede/base.el" "cedet/ede/config.el" "cedet/ede/cpp-root.el" -;;;;;; "cedet/ede/custom.el" "cedet/ede/detect.el" "cedet/ede/dired.el" -;;;;;; "cedet/ede/emacs.el" "cedet/ede/files.el" "cedet/ede/generic.el" -;;;;;; "cedet/ede/linux.el" "cedet/ede/loaddefs.el" "cedet/ede/locate.el" -;;;;;; "cedet/ede/make.el" "cedet/ede/makefile-edit.el" "cedet/ede/pconf.el" -;;;;;; "cedet/ede/pmake.el" "cedet/ede/proj-archive.el" "cedet/ede/proj-aux.el" -;;;;;; "cedet/ede/proj-comp.el" "cedet/ede/proj-elisp.el" "cedet/ede/proj-info.el" -;;;;;; "cedet/ede/proj-misc.el" "cedet/ede/proj-obj.el" "cedet/ede/proj-prog.el" -;;;;;; "cedet/ede/proj-scheme.el" "cedet/ede/proj-shared.el" "cedet/ede/proj.el" -;;;;;; "cedet/ede/project-am.el" "cedet/ede/shell.el" "cedet/ede/simple.el" -;;;;;; "cedet/ede/source.el" "cedet/ede/speedbar.el" "cedet/ede/srecode.el" -;;;;;; "cedet/ede/system.el" "cedet/ede/util.el" "cedet/semantic/analyze.el" -;;;;;; "cedet/semantic/analyze/complete.el" "cedet/semantic/analyze/debug.el" -;;;;;; "cedet/semantic/analyze/fcn.el" "cedet/semantic/analyze/refs.el" -;;;;;; "cedet/semantic/bovine.el" "cedet/semantic/bovine/c.el" "cedet/semantic/bovine/debug.el" -;;;;;; "cedet/semantic/bovine/el.el" "cedet/semantic/bovine/gcc.el" -;;;;;; "cedet/semantic/bovine/make.el" "cedet/semantic/bovine/scm.el" -;;;;;; "cedet/semantic/chart.el" "cedet/semantic/complete.el" "cedet/semantic/ctxt.el" -;;;;;; "cedet/semantic/db-debug.el" "cedet/semantic/db-ebrowse.el" -;;;;;; "cedet/semantic/db-el.el" "cedet/semantic/db-file.el" "cedet/semantic/db-find.el" -;;;;;; "cedet/semantic/db-global.el" "cedet/semantic/db-javascript.el" -;;;;;; "cedet/semantic/db-mode.el" "cedet/semantic/db-ref.el" "cedet/semantic/db-typecache.el" +;;;;;; "calc/calc-macs.el" "calc/calc-map.el" "calc/calc-math.el" +;;;;;; "calc/calc-menu.el" "calc/calc-misc.el" "calc/calc-mode.el" +;;;;;; "calc/calc-mtx.el" "calc/calc-nlfit.el" "calc/calc-poly.el" +;;;;;; "calc/calc-prog.el" "calc/calc-rewr.el" "calc/calc-rules.el" +;;;;;; "calc/calc-sel.el" "calc/calc-stat.el" "calc/calc-store.el" +;;;;;; "calc/calc-stuff.el" "calc/calc-trail.el" "calc/calc-units.el" +;;;;;; "calc/calc-vec.el" "calc/calc-yank.el" "calc/calcalg2.el" +;;;;;; "calc/calcalg3.el" "calc/calccomp.el" "calc/calcsel2.el" +;;;;;; "calendar/cal-bahai.el" "calendar/cal-coptic.el" "calendar/cal-french.el" +;;;;;; "calendar/cal-html.el" "calendar/cal-islam.el" "calendar/cal-iso.el" +;;;;;; "calendar/cal-julian.el" "calendar/cal-loaddefs.el" "calendar/cal-mayan.el" +;;;;;; "calendar/cal-menu.el" "calendar/cal-move.el" "calendar/cal-persia.el" +;;;;;; "calendar/cal-tex.el" "calendar/cal-x.el" "calendar/diary-loaddefs.el" +;;;;;; "calendar/hol-loaddefs.el" "cdl.el" "cedet/cedet-cscope.el" +;;;;;; "cedet/cedet-files.el" "cedet/cedet-global.el" "cedet/cedet-idutils.el" +;;;;;; "cedet/ede/auto.el" "cedet/ede/autoconf-edit.el" "cedet/ede/base.el" +;;;;;; "cedet/ede/config.el" "cedet/ede/cpp-root.el" "cedet/ede/custom.el" +;;;;;; "cedet/ede/detect.el" "cedet/ede/dired.el" "cedet/ede/emacs.el" +;;;;;; "cedet/ede/files.el" "cedet/ede/generic.el" "cedet/ede/linux.el" +;;;;;; "cedet/ede/locate.el" "cedet/ede/make.el" "cedet/ede/makefile-edit.el" +;;;;;; "cedet/ede/pconf.el" "cedet/ede/pmake.el" "cedet/ede/proj-archive.el" +;;;;;; "cedet/ede/proj-aux.el" "cedet/ede/proj-comp.el" "cedet/ede/proj-elisp.el" +;;;;;; "cedet/ede/proj-info.el" "cedet/ede/proj-misc.el" "cedet/ede/proj-obj.el" +;;;;;; "cedet/ede/proj-prog.el" "cedet/ede/proj-scheme.el" "cedet/ede/proj-shared.el" +;;;;;; "cedet/ede/proj.el" "cedet/ede/project-am.el" "cedet/ede/shell.el" +;;;;;; "cedet/ede/simple.el" "cedet/ede/source.el" "cedet/ede/speedbar.el" +;;;;;; "cedet/ede/srecode.el" "cedet/ede/system.el" "cedet/ede/util.el" +;;;;;; "cedet/semantic/analyze.el" "cedet/semantic/analyze/complete.el" +;;;;;; "cedet/semantic/analyze/debug.el" "cedet/semantic/analyze/fcn.el" +;;;;;; "cedet/semantic/analyze/refs.el" "cedet/semantic/bovine.el" +;;;;;; "cedet/semantic/bovine/c-by.el" "cedet/semantic/bovine/c.el" +;;;;;; "cedet/semantic/bovine/debug.el" "cedet/semantic/bovine/el.el" +;;;;;; "cedet/semantic/bovine/gcc.el" "cedet/semantic/bovine/make-by.el" +;;;;;; "cedet/semantic/bovine/make.el" "cedet/semantic/bovine/scm-by.el" +;;;;;; "cedet/semantic/bovine/scm.el" "cedet/semantic/chart.el" +;;;;;; "cedet/semantic/complete.el" "cedet/semantic/ctxt.el" "cedet/semantic/db-debug.el" +;;;;;; "cedet/semantic/db-ebrowse.el" "cedet/semantic/db-el.el" +;;;;;; "cedet/semantic/db-file.el" "cedet/semantic/db-find.el" "cedet/semantic/db-global.el" +;;;;;; "cedet/semantic/db-javascript.el" "cedet/semantic/db-mode.el" +;;;;;; "cedet/semantic/db-ref.el" "cedet/semantic/db-typecache.el" ;;;;;; "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" @@ -32536,82 +32535,91 @@ Zone out, completely. ;;;;;; "cedet/semantic/fw.el" "cedet/semantic/grammar-wy.el" "cedet/semantic/grammar.el" ;;;;;; "cedet/semantic/html.el" "cedet/semantic/ia-sb.el" "cedet/semantic/ia.el" ;;;;;; "cedet/semantic/idle.el" "cedet/semantic/imenu.el" "cedet/semantic/java.el" -;;;;;; "cedet/semantic/lex-spp.el" "cedet/semantic/lex.el" "cedet/semantic/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/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/tag.el" "cedet/semantic/texi.el" "cedet/semantic/util-modes.el" ;;;;;; "cedet/semantic/util.el" "cedet/semantic/wisent.el" "cedet/semantic/wisent/comp.el" ;;;;;; "cedet/semantic/wisent/java-tags.el" "cedet/semantic/wisent/javascript.el" -;;;;;; "cedet/semantic/wisent/python.el" "cedet/semantic/wisent/wisent.el" -;;;;;; "cedet/srecode/args.el" "cedet/srecode/compile.el" "cedet/srecode/cpp.el" -;;;;;; "cedet/srecode/ctxt.el" "cedet/srecode/dictionary.el" "cedet/srecode/document.el" +;;;;;; "cedet/semantic/wisent/javat-wy.el" "cedet/semantic/wisent/js-wy.el" +;;;;;; "cedet/semantic/wisent/python-wy.el" "cedet/semantic/wisent/python.el" +;;;;;; "cedet/semantic/wisent/wisent.el" "cedet/srecode/args.el" +;;;;;; "cedet/srecode/compile.el" "cedet/srecode/cpp.el" "cedet/srecode/ctxt.el" +;;;;;; "cedet/srecode/dictionary.el" "cedet/srecode/document.el" ;;;;;; "cedet/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/loaddefs.el" "cedet/srecode/map.el" "cedet/srecode/mode.el" -;;;;;; "cedet/srecode/semantic.el" "cedet/srecode/srt.el" "cedet/srecode/table.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" "dom.el" "dos-fns.el" ;;;;;; "dos-vars.el" "dos-w32.el" "dynamic-setting.el" "emacs-lisp/avl-tree.el" ;;;;;; "emacs-lisp/bindat.el" "emacs-lisp/byte-opt.el" "emacs-lisp/cl-extra.el" -;;;;;; "emacs-lisp/cl-loaddefs.el" "emacs-lisp/cl-macs.el" "emacs-lisp/cl-seq.el" -;;;;;; "emacs-lisp/cl.el" "emacs-lisp/eieio-base.el" "emacs-lisp/eieio-compat.el" -;;;;;; "emacs-lisp/eieio-custom.el" "emacs-lisp/eieio-datadebug.el" -;;;;;; "emacs-lisp/eieio-opt.el" "emacs-lisp/eieio-speedbar.el" -;;;;;; "emacs-lisp/generator.el" "emacs-lisp/lisp-mnt.el" "emacs-lisp/package-x.el" -;;;;;; "emacs-lisp/smie.el" "emacs-lisp/subr-x.el" "emacs-lisp/tcover-ses.el" -;;;;;; "emacs-lisp/tcover-unsafep.el" "emulation/cua-gmrk.el" "emulation/edt-lk201.el" -;;;;;; "emulation/edt-mapper.el" "emulation/edt-pc.el" "emulation/edt-vt100.el" -;;;;;; "emulation/viper-cmd.el" "emulation/viper-ex.el" "emulation/viper-init.el" -;;;;;; "emulation/viper-keym.el" "emulation/viper-macs.el" "emulation/viper-mous.el" -;;;;;; "emulation/viper-util.el" "erc/erc-backend.el" "erc/erc-goodies.el" -;;;;;; "erc/erc-ibuffer.el" "erc/erc-lang.el" "eshell/em-alias.el" -;;;;;; "eshell/em-banner.el" "eshell/em-basic.el" "eshell/em-cmpl.el" -;;;;;; "eshell/em-dirs.el" "eshell/em-glob.el" "eshell/em-hist.el" -;;;;;; "eshell/em-ls.el" "eshell/em-pred.el" "eshell/em-prompt.el" -;;;;;; "eshell/em-rebind.el" "eshell/em-script.el" "eshell/em-smart.el" -;;;;;; "eshell/em-term.el" "eshell/em-tramp.el" "eshell/em-unix.el" -;;;;;; "eshell/em-xtra.el" "eshell/esh-arg.el" "eshell/esh-cmd.el" -;;;;;; "eshell/esh-ext.el" "eshell/esh-groups.el" "eshell/esh-io.el" -;;;;;; "eshell/esh-module.el" "eshell/esh-opt.el" "eshell/esh-proc.el" -;;;;;; "eshell/esh-util.el" "eshell/esh-var.el" "ezimage.el" "format-spec.el" -;;;;;; "fringe.el" "generic-x.el" "gnus/compface.el" "gnus/gnus-async.el" -;;;;;; "gnus/gnus-bcklg.el" "gnus/gnus-cite.el" "gnus/gnus-cloud.el" -;;;;;; "gnus/gnus-cus.el" "gnus/gnus-demon.el" "gnus/gnus-dup.el" -;;;;;; "gnus/gnus-eform.el" "gnus/gnus-ems.el" "gnus/gnus-icalendar.el" -;;;;;; "gnus/gnus-int.el" "gnus/gnus-logic.el" "gnus/gnus-mh.el" -;;;;;; "gnus/gnus-salt.el" "gnus/gnus-score.el" "gnus/gnus-srvr.el" -;;;;;; "gnus/gnus-topic.el" "gnus/gnus-undo.el" "gnus/gnus-util.el" -;;;;;; "gnus/gnus-uu.el" "gnus/gnus-vm.el" "gnus/gssapi.el" "gnus/ietf-drums.el" -;;;;;; "gnus/legacy-gnus-agent.el" "gnus/mail-parse.el" "gnus/mail-prsvr.el" -;;;;;; "gnus/mail-source.el" "gnus/mailcap.el" "gnus/messcompat.el" -;;;;;; "gnus/mm-archive.el" "gnus/mm-bodies.el" "gnus/mm-decode.el" -;;;;;; "gnus/mm-util.el" "gnus/mm-view.el" "gnus/mml-sec.el" "gnus/mml-smime.el" -;;;;;; "gnus/nnagent.el" "gnus/nnbabyl.el" "gnus/nndir.el" "gnus/nndraft.el" -;;;;;; "gnus/nneething.el" "gnus/nngateway.el" "gnus/nnheader.el" -;;;;;; "gnus/nnimap.el" "gnus/nnir.el" "gnus/nnmail.el" "gnus/nnmaildir.el" -;;;;;; "gnus/nnmairix.el" "gnus/nnmbox.el" "gnus/nnmh.el" "gnus/nnnil.el" -;;;;;; "gnus/nnoo.el" "gnus/nnregistry.el" "gnus/nnrss.el" "gnus/nnspool.el" -;;;;;; "gnus/nntp.el" "gnus/nnvirtual.el" "gnus/nnweb.el" "gnus/registry.el" -;;;;;; "gnus/rfc1843.el" "gnus/rfc2045.el" "gnus/rfc2047.el" "gnus/rfc2231.el" -;;;;;; "gnus/rtree.el" "gnus/sieve-manage.el" "gnus/smime.el" "gnus/spam-stat.el" -;;;;;; "gnus/spam-wash.el" "hex-util.el" "hfy-cmap.el" "ibuf-ext.el" -;;;;;; "international/charscript.el" "international/fontset.el" -;;;;;; "international/iso-ascii.el" "international/ja-dic-cnv.el" -;;;;;; "international/ja-dic-utl.el" "international/ogonek.el" "kermit.el" -;;;;;; "language/hanja-util.el" "language/thai-word.el" "ldefs-boot.el" -;;;;;; "leim/quail/arabic.el" "leim/quail/croatian.el" "leim/quail/cyril-jis.el" -;;;;;; "leim/quail/cyrillic.el" "leim/quail/czech.el" "leim/quail/ethiopic.el" -;;;;;; "leim/quail/georgian.el" "leim/quail/greek.el" "leim/quail/hanja-jis.el" -;;;;;; "leim/quail/hanja.el" "leim/quail/hanja3.el" "leim/quail/hebrew.el" -;;;;;; "leim/quail/indian.el" "leim/quail/ipa-praat.el" "leim/quail/ipa.el" -;;;;;; "leim/quail/japanese.el" "leim/quail/lao.el" "leim/quail/latin-alt.el" -;;;;;; "leim/quail/latin-ltx.el" "leim/quail/latin-post.el" "leim/quail/latin-pre.el" -;;;;;; "leim/quail/lrt.el" "leim/quail/persian.el" "leim/quail/programmer-dvorak.el" +;;;;;; "emacs-lisp/cl-macs.el" "emacs-lisp/cl-seq.el" "emacs-lisp/cl.el" +;;;;;; "emacs-lisp/eieio-base.el" "emacs-lisp/eieio-compat.el" "emacs-lisp/eieio-custom.el" +;;;;;; "emacs-lisp/eieio-datadebug.el" "emacs-lisp/eieio-opt.el" +;;;;;; "emacs-lisp/eieio-speedbar.el" "emacs-lisp/generator.el" +;;;;;; "emacs-lisp/lisp-mnt.el" "emacs-lisp/package-x.el" "emacs-lisp/smie.el" +;;;;;; "emacs-lisp/subr-x.el" "emacs-lisp/tcover-ses.el" "emacs-lisp/tcover-unsafep.el" +;;;;;; "emulation/cua-gmrk.el" "emulation/edt-lk201.el" "emulation/edt-mapper.el" +;;;;;; "emulation/edt-pc.el" "emulation/edt-vt100.el" "emulation/viper-cmd.el" +;;;;;; "emulation/viper-ex.el" "emulation/viper-init.el" "emulation/viper-keym.el" +;;;;;; "emulation/viper-macs.el" "emulation/viper-mous.el" "emulation/viper-util.el" +;;;;;; "erc/erc-backend.el" "erc/erc-goodies.el" "erc/erc-ibuffer.el" +;;;;;; "erc/erc-lang.el" "eshell/em-alias.el" "eshell/em-banner.el" +;;;;;; "eshell/em-basic.el" "eshell/em-cmpl.el" "eshell/em-dirs.el" +;;;;;; "eshell/em-glob.el" "eshell/em-hist.el" "eshell/em-ls.el" +;;;;;; "eshell/em-pred.el" "eshell/em-prompt.el" "eshell/em-rebind.el" +;;;;;; "eshell/em-script.el" "eshell/em-smart.el" "eshell/em-term.el" +;;;;;; "eshell/em-tramp.el" "eshell/em-unix.el" "eshell/em-xtra.el" +;;;;;; "eshell/esh-arg.el" "eshell/esh-cmd.el" "eshell/esh-ext.el" +;;;;;; "eshell/esh-io.el" "eshell/esh-module.el" "eshell/esh-opt.el" +;;;;;; "eshell/esh-proc.el" "eshell/esh-util.el" "eshell/esh-var.el" +;;;;;; "ezimage.el" "format-spec.el" "fringe.el" "generic-x.el" +;;;;;; "gnus/compface.el" "gnus/gnus-async.el" "gnus/gnus-bcklg.el" +;;;;;; "gnus/gnus-cite.el" "gnus/gnus-cloud.el" "gnus/gnus-cus.el" +;;;;;; "gnus/gnus-demon.el" "gnus/gnus-dup.el" "gnus/gnus-eform.el" +;;;;;; "gnus/gnus-ems.el" "gnus/gnus-icalendar.el" "gnus/gnus-int.el" +;;;;;; "gnus/gnus-logic.el" "gnus/gnus-mh.el" "gnus/gnus-salt.el" +;;;;;; "gnus/gnus-score.el" "gnus/gnus-srvr.el" "gnus/gnus-topic.el" +;;;;;; "gnus/gnus-undo.el" "gnus/gnus-util.el" "gnus/gnus-uu.el" +;;;;;; "gnus/gnus-vm.el" "gnus/gssapi.el" "gnus/ietf-drums.el" "gnus/legacy-gnus-agent.el" +;;;;;; "gnus/mail-parse.el" "gnus/mail-prsvr.el" "gnus/mail-source.el" +;;;;;; "gnus/mailcap.el" "gnus/messcompat.el" "gnus/mm-archive.el" +;;;;;; "gnus/mm-bodies.el" "gnus/mm-decode.el" "gnus/mm-util.el" +;;;;;; "gnus/mm-view.el" "gnus/mml-sec.el" "gnus/mml-smime.el" "gnus/nnagent.el" +;;;;;; "gnus/nnbabyl.el" "gnus/nndir.el" "gnus/nndraft.el" "gnus/nneething.el" +;;;;;; "gnus/nngateway.el" "gnus/nnheader.el" "gnus/nnimap.el" "gnus/nnir.el" +;;;;;; "gnus/nnmail.el" "gnus/nnmaildir.el" "gnus/nnmairix.el" "gnus/nnmbox.el" +;;;;;; "gnus/nnmh.el" "gnus/nnnil.el" "gnus/nnoo.el" "gnus/nnregistry.el" +;;;;;; "gnus/nnrss.el" "gnus/nnspool.el" "gnus/nntp.el" "gnus/nnvirtual.el" +;;;;;; "gnus/nnweb.el" "gnus/registry.el" "gnus/rfc1843.el" "gnus/rfc2045.el" +;;;;;; "gnus/rfc2047.el" "gnus/rfc2231.el" "gnus/rtree.el" "gnus/sieve-manage.el" +;;;;;; "gnus/smime.el" "gnus/spam-stat.el" "gnus/spam-wash.el" "hex-util.el" +;;;;;; "hfy-cmap.el" "ibuf-ext.el" "international/charprop.el" "international/charscript.el" +;;;;;; "international/fontset.el" "international/iso-ascii.el" "international/ja-dic-cnv.el" +;;;;;; "international/ja-dic-utl.el" "international/ogonek.el" "international/uni-bidi.el" +;;;;;; "international/uni-brackets.el" "international/uni-category.el" +;;;;;; "international/uni-combining.el" "international/uni-comment.el" +;;;;;; "international/uni-decimal.el" "international/uni-decomposition.el" +;;;;;; "international/uni-digit.el" "international/uni-lowercase.el" +;;;;;; "international/uni-mirrored.el" "international/uni-name.el" +;;;;;; "international/uni-numeric.el" "international/uni-old-name.el" +;;;;;; "international/uni-titlecase.el" "international/uni-uppercase.el" +;;;;;; "kermit.el" "language/hanja-util.el" "language/thai-word.el" +;;;;;; "ldefs-boot.el" "leim/ja-dic/ja-dic.el" "leim/quail/arabic.el" +;;;;;; "leim/quail/croatian.el" "leim/quail/cyril-jis.el" "leim/quail/cyrillic.el" +;;;;;; "leim/quail/czech.el" "leim/quail/ethiopic.el" "leim/quail/georgian.el" +;;;;;; "leim/quail/greek.el" "leim/quail/hanja-jis.el" "leim/quail/hanja.el" +;;;;;; "leim/quail/hanja3.el" "leim/quail/hebrew.el" "leim/quail/indian.el" +;;;;;; "leim/quail/ipa-praat.el" "leim/quail/ipa.el" "leim/quail/japanese.el" +;;;;;; "leim/quail/lao.el" "leim/quail/latin-alt.el" "leim/quail/latin-ltx.el" +;;;;;; "leim/quail/latin-post.el" "leim/quail/latin-pre.el" "leim/quail/lrt.el" +;;;;;; "leim/quail/persian.el" "leim/quail/programmer-dvorak.el" ;;;;;; "leim/quail/py-punct.el" "leim/quail/pypunct-b5.el" "leim/quail/rfc1345.el" ;;;;;; "leim/quail/sgml-input.el" "leim/quail/sisheng.el" "leim/quail/slovak.el" ;;;;;; "leim/quail/symbol-ksc.el" "leim/quail/tamil-dvorak.el" "leim/quail/thai.el" @@ -32662,14 +32670,14 @@ Zone out, completely. ;;;;;; "org/org-eshell.el" "org/org-faces.el" "org/org-feed.el" ;;;;;; "org/org-footnote.el" "org/org-gnus.el" "org/org-habit.el" ;;;;;; "org/org-id.el" "org/org-indent.el" "org/org-info.el" "org/org-inlinetask.el" -;;;;;; "org/org-install.el" "org/org-irc.el" "org/org-list.el" "org/org-loaddefs.el" -;;;;;; "org/org-macro.el" "org/org-mhe.el" "org/org-mobile.el" "org/org-mouse.el" -;;;;;; "org/org-pcomplete.el" "org/org-plot.el" "org/org-protocol.el" -;;;;;; "org/org-rmail.el" "org/org-src.el" "org/org-table.el" "org/org-timer.el" -;;;;;; "org/org-w3m.el" "org/ox-ascii.el" "org/ox-beamer.el" "org/ox-html.el" -;;;;;; "org/ox-icalendar.el" "org/ox-latex.el" "org/ox-man.el" "org/ox-md.el" -;;;;;; "org/ox-odt.el" "org/ox-org.el" "org/ox-publish.el" "org/ox-texinfo.el" -;;;;;; "org/ox.el" "play/gametree.el" "progmodes/ada-prj.el" "progmodes/cc-align.el" +;;;;;; "org/org-install.el" "org/org-irc.el" "org/org-list.el" "org/org-macro.el" +;;;;;; "org/org-mhe.el" "org/org-mobile.el" "org/org-mouse.el" "org/org-pcomplete.el" +;;;;;; "org/org-plot.el" "org/org-protocol.el" "org/org-rmail.el" +;;;;;; "org/org-src.el" "org/org-table.el" "org/org-timer.el" "org/org-w3m.el" +;;;;;; "org/ox-ascii.el" "org/ox-beamer.el" "org/ox-html.el" "org/ox-icalendar.el" +;;;;;; "org/ox-latex.el" "org/ox-man.el" "org/ox-md.el" "org/ox-odt.el" +;;;;;; "org/ox-org.el" "org/ox-publish.el" "org/ox-texinfo.el" "org/ox.el" +;;;;;; "play/gametree.el" "progmodes/ada-prj.el" "progmodes/cc-align.el" ;;;;;; "progmodes/cc-awk.el" "progmodes/cc-bytecomp.el" "progmodes/cc-cmds.el" ;;;;;; "progmodes/cc-defs.el" "progmodes/cc-fonts.el" "progmodes/cc-langs.el" ;;;;;; "progmodes/cc-menus.el" "progmodes/ebnf-abn.el" "progmodes/ebnf-bnf.el" @@ -32692,7 +32700,7 @@ Zone out, completely. ;;;;;; "vc/ediff-vers.el" "vc/ediff-wind.el" "vc/pcvs-info.el" "vc/pcvs-parse.el" ;;;;;; "vc/pcvs-util.el" "vc/vc-dav.el" "vc/vc-filewise.el" "vcursor.el" ;;;;;; "vt-control.el" "vt100-led.el" "w32-fns.el" "w32-vars.el" -;;;;;; "x-dnd.el") (22349 29401 586989 559000)) +;;;;;; "x-dnd.el") (22363 15048 356870 124000)) ;;;*** diff --git a/msdos/sed2v2.inp b/msdos/sed2v2.inp index cb2be72..7b16c4a 100644 --- a/msdos/sed2v2.inp +++ b/msdos/sed2v2.inp @@ -66,7 +66,7 @@ /^#undef PACKAGE_TARNAME/s/^.*$/#define PACKAGE_TARNAME ""/ /^#undef PACKAGE_VERSION/s/^.*$/#define PACKAGE_VERSION VERSION/ /^#undef PENDING_OUTPUT_COUNT/s/^.*$/#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_ptr - (FILE)->_base)/ -/^#undef VERSION/s/^.*$/#define VERSION "25.0.94"/ +/^#undef VERSION/s/^.*$/#define VERSION "25.0.95"/ /^#undef SYSTEM_TYPE/s/^.*$/#define SYSTEM_TYPE "ms-dos"/ /^#undef HAVE_DECL_GETENV/s/^.*$/#define HAVE_DECL_GETENV 1/ /^#undef SYS_SIGLIST_DECLARED/s/^.*$/#define SYS_SIGLIST_DECLARED 1/ commit 9ae514a9b7ed368ea97ddefa806079b6423833cb Author: Nicolas Petton Date: Sat Jun 11 00:24:21 2016 +0200 * etc/AUTHORS: Update the AUTHORS file diff --git a/etc/AUTHORS b/etc/AUTHORS index 760d735..9a4aaf6 100644 --- a/etc/AUTHORS +++ b/etc/AUTHORS @@ -351,14 +351,13 @@ and changed ada-mode.texi frames.texi generic-x.el texinfo.el Artem Chuprina: changed message.el -Artur Malabarba: wrote character-fold-tests.el faces-tests.el - isearch-tests.el let-alist.el simple-test.el sort-tests.el - tabulated-list-test.el -and changed package.el isearch.el character-fold.el files.el - tabulated-list.el package-test.el menu-bar.el faces.el files-x.el - help-fns.el replace.el align.el bytecomp.el custom.texi cl-lib-tests.el - custom.el map.el simple.el subr-tests.el variables.texi bindings.el - and 39 other files +Artur Malabarba: wrote char-fold-tests.el faces-tests.el isearch-tests.el + let-alist.el simple-test.el sort-tests.el tabulated-list-test.el +and changed package.el isearch.el lisp/char-fold.el files.el + tabulated-list.el package-test.el menu-bar.el + test/automated/char-fold-tests.el faces.el files-x.el help-fns.el + replace.el align.el bytecomp.el custom.texi cl-lib-tests.el custom.el + map.el simple.el subr-tests.el variables.texi and 40 other files Arun Persaud: changed org-agenda.el org-src.el commit 3ca428e9288ec01f157f374b040ceb021cbdca6a Author: Nicolas Petton Date: Sat Jun 11 00:04:58 2016 +0200 add entries to authors.el * admin/authors.el (authors-renamed-files-alist): Add char-fold files. diff --git a/admin/authors.el b/admin/authors.el index b93c9b2..1447bd4 100644 --- a/admin/authors.el +++ b/admin/authors.el @@ -886,6 +886,8 @@ in the repository.") ("ED.WORSHIP" . "JOKES") ("GNU.JOKES" . "JOKES") ("CHARACTERS" . "TODO") + ("lisp/character-fold.el" . "lisp/char-fold.el") + ("test/automated/character-fold-tests.el" . "test/automated/char-fold-tests.el") ("images/gnus/mail_send.xpm" . "mail-send.xpm") ; still in images/gnus ;; Renamed within same directory. ("schema/xhtml-basic-form.rnc" . "xhtml-bform.rnc" ) commit 66d556b5187d768bbd233513b54dcb4beaa90c6d Author: Jules Tamagnan Date: Fri Jun 10 12:08:29 2016 +0300 Fix eldoc-related freezes in python mode * lisp/progmodes/python.el (python-eldoc-get-doc): New defvar. (python-eldoc-function-timeout) (python-eldoc-function-timeout-permanent): New defcustoms. (python-eldoc-function): If python-eldoc--get-doc-at-point times out, effectively turn off ElDoc in current buffer. (Bug#23609) diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 41d3e1c..49f7bcf 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -4292,12 +4292,47 @@ returns will be used. If not FORCE-PROCESS is passed what (unless (zerop (length docstring)) docstring))))) +(defvar-local python-eldoc-get-doc t + "Non-nil means eldoc should fetch the documentation + automatically. Set to nil by `python-eldoc-function' if + `python-eldoc-function-timeout-permanent' is non-nil and + `python-eldoc-function' times out.") + +(defcustom python-eldoc-function-timeout 1 + "Timeout for `python-eldoc-function' in seconds." + :group 'python + :type 'integer + :version "25.1") + +(defcustom python-eldoc-function-timeout-permanent t + "Non-nil means that when `python-eldoc-function' times out +`python-eldoc-get-doc' will be set to nil" + :group 'python + :type 'boolean + :version "25.1") + (defun python-eldoc-function () "`eldoc-documentation-function' for Python. For this to work as best as possible you should call `python-shell-send-buffer' from time to time so context in -inferior Python process is updated properly." - (python-eldoc--get-doc-at-point)) +inferior Python process is updated properly. + +If `python-eldoc-function-timeout' seconds elapse before this +function returns then if +`python-eldoc-function-timeout-permanent' is non-nil +`python-eldoc-get-doc' will be set to nil and eldoc will no +longer return the documentation at the point automatically. + +Set `python-eldoc-get-doc' to t to reenable eldoc documentation +fetching" + (when python-eldoc-get-doc + (with-timeout (python-eldoc-function-timeout + (if python-eldoc-function-timeout-permanent + (progn + (message "Eldoc echo-area display muted in this buffer, see `python-eldoc-function'") + (setq python-eldoc-get-doc nil)) + (message "`python-eldoc-function' timed out, see `python-eldoc-function-timeout'"))) + (python-eldoc--get-doc-at-point)))) (defun python-eldoc-at-point (symbol) "Get help on SYMBOL using `help'. commit d59bcbc00bc70f101492a80ea48964b2dd5d337d Author: Martin Rudalics Date: Thu Jun 9 10:12:48 2016 +0200 Handle mouse leaving initial window in `mouse-set-region' (Bug#23707) * lisp/mouse.el (mouse-set-region): If the mouse ends up in another window or on the menu bar, use `window-point' of selected window instead of `posn-point' of the event end (Bug#23707). diff --git a/lisp/mouse.el b/lisp/mouse.el index 592338a..64ee796 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -566,7 +566,12 @@ command alters the kill ring or not." (mouse-minibuffer-check click) (select-window (posn-window (event-start click))) (let ((beg (posn-point (event-start click))) - (end (posn-point (event-end click))) + (end + (if (eq (posn-window (event-end click)) (selected-window)) + (posn-point (event-end click)) + ;; If the mouse ends up in any other window or on the menu + ;; bar, use `window-point' of selected window (Bug#23707). + (window-point))) (click-count (event-click-count click))) (let ((drag-start (terminal-parameter nil 'mouse-drag-start))) (when drag-start commit 27fe1e459ab137b20d45ef4167f3c2ec0d10fdd4 Author: Marco Wahl Date: Wed Jun 8 16:03:34 2016 -0700 org.el: Fix bindings of < and > for calendar scrolling [This patch taken from upstream Org repo with 8b63dc9 dated 2014-10-20 (Bug#23725).] * lisp/org/org.el (org-read-date-minibuffer-local-map): Switch to the current calendar API for scrolling the calendar. diff --git a/lisp/org/org.el b/lisp/org/org.el index 61bcb45..13e4a22 100644 --- a/lisp/org/org.el +++ b/lisp/org/org.el @@ -16296,10 +16296,10 @@ So these are more for recording a certain time/date." (message ""))) (org-defkey map ">" (lambda () (interactive) - (org-eval-in-calendar '(scroll-calendar-left 1)))) + (org-eval-in-calendar '(calendar-scroll-left 1)))) (org-defkey map "<" (lambda () (interactive) - (org-eval-in-calendar '(scroll-calendar-right 1)))) + (org-eval-in-calendar '(calendar-scroll-right 1)))) (org-defkey map "\C-v" (lambda () (interactive) (org-eval-in-calendar commit a813487f1adf4cf59d7a471d62d22f706f9eab1d Author: Phillip Lord Date: Mon Jun 6 09:35:17 2016 +0100 Fix undo boundary in recursive edit (Bug#23632) * src/keyboard.c (recursive_edit_1): specbind undo-auto--undoably-changed-buffers. * lisp/simple.el (undo-auto--undoably-changed-buffers): fix docstring. diff --git a/lisp/simple.el b/lisp/simple.el index c5aa292..e38bf70 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -2910,9 +2910,7 @@ REASON describes the reason that the boundary is being added; see This list is maintained by `undo-auto--undoable-change' and `undo-auto--boundaries' and can be affected by changes to their -default values. - -See also `undo-auto--buffer-undoably-changed'.") +default values.") (defun undo-auto--add-boundary () "Add an `undo-boundary' in appropriate buffers." diff --git a/src/keyboard.c b/src/keyboard.c index e3858a5..2db9aaf 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -681,6 +681,14 @@ recursive_edit_1 (void) specbind (Qinhibit_redisplay, Qnil); redisplaying_p = 0; + /* This variable stores buffers that have changed so that an undo + boundary can be added. specbind this so that changes in the + recursive edit will not result in undo boundaries in buffers + changed before we entered there recursive edit. + See Bug #23632. + */ + specbind (Qundo_auto__undoably_changed_buffers, Qnil); + val = command_loop (); if (EQ (val, Qt)) Fsignal (Qquit, Qnil); @@ -10956,6 +10964,8 @@ syms_of_keyboard (void) DEFSYM (Qpost_command_hook, "post-command-hook"); DEFSYM (Qundo_auto__add_boundary, "undo-auto--add-boundary"); + DEFSYM (Qundo_auto__undoably_changed_buffers, + "undo-auto--undoably-changed-buffers"); DEFSYM (Qdeferred_action_function, "deferred-action-function"); DEFSYM (Qdelayed_warnings_hook, "delayed-warnings-hook"); diff --git a/test/automated/simple-test.el b/test/automated/simple-test.el index 12ebc75..40cd1d2 100644 --- a/test/automated/simple-test.el +++ b/test/automated/simple-test.el @@ -310,6 +310,38 @@ (= 6 (undo-test-point-after-forward-kill)))) +(defmacro simple-test-undo-with-switched-buffer (buffer &rest body) + (let ((before-buffer (make-symbol "before-buffer"))) + `(let ((,before-buffer (current-buffer))) + (unwind-protect + (progn + (switch-to-buffer ,buffer) + ,@body) + (switch-to-buffer ,before-buffer))))) + +;; This tests for a regression in emacs 25.0 see bug #23632 +(ert-deftest simple-test-undo-extra-boundary-in-tex () + (should + (string= + "" + (simple-test-undo-with-switched-buffer + "temp.tex" + (latex-mode) + ;; This macro calls `latex-insert-block' + (execute-kbd-macro + (read-kbd-macro + " +C-c C-o ;; latex-insert-block +RET ;; newline +C-/ ;; undo +" + )) + (buffer-substring-no-properties + (point-min) + (point-max)))))) + + + (provide 'simple-test) ;;; simple-test.el ends here commit 1f85b7ca034ee4f96d796d95ec86bc4fa0ba8aa3 Author: Glenn Morris Date: Tue Jun 7 19:59:37 2016 -0400 Doc fixes re alist-get. (Bug#23548) * lisp/subr.el (alist-get): Doc fix. * doc/lispref/lists.texi (Association Lists): Improve alist-get. ; * etc/NEWS: Related edit. diff --git a/doc/lispref/lists.texi b/doc/lispref/lists.texi index c18c408..e7a739f 100644 --- a/doc/lispref/lists.texi +++ b/doc/lispref/lists.texi @@ -1556,12 +1556,16 @@ keys may not be symbols: @end smallexample @end defun -@defun alist-get key value &optional default +@defun alist-get key value &optional default remove This function is like @code{assq}, but instead of returning the entire association for @var{key}, @code{(@var{key} . @var{value})}, it -returns just the @var{value}. It returns @var{default} if @var{key} -is not found in @var{alist}, defaulting to @code{nil} if @var{default} -is omitted. +returns just the @var{value}. If @var{key} is not found in +@var{alist} it returns @var{default}. + +This is a generalized variable (@pxref{Generalized Variables}) that +can be used to change a value with @code{setf}. When using it to set +a value, optional argument @var{remove} non-nil means to remove +@var{key} from @var{alist} if the new value is @code{eql} to @var{default}. @end defun @defun rassq value alist diff --git a/etc/NEWS b/etc/NEWS index 00515f5..56074ce 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -1680,7 +1680,8 @@ codeset is "UTF-8" (as in "en_US.UTF-8"). This is needed because MS-Windows doesn't support UTF-8 as codeset in its locales. +++ -** New function 'alist-get', which is also a valid place (aka lvalue). +** New function 'alist-get', which is a generalized variable +suitable for use with 'setf'. +++ ** New function 'funcall-interactively', which works like 'funcall' diff --git a/lisp/subr.el b/lisp/subr.el index 81570d4..ed2166a 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -598,10 +598,12 @@ Elements of ALIST that are not conses are ignored." alist) (defun alist-get (key alist &optional default remove) - "Get the value associated to KEY in ALIST. -DEFAULT is the value to return if KEY is not found in ALIST. -REMOVE, if non-nil, means that when setting this element, we should -remove the entry if the new value is `eql' to DEFAULT." + "Return the value associated with KEY in ALIST, using `assq'. +If KEY is not found in ALIST, return DEFAULT. + +This is a generalized variable suitable for use with `setf'. +When using it to set a value, optional argument REMOVE non-nil +means to remove KEY from ALIST if the new value is `eql' to DEFAULT." (ignore remove) ;;Silence byte-compiler. (let ((x (assq key alist))) (if x (cdr x) default))) commit ba3f206239349b725a970c7015f7f4ee8631ef6d Author: Glenn Morris Date: Tue Jun 7 18:26:33 2016 -0400 * lisp/progmodes/python.el (inferior-python-mode): Avoid tabs. (Bug#23616) diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 2d22bb2..41d3e1c 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -2678,6 +2678,7 @@ variable. \(Type \\[describe-mode] in the process buffer for a list of commands.)" (when python-shell--parent-buffer (python-util-clone-local-variables python-shell--parent-buffer)) + (set (make-local-variable 'indent-tabs-mode) nil) ;; Users can interactively override default values for ;; `python-shell-interpreter' and `python-shell-interpreter-args' ;; when calling `run-python'. This ensures values let-bound in commit 56fa055bbfcbe57e127d74095f34620c1b88b7eb Author: Glenn Morris Date: Tue Jun 7 17:39:19 2016 -0400 * src/syntax.c (syms_of_syntax) : Doc fix. diff --git a/src/syntax.c b/src/syntax.c index 6f53684..0af2a21 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -3701,7 +3701,7 @@ In both cases, LIMIT bounds the search. */); Vfind_word_boundary_function_table = Fmake_char_table (Qnil, Qnil); DEFVAR_BOOL ("comment-end-can-be-escaped", Vcomment_end_can_be_escaped, - doc: /* Non-nil means an escaped ender inside a comment doesn'tend the comment. */); + doc: /* Non-nil means an escaped ender inside a comment doesn't end the comment. */); Vcomment_end_can_be_escaped = 0; DEFSYM (Qcomment_end_can_be_escaped, "comment-end-can-be-escaped"); Fmake_variable_buffer_local (Qcomment_end_can_be_escaped); commit 4c1370a10b63766c95ec62a85f942c41a4152244 Author: Tino Calancha Date: Tue Jun 7 16:42:59 2016 -0400 * lisp/help-fns.el (describe-function-1): Fix handling of file name for aliases. (Bug#21950) diff --git a/lisp/help-fns.el b/lisp/help-fns.el index 6e8a108..496deb5 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el @@ -526,7 +526,8 @@ FILE is the file where FUNCTION was probably defined." (sig-key (if (subrp def) (indirect-function real-def) real-def)) - (file-name (find-lisp-object-file-name function def)) + (file-name (find-lisp-object-file-name function (if aliased 'defun + def))) (pt1 (with-current-buffer (help-buffer) (point))) (beg (if (and (or (byte-code-function-p def) (keymapp def) commit a3f7ae80b171d7747f42e697169611a8c879f7bb Author: Tino Calancha Date: Tue Jun 7 13:48:11 2016 -0400 * lisp/emacs-lisp/cl-macs.el (cl-loop): Doc fix re "by". diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 68abe67..2cb821e 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -851,9 +851,9 @@ This is compatible with Common Lisp, but note that `defun' and "The Common Lisp `loop' macro. Valid clauses include: For clauses: - for VAR from/upfrom/downfrom EXPR1 to/upto/downto/above/below EXPR2 by EXPR3 + for VAR from/upfrom/downfrom EXPR1 to/upto/downto/above/below EXPR2 [by EXPR3] for VAR = EXPR1 then EXPR2 - for VAR in/on/in-ref LIST by FUNC + for VAR in/on/in-ref LIST [by FUNC] for VAR across/across-ref ARRAY for VAR being: the elements of/of-ref SEQUENCE [using (index VAR2)] commit 601b9b2acdd417b43756c4e975a99fca5bb34231 Author: Tino Calancha Date: Tue Jun 7 13:46:33 2016 -0400 * doc/misc/cl.texi (Mapping over Sequences): Fix cl-notevery. diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi index 4137a95..a98d0ac 100644 --- a/doc/misc/cl.texi +++ b/doc/misc/cl.texi @@ -3364,7 +3364,7 @@ was @code{nil} for all elements. @defun cl-notevery predicate seq &rest more-seqs This function calls @var{predicate} on each element of the sequence(s) in turn; it returns a non-@code{nil} value as soon as @var{predicate} -returns @code{nil} for any element, or @code{t} if the predicate was +returns @code{nil} for any element, or @code{nil} if the predicate was true for all elements. @end defun