]> code.delx.au - gnu-emacs/commitdiff
Merge branch 'emacs-25-merge'
authorJohn Wiegley <johnw@newartisans.com>
Sun, 3 Jan 2016 07:31:52 +0000 (23:31 -0800)
committerJohn Wiegley <johnw@newartisans.com>
Sun, 3 Jan 2016 07:31:52 +0000 (23:31 -0800)
1  2 
CONTRIBUTE
doc/misc/ses.texi
etc/NEWS
lisp/ldefs-boot.el
lisp/net/eww.el
lisp/ses.el

diff --combined CONTRIBUTE
index 0c0ef207ff3f97350b6101d8d9908c8c08a7568d,c9c4b74f0904fe5e5df53aae4cefe240ca755821..177a38cffd68ecd792296f920988d029c1f75b05
@@@ -186,10 -186,12 +186,12 @@@ branch later
  
  However, if you know that the change will be difficult to merge to the
  trunk (eg because the trunk code has changed a lot), you can apply the
- change to both trunk and branch yourself.  Indicate in the release
- branch commit log that there is no need to merge the commit to the
- trunk; start the commit message with "Backport:".  gitmerge.el will
- then exclude that commit from the merge to trunk.
+ change to both trunk and branch yourself.  It could also happen that a
+ change is cherry-picked from master to the release branch, and so
+ doesn't need to be merged back.  In these cases, indicate in the
+ release branch commit log that there is no need to merge the commit to
+ the trunk; start the commit message with "Backport:".  gitmerge.el
+ will then exclude that commit from the merge to trunk.
  
  
  ** Other process information
@@@ -222,17 -224,6 +224,17 @@@ the tracker with the corresponding bugs
  GNU ELPA has a 'debbugs' package that allows accessing the tracker
  database from Emacs.
  
 +Bugs needs regular attention.  A large backlog of bugs is
 +disheartening to the developers, and a culture of ignoring bugs is
 +harmful to users, who expect software that works.  Bugs have to be
 +regularly looked at and acted upon.  Not all bugs are critical, but at
 +the least, each bug needs to be regularly re-reviewed to make sure it
 +is still reproducible.
 +
 +The process of going through old or new bugs and acting on them is
 +called bug triage.  This process is described in the file
 +admin/notes/triage.
 +
  ** Document your changes.
  
  Any change that matters to end-users should have an entry in etc/NEWS.
diff --combined doc/misc/ses.texi
index 4cb4188f6907031faf4509d845ba8d782803a637,9b2a457a710e70e00a9b2a72ab2d5f41e99bd0a5..fe6d5ab5422e7068c8dd2e5ca64cb6a0a66eb106
@@@ -377,6 -377,7 +377,7 @@@ Undo previous action (@code{(undo)})
  @findex ses-read-cell-printer
  @findex ses-read-column-printer
  @findex ses-read-default-printer
+ @findex ses-define-local-printer
  @findex ses-center
  @findex ses-center-span
  @findex ses-dashfill
@@@ -435,44 -436,14 +436,44 @@@ Centering with dashes and spill-over
  Centering with tildes (~) and spill-over.
  @end table
  
- You can define printer function local to a sheet with command
- @code{ses-define-local-printer}. For instance define printer
- @samp{foo} to @code{"%.2f"} and then use symbol @samp{foo} as a
- printer function. Then, if you call again
+ You can define printer function local to a sheet with the command
+ @code{ses-define-local-printer}.  For instance, define a printer
+ @samp{foo} to @code{"%.2f"}, and then use symbol @samp{foo} as a
+ printer function.  Then, if you call again
  @code{ses-define-local-printer} on @samp{foo} to redefine it as
- @code{"%.3f"} all the cells using printer @samp{foo} will be reprinted
- accordingly.
+ @code{"%.3f"}, all the cells using printer @samp{foo} will be
reprinted accordingly.
  
 +When you define a printer function with a lambda expression taking one
 +argument, please take care that the returned value is a string, or a
 +list containing a string, even when the input argument has an
 +unexpected value. Here is an example:
 +
 +@example
 +(lambda (val)
 +   (cond
 +      ((null val) "")
 +      ((and (numberp val) (>= val 0)) (format "%.1f" val))
 +      (t (ses-center-span (format "%S" val) ?#))))
 +@end example
 +
 +This example will:
 +@itemize
 +@item
 +When the cell is empty (ie.@: when @code{val} is @code{nil}), print an
 +empty string @code{""}
 +@item
 +When the cell value is a non negative number, format the the value in
 +fixed-point notation with one decimal after point
 +@item
 +Otherwise, handle the value as erroneous by printing it as an
 +s-expression (using @code{prin1}), centered and surrounded by @code{#}
 +filling.
 +@end itemize
 +
 +
 +
 +
  @node Clearing cells
  @section Clearing cells
  @cindex clearing commands
diff --combined etc/NEWS
index ca8f3373976f6c6d735b4027408e5a9471824b18,05db9980ee9207faf828ef42609b962e466abbcf..d23c7fa8aaea8633155cee7d22596196b7bf1232
+++ b/etc/NEWS
@@@ -41,11 -41,18 +41,18 @@@ and Mac OS X machines
  +++
  ** Building Emacs now requires C99 or later.
  
+ +++
  ** Building Emacs now requires GNU make, version 3.81 or later.
  
+ +++
  ** New configure option --with-cairo.
- Maybe add text based on http://lists.gnu.org/archive/html/emacs-devel/2015-05/msg00689.html
+ This builds Emacs with Cairo drawing.  As a side effect, it provides
+ support for built-in printing, when Emacs was built with GTK+.
  
+ ** New configure option --with-modules.
+ This enables support for loading dynamic modules; see below.
+ ---
  ** By default, Emacs no longer works on IRIX.  We expect that Emacs
  users are not affected by this, as SGI stopped supporting IRIX in
  December 2013.  If you are affected, please send a bug report.  You
@@@ -53,12 -60,14 +60,14 @@@ should be able to work around the probl
  undumping code to GCC under IRIX, or by configuring --with-wide-int,
  or by sticking with Emacs 24.4.
  
+ ---
  ** The Emacs garbage collector assumes GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS.
  The GC_MAKE_GCPROS_NOOPS stack-marking variant has been the default
  since Emacs 24.4, and the other variants were undocumented and were
  obstacles to maintenance and development.  GC_MARK_STACK and its
  related symbols have been removed from the C internals.
  
+ ---
  ** 'configure' now prefers gnustep-config when configuring GNUstep.
  If gnustep-config is not available, the old heuristics are used.
  
@@@ -77,6 -86,7 +86,7 @@@ supported, and its presence led to conf
  This affects only the 'movemail' utility; Emacs itself can still
  process MMDF-format files as before.
  
+ +++
  ** The configure option '--enable-silent-rules' is now the default,
  and silent rules are now quieter.  To get the old behavior where
  'make' chatters a lot, configure with '--disable-silent-rules' or
@@@ -94,6 -104,7 +104,7 @@@ be installed setgid.  The option now de
  It has no particular connection to Emacs and has not changed in years,
  so if you want to use it, you can always take a copy from an older Emacs.
  
+ ---
  ** Emacs 25 comes with a new set of icons.
  Various resolutions are available as etc/images/icons/hicolor/*/apps/emacs.png.
  The old Emacs logo icons are available as `emacs23.png' in the same location.
@@@ -116,50 -127,47 +127,47 @@@ and can contain escape sequences for co
  \f
  * Changes in Emacs 25.1
  
- ** Any file of the form .dir-locals*.el is now considered a dir-local
-    file, and multiple can be used in the same directory. See the
-    variable `dir-locals-file' for more information.
- ** `xref-find-definitions' and `describe-function' now display
-    information about mode local overrides (defined by
-    cedet/mode-local.el `define-overloadable-function' and
-    `define-mode-local-overrides').
- ** New `display-buffer' action function `display-buffer-use-some-frame'
- This displays the buffer in an existing frame other than the current
- frame, and allows the caller to specify a frame predicate to exclude
- frames.
- ** New doc command `describe-symbol'.  Works for functions, vars, faces, etc...
- ** New user option `search-default-regexp-mode' specifies the default mode for isearch
- ** `isearch' and `query-replace' now perform character folding in matches.
- This is analogous to case-folding, but applies between Unicode
- characters and their ASCII counterparts.  This means many characters
- will match entire groups of characters.
- For instance, the " will match all variants of unicode double quotes
- (like “ and ”), and the letter a will match all of its accented
- cousins, even those composed of multiple characters, as well as many
- other symbols like ℀, ℁, ⒜, and ⓐ.
- ** New function `character-fold-to-regexp' can be used
- by searching commands to produce a regexp matching anything that
- character-folds into STRING.
- ** New command `checkdoc-package-keywords' checks if the
- current package keywords are recognized.  Set the new option
- `checkdoc-package-keywords-flag' to non-nil to make
- `checkdoc-current-buffer' call this function automatically.
- ** New function `checkdoc-file' checks for style errors.
- It's meant for use together with `compile':
- emacs -batch --eval "(checkdoc-file \"subr.el\")"
- ** New command `comment-line' bound to `C-x C-;'.
+ ** Emacs can now load shared/dynamic libraries (modules).
+ A dynamic Emacs module is a shared library that provides additional
+ functionality for use in Emacs Lisp programs, just like a package
+ written in Emacs Lisp would.  The functions `load', `require',
+ `load-file', etc. were extended to load such modules, as they do with
+ Emacs Lisp packages.  The new variable `module-file-suffix' holds the
+ system-dependent value of the file-name extension (`.so' on Posix
+ hosts) of the module files.
+ A module should export a C-callable function named
+ `emacs_module_init', which Emacs will call as part of the call to
+ `load' or `require' which loads the module.  It should also export a
+ symbol named `plugin_is_GPL_compatible' to indicate that its code is
+ released under the GPL or compatible license; Emacs will refuse to
+ load modules that don't export such a symbol.
+ If a module needs to call Emacs functions, it should do so through the
+ API defined and documented in the header file `emacs-module.h'.  Note
+ that any module that provides Lisp-callable functions will have to use
+ Emacs functions such as `fset' and `funcall', in order to register its
+ functions with the Emacs Lisp interpreter.
+ Modules can create `user-ptr' Lisp objects that embed pointers to C
+ struct's defined by the module.  This is useful for keeping around
+ complex data structures created by a module, to be passed back to the
+ module's functions.  User-ptr objects can also have associated
+ "finalizers" -- functions to be run when the object is GC'ed; this is
+ useful for freeing any resources allocated for the underlying data
+ structure, such as memory, open file descriptors, etc.  A new
+ predicate `user-ptrp' returns non-nil if its argument is a `user-ptr'
+ object.
+ Loadable modules in Emacs are an experimental feature, and subject to
+ change in future releases.  For that reason, their support is disabled
+ by default, and must be enabled by using the `--with-modules' option
+ at configure time.
  
- ** New function `custom-prompt-customize-unsaved-options' checks for
- unsaved customizations and prompts user to customize (if found).
+ +++
+ ** Any file of the form .dir-locals*.el is now considered a dir-local
+ file, and multiple such files can be used in the same directory.  See
+ the variable `dir-locals-file' for more information.
  
  +++
  ** Network security (TLS/SSL certificate validity and the like) is
@@@ -171,6 -179,13 +179,13 @@@ the `network-security-level' variable
  puny.el library, so that one can visit web sites like
  "http://méxico.icom.museum".
  
+ ** If Emacs isn't built with TLS support, an external TLS-capable
+ program is used instead.  This program used to be run in --insecure
+ mode by default, but has now changed to be secure instead, and will
+ fail if you try to connect to non-verifiable hosts.  This is
+ controlled by the `tls-program' variable.
+ +++
  ** C-h l now also lists the commands that were run.
  
  ** The new M-s M-w key binding uses eww to search the web for the
@@@ -185,16 -200,21 +200,21 @@@ select-enable-primary is ineffective si
  have the equivalent of a primary selection.
  
  +++
- ** terpri gets an optional arg ENSURE to conditionally output a newline.
+ ** New option `switch-to-buffer-in-dedicated-window' allows to customize
+ how `switch-to-buffer' proceeds interactively when the selected window
+ is strongly dedicated to its buffer.
  
  +++
- ** New macro `define-advice'.
+ ** The option `even-window-heights' has been renamed to
+ `even-window-sizes' and now handles window widths as well.
+ +++
+ ** terpri gets an optional arg ENSURE to conditionally output a newline.
  
+ +++
  ** `insert-register' now leaves point after the inserted text
  when called interactively.  A prefix argument toggles this behavior.
  
- ** New var `truncate-string-ellipsis' to choose how to indicate truncation.
  +++
  ** The new variable `term-file-aliases' replaces some files from lisp/term.
  The function `tty-run-terminal-initialization' consults this variable
@@@ -210,114 -230,49 +230,49 @@@ for use in Emacs bug reports
  hiding character but the default `.' can be used by let-binding the
  variable `read-hide-char'.
  
- ** The new functions `string-collate-lessp' and `string-collate-equalp'
- preserve the collation order as defined by the system's locale(1)
- environment.  For the time being this is implemented for modern POSIX
- systems and for MS-Windows, for other systems they fall back to their
- counterparts `string-lessp' and `string-equal'.
- *** The ls-lisp package uses `string-collate-lessp' to sort file names.
- If you want the old, locale-independent sorting, customize the new
- option `ls-lisp-use-string-collate' to a nil value.
- *** The MS-Windows specific variable `w32-collate-ignore-punctuation',
- if set to a non-nil value, causes the above 2 functions to ignore
- symbol and punctuation characters when collating strings.  This
- emulates the behavior of modern Posix platforms when the locale's
- 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.
- +++
- ** The new function `bidi-find-overridden-directionality' allows to
- find characters whose directionality was, perhaps maliciously,
- overridden by directional override control characters.  Lisp programs
- can use this to detect potential phishing of URLs and other links that
- exploits bidirectional display reordering.
- +++
- ** The new function `buffer-substring-with-bidi-context' allows to
- copy a portion of a buffer into a different location while preserving
- the visual appearance both of the copied text and the text at
- destination, even when the copied text includes mixed bidirectional
- text and directional control characters.
- ** New variable `ns-use-fullscreen-animation' controls animation for
- non-native NS fullscreen.  The default is nil.  Set to t to enable
- animation when entering and leaving fullscreen.  For native OSX fullscreen
- this has no effect.
- ** A new text property `inhibit-read-only' can be used in read-only
- buffers to allow certain parts of the text to be writable.
- ** A new function `directory-files-recursively' returns all matching
- files (recursively) under a directory.
+ ---
+ ** New input method: `tamil-dvorak'.
  
- ** The new function `directory-name-p' can be used to check whether a file
- name (as returned from, for instance, `file-name-all-completions' is
- a directory file name.  It returns non-nil if the last character in
- the name is a forward slash.
\f
+ * Editing Changes in Emacs 25.1
  
  +++
- ** New variable `fast-but-imprecise-scrolling' inhibits
- fontification during full screen scrolling operations, giving less
- hesitant operation during auto-repeat of C-v, M-v at the cost of
- possible inaccuracies in the end position.
- ** The function `font-info' now returns more details about a font.
- In particular, it now returns the average width of the font's
- characters, which can be used for geometry-related calculations.
- ** A new function `default-font-width' returns the average width of a
- character in the current buffer's default font.  If the default face
- is remapped (see `face-remapping-alist'), the value for the remapped
- face is returned.  This function complements the existing function
- `default-font-height'.
- ** New functions `window-font-height' and `window-font-width' return
- the height and average width of characters in a specified face and
- window.  If FACE is remapped (see `face-remapping-alist'), the
- function returns the information for the remapped face.
- ** A new function `window-max-chars-per-line' returns the maximal
- number of characters that can be displayed on one line.  If a face
- and/or window are provided, these values are used for the
- calculation.  This function is different from `window-body-width' in
- that it accounts for (i) continuation glyphs, (ii) the size of the
- font, and (iii) the specified window.
+ ** M-x suggests shorthands and ignores obsolete commands for completion.
  
- ** New possible value for `system-type': nacl.
+ ** Changes in undo
  
  +++
- ** New variable `inhibit-message', when bound to non-nil, inhibits
-    `message' and related functions from displaying messages the Echo
-    Area.  The output is still logged to the *Messages* buffer.
+ *** Successive single-char deletions are collapsed in the undo-log just like
+ successive char insertions.  Which commands invoke this behavior is
+ controlled by the new `undo-auto-amalgamate' function.  See the node
+ "Undo" in the ELisp manual for more details.
  
  +++
- ** It is now safe for a mode that derives `tabulated-list-mode' to not
- call `tabulated-list-init-header', in which case it will have no
- header.
+ *** The heuristic used to insert `undo-boundary' after each command
+ has changed, so that if a command causes changes in more than just the
+ current buffer, Emacs now calls `undo-boundary' in every buffer
+ affected by the command.
  
  +++
- ** `tabulated-list-print' takes a second optional argument, update,
- which specifies an alternative printing method which is faster when
- few or no entries have changed.
\f
- * Editing Changes in Emacs 25.1
+ ** New command `comment-line' bound to `C-x C-;'.
  
- ** Successive single-char deletions are collapsed in the undo-log just like
- successive char insertions.
+ ** New and improved facilities for inserting Unicode characters
  
- ** Unicode names entered via C-x 8 RET now use substring completion by default.
+ ---
+ *** Unicode names entered via C-x 8 RET now use substring completion by default.
  
- ** C-x 8 now has shorthands for these chars: ‐ ‑ ‒ – — ― ‘ ’ “ ” † ‡ • ′ ″
+ +++
+ *** C-x 8 now has shorthands for these chars: ‐ ‑ ‒ – — ― ‘ ’ “ ” † ‡ • ′ ″
  € № ← → ↔ − ≈ ≠ ≤ ≥.  As before, you can type C-x 8 C-h to list shorthands.
  
- ** New minor mode electric-quote-mode for quoting ‘like this’ and “like this”
+ +++
+ *** New minor mode electric-quote-mode for quoting ‘like this’ and “like this”
  as you type.  See also the new variable ‘text-quoting-style’.
  
+ ---
  ** New minor mode global-eldoc-mode is enabled by default.
  
+ ---
  ** Emacs now supports "bracketed paste mode" when running on a terminal
  that supports it.  This facility allows Emacs to understand pasted
  chunks of text as strings to be inserted, instead of interpreting each
@@@ -325,6 -280,7 +280,7 @@@ character in the pasted text as actual 
  paste experience similar to that under a window system, and significant
  performance improvements when pasting large amounts of text.
  
+ +++
  ** Emacs now supports the latest version of the UBA.
  The Emacs implementation of the Unicode Bidirectional Algorithm (UBA)
  was updated to support all the latest additions and changes introduced
@@@ -333,73 -289,140 +289,140 @@@ This includes full support for directio
  Bidirectional Parentheses Algorithm (BPA) specified by these Unicode
  standards.
  
+ +++
  ** You can access `mouse-buffer-menu' (C-down-mouse-1) using C-f10.
  
  +++
  ** New buffer-local `electric-pair-local-mode'.
  
+ +++
+ ** New variable `fast-but-imprecise-scrolling' inhibits
+ fontification during full screen scrolling operations, giving less
+ hesitant operation during auto-repeat of C-v, M-v at the cost of
+ possible inaccuracies in the end position.
+ +++
+ ** New documentation command `describe-symbol'.
+ Works for functions, variables, faces, etc.  It is bound to `C-h o' by
+ default.
+ +++
+ ** New function `custom-prompt-customize-unsaved-options' checks for
+ unsaved customizations and prompts user to customize (if found).  It
+ is intended for adding to 'kill-emacs-query-functions'.
  \f
  * Changes in Specialized Modes and Packages in Emacs 25.1
  
+ ** Checkdoc
+ +++
+ *** New command `checkdoc-package-keywords' checks if the
+ current package keywords are recognized.  Set the new option
+ `checkdoc-package-keywords-flag' to non-nil to make
+ `checkdoc-current-buffer' call this function automatically.
+ +++
+ *** New function `checkdoc-file' checks for style errors.
+ It's meant for use together with `compile':
+ emacs -batch --eval "(checkdoc-file \"subr.el\")"
+ +++
  ** New function `bookmark-set-no-overwrite' bound to C-x r M.
  It raises an error if a bookmark of that name already exists,
  unlike `bookmark-set' which silently updates an existing bookmark.
  
+ ** IMAP
+ ---
+ *** `imap-ssl-program' has been removed, and imap.el uses the internal
+ GnuTLS encryption functions if possible.
  ** JSON
  ---
  *** `json-pretty-print' and `json-pretty-print-buffer' now maintain
  the ordering of object keys by default.
  ---
  *** New commands `json-pretty-print-ordered' and
  `json-pretty-print-buffer-ordered' pretty prints JSON objects with
  object keys sorted alphabetically.
  
- ** You can recompute the VC state of a file buffer with `M-x vc-refresh-state'
+ +++
  ** Prog mode has some support for multi-mode indentation.
- See `prog-indentation-context' and `prog-widen'.
+ This allows better indentation support in modes that support multiple
+ programming languages in the same buffer, like literate programming
+ environments or ANTLR programs with embedded Python code.
+ A major mode can provide indentation context for a sub-mode through
+ the `prog-indentation-context' variable.  To support this, modes that
+ provide indentation should use `prog-widen' instead of `widen' and
+ `prog-first-column' instead of a literal zero.  See the node
+ "Mode-Specific Indent" in the ELisp manual for more details.
  
  ** Prettify Symbols mode
+ +++
  *** Prettify Symbols mode supports custom composition predicates.  By
  overriding the default `prettify-symbols-compose-predicate', modes can
- specify in which contexts a symbol map be composed to some unicode
+ specify in which contexts a symbol may be displayed as some Unicode
  character.  `prettify-symbols-default-compose-p' is the default which
  is suitable for most programming languages such as C or Lisp (but not
  (La)TeX).
  
+ +++
  *** Symbols can be unprettified while point is inside them.
  New variable `prettify-symbols-unprettify-at-point' configures this.
  
- ** New `xterm-screen-extra-capabilities' config.
+ ** Enhanced xterm support
+ ---
+ *** The new variable `xterm-screen-extra-capabilities' for configuring xterm.
+ This variable tells Emacs which advanced capabilities are available in
+ the xterm terminal emulator used to display Emacs text-mode frames.
+ The default is to check each capability, and use it if available.
+ (This variable was introduced in Emacs 24.1, but was not announced in
+ its NEWS.)
+ ---
+ *** Killing text now also sets the CLIPBOARD/PRIMARY selection
+ in the surrounding GUI (using the OSC-52 escape sequence).  This only works
+ if your xterm supports it and enables the `allowWindowOps' options (disabled
+ by default at least in Debian, for security reasons).
  
- ** The `save-place' variable is replaced by a `save-place-mode'.
+ Similarly, you can yank the CLIPBOARD/PRIMARY selection (using the OSC-52
+ escape sequence) if your xterm has the feature enabled but for that you
+ additionally need to add `getSelection' to `xterm-extra-capabilities'.
+ +++
+ *** `xterm-mouse-mode' now supports mouse-tracking (if your xterm supports it).
+ ---
+ ** The `save-place' variable is replaced by `save-place-mode'.
  
  ** ERC
  
- *** Hide message types by network or channel.  `erc-hide-list' will
- hide all messages of the specified type, where `erc-network-hide-list'
- and `erc-channel-hide-list' will only hide the specified message types
- for the respective specified targets.
+ +++
+ *** ERC can now hide message types by network or channel.
+ `erc-hide-list' will hide all messages of the specified type, while
+ `erc-network-hide-list' and `erc-channel-hide-list' will only hide the
+ specified message types for the respective specified targets.
  
  *** New variable `erc-default-port-tls' used to connect to TLS IRC
  servers.
  
  ** Midnight-mode
- *** `midnight-mode' is a proper minor mode.
- *** clean-buffer-*-regexps can now specify buffers via predicate functions.
  
- ** In xterms, killing text now also sets the CLIPBOARD/PRIMARY selection
- in the surrounding GUI (using the OSC-52 escape sequence).  This only works
- if your xterm supports it and enables the `allowWindowOps' options (disabled
- by default at least in Debian, for security reasons).
- Similarly, you can yank the CLIPBOARD/PRIMARY selection (using the OSC-52
- escape sequence) if your xterm has the feature enabled but for that you
- additionally need to add `getSelection' to `xterm-extra-capabilities'.
+ ---
+ *** `midnight-mode' is now a proper minor mode.
  
- ** xterm-mouse-mode now supports mouse-tracking (if your xterm supports it).
+ ---
+ *** clean-buffer-*-regexps can now specify buffers via predicate functions.
  
  ** package.el
  
+ +++
  *** New "external" package status.
  An external package is any installed package that's not built-in and
  not from `package-user-dir', which usually means it's from an entry in
  packages, in that they cannot be deleted through the package menu and
  are not considered for upgrades.
  
- The effect, is that a user can manually place a specific version of a
+ The effect is that a user can manually place a specific version of a
  package inside `package-directory-list' and the package menu will
  always respect that.
  
+ +++
  *** If a package is available on multiple archives and one has higher
  priority (as per `package-archive-priorities') only that one is
  listed.  This can be configured with `package-menu-hide-low-priority'.
  
+ +++
  *** `package-menu-toggle-hiding' now toggles the hiding of packages.
  This includes the above-mentioned low-priority packages, as well as
  available packages whose version is lower than the currently installed
@@@ -422,34 -447,43 +447,43 @@@ version (which were previously impossib
  This allows users to downgrade a package if a lower version is
  available.
  
+ ---
  *** When filtering the package menu, keywords starting with "arc:" or
  "status:" represent package archive or status, respectively, instead
  of actual keywords.
  
+ ---
  *** Most functions which involve downloading information now take an
  ASYNC argument.  If it is non-nil, package.el performs the download(s)
  asynchronously.
  
+ ---
  *** New variable `package-menu-async' controls whether the
  package-menu uses asynchronous downloads.
  
+ ---
  *** `package-install-from-buffer' and `package-install-file' work on directories.
  This follows the same rules as installing from a .tar file, except the
  -pkg file is optional.
  
+ ---
  *** Packages which are dependencies of other packages cannot be deleted.
  The FORCE argument to `package-delete' overrides this.
  
+ ---
  *** New custom variable `package-selected-packages' tracks packages
  which were installed by the user (as opposed to installed as
  dependencies).  This variable can also be manually customized.
  
+ ---
  *** New command `package-install-user-selected-packages' installs all
  packages from `package-selected-packages' which are currently missing.
  
+ ---
  *** New command `package-autoremove' removes all packages which were
  installed strictly as dependencies but are no longer needed.
  
+ +++
  ** Shell
  
  When you invoke `shell' interactively, the *shell* buffer will now
@@@ -476,23 -510,61 +510,61 @@@ If you need your objects to be named, d
  *** `constructor' is now an obsolete alias for `make-instance'.
  
  ** ido
+ +++
  *** New command `ido-bury-buffer-at-head' bound to C-S-b
  Bury the buffer at the head of `ido-matches', analogous to how C-k
  kills the buffer at head.
+ ---
  *** A prefix argument to `ido-restrict-to-matches' will reverse its
  meaning, and the list is restricted to those elements that do not
  match the current input.
  
  ** Minibuffer
  
- *** You can use <up> and <down> keys to move point in the multi-line
- minibuffer just as in an ordinary buffer.  Only when point moves over
+ +++
+ *** You can use <UP> and <DOWN> arrow keys to move through history by lines.
+ The new commands `next-line-or-history-element' and
+ `previous-line-or-history-element', bound to <UP> and <DOWN> in the
+ minibuffer, allow by-line movement through minibuffer history,
+ similarly to an ordinary buffer.  Only when point moves over
  the bottom/top of the minibuffer it goes to the next/previous history
- element.  The new commands bound to <up> and <down> in the minibuffer:
`next-line-or-history-element' and `previous-line-or-history-element'.
+ element.  `M-p' and `M-n' still move directly to previous/next history
item as before.
  
  ** Search and Replace
  
+ +++
+ *** New user option `search-default-regexp-mode'
+ specifies the default mode for I-search.
+ +++
+ *** `isearch' and `query-replace' can now perform character folding in matches.
+ Isearch does that by default, while `query-replace' will do that if
+ the new variable `replace-character-fold' is customized to a non-nil
+ value.  This is analogous to case folding, but instead of disregarding
+ case variants, it disregards wider classes of distinctions between
+ similar characters.  (Case folding is a special case of character
+ folding.)  This means many characters in the search string will match
+ entire groups of characters instead of just themselves.
+ For instance, the " will match all variants of double quotes (like “
+ and ”), and the letter a will match all of its accented cousins, even
+ those composed of multiple characters, as well as many other symbols
+ like ℀, ℁, ⒜, and ⓐ.
+ +++
+ *** New function `character-fold-to-regexp' can be used
+ by searching commands to produce a regexp matching anything that
+ character-folds into STRING.
+ +++
+ *** The new M-s M-w key binding uses eww to search the web for the
+ text in the region.  The search engine to use for this is specified by
+ the customizable variable `eww-search-prefix'.
+ +++
  *** Query-replace history is enhanced.
  When query-replace reads the FROM string from the minibuffer, typing
  `M-p' will now show previous replacements as "FROM SEP TO", where FROM
@@@ -513,8 -585,16 +585,16 @@@ this you can tell Edebug not to stop a
  instrumented function.
  
  ** ElDoc
+ +++
  *** New minor mode `global-eldoc-mode'
+ It is turned on by default, and affects `*scratch*' and other buffers
+ whose major mode supports Emacs Lisp.
+ ---
  *** `eldoc-documentation-function' now defaults to `ignore'
+ ---
  *** `describe-char-eldoc' displays information about character at point,
  and can be used as a default value of `eldoc-documentation-function'.  It is
  useful when, for example, one needs to distinguish various spaces (e.g. ] [,
@@@ -531,9 -611,9 +611,9 @@@ whether to use variable-pitch fonts or 
  customize the `shr-use-fonts' variable.
  
  +++
 -*** A new command `C' (`eww-toggle-colors) can be used to toggle
 +*** A new command `C' (`eww-toggle-colors') can be used to toggle
  whether to use the HTML-specified colors or not.  The user can also
 -customize the `shr-use-colors variable.
 +customize the `shr-use-colors' variable.
  
  +++
  *** A new command `R' (`eww-readable') will try do identify the main
@@@ -575,31 -655,45 +655,45 @@@ invalid certificates are marked in red
  
  ** Message mode
  
+ ---
  *** text/html messages that contain inline image parts will be
  transformed into multipart/related messages before sending.
  
- ** pcase
- *** New UPatterns `quote', `app', `cl-struct', and `eieio'.
- *** New UPatterns can be defined with `pcase-defmacro'.
  +++
- *** New vector QPattern.
+ ** In Show Paren Mode, a parenthesis can be highlighted when point
+ stands inside it, and certain parens can be highlighted when point is
+ at BOL or EOL, or in whitespace there.  To enable these, customize,
+ respectively, `show-paren-when-point-inside-paren' or
+ `show-paren-when-point-in-periphery'.
  
  ** Lisp mode
  *** Strings after `:documentation' are highlighted as docstrings.
  
  ** Rectangle editing
+ +++
  *** Rectangle Mark mode can have corners past EOL or in the middle of a TAB.
+ +++
  *** C-x C-x in rectangle-mark-mode now cycles through the four corners.
  *** `string-rectangle' provides on-the-fly preview of the result.
  
- ** New font-lock functions font-lock-ensure and font-lock-flush, which
- should be used instead of font-lock-fontify-buffer when called from Elisp.
+ +++
+ ** New font-lock functions `font-lock-ensure' and `font-lock-flush'.
+ These should be used in preference to `font-lock-fontify-buffer' when
+ called from Lisp.
+ ---
+ ** Macro `minibuffer-with-setup-hook' can optionally append a function
+ to `minibuffer-setup-hook'.
  
- ** Macro `minibuffer-with-setup-hook' takes (:append FUN) to mean
- appending FUN to `minibuffer-setup-hook'.
+ If the first argument of the macro is of the form `(:append FUN)',
+ then FUN will be appended to `minibuffer-setup-hook', instead of
+ prepending it.
  
  ** cl-lib
- *** New functions cl-fresh-line, cl-digit-char-p and cl-parse-integer.
+ +++
+ *** New functions `cl-fresh-line', `cl-digit-char-p', and `cl-parse-integer'.
  
  ** Calendar and diary
  
@@@ -643,15 -737,26 +737,26 @@@ The remainder were
  
  **** The nil and list forms of `diary-display-function'.
  
+ +++
  ** New ERT function `ert-summarize-tests-batch-and-exit'.
+ If the output of ERT tests in batch mode execution can be saved to a
+ log file, then it can be passed as an argument to the above function
+ to produce a neat summary.
  
  ** New js.el option `js-indent-first-init'.
  
+ ** Info
  ---
- ** `Info-fontify-maximum-menu-size' can be t for no limit.
+ ** Info mode now displays symbol names in fixed-pitch font.
+ If you want to get the old behavior back, customize the `Info-quoted'
+ face to use the same definitions as the default face.
+ ---
+ *** `Info-fontify-maximum-menu-size' can be t for no limit.
  
  +++
- ** `info-display-manual' can now be given a prefix argument which (any
+ *** `info-display-manual' can now be given a prefix argument which (any
  non-nil value) directs the command to limit the completion
  alternatives to currently visited manuals.
  
  
  ** Rmail
  
- *** The Rmail commands d, C-d and u take optional repeat counts to delete or
- undelete multiple messages.
+ +++
+ *** The Rmail commands `d', `C-d' and `u' take optional repeat counts
+ to delete or undelete multiple messages.
  
+ +++
  *** Rmail can now render HTML mail messages if your Emacs was built with
  libxml2 or if you have the Lynx browser installed.  By default, Rmail
  will display the HTML version of a mail message that has both HTML and
@@@ -673,14 -780,18 +780,18 @@@ plain text parts, if display of HTML em
  *** In the commands that make summaries by subject, recipients, or senders,
  you can no longer use commas to separate regular expressions.
  
+ +++
  ** SES now supports local printer functions; see `ses-define-local-printer'.
  
- ** sh-script
+ ** Shell-script Mode
+ ---
  *** In sh-mode you can now use `sh-shell' as a file-local variable to
  specify the type of shell in use (bash, csh, etc).
  
- *** New value `always' for sh-indent-after-continuation.
+ ---
+ *** New value `always' for `sh-indent-after-continuation'.
  This provides old-style ("dumb") indentation of continued lines.
+ See the doc string of `sh-indent-after-continuation' for details.
  
  ** TLS
  ---
  
  ** URL
  
+ +++
  *** The URL package accepts now the protocols "ssh", "scp" and "rsync".
  When `url-handler-mode' is enabled, file operations for these
  protocols as well as for "telnet" and "ftp" are passed to Tramp.
  
+ +++
  *** The URL package allows customizing the `url-user-agent' string.
  The new `url-user-agent' variable can be customized to be a string or
  a function.
  
+ ---
  *** The new interface variable `url-request-noninteractive' can be used
  to specify that we're running in a noninteractive context, and that
  we should not be queried about things like TLS certificate validity.
  
+ ---
  *** If URL is used with a https connection, the first callback argument
  plist will contain a :peer element that has the output of
  `gnutls-peer-status' (if Emacs is built with GnuTLS support).
@@@ -723,47 -838,72 +838,72 @@@ filesystem notifications
  
  ** SQL mode
  
+ ---
  *** New user variable `sql-default-directory' enables remote
  connections using Tramp.
  
- *** New command `sql-send-line-and-next' sends the current line to the
- interactive buffer and advances to the next line, skipping whitespace
- and comments.
+ ---
+ *** New command `sql-send-line-and-next'.
+ This command, bound to `C-c C-n' by default, sends the current line to
+ the SQL process and advances to the next line, skipping whitespace and
+ comments.
  
- *** Add support for Vertica SQL.
+ ---
+ *** Added support for Vertica SQL.
  
  ** VC and related modes
  
+ +++
  *** Basic push support, via `vc-push', bound to `C-x v P'.
  Implemented for Bzr, Git, Hg.  As part of this change, the pre-existing
  (undocumented) command vc-hg-push now behaves slightly differently.
  
+ +++
  *** The new command vc-region-history shows the log+diff of the active region.
  
+ +++
+ *** You can refresh the VC state of a file buffer with `M-x vc-refresh-state'.
+ This command is useful when you perform version control commands
+ outside Emacs (e.g., from the shell prompt), or if you switch the VC
+ back-end for the buffer's file, or remove it from version control.
+ +++
  *** New option `vc-annotate-background-mode' controls whether
  the color range from `vc-annotate-color-map' is applied to the
  background or to the foreground.
  
- *** `compare-windows' now compares text with the most recently used window
- instead of the next window.  The new option `compare-windows-get-window-function'
- allows to customize this.
+ +++
+ *** `compare-windows' now compares text with the most recently selected window
+ instead of the next window.  If you want the previous behavior of
+ comparing with the next window, customize the new option
+ `compare-windows-get-window-function' to the value
+ `compare-windows-get-next-window'.
  
+ ---
  *** Two new faces `compare-windows-removed' and `compare-windows-added'
- replace the obsolete face `compare-windows'.
+ replace the face `compare-windows', which is now an obsolete alias for
+ `compare-windows-added'.
  
  ---
  *** `log-edit-insert-changelog' converts "(tiny change)" to
  "Copyright-paperwork-exempt: yes".  Set `log-edit-rewrite-tiny-change'
  nil to disable this.
  
- ** VHDL mode supports VHDL'08.
+ ---
+ ** VHDL mode now supports VHDL'08.
  
- ** Calculator: decimal display mode uses "," groups, so it's more
- fitting for use in money calculations; factorial works with
- non-integer inputs.
+ ** Calculator
  
- ** HideIfDef mode now support full C/C++ expressions, argumented macro expansions,
- interactive macro evaluation and automatic scanning of #defined symbols.
+ ---
+ *** Decimal display mode uses "," groups, so it's more
+ fitting for use in money calculations
+ ---
+ *** Factorial works with non-integer inputs.
+ ** HideIfDef mode now support full C/C++ expressions, argumented macro
+ expansions, interactive macro evaluation and automatic scanning of
+ #defined symbols.
  
  *** New custom variable `hide-ifdef-header-regexp' to define C/C++ header file
  name patterns.  Default case-insensitive .h, .hh, .hpp, .hxx, and .h++.
@@@ -810,6 -950,11 +950,11 @@@ easier binding, which is now unoccupie
  alias for a private variable.  `xref-push-marker-stack' and
  `xref-pop-marker-stack' should be used to mutate it instead.
  
+ ---
+ *** `xref-find-definitions' and `describe-function' now display
+ information about mode local overrides (defined by cedet/mode-local.el
+ `define-overloadable-function' `define-mode-local-overrides').
  ** etags
  As a result of the above, these commands are now obsolete:
  `find-tag-other-window', `find-tag-other-frame', `find-tag-regexp',
@@@ -850,6 -995,10 +995,10 @@@ to avoid interfering with the kill ring
  allow overriding the regular expression that recognizes the ldapsearch
  command line's password prompt.
  
+ EUDC's BBDB backend now supports BBDB 3.
+ EUDC's PH backend (eudcb-ph.el) is obsolete.
  ** Eshell
  
  +++
@@@ -911,6 -1060,18 +1060,18 @@@ compression command is determined from 
  *** `W' is now bound to `browse-url-of-dired-file', and is useful for
  viewing HTML files and the like.
  
+ ** Tabulated List Mode
+ +++
+ *** It is now safe for a mode that derives `tabulated-list-mode' to not
+ call `tabulated-list-init-header', in which case it will have no
+ header.
+ +++
+ *** `tabulated-list-print' takes a second optional argument, update,
+ which specifies an alternative printing method which is faster when
+ few or no entries have changed.
  ** Obsolete packages
  
  ---
@@@ -957,6 -1118,12 +1118,12 @@@ support for JSX, an XML-like syntax ext
  \f
  * Incompatible Lisp Changes in Emacs 25.1
  
+ ---
+ ** `setq' and `setf' must now be called with an even number of
+ arguments.  The earlier behavior of silently supplying a nil to the
+ last variable when there was an odd number of arguments has been
+ eliminated.
  ** `syntax-begin-function' is declared obsolete.
  Removed font-lock-beginning-of-syntax-function and the SYNTAX-BEGIN
  slot in font-lock-defaults.
@@@ -983,6 -1150,7 +1150,7 @@@ large portions of the Emacs display, an
  pointer shape during dragging, should bind the variable `track-mouse'
  to the special value `dragging' in the body of the form.
  
+ ---
  ** The optional `predicate' argument of `lisp-complete-symbol' no longer
  has any effect.  (This change was made in Emacs 24.4 but was not
  advertised at the time.)
  ** `indirect-function' does not signal `void-function' any more.
  This is mostly a bug-fix, since this change was missed back in 24.4 when
  symbol-function was changed not to signal `void-function' any more.
  *** As a consequence, the second arg of `indirect-function' is now obsolete.
  
  ** Comint, term, and compile do not set the EMACS env var any more.
@@@ -1089,6 -1258,12 +1258,12 @@@ that happen, `unhandled-file-name-direc
  \f
  * Lisp Changes in Emacs 25.1
  
+ ** pcase
+ *** New UPatterns `quote', `app', `cl-struct', `eieio', `seq', and `map'.
+ *** New UPatterns can be defined with `pcase-defmacro'.
+ +++
+ *** New vector QPattern.
  ** syntax-propertize is now automatically called on-demand during forward
  parsing functions like `forward-sexp'.
  
@@@ -1118,6 -1293,27 +1293,27 @@@ of subprocess
  process filter, sentinel, etc., through keyword arguments (similar to
  `make-network-process').
  
+ +++
+ ** A new function `directory-files-recursively' returns all matching
+ files (recursively) under a directory.
+ +++
+ ** New variable `inhibit-message', when bound to non-nil, inhibits
+ `message' and related functions from displaying messages the Echo
+ Area.  The output is still logged to the *Messages* buffer.
+ +++
+ ** A new text property `inhibit-read-only' can be used in read-only
+ buffers to allow certain parts of the text to be writable.
+ +++
+ ** A new variable `comment-end-can-be-escaped' is useful in languages
+    such as C and C++ where line comments with escaped newlines are
+    continued to the next line.
+ +++
+ ** New macro `define-advice'.
  ** `read-buffer' takes a new `predicate' argument.
  
  ** Emacs Lisp now supports generators.
@@@ -1144,6 -1340,26 +1340,26 @@@ evaluated (and should return a string) 
  ** New function `string-greaterp', which return the opposite result of
  `string-lessp'.
  
+ +++
+ ** The new functions `string-collate-lessp' and `string-collate-equalp'
+ preserve the collation order as defined by the system's locale(1)
+ environment.  For the time being this is implemented for modern POSIX
+ systems and for MS-Windows, for other systems they fall back to their
+ counterparts `string-lessp' and `string-equal'.
+ ---
+ *** The ls-lisp package uses `string-collate-lessp' to sort file names.
+ If you want the old, locale-independent sorting, customize the new
+ option `ls-lisp-use-string-collate' to a nil value.
+ +++
+ *** The MS-Windows specific variable `w32-collate-ignore-punctuation',
+ if set to a non-nil value, causes the above 2 functions to ignore
+ symbol and punctuation characters when collating strings.  This
+ emulates the behavior of modern Posix platforms when the locale's
+ 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 `funcall-interactively', which works like `funcall'
@@@ -1152,6 -1368,20 +1368,20 @@@ called interactively
  
  ** New function `function-put' to use instead of `put' for function properties.
  
+ +++
+ ** The new function `bidi-find-overridden-directionality' allows to
+ find characters whose directionality was, perhaps maliciously,
+ overridden by directional override control characters.  Lisp programs
+ can use this to detect potential phishing of URLs and other links that
+ exploits bidirectional display reordering.
+ +++
+ ** The new function `buffer-substring-with-bidi-context' allows to
+ copy a portion of a buffer into a different location while preserving
+ the visual appearance both of the copied text and the text at
+ destination, even when the copied text includes mixed bidirectional
+ text and directional control characters.
  +++
  ** New properties that can be specified with `declare':
  *** (interactive-only INSTEAD), says to use INSTEAD for non-interactive use.
@@@ -1178,6 -1408,35 +1408,35 @@@ name.  The variable `system-name' is no
  ** If `pwd' is called with a prefix argument, insert the current default
  directory at point.
  
+ +++
+ ** New functions return extended information about fonts and faces.
+ +++
+ *** The function `font-info' now returns more details about a font.
+ In particular, it now returns the average width of the font's
+ characters, which can be used for geometry-related calculations.
+ +++
+ *** A new function `default-font-width' returns the average width of a
+ character in the current buffer's default font.  If the default face
+ is remapped (see `face-remapping-alist'), the value for the remapped
+ face is returned.  This function complements the existing function
+ `default-font-height'.
+ +++
+ *** New functions `window-font-height' and `window-font-width' return
+ the height and average width of characters in a specified face and
+ window.  If FACE is remapped (see `face-remapping-alist'), the
+ function returns the information for the remapped face.
+ +++
+ *** A new function `window-max-chars-per-line' returns the maximal
+ number of characters that can be displayed on one line.  If a face
+ and/or window are provided, these values are used for the
+ calculation.  This function is different from `window-body-width' in
+ that it accounts for (i) continuation glyphs, (ii) the size of the
+ font, and (iii) the specified window.
  ---
  ** New utilities in subr-x.el:
  *** New macros `if-let' and `when-let' allow defining bindings and to
@@@ -1239,12 -1498,26 +1498,26 @@@ integers
  ** New function `set-binary-mode' allows to switch a standard stream
  of the Emacs process to binary I/O mode.
  
+ +++
+ ** The new function `directory-name-p' can be used to check whether a file
+ name (as returned from, for instance, `file-name-all-completions') is
+ a directory file name.  It returns non-nil if the last character in
+ the name is a directory separator character (forward slash on GNU and
+ Unix systems, forward- or backslash on MS-Windows and MS-DOS).
  ** ASCII approximations to curved quotes are put in standard-display-table
  if the terminal cannot display curved quotes.
  
  ** Standard output and error streams now transliterate characters via
  standard-display-table, and encode output using locale-coding-system.
  
+ +++
+ ** New var `truncate-string-ellipsis' to choose how to indicate truncation.
+ +++
+ ** New possible value for `system-type': `nacl'.
+ This is used by Google's Native Client (NaCl).
  ** Miscellaneous name change
  
  For consistency with the usual Emacs spelling, the Lisp variable
@@@ -1324,26 -1597,24 +1597,24 @@@ fullwidth frames, the behavior may depe
  windows without "fixing" it.  It's supported by `fit-window-to-buffer',
  `temp-buffer-resize-mode' and `display-buffer'.
  
+ +++
+ ** New `display-buffer' action function `display-buffer-use-some-frame'.
+ This displays the buffer in an existing frame other than the current
+ frame, and allows the caller to specify a frame predicate to exclude
+ frames.
  +++
  ** New minor mode `window-divider-mode' and options
  `window-divider-default-places', `window-divider-default-bottom-width'
  and `window-divider-default-right-width'.
  
- +++
- ** New option `switch-to-buffer-in-dedicated-window' allows to customize
- how `switch-to-buffer' proceeds interactively when the selected window
- is strongly dedicated to its buffer.
- +++
- ** The option `even-window-heights' has been renamed to
- `even-window-sizes' and now handles window widths as well.
  ** Tearoff menus and detachable toolbars for Gtk+ has been removed.
  Those features have been deprecated in Gtk+ for a long time.
  
- ** Miscellaneous
+ ** Etags
  
  *** etags no longer qualifies class members by default.
  By default, `etags' will not qualify class members for C-like
  object-oriented languages with their class names and namespaces, and
  will remove qualifications used explicitly in the code from the tag
@@@ -1357,6 -1628,16 +1628,16 @@@ using -Q might make some class members 
  (`xref-find-definitions'); if so, you can use `C-u M-.' to specify the
  qualified names by hand.
  
+ *** New language Ruby
+ Names of modules, classes, methods, and functions are tagged.
+ Overloaded operators are also tagged.
+ *** Improved support for Lua
+ Etags now tags functions even if the "function" keyword follows some
+ whitespace at line beginning.
  \f
  * Changes in Emacs 25.1 on Non-Free Operating Systems
  
@@@ -1386,6 -1667,12 +1667,12 @@@ Pass '--without-ns' to configure to cre
  
  ** OS X on PowerPC is no longer supported.
  
+ ---
+ ** New variable `ns-use-fullscreen-animation' controls animation for
+ non-native NS fullscreen.  The default is nil.  Set to t to enable
+ animation when entering and leaving fullscreen.  For native OSX fullscreen
+ this has no effect.
  ---
  ** The new function 'w32-application-type' returns the type of an
  MS-Windows application given the name of its executable program file.
diff --combined lisp/ldefs-boot.el
index b870d81727d3c2d1e822bfc1fcf01f20cfefcc2f,3d1f6d28898ca5d809e286c6bc2adde8aba4c7c2..f0c65fa032bdf772ed1f4782ef36ecad42c11e7b
@@@ -3,7 -3,7 +3,7 @@@
  ;;; Code:
  
  \f
- ;;;### (autoloads nil "5x5" "play/5x5.el" (22026 25907 631502 692000))
+ ;;;### (autoloads nil "5x5" "play/5x5.el" (22086 11930 122062 731000))
  ;;; Generated autoloads from play/5x5.el
  
  (autoload '5x5 "5x5" "\
@@@ -65,8 -65,8 +65,8 @@@ should return a grid vector array that 
  
  ;;;***
  \f
- ;;;### (autoloads nil "ada-mode" "progmodes/ada-mode.el" (22011 58553
- ;;;;;;  865858 469000))
+ ;;;### (autoloads nil "ada-mode" "progmodes/ada-mode.el" (22086 11930
+ ;;;;;;  138062 731000))
  ;;; Generated autoloads from progmodes/ada-mode.el
  
  (autoload 'ada-add-extensions "ada-mode" "\
@@@ -85,8 -85,8 +85,8 @@@ Ada mode is the major mode for editing 
  
  ;;;***
  \f
- ;;;### (autoloads nil "ada-stmt" "progmodes/ada-stmt.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "ada-stmt" "progmodes/ada-stmt.el" (22086 11930
+ ;;;;;;  138062 731000))
  ;;; Generated autoloads from progmodes/ada-stmt.el
  
  (autoload 'ada-header "ada-stmt" "\
@@@ -96,8 -96,8 +96,8 @@@ Insert a descriptive header at the top 
  
  ;;;***
  \f
- ;;;### (autoloads nil "ada-xref" "progmodes/ada-xref.el" (22011 58553
- ;;;;;;  869858 469000))
+ ;;;### (autoloads nil "ada-xref" "progmodes/ada-xref.el" (22086 11930
+ ;;;;;;  138062 731000))
  ;;; Generated autoloads from progmodes/ada-xref.el
  
  (autoload 'ada-find-file "ada-xref" "\
@@@ -108,8 -108,8 +108,8 @@@ Completion is available
  
  ;;;***
  \f
- ;;;### (autoloads nil "add-log" "vc/add-log.el" (22011 58554 85858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "add-log" "vc/add-log.el" (22086 11930 366062
+ ;;;;;;  731000))
  ;;; Generated autoloads from vc/add-log.el
  
  (put 'change-log-default-name 'safe-local-variable 'string-or-null-p)
@@@ -238,8 -238,8 +238,8 @@@ old-style time formats for entries are 
  
  ;;;***
  \f
- ;;;### (autoloads nil "advice" "emacs-lisp/advice.el" (22011 58553
- ;;;;;;  345858 469000))
+ ;;;### (autoloads nil "advice" "emacs-lisp/advice.el" (22092 27717
+ ;;;;;;  604268 464000))
  ;;; Generated autoloads from emacs-lisp/advice.el
  
  (defvar ad-redefinition-action 'warn "\
@@@ -374,7 -374,7 +374,7 @@@ usage: (defadvice FUNCTION (CLASS NAME 
  
  ;;;***
  \f
- ;;;### (autoloads nil "align" "align.el" (21998 46516 830024 649000))
+ ;;;### (autoloads nil "align" "align.el" (22086 11929 490062 731000))
  ;;; Generated autoloads from align.el
  
  (autoload 'align "align" "\
@@@ -477,7 -477,7 +477,7 @@@ A replacement function for `newline-and
  
  ;;;***
  \f
- ;;;### (autoloads nil "allout" "allout.el" (22015 55603 653705 321000))
+ ;;;### (autoloads nil "allout" "allout.el" (22086 11929 494062 731000))
  ;;; Generated autoloads from allout.el
  (push (purecopy '(allout 2 3)) package--builtin-versions)
  
@@@ -837,8 -837,8 +837,8 @@@ for details on preparing Emacs for auto
  
  ;;;***
  \f
- ;;;### (autoloads nil "allout-widgets" "allout-widgets.el" (21998
- ;;;;;;  46516 830024 649000))
+ ;;;### (autoloads nil "allout-widgets" "allout-widgets.el" (22086
+ ;;;;;;  11929 490062 731000))
  ;;; Generated autoloads from allout-widgets.el
  (push (purecopy '(allout-widgets 1 0)) package--builtin-versions)
  
@@@ -896,8 -896,8 +896,8 @@@ outline hot-spot navigation (see `allou
  
  ;;;***
  \f
- ;;;### (autoloads nil "ange-ftp" "net/ange-ftp.el" (22011 58553 761858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "ange-ftp" "net/ange-ftp.el" (22092 27717 960268
+ ;;;;;;  464000))
  ;;; Generated autoloads from net/ange-ftp.el
  
  (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir)
@@@ -918,8 -918,8 +918,8 @@@ directory, so that Emacs will know its 
  
  ;;;***
  \f
- ;;;### (autoloads nil "animate" "play/animate.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "animate" "play/animate.el" (22086 11930 122062
+ ;;;;;;  731000))
  ;;; Generated autoloads from play/animate.el
  
  (autoload 'animate-string "animate" "\
@@@ -951,8 -951,8 +951,8 @@@ the buffer *Birthday-Present-for-Name*
  
  ;;;***
  \f
- ;;;### (autoloads nil "ansi-color" "ansi-color.el" (21952 37178 110214
- ;;;;;;  961000))
+ ;;;### (autoloads nil "ansi-color" "ansi-color.el" (22086 11929 494062
+ ;;;;;;  731000))
  ;;; Generated autoloads from ansi-color.el
  (push (purecopy '(ansi-color 3 4 2)) package--builtin-versions)
  
@@@ -978,8 -978,8 +978,8 @@@ This is a good function to put in `comi
  
  ;;;***
  \f
- ;;;### (autoloads nil "antlr-mode" "progmodes/antlr-mode.el" (22011
- ;;;;;;  58553 873858 469000))
+ ;;;### (autoloads nil "antlr-mode" "progmodes/antlr-mode.el" (22086
+ ;;;;;;  11930 138062 731000))
  ;;; Generated autoloads from progmodes/antlr-mode.el
  (push (purecopy '(antlr-mode 2 2 3)) package--builtin-versions)
  
@@@ -1015,8 -1015,8 +1015,8 @@@ Used in `antlr-mode'.  Also a useful fu
  
  ;;;***
  \f
- ;;;### (autoloads nil "appt" "calendar/appt.el" (21998 46516 878024
- ;;;;;;  649000))
+ ;;;### (autoloads nil "appt" "calendar/appt.el" (22086 11929 526062
+ ;;;;;;  731000))
  ;;; Generated autoloads from calendar/appt.el
  
  (autoload 'appt-add "appt" "\
@@@ -1037,8 -1037,8 +1037,8 @@@ ARG is positive, otherwise off
  
  ;;;***
  \f
- ;;;### (autoloads nil "apropos" "apropos.el" (21998 46516 834024
- ;;;;;;  649000))
+ ;;;### (autoloads nil "apropos" "apropos.el" (22099 26170 362017
+ ;;;;;;  16000))
  ;;; Generated autoloads from apropos.el
  
  (autoload 'apropos-read-pattern "apropos" "\
@@@ -1153,8 -1153,8 +1153,8 @@@ Returns list of symbols and documentati
  
  ;;;***
  \f
- ;;;### (autoloads nil "arc-mode" "arc-mode.el" (22085 50883 177731
- ;;;;;;  271000))
+ ;;;### (autoloads nil "arc-mode" "arc-mode.el" (22086 11929 494062
+ ;;;;;;  731000))
  ;;; Generated autoloads from arc-mode.el
  
  (autoload 'archive-mode "arc-mode" "\
@@@ -1174,7 -1174,7 +1174,7 @@@ archive
  
  ;;;***
  \f
- ;;;### (autoloads nil "array" "array.el" (21670 32330 885624 725000))
+ ;;;### (autoloads nil "array" "array.el" (22086 11929 494062 731000))
  ;;; Generated autoloads from array.el
  
  (autoload 'array-mode "array" "\
@@@ -1245,8 -1245,8 +1245,8 @@@ Entering array mode calls the function 
  
  ;;;***
  \f
- ;;;### (autoloads nil "artist" "textmodes/artist.el" (21906 58826
- ;;;;;;  78640 200000))
+ ;;;### (autoloads nil "artist" "textmodes/artist.el" (22086 11930
+ ;;;;;;  310062 731000))
  ;;; Generated autoloads from textmodes/artist.el
  (push (purecopy '(artist 1 2 6)) package--builtin-versions)
  
@@@ -1452,8 -1452,8 +1452,8 @@@ Keymap summar
  
  ;;;***
  \f
- ;;;### (autoloads nil "asm-mode" "progmodes/asm-mode.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "asm-mode" "progmodes/asm-mode.el" (22086 11930
+ ;;;;;;  142062 731000))
  ;;; Generated autoloads from progmodes/asm-mode.el
  
  (autoload 'asm-mode "asm-mode" "\
@@@ -1480,8 -1480,8 +1480,8 @@@ Special commands
  
  ;;;***
  \f
- ;;;### (autoloads nil "auth-source" "gnus/auth-source.el" (22067
- ;;;;;;  17342 158157 143000))
+ ;;;### (autoloads nil "auth-source" "gnus/auth-source.el" (22086
+ ;;;;;;  11929 774062 731000))
  ;;; Generated autoloads from gnus/auth-source.el
  
  (defvar auth-source-cache-expiry 7200 "\
@@@ -1493,8 -1493,8 +1493,8 @@@ let-binding."
  
  ;;;***
  \f
- ;;;### (autoloads nil "autoarg" "autoarg.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "autoarg" "autoarg.el" (22086 11929 494062
+ ;;;;;;  731000))
  ;;; Generated autoloads from autoarg.el
  
  (defvar autoarg-mode nil "\
@@@ -1554,8 -1554,8 +1554,8 @@@ This is similar to `autoarg-mode' but r
  
  ;;;***
  \f
- ;;;### (autoloads nil "autoconf" "progmodes/autoconf.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "autoconf" "progmodes/autoconf.el" (22086 11930
+ ;;;;;;  142062 731000))
  ;;; Generated autoloads from progmodes/autoconf.el
  
  (autoload 'autoconf-mode "autoconf" "\
@@@ -1565,8 -1565,8 +1565,8 @@@ Major mode for editing Autoconf configu
  
  ;;;***
  \f
- ;;;### (autoloads nil "autoinsert" "autoinsert.el" (21980 16567 365544
- ;;;;;;  893000))
+ ;;;### (autoloads nil "autoinsert" "autoinsert.el" (22086 11929 494062
+ ;;;;;;  731000))
  ;;; Generated autoloads from autoinsert.el
  
  (autoload 'auto-insert "autoinsert" "\
@@@ -1604,8 -1604,8 +1604,8 @@@ insert a template for the file dependin
  
  ;;;***
  \f
- ;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (21935
- ;;;;;;  28080 450075 956000))
+ ;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (22086
+ ;;;;;;  11929 634062 731000))
  ;;; Generated autoloads from emacs-lisp/autoload.el
  
  (put 'generated-autoload-file 'safe-local-variable 'stringp)
@@@ -1656,8 -1656,8 +1656,8 @@@ should be non-nil)
  
  ;;;***
  \f
- ;;;### (autoloads nil "autorevert" "autorevert.el" (22065 61995 826407
- ;;;;;;  852000))
+ ;;;### (autoloads nil "autorevert" "autorevert.el" (22089 51528 204929
+ ;;;;;;  316000))
  ;;; Generated autoloads from autorevert.el
  
  (autoload 'auto-revert-mode "autorevert" "\
@@@ -1745,7 -1745,7 +1745,7 @@@ specifies in the mode line
  
  ;;;***
  \f
- ;;;### (autoloads nil "avoid" "avoid.el" (21955 13362 292569 401000))
+ ;;;### (autoloads nil "avoid" "avoid.el" (22086 11929 498062 731000))
  ;;; Generated autoloads from avoid.el
  
  (defvar mouse-avoidance-mode nil "\
@@@ -1783,8 -1783,8 +1783,8 @@@ definition of \"random distance\".
  
  ;;;***
  \f
- ;;;### (autoloads nil "bat-mode" "progmodes/bat-mode.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "bat-mode" "progmodes/bat-mode.el" (22086 11930
+ ;;;;;;  142062 731000))
  ;;; Generated autoloads from progmodes/bat-mode.el
  
  (add-to-list 'auto-mode-alist '("\\.\\(bat\\|cmd\\)\\'" . bat-mode))
@@@ -1802,8 -1802,8 +1802,8 @@@ Run script using `bat-run' and `bat-run
  
  ;;;***
  \f
- ;;;### (autoloads nil "battery" "battery.el" (22026 25907 487502
- ;;;;;;  692000))
+ ;;;### (autoloads nil "battery" "battery.el" (22086 11929 498062
+ ;;;;;;  731000))
  ;;; Generated autoloads from battery.el
   (put 'battery-mode-line-string 'risky-local-variable t)
  
@@@ -1838,8 -1838,8 +1838,8 @@@ seconds
  
  ;;;***
  \f
- ;;;### (autoloads nil "benchmark" "emacs-lisp/benchmark.el" (21670
- ;;;;;;  32330 885624 725000))
+ ;;;### (autoloads nil "benchmark" "emacs-lisp/benchmark.el" (22086
+ ;;;;;;  11929 638062 731000))
  ;;; Generated autoloads from emacs-lisp/benchmark.el
  
  (autoload 'benchmark-run "benchmark" "\
@@@ -1875,8 -1875,8 +1875,8 @@@ For non-interactive use see also `bench
  
  ;;;***
  \f
- ;;;### (autoloads nil "bibtex" "textmodes/bibtex.el" (22011 58554
- ;;;;;;  41858 469000))
+ ;;;### (autoloads nil "bibtex" "textmodes/bibtex.el" (22092 27718
+ ;;;;;;  508268 464000))
  ;;; Generated autoloads from textmodes/bibtex.el
  
  (autoload 'bibtex-initialize "bibtex" "\
@@@ -1968,7 -1968,7 +1968,7 @@@ A prefix arg negates the value of `bibt
  ;;;***
  \f
  ;;;### (autoloads nil "bibtex-style" "textmodes/bibtex-style.el"
- ;;;;;;  (21670 32331 885635 586000))
+ ;;;;;;  (22086 11930 310062 731000))
  ;;; Generated autoloads from textmodes/bibtex-style.el
  
  (autoload 'bibtex-style-mode "bibtex-style" "\
@@@ -1978,8 -1978,8 +1978,8 @@@ Major mode for editing BibTeX style fil
  
  ;;;***
  \f
- ;;;### (autoloads nil "binhex" "mail/binhex.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "binhex" "mail/binhex.el" (22086 11929 930062
+ ;;;;;;  731000))
  ;;; Generated autoloads from mail/binhex.el
  
  (defconst binhex-begin-line "^:...............................................................$" "\
@@@ -2003,8 -2003,8 +2003,8 @@@ Binhex decode region between START and 
  
  ;;;***
  \f
- ;;;### (autoloads nil "blackbox" "play/blackbox.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "blackbox" "play/blackbox.el" (22086 11930
+ ;;;;;;  122062 731000))
  ;;; Generated autoloads from play/blackbox.el
  
  (autoload 'blackbox "blackbox" "\
@@@ -2123,8 -2123,8 +2123,8 @@@ a reflection
  
  ;;;***
  \f
- ;;;### (autoloads nil "bookmark" "bookmark.el" (22081 53819 631137
- ;;;;;;  351000))
+ ;;;### (autoloads nil "bookmark" "bookmark.el" (22086 11929 498062
+ ;;;;;;  731000))
  ;;; Generated autoloads from bookmark.el
   (define-key ctl-x-r-map "b" 'bookmark-jump)
   (define-key ctl-x-r-map "m" 'bookmark-set)
@@@ -2348,8 -2348,8 +2348,8 @@@ Incremental search of bookmarks, hidin
  
  ;;;***
  \f
- ;;;### (autoloads nil "browse-url" "net/browse-url.el" (21993 28596
- ;;;;;;  198597 473000))
+ ;;;### (autoloads nil "browse-url" "net/browse-url.el" (22086 11929
+ ;;;;;;  990062 731000))
  ;;; Generated autoloads from net/browse-url.el
  
  (defvar browse-url-browser-function 'browse-url-default-browser "\
@@@ -2689,7 -2689,7 +2689,7 @@@ from `browse-url-elinks-wrapper'
  
  ;;;***
  \f
- ;;;### (autoloads nil "bs" "bs.el" (21998 46516 834024 649000))
+ ;;;### (autoloads nil "bs" "bs.el" (22086 11929 498062 731000))
  ;;; Generated autoloads from bs.el
  (push (purecopy '(bs 1 17)) package--builtin-versions)
  
@@@ -2730,8 -2730,8 +2730,8 @@@ name of buffer configuration
  
  ;;;***
  \f
- ;;;### (autoloads nil "bubbles" "play/bubbles.el" (22026 25907 631502
- ;;;;;;  692000))
+ ;;;### (autoloads nil "bubbles" "play/bubbles.el" (22086 11930 122062
+ ;;;;;;  731000))
  ;;; Generated autoloads from play/bubbles.el
  
  (autoload 'bubbles "bubbles" "\
@@@ -2753,7 -2753,7 +2753,7 @@@ columns on its right towards the left
  ;;;***
  \f
  ;;;### (autoloads nil "bug-reference" "progmodes/bug-reference.el"
- ;;;;;;  (21980 16567 993544 893000))
+ ;;;;;;  (22086 11930 142062 731000))
  ;;; 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)))))
@@@ -2773,8 -2773,8 +2773,8 @@@ Like `bug-reference-mode', but only but
  
  ;;;***
  \f
- ;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (22067
- ;;;;;;  17342 138157 143000))
+ ;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (22108
+ ;;;;;;  15942 526032 987000))
  ;;; 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)
@@@ -2894,8 -2894,8 +2894,8 @@@ and corresponding effects
  
  ;;;***
  \f
- ;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (21670
- ;;;;;;  32330 885624 725000))
+ ;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (22086
+ ;;;;;;  11929 526062 731000))
  ;;; Generated autoloads from calendar/cal-china.el
  
  (put 'calendar-chinese-time-zone 'risky-local-variable t)
  
  ;;;***
  \f
- ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (21990 52406
- ;;;;;;  468500 385000))
+ ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (22086 11929
+ ;;;;;;  526062 731000))
  ;;; Generated autoloads from calendar/cal-dst.el
  
  (put 'calendar-daylight-savings-starts 'risky-local-variable t)
  
  ;;;***
  \f
- ;;;### (autoloads nil "cal-hebrew" "calendar/cal-hebrew.el" (21993
- ;;;;;;  28595 970597 473000))
+ ;;;### (autoloads nil "cal-hebrew" "calendar/cal-hebrew.el" (22086
+ ;;;;;;  11929 526062 731000))
  ;;; Generated autoloads from calendar/cal-hebrew.el
  
  (autoload 'calendar-hebrew-list-yahrzeits "cal-hebrew" "\
@@@ -2929,7 -2929,7 +2929,7 @@@ from the cursor position
  
  ;;;***
  \f
- ;;;### (autoloads nil "calc" "calc/calc.el" (22073 59712 746803 451000))
+ ;;;### (autoloads nil "calc" "calc/calc.el" (22086 11929 522062 731000))
  ;;; Generated autoloads from calc/calc.el
   (define-key ctl-x-map "*" 'calc-dispatch)
  
@@@ -3015,8 -3015,8 +3015,8 @@@ See Info node `(calc)Defining Functions
  
  ;;;***
  \f
- ;;;### (autoloads nil "calc-undo" "calc/calc-undo.el" (22073 59712
- ;;;;;;  730803 451000))
+ ;;;### (autoloads nil "calc-undo" "calc/calc-undo.el" (22086 11929
+ ;;;;;;  518062 731000))
  ;;; Generated autoloads from calc/calc-undo.el
  
  (autoload 'calc-undo "calc-undo" "\
  
  ;;;***
  \f
- ;;;### (autoloads nil "calculator" "calculator.el" (22118 48196 106762
- ;;;;;;  331000))
+ ;;;### (autoloads nil "calculator" "calculator.el" (22092 27717 520268
+ ;;;;;;  464000))
  ;;; Generated autoloads from calculator.el
  
  (autoload 'calculator "calculator" "\
@@@ -3038,8 -3038,8 +3038,8 @@@ See the documentation for `calculator-m
  
  ;;;***
  \f
- ;;;### (autoloads nil "calendar" "calendar/calendar.el" (22042 14122
- ;;;;;;  205169 136000))
+ ;;;### (autoloads nil "calendar" "calendar/calendar.el" (22092 27717
+ ;;;;;;  540268 464000))
  ;;; Generated autoloads from calendar/calendar.el
  
  (autoload 'calendar "calendar" "\
@@@ -3082,8 -3082,8 +3082,8 @@@ This function is suitable for executio
  
  ;;;***
  \f
- ;;;### (autoloads nil "canlock" "gnus/canlock.el" (21852 24381 567240
- ;;;;;;  49000))
+ ;;;### (autoloads nil "canlock" "gnus/canlock.el" (22086 11929 774062
+ ;;;;;;  731000))
  ;;; Generated autoloads from gnus/canlock.el
  
  (autoload 'canlock-insert-header "canlock" "\
@@@ -3100,8 -3100,8 +3100,8 @@@ it fails
  
  ;;;***
  \f
- ;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (22084
- ;;;;;;  30014 95762 3000))
+ ;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (22108
+ ;;;;;;  15942 570032 987000))
  ;;; Generated autoloads from progmodes/cc-engine.el
  
  (autoload 'c-guess-basic-syntax "cc-engine" "\
@@@ -3111,8 -3111,8 +3111,8 @@@ Return the syntactic context of the cur
  
  ;;;***
  \f
- ;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (21976 19510
- ;;;;;;  84430 241000))
+ ;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (22086 11930
+ ;;;;;;  150062 731000))
  ;;; Generated autoloads from progmodes/cc-guess.el
  
  (defvar c-guess-guessed-offsets-alist nil "\
@@@ -3210,8 -3210,8 +3210,8 @@@ the absolute file name of the file if S
  
  ;;;***
  \f
- ;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (22084 30014
- ;;;;;;  99762 3000))
+ ;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (22101 42694
+ ;;;;;;  157526 804000))
  ;;; Generated autoloads from progmodes/cc-mode.el
  
  (autoload 'c-initialize-cc-mode "cc-mode" "\
@@@ -3369,8 -3369,8 +3369,8 @@@ Key bindings
  
  ;;;***
  \f
- ;;;### (autoloads nil "cc-styles" "progmodes/cc-styles.el" (21976
- ;;;;;;  19510 104430 241000))
+ ;;;### (autoloads nil "cc-styles" "progmodes/cc-styles.el" (22086
+ ;;;;;;  11930 154062 731000))
  ;;; Generated autoloads from progmodes/cc-styles.el
  
  (autoload 'c-set-style "cc-styles" "\
@@@ -3421,8 -3421,8 +3421,8 @@@ and exists only for compatibility reaso
  
  ;;;***
  \f
- ;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (22011 58553
- ;;;;;;  885858 469000))
+ ;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (22086 11930
+ ;;;;;;  154062 731000))
  ;;; Generated autoloads from progmodes/cc-vars.el
  (put 'c-basic-offset 'safe-local-variable 'integerp)
  (put 'c-backslash-column 'safe-local-variable 'integerp)
  
  ;;;***
  \f
- ;;;### (autoloads nil "ccl" "international/ccl.el" (22064 41137 985468
- ;;;;;;  395000))
+ ;;;### (autoloads nil "ccl" "international/ccl.el" (22086 11929 874062
+ ;;;;;;  731000))
  ;;; Generated autoloads from international/ccl.el
  
  (autoload 'ccl-compile "ccl" "\
@@@ -3724,8 -3724,8 +3724,8 @@@ See the documentation of `define-ccl-pr
  
  ;;;***
  \f
- ;;;### (autoloads nil "cconv" "emacs-lisp/cconv.el" (22026 25907
- ;;;;;;  559502 692000))
+ ;;;### (autoloads nil "cconv" "emacs-lisp/cconv.el" (22102 63557
+ ;;;;;;  288509 103000))
  ;;; Generated autoloads from emacs-lisp/cconv.el
  
  (autoload 'cconv-closure-convert "cconv" "\
@@@ -3744,15 -3744,15 +3744,15 @@@ Add the warnings that closure conversio
  
  ;;;***
  \f
- ;;;### (autoloads nil "cedet" "cedet/cedet.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "cedet" "cedet/cedet.el" (22086 11929 542062
+ ;;;;;;  731000))
  ;;; Generated autoloads from cedet/cedet.el
  (push (purecopy '(cedet 2 0)) package--builtin-versions)
  
  ;;;***
  \f
- ;;;### (autoloads nil "cfengine" "progmodes/cfengine.el" (22011 58553
- ;;;;;;  889858 469000))
+ ;;;### (autoloads nil "cfengine" "progmodes/cfengine.el" (22086 11930
+ ;;;;;;  154062 731000))
  ;;; Generated autoloads from progmodes/cfengine.el
  (push (purecopy '(cfengine 1 4)) package--builtin-versions)
  
@@@ -3781,8 -3781,8 +3781,8 @@@ Choose `cfengine2-mode' or `cfengine3-m
  
  ;;;***
  \f
- ;;;### (autoloads nil "character-fold" "character-fold.el" (22068
- ;;;;;;  38191 905155 451000))
+ ;;;### (autoloads nil "character-fold" "character-fold.el" (22109
+ ;;;;;;  36809 195889 179000))
  ;;; Generated autoloads from character-fold.el
  
  (autoload 'character-fold-to-regexp "character-fold" "\
@@@ -3791,19 -3791,25 +3791,25 @@@ Any character in STRING that has an ent
  `character-fold-table' is replaced with that entry (which is a
  regexp) and other characters are `regexp-quote'd.
  
- \(fn STRING &optional LAX)" nil nil)
+ If the resulting regexp would be too long for Emacs to handle,
+ just return the result of calling `regexp-quote' on STRING.
+ FROM is for internal use.  It specifies an index in the STRING
+ from which to start.
+ \(fn STRING &optional LAX FROM)" nil nil)
  
  ;;;***
  \f
- ;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (21998 46516
- ;;;;;;  978024 649000))
+ ;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (22092 27717
+ ;;;;;;  628268 464000))
  ;;; Generated autoloads from emacs-lisp/chart.el
  (push (purecopy '(chart 0 2)) package--builtin-versions)
  
  ;;;***
  \f
  ;;;### (autoloads nil "check-declare" "emacs-lisp/check-declare.el"
- ;;;;;;  (22011 58553 361858 469000))
+ ;;;;;;  (22086 11929 650062 731000))
  ;;; Generated autoloads from emacs-lisp/check-declare.el
  
  (autoload 'check-declare-file "check-declare" "\
@@@ -3820,8 -3826,8 +3826,8 @@@ Returns non-nil if any false statement
  
  ;;;***
  \f
- ;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (22002
- ;;;;;;  43570 516887 749000))
+ ;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (22104
+ ;;;;;;  18893 193441 487000))
  ;;; 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)
@@@ -4031,8 -4037,8 +4037,8 @@@ Find package keywords that aren't in `f
  
  ;;;***
  \f
- ;;;### (autoloads nil "china-util" "language/china-util.el" (21670
- ;;;;;;  32331 385639 720000))
+ ;;;### (autoloads nil "china-util" "language/china-util.el" (22086
+ ;;;;;;  11929 890062 731000))
  ;;; Generated autoloads from language/china-util.el
  
  (autoload 'decode-hz-region "china-util" "\
@@@ -4069,8 -4075,8 +4075,8 @@@ Encode the text in the current buffer t
  
  ;;;***
  \f
- ;;;### (autoloads nil "chistory" "chistory.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "chistory" "chistory.el" (22086 11929 582062
+ ;;;;;;  731000))
  ;;; Generated autoloads from chistory.el
  
  (autoload 'repeat-matching-complex-command "chistory" "\
@@@ -4109,8 -4115,8 +4115,8 @@@ and runs the normal hook `command-histo
  
  ;;;***
  \f
- ;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (21901
- ;;;;;;  9907 369083 895000))
+ ;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (22086
+ ;;;;;;  11929 654062 731000))
  ;;; Generated autoloads from emacs-lisp/cl-indent.el
  
  (autoload 'common-lisp-indent-function "cl-indent" "\
@@@ -4193,8 -4199,8 +4199,8 @@@ instead
  
  ;;;***
  \f
- ;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (21903 51634
- ;;;;;;  278370 580000))
+ ;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (22086 11929
+ ;;;;;;  654062 731000))
  ;;; Generated autoloads from emacs-lisp/cl-lib.el
  (push (purecopy '(cl-lib 1 0)) package--builtin-versions)
  
@@@ -4212,8 -4218,8 +4218,8 @@@ a future Emacs interpreter will be abl
  
  ;;;***
  \f
- ;;;### (autoloads nil "cmacexp" "progmodes/cmacexp.el" (22026 25907
- ;;;;;;  631502 692000))
+ ;;;### (autoloads nil "cmacexp" "progmodes/cmacexp.el" (22086 11930
+ ;;;;;;  158062 731000))
  ;;; Generated autoloads from progmodes/cmacexp.el
  
  (autoload 'c-macro-expand "cmacexp" "\
@@@ -4233,8 -4239,8 +4239,8 @@@ For use inside Lisp programs, see also 
  
  ;;;***
  \f
- ;;;### (autoloads nil "cmuscheme" "cmuscheme.el" (22011 58553 281858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "cmuscheme" "cmuscheme.el" (22086 11929 582062
+ ;;;;;;  731000))
  ;;; Generated autoloads from cmuscheme.el
  
  (autoload 'run-scheme "cmuscheme" "\
@@@ -4254,7 -4260,7 +4260,7 @@@ is run)
  
  ;;;***
  \f
- ;;;### (autoloads nil "color" "color.el" (22055 26158 710447 352000))
+ ;;;### (autoloads nil "color" "color.el" (22086 11929 582062 731000))
  ;;; Generated autoloads from color.el
  
  (autoload 'color-name-to-rgb "color" "\
@@@ -4273,7 -4279,7 +4279,7 @@@ If FRAME cannot display COLOR, return n
  
  ;;;***
  \f
- ;;;### (autoloads nil "comint" "comint.el" (22011 58553 293858 469000))
+ ;;;### (autoloads nil "comint" "comint.el" (22086 11929 586062 731000))
  ;;; Generated autoloads from comint.el
  
  (defvar comint-output-filter-functions '(ansi-color-process-output comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\
@@@ -4374,8 -4380,8 +4380,8 @@@ REGEXP-GROUP is the regular expression 
  
  ;;;***
  \f
- ;;;### (autoloads nil "compare-w" "vc/compare-w.el" (21872 61770
- ;;;;;;  310089 300000))
+ ;;;### (autoloads nil "compare-w" "vc/compare-w.el" (22086 11930
+ ;;;;;;  370062 731000))
  ;;; Generated autoloads from vc/compare-w.el
  
  (autoload 'compare-windows "compare-w" "\
@@@ -4411,8 -4417,8 +4417,8 @@@ on third call it again advances points 
  
  ;;;***
  \f
- ;;;### (autoloads nil "compile" "progmodes/compile.el" (22032 64681
- ;;;;;;  370838 183000))
+ ;;;### (autoloads nil "compile" "progmodes/compile.el" (22099 26170
+ ;;;;;;  422017 16000))
  ;;; Generated autoloads from progmodes/compile.el
  
  (defvar compilation-mode-hook nil "\
@@@ -4593,8 -4599,8 +4599,8 @@@ This is the value of `next-error-functi
  
  ;;;***
  \f
- ;;;### (autoloads nil "completion" "completion.el" (21804 59688 154807
- ;;;;;;  989000))
+ ;;;### (autoloads nil "completion" "completion.el" (22086 11929 586062
+ ;;;;;;  731000))
  ;;; Generated autoloads from completion.el
  
  (defvar dynamic-completion-mode nil "\
@@@ -4616,8 -4622,8 +4622,8 @@@ if ARG is omitted or nil
  
  ;;;***
  \f
- ;;;### (autoloads nil "conf-mode" "textmodes/conf-mode.el" (22026
- ;;;;;;  25907 647502 692000))
+ ;;;### (autoloads nil "conf-mode" "textmodes/conf-mode.el" (22086
+ ;;;;;;  11930 314062 731000))
  ;;; Generated autoloads from textmodes/conf-mode.el
  
  (autoload 'conf-mode "conf-mode" "\
@@@ -4772,8 -4778,8 +4778,8 @@@ For details see `conf-mode'.  Example
  
  ;;;***
  \f
- ;;;### (autoloads nil "cookie1" "play/cookie1.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "cookie1" "play/cookie1.el" (22086 11930 122062
+ ;;;;;;  731000))
  ;;; Generated autoloads from play/cookie1.el
  
  (autoload 'cookie "cookie1" "\
@@@ -4801,8 -4807,8 +4807,8 @@@ and subsequent calls on the same file w
  
  ;;;***
  \f
- ;;;### (autoloads nil "copyright" "emacs-lisp/copyright.el" (22026
- ;;;;;;  25907 575502 692000))
+ ;;;### (autoloads nil "copyright" "emacs-lisp/copyright.el" (22086
+ ;;;;;;  11929 662062 731000))
  ;;; Generated autoloads from emacs-lisp/copyright.el
  (put 'copyright-at-end-flag 'safe-local-variable 'booleanp)
  (put 'copyright-names-regexp 'safe-local-variable 'stringp)
@@@ -4840,8 -4846,8 +4846,8 @@@ If FIX is non-nil, run `copyright-fix-y
  
  ;;;***
  \f
- ;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (22011
- ;;;;;;  58553 893858 469000))
+ ;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (22086
+ ;;;;;;  11930 162062 731000))
  ;;; Generated autoloads from progmodes/cperl-mode.el
  (put 'cperl-indent-level 'safe-local-variable 'integerp)
  (put 'cperl-brace-offset 'safe-local-variable 'integerp)
@@@ -5039,8 -5045,8 +5045,8 @@@ Run a `perldoc' on the word around poin
  
  ;;;***
  \f
- ;;;### (autoloads nil "cpp" "progmodes/cpp.el" (21988 10682 33624
- ;;;;;;  461000))
+ ;;;### (autoloads nil "cpp" "progmodes/cpp.el" (22092 27718 148268
+ ;;;;;;  464000))
  ;;; Generated autoloads from progmodes/cpp.el
  
  (autoload 'cpp-highlight-buffer "cpp" "\
@@@ -5058,8 -5064,8 +5064,8 @@@ Edit display information for cpp condit
  
  ;;;***
  \f
- ;;;### (autoloads nil "crm" "emacs-lisp/crm.el" (21980 16567 501544
- ;;;;;;  893000))
+ ;;;### (autoloads nil "crm" "emacs-lisp/crm.el" (22086 11929 662062
+ ;;;;;;  731000))
  ;;; Generated autoloads from emacs-lisp/crm.el
  
  (autoload 'completing-read-multiple "crm" "\
@@@ -5085,8 -5091,8 +5091,8 @@@ with empty strings removed
  
  ;;;***
  \f
- ;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (22038 17067
- ;;;;;;  867243 731000))
+ ;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (22086 11930
+ ;;;;;;  314062 731000))
  ;;; Generated autoloads from textmodes/css-mode.el
  
  (autoload 'css-mode "css-mode" "\
@@@ -5102,8 -5108,8 +5108,8 @@@ Major mode to edit \"Sassy CSS\" files
  
  ;;;***
  \f
- ;;;### (autoloads nil "cua-base" "emulation/cua-base.el" (21990 52406
- ;;;;;;  528500 385000))
+ ;;;### (autoloads nil "cua-base" "emulation/cua-base.el" (22086 11929
+ ;;;;;;  690062 731000))
  ;;; Generated autoloads from emulation/cua-base.el
  
  (defvar cua-mode nil "\
@@@ -5148,8 -5154,8 +5154,8 @@@ Enable CUA selection mode without the C
  
  ;;;***
  \f
- ;;;### (autoloads nil "cua-rect" "emulation/cua-rect.el" (22087 6213
- ;;;;;;  764351 952000))
+ ;;;### (autoloads nil "cua-rect" "emulation/cua-rect.el" (22087 9807
+ ;;;;;;  178279 951000))
  ;;; Generated autoloads from emulation/cua-rect.el
  
  (autoload 'cua-rectangle-mark-mode "cua-rect" "\
@@@ -5161,7 -5167,7 +5167,7 @@@ Activates the region if needed.  Only l
  ;;;***
  \f
  ;;;### (autoloads nil "cursor-sensor" "emacs-lisp/cursor-sensor.el"
- ;;;;;;  (22069 62806 562804 836000))
+ ;;;;;;  (22086 11929 662062 731000))
  ;;; Generated autoloads from emacs-lisp/cursor-sensor.el
  
  (autoload 'cursor-intangible-mode "cursor-sensor" "\
@@@ -5181,8 -5187,8 +5187,8 @@@ entering the area covered by the text-p
  
  ;;;***
  \f
- ;;;### (autoloads nil "cus-edit" "cus-edit.el" (22087 6213 748351
- ;;;;;;  952000))
+ ;;;### (autoloads nil "cus-edit" "cus-edit.el" (22086 11929 590062
+ ;;;;;;  731000))
  ;;; Generated autoloads from cus-edit.el
  
  (defvar custom-browse-sort-alphabetically nil "\
@@@ -5501,8 -5507,8 +5507,8 @@@ The format is suitable for use with `ea
  
  ;;;***
  \f
- ;;;### (autoloads nil "cus-theme" "cus-theme.el" (21998 46516 910024
- ;;;;;;  649000))
+ ;;;### (autoloads nil "cus-theme" "cus-theme.el" (22086 11929 590062
+ ;;;;;;  731000))
  ;;; Generated autoloads from cus-theme.el
  
  (autoload 'customize-create-theme "cus-theme" "\
@@@ -5535,8 -5541,8 +5541,8 @@@ omitted, a buffer named *Custom Themes
  
  ;;;***
  \f
- ;;;### (autoloads nil "cvs-status" "vc/cvs-status.el" (22026 25907
- ;;;;;;  671502 692000))
+ ;;;### (autoloads nil "cvs-status" "vc/cvs-status.el" (22086 11930
+ ;;;;;;  370062 731000))
  ;;; Generated autoloads from vc/cvs-status.el
  
  (autoload 'cvs-status-mode "cvs-status" "\
@@@ -5546,8 -5552,8 +5552,8 @@@ Mode used for cvs status output
  
  ;;;***
  \f
- ;;;### (autoloads nil "cwarn" "progmodes/cwarn.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "cwarn" "progmodes/cwarn.el" (22089 51528 280929
+ ;;;;;;  316000))
  ;;; Generated autoloads from progmodes/cwarn.el
  (push (purecopy '(cwarn 1 3 1)) package--builtin-versions)
  
@@@ -5591,8 -5597,8 +5597,8 @@@ See `cwarn-mode' for more information o
  
  ;;;***
  \f
- ;;;### (autoloads nil "cyril-util" "language/cyril-util.el" (21670
- ;;;;;;  32331 385639 720000))
+ ;;;### (autoloads nil "cyril-util" "language/cyril-util.el" (22086
+ ;;;;;;  11929 890062 731000))
  ;;; Generated autoloads from language/cyril-util.el
  
  (autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\
@@@ -5620,8 -5626,8 +5626,8 @@@ If the argument is nil, we return the d
  
  ;;;***
  \f
- ;;;### (autoloads nil "dabbrev" "dabbrev.el" (22011 58553 321858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "dabbrev" "dabbrev.el" (22086 11929 590062
+ ;;;;;;  731000))
  ;;; Generated autoloads from dabbrev.el
  (put 'dabbrev-case-fold-search 'risky-local-variable t)
  (put 'dabbrev-case-replace 'risky-local-variable t)
@@@ -5667,8 -5673,8 +5673,8 @@@ See also `dabbrev-abbrev-char-regexp' a
  
  ;;;***
  \f
- ;;;### (autoloads nil "data-debug" "cedet/data-debug.el" (21974 64192
- ;;;;;;  556009 993000))
+ ;;;### (autoloads nil "data-debug" "cedet/data-debug.el" (22086 11929
+ ;;;;;;  542062 731000))
  ;;; Generated autoloads from cedet/data-debug.el
  
  (autoload 'data-debug-new-buffer "data-debug" "\
@@@ -5678,7 -5684,7 +5684,7 @@@ Create a new data-debug buffer with NAM
  
  ;;;***
  \f
- ;;;### (autoloads nil "dbus" "net/dbus.el" (22011 58553 761858 469000))
+ ;;;### (autoloads nil "dbus" "net/dbus.el" (22086 11929 990062 731000))
  ;;; Generated autoloads from net/dbus.el
  
  (autoload 'dbus-handle-event "dbus" "\
@@@ -5691,8 -5697,8 +5697,8 @@@ If the HANDLER returns a `dbus-error', 
  
  ;;;***
  \f
- ;;;### (autoloads nil "dcl-mode" "progmodes/dcl-mode.el" (22011 58553
- ;;;;;;  897858 469000))
+ ;;;### (autoloads nil "dcl-mode" "progmodes/dcl-mode.el" (22086 11930
+ ;;;;;;  162062 731000))
  ;;; Generated autoloads from progmodes/dcl-mode.el
  
  (autoload 'dcl-mode "dcl-mode" "\
@@@ -5818,8 -5824,8 +5824,8 @@@ There is some minimal font-lock suppor
  
  ;;;***
  \f
- ;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (21918 44225
- ;;;;;;  955204 84000))
+ ;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (22086 11929
+ ;;;;;;  662062 731000))
  ;;; Generated autoloads from emacs-lisp/debug.el
  
  (setq debugger 'debug)
@@@ -5862,8 -5868,8 +5868,8 @@@ To specify a nil argument interactively
  
  ;;;***
  \f
- ;;;### (autoloads nil "decipher" "play/decipher.el" (21948 40114
- ;;;;;;  398686 453000))
+ ;;;### (autoloads nil "decipher" "play/decipher.el" (22086 11930
+ ;;;;;;  126062 731000))
  ;;; Generated autoloads from play/decipher.el
  
  (autoload 'decipher "decipher" "\
@@@ -5891,8 -5897,8 +5897,8 @@@ The most useful commands are
  
  ;;;***
  \f
- ;;;### (autoloads nil "delim-col" "delim-col.el" (21980 16567 477544
- ;;;;;;  893000))
+ ;;;### (autoloads nil "delim-col" "delim-col.el" (22086 11929 590062
+ ;;;;;;  731000))
  ;;; Generated autoloads from delim-col.el
  (push (purecopy '(delim-col 2 1)) package--builtin-versions)
  
@@@ -5917,7 -5923,7 +5923,7 @@@ START and END delimits the corners of t
  
  ;;;***
  \f
- ;;;### (autoloads nil "delsel" "delsel.el" (21973 43315 242113 285000))
+ ;;;### (autoloads nil "delsel" "delsel.el" (22086 11929 594062 731000))
  ;;; Generated autoloads from delsel.el
  
  (defalias 'pending-delete-mode 'delete-selection-mode)
@@@ -5945,8 -5951,8 +5951,8 @@@ point regardless of any selection
  
  ;;;***
  \f
- ;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (21978 61237
- ;;;;;;  450488 269000))
+ ;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (22086 11929
+ ;;;;;;  666062 731000))
  ;;; Generated autoloads from emacs-lisp/derived.el
  
  (autoload 'define-derived-mode "derived" "\
@@@ -6014,8 -6020,8 +6020,8 @@@ the first time the mode is used
  
  ;;;***
  \f
- ;;;### (autoloads nil "descr-text" "descr-text.el" (21998 46516 914024
- ;;;;;;  649000))
+ ;;;### (autoloads nil "descr-text" "descr-text.el" (22086 11929 594062
+ ;;;;;;  731000))
  ;;; Generated autoloads from descr-text.el
  
  (autoload 'describe-text-properties "descr-text" "\
@@@ -6064,8 -6070,8 +6070,8 @@@ This function is meant to be used as a 
  
  ;;;***
  \f
- ;;;### (autoloads nil "desktop" "desktop.el" (22026 25907 555502
- ;;;;;;  692000))
+ ;;;### (autoloads nil "desktop" "desktop.el" (22092 27717 592268
+ ;;;;;;  464000))
  ;;; Generated autoloads from desktop.el
  
  (defvar desktop-save-mode nil "\
@@@ -6153,8 -6159,8 +6159,8 @@@ code lik
  
     (defun foo-restore-desktop-buffer
     ...
-    (add-to-list 'desktop-buffer-mode-handlers
-                 '(foo-mode . foo-restore-desktop-buffer))
+    (add-to-list \\='desktop-buffer-mode-handlers
+                 \\='(foo-mode . foo-restore-desktop-buffer))
  
  The major mode function must either be autoloaded, or of the form
  \"foobar-mode\" and defined in library \"foobar\", so that desktop
@@@ -6197,8 -6203,8 +6203,8 @@@ code lik
  
     (defun foo-desktop-restore
     ...
-    (add-to-list 'desktop-minor-mode-handlers
-                 '(foo-mode . foo-desktop-restore))
+    (add-to-list \\='desktop-minor-mode-handlers
+                 \\='(foo-mode . foo-desktop-restore))
  
  The minor mode function must either be autoloaded, or of the form
  \"foobar-mode\" and defined in library \"foobar\", so that desktop
@@@ -6274,8 -6280,8 +6280,8 @@@ Revert to the last loaded desktop
  
  ;;;***
  \f
- ;;;### (autoloads nil "deuglify" "gnus/deuglify.el" (21855 576 877944
- ;;;;;;  285000))
+ ;;;### (autoloads nil "deuglify" "gnus/deuglify.el" (22086 11929
+ ;;;;;;  774062 731000))
  ;;; Generated autoloads from gnus/deuglify.el
  
  (autoload 'gnus-article-outlook-unwrap-lines "deuglify" "\
@@@ -6307,8 -6313,8 +6313,8 @@@ Deuglify broken Outlook (Express) artic
  
  ;;;***
  \f
- ;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (22026
- ;;;;;;  25907 547502 692000))
+ ;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (22092
+ ;;;;;;  27717 544268 464000))
  ;;; Generated autoloads from calendar/diary-lib.el
  
  (autoload 'diary "diary-lib" "\
@@@ -6334,7 -6340,7 +6340,7 @@@ ensure that all relevant variables are 
  
  \(setq diary-mail-days 3
        diary-file \"/path/to/diary.file\"
-       calendar-date-style 'european
+       calendar-date-style \\='european
        diary-mail-addr \"user@host.name\")
  
  \(diary-mail-entries)
@@@ -6350,7 -6356,7 +6356,7 @@@ Major mode for editing the diary file
  
  ;;;***
  \f
- ;;;### (autoloads nil "diff" "vc/diff.el" (21804 59688 284811 0))
+ ;;;### (autoloads nil "diff" "vc/diff.el" (22086 11930 370062 731000))
  ;;; Generated autoloads from vc/diff.el
  
  (defvar diff-switches (purecopy "-u") "\
@@@ -6398,8 -6404,8 +6404,8 @@@ This requires the external program `dif
  
  ;;;***
  \f
- ;;;### (autoloads nil "diff-mode" "vc/diff-mode.el" (22087 6213 816351
- ;;;;;;  952000))
+ ;;;### (autoloads nil "diff-mode" "vc/diff-mode.el" (22087 9807 430279
+ ;;;;;;  951000))
  ;;; Generated autoloads from vc/diff-mode.el
  
  (autoload 'diff-mode "diff-mode" "\
@@@ -6431,7 -6437,7 +6437,7 @@@ the mode if ARG is omitted or nil
  
  ;;;***
  \f
- ;;;### (autoloads nil "dig" "net/dig.el" (21670 32331 385639 720000))
+ ;;;### (autoloads nil "dig" "net/dig.el" (22086 11929 990062 731000))
  ;;; Generated autoloads from net/dig.el
  
  (autoload 'dig "dig" "\
@@@ -6442,7 -6448,7 +6448,7 @@@ Optional arguments are passed to `dig-i
  
  ;;;***
  \f
- ;;;### (autoloads nil "dired" "dired.el" (22142 30520 415026 947000))
+ ;;;### (autoloads nil "dired" "dired.el" (22086 11929 598062 731000))
  ;;; Generated autoloads from dired.el
  
  (defvar dired-listing-switches (purecopy "-al") "\
@@@ -6568,8 -6574,8 +6574,8 @@@ Keybindings
  
  ;;;***
  \f
- ;;;### (autoloads nil "dirtrack" "dirtrack.el" (21981 37426 531399
- ;;;;;;  97000))
+ ;;;### (autoloads nil "dirtrack" "dirtrack.el" (22086 11929 598062
+ ;;;;;;  731000))
  ;;; Generated autoloads from dirtrack.el
  
  (autoload 'dirtrack-mode "dirtrack" "\
@@@ -6599,8 -6605,8 +6605,8 @@@ from `default-directory'
  
  ;;;***
  \f
- ;;;### (autoloads nil "disass" "emacs-lisp/disass.el" (21993 28596
- ;;;;;;  58597 473000))
+ ;;;### (autoloads nil "disass" "emacs-lisp/disass.el" (22086 11929
+ ;;;;;;  666062 731000))
  ;;; Generated autoloads from emacs-lisp/disass.el
  
  (autoload 'disassemble "disass" "\
@@@ -6614,8 -6620,8 +6620,8 @@@ redefine OBJECT if it is a symbol
  
  ;;;***
  \f
- ;;;### (autoloads nil "disp-table" "disp-table.el" (21981 37426 535399
- ;;;;;;  97000))
+ ;;;### (autoloads nil "disp-table" "disp-table.el" (22086 11929 598062
+ ;;;;;;  731000))
  ;;; Generated autoloads from disp-table.el
  
  (autoload 'make-display-table "disp-table" "\
@@@ -6736,8 -6742,8 +6742,8 @@@ in `.emacs'
  
  ;;;***
  \f
- ;;;### (autoloads nil "dissociate" "play/dissociate.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "dissociate" "play/dissociate.el" (22086 11930
+ ;;;;;;  126062 731000))
  ;;; Generated autoloads from play/dissociate.el
  
  (autoload 'dissociated-press "dissociate" "\
@@@ -6753,7 -6759,7 +6759,7 @@@ Default is 2
  
  ;;;***
  \f
- ;;;### (autoloads nil "dnd" "dnd.el" (22026 25907 555502 692000))
+ ;;;### (autoloads nil "dnd" "dnd.el" (22086 11929 598062 731000))
  ;;; 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)) "\
@@@ -6773,8 -6779,8 +6779,8 @@@ if some action was made, or nil if the 
  
  ;;;***
  \f
- ;;;### (autoloads nil "dns-mode" "textmodes/dns-mode.el" (21670 32331
- ;;;;;;  885635 586000))
+ ;;;### (autoloads nil "dns-mode" "textmodes/dns-mode.el" (22086 11930
+ ;;;;;;  314062 731000))
  ;;; Generated autoloads from textmodes/dns-mode.el
  
  (autoload 'dns-mode "dns-mode" "\
@@@ -6797,8 -6803,8 +6803,8 @@@ Locate SOA record and increment the ser
  
  ;;;***
  \f
- ;;;### (autoloads nil "doc-view" "doc-view.el" (22058 2348 742214
- ;;;;;;  951000))
+ ;;;### (autoloads nil "doc-view" "doc-view.el" (22086 11929 598062
+ ;;;;;;  731000))
  ;;; Generated autoloads from doc-view.el
  
  (autoload 'doc-view-mode-p "doc-view" "\
@@@ -6844,8 -6850,8 +6850,8 @@@ See the command `doc-view-mode' for mor
  
  ;;;***
  \f
- ;;;### (autoloads nil "doctor" "play/doctor.el" (22011 58553 865858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "doctor" "play/doctor.el" (22086 11930 126062
+ ;;;;;;  731000))
  ;;; Generated autoloads from play/doctor.el
  
  (autoload 'doctor "doctor" "\
@@@ -6855,7 -6861,7 +6861,7 @@@ Switch to *doctor* buffer and start giv
  
  ;;;***
  \f
- ;;;### (autoloads nil "double" "double.el" (21953 58033 239058 929000))
+ ;;;### (autoloads nil "double" "double.el" (22086 11929 602062 731000))
  ;;; Generated autoloads from double.el
  
  (autoload 'double-mode "double" "\
@@@ -6871,8 -6877,8 +6877,8 @@@ strings when pressed twice.  See `doubl
  
  ;;;***
  \f
- ;;;### (autoloads nil "dunnet" "play/dunnet.el" (21980 16567 965544
- ;;;;;;  893000))
+ ;;;### (autoloads nil "dunnet" "play/dunnet.el" (22093 48588 576393
+ ;;;;;;  539000))
  ;;; Generated autoloads from play/dunnet.el
  (push (purecopy '(dunnet 2 2)) package--builtin-versions)
  
@@@ -6883,8 -6889,8 +6889,8 @@@ Switch to *dungeon* buffer and start ga
  
  ;;;***
  \f
- ;;;### (autoloads nil "easy-mmode" "emacs-lisp/easy-mmode.el" (22011
- ;;;;;;  58553 361858 469000))
+ ;;;### (autoloads nil "easy-mmode" "emacs-lisp/easy-mmode.el" (22092
+ ;;;;;;  27717 632268 464000))
  ;;; Generated autoloads from emacs-lisp/easy-mmode.el
  
  (defalias 'easy-mmode-define-minor-mode 'define-minor-mode)
@@@ -6954,7 -6960,7 +6960,7 @@@ BODY contains code to execute each tim
  
  For example, you could write
    (define-minor-mode foo-mode \"If enabled, foo on you!\"
-     :lighter \" Foo\" :require 'foo :global t :group 'hassle :version \"27.5\"
+     :lighter \" Foo\" :require \\='foo :global t :group \\='hassle :version \"27.5\"
      ...BODY CODE...)
  
  \(fn MODE DOC &optional INIT-VALUE LIGHTER KEYMAP &rest BODY)" nil t)
@@@ -7009,7 -7015,7 +7015,7 @@@ Valid keywords and arguments are
    :inherit   Parent keymap.
    :group     Ignored.
    :suppress  Non-nil to call `suppress-keymap' on keymap,
-              'nodigits to suppress digits as prefix arguments.
+              `nodigits' to suppress digits as prefix arguments.
  
  \(fn BS &optional NAME M ARGS)" nil nil)
  
@@@ -7028,8 -7034,8 +7034,8 @@@ CSS contains a list of syntax specifica
  
  ;;;***
  \f
- ;;;### (autoloads nil "easymenu" "emacs-lisp/easymenu.el" (21670
- ;;;;;;  32330 885624 725000))
+ ;;;### (autoloads nil "easymenu" "emacs-lisp/easymenu.el" (22086
+ ;;;;;;  11929 666062 731000))
  ;;; Generated autoloads from emacs-lisp/easymenu.el
  
  (autoload 'easy-menu-define "easymenu" "\
@@@ -7167,8 -7173,8 +7173,8 @@@ To implement dynamic menus, either cal
  
  ;;;***
  \f
- ;;;### (autoloads nil "ebnf2ps" "progmodes/ebnf2ps.el" (22011 58553
- ;;;;;;  897858 469000))
+ ;;;### (autoloads nil "ebnf2ps" "progmodes/ebnf2ps.el" (22086 11930
+ ;;;;;;  166062 731000))
  ;;; Generated autoloads from progmodes/ebnf2ps.el
  (push (purecopy '(ebnf2ps 4 4)) package--builtin-versions)
  
@@@ -7433,8 -7439,8 +7439,8 @@@ See `ebnf-style-database' documentation
  
  ;;;***
  \f
- ;;;### (autoloads nil "ebrowse" "progmodes/ebrowse.el" (21998 46517
- ;;;;;;  206024 649000))
+ ;;;### (autoloads nil "ebrowse" "progmodes/ebrowse.el" (22086 11930
+ ;;;;;;  170062 731000))
  ;;; Generated autoloads from progmodes/ebrowse.el
  
  (autoload 'ebrowse-tree-mode "ebrowse" "\
@@@ -7582,8 -7588,8 +7588,8 @@@ Display statistics for a class tree
  
  ;;;***
  \f
- ;;;### (autoloads nil "ebuff-menu" "ebuff-menu.el" (21953 58033 239058
- ;;;;;;  929000))
+ ;;;### (autoloads nil "ebuff-menu" "ebuff-menu.el" (22086 11929 602062
+ ;;;;;;  731000))
  ;;; Generated autoloads from ebuff-menu.el
  
  (autoload 'electric-buffer-list "ebuff-menu" "\
@@@ -7615,8 -7621,8 +7621,8 @@@ Run hooks in `electric-buffer-menu-mode
  
  ;;;***
  \f
- ;;;### (autoloads nil "echistory" "echistory.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "echistory" "echistory.el" (22086 11929 602062
+ ;;;;;;  731000))
  ;;; Generated autoloads from echistory.el
  
  (autoload 'Electric-command-history-redo-expression "echistory" "\
@@@ -7627,8 -7633,8 +7633,8 @@@ With prefix arg NOCONFIRM, execute curr
  
  ;;;***
  \f
- ;;;### (autoloads nil "ecomplete" "gnus/ecomplete.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "ecomplete" "gnus/ecomplete.el" (22086 11929
+ ;;;;;;  774062 731000))
  ;;; Generated autoloads from gnus/ecomplete.el
  
  (autoload 'ecomplete-setup "ecomplete" "\
  
  ;;;***
  \f
- ;;;### (autoloads nil "ede" "cedet/ede.el" (22040 58794 676259 771000))
+ ;;;### (autoloads nil "ede" "cedet/ede.el" (22092 27717 556268 464000))
  ;;; Generated autoloads from cedet/ede.el
  (push (purecopy '(ede 1 2)) package--builtin-versions)
  
@@@ -7664,8 -7670,8 +7670,8 @@@ an EDE controlled project
  
  ;;;***
  \f
- ;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (22022 28851
- ;;;;;;  765037 303000))
+ ;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (22086 11929
+ ;;;;;;  670062 731000))
  ;;; Generated autoloads from emacs-lisp/edebug.el
  
  (defvar edebug-all-defs nil "\
@@@ -7729,7 -7735,7 +7735,7 @@@ Toggle edebugging of all forms
  
  ;;;***
  \f
- ;;;### (autoloads nil "ediff" "vc/ediff.el" (22011 58554 93858 469000))
+ ;;;### (autoloads nil "ediff" "vc/ediff.el" (22086 11930 378062 731000))
  ;;; Generated autoloads from vc/ediff.el
  (push (purecopy '(ediff 2 81 4)) package--builtin-versions)
  
@@@ -8001,8 -8007,8 +8007,8 @@@ With optional NODE, goes to that node
  
  ;;;***
  \f
- ;;;### (autoloads nil "ediff-help" "vc/ediff-help.el" (21870 54319
- ;;;;;;  247944 919000))
+ ;;;### (autoloads nil "ediff-help" "vc/ediff-help.el" (22086 11930
+ ;;;;;;  370062 731000))
  ;;; Generated autoloads from vc/ediff-help.el
  
  (autoload 'ediff-customize "ediff-help" "\
  
  ;;;***
  \f
- ;;;### (autoloads nil "ediff-mult" "vc/ediff-mult.el" (21993 28596
- ;;;;;;  422597 473000))
+ ;;;### (autoloads nil "ediff-mult" "vc/ediff-mult.el" (22086 11930
+ ;;;;;;  374062 731000))
  ;;; Generated autoloads from vc/ediff-mult.el
  
  (autoload 'ediff-show-registry "ediff-mult" "\
@@@ -8025,8 -8031,8 +8031,8 @@@ Display Ediff's registry
  
  ;;;***
  \f
- ;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (22026 25907
- ;;;;;;  671502 692000))
+ ;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (22086 11930
+ ;;;;;;  374062 731000))
  ;;; Generated autoloads from vc/ediff-util.el
  
  (autoload 'ediff-toggle-multiframe "ediff-util" "\
@@@ -8045,8 -8051,8 +8051,8 @@@ To change the default, set the variabl
  
  ;;;***
  \f
- ;;;### (autoloads nil "edmacro" "edmacro.el" (21976 19509 748430
- ;;;;;;  241000))
+ ;;;### (autoloads nil "edmacro" "edmacro.el" (22086 11929 602062
+ ;;;;;;  731000))
  ;;; Generated autoloads from edmacro.el
  (push (purecopy '(edmacro 2 1)) package--builtin-versions)
  
@@@ -8095,8 -8101,8 +8101,8 @@@ or nil, use a compact 80-column format
  
  ;;;***
  \f
- ;;;### (autoloads nil "edt" "emulation/edt.el" (22011 58553 453858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "edt" "emulation/edt.el" (22086 11929 694062
+ ;;;;;;  731000))
  ;;; Generated autoloads from emulation/edt.el
  
  (autoload 'edt-set-scroll-margins "edt" "\
@@@ -8113,7 -8119,7 +8119,7 @@@ Turn on EDT Emulation
  
  ;;;***
  \f
- ;;;### (autoloads nil "ehelp" "ehelp.el" (21953 58033 247058 929000))
+ ;;;### (autoloads nil "ehelp" "ehelp.el" (22086 11929 602062 731000))
  ;;; Generated autoloads from ehelp.el
  
  (autoload 'with-electric-help "ehelp" "\
@@@ -8149,15 -8155,15 +8155,15 @@@ BUFFER is put back into its original ma
  
  ;;;***
  \f
- ;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (22131 60223
- ;;;;;;  713707 127000))
+ ;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (22086 11929
+ ;;;;;;  674062 731000))
  ;;; Generated autoloads from emacs-lisp/eieio.el
  (push (purecopy '(eieio 1 4)) package--builtin-versions)
  
  ;;;***
  \f
- ;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (22131
- ;;;;;;  60223 709707 127000))
+ ;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (22086
+ ;;;;;;  11929 670062 731000))
  ;;; Generated autoloads from emacs-lisp/eieio-core.el
  (push (purecopy '(eieio-core 1 4)) package--builtin-versions)
  
@@@ -8173,8 -8179,8 +8179,8 @@@ It creates an autoload function for CNA
  
  ;;;***
  \f
- ;;;### (autoloads nil "elec-pair" "elec-pair.el" (21888 48869 288181
- ;;;;;;  796000))
+ ;;;### (autoloads nil "elec-pair" "elec-pair.el" (22086 11929 602062
+ ;;;;;;  731000))
  ;;; Generated autoloads from elec-pair.el
  
  (defvar electric-pair-text-pairs '((34 . 34)) "\
@@@ -8215,8 -8221,8 +8221,8 @@@ Toggle `electric-pair-mode' only in thi
  
  ;;;***
  \f
- ;;;### (autoloads nil "elide-head" "elide-head.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "elide-head" "elide-head.el" (22086 11929 602062
+ ;;;;;;  731000))
  ;;; Generated autoloads from elide-head.el
  
  (autoload 'elide-head "elide-head" "\
@@@ -8231,8 -8237,8 +8237,8 @@@ This is suitable as an entry on `find-f
  
  ;;;***
  \f
- ;;;### (autoloads nil "elint" "emacs-lisp/elint.el" (22030 22952
- ;;;;;;  921158 467000))
+ ;;;### (autoloads nil "elint" "emacs-lisp/elint.el" (22086 11929
+ ;;;;;;  674062 731000))
  ;;; Generated autoloads from emacs-lisp/elint.el
  
  (autoload 'elint-file "elint" "\
@@@ -8267,8 -8273,8 +8273,8 @@@ optional prefix argument REINIT is non-
  
  ;;;***
  \f
- ;;;### (autoloads nil "elp" "emacs-lisp/elp.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "elp" "emacs-lisp/elp.el" (22086 11929 674062
+ ;;;;;;  731000))
  ;;; Generated autoloads from emacs-lisp/elp.el
  
  (autoload 'elp-instrument-function "elp" "\
@@@ -8302,8 -8308,8 +8308,8 @@@ displayed
  
  ;;;***
  \f
- ;;;### (autoloads nil "emacs-lock" "emacs-lock.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "emacs-lock" "emacs-lock.el" (22086 11929 690062
+ ;;;;;;  731000))
  ;;; Generated autoloads from emacs-lock.el
  
  (autoload 'emacs-lock-mode "emacs-lock" "\
@@@ -8330,8 -8336,8 +8336,8 @@@ Other values are interpreted as usual
  
  ;;;***
  \f
- ;;;### (autoloads nil "emacsbug" "mail/emacsbug.el" (22030 22952
- ;;;;;;  933158 467000))
+ ;;;### (autoloads nil "emacsbug" "mail/emacsbug.el" (22086 11929
+ ;;;;;;  934062 731000))
  ;;; Generated autoloads from mail/emacsbug.el
  
  (autoload 'report-emacs-bug "emacsbug" "\
@@@ -8344,8 -8350,8 +8350,8 @@@ Prompts for bug subject.  Leaves you i
  
  ;;;***
  \f
- ;;;### (autoloads nil "emerge" "vc/emerge.el" (21953 58033 507058
- ;;;;;;  929000))
+ ;;;### (autoloads nil "emerge" "vc/emerge.el" (22086 11930 378062
+ ;;;;;;  731000))
  ;;; Generated autoloads from vc/emerge.el
  
  (autoload 'emerge-files "emerge" "\
@@@ -8405,8 -8411,8 +8411,8 @@@ Emerge two RCS revisions of a file, wit
  
  ;;;***
  \f
- ;;;### (autoloads nil "enriched" "textmodes/enriched.el" (21691 38459
- ;;;;;;  74604 918000))
+ ;;;### (autoloads nil "enriched" "textmodes/enriched.el" (22086 11930
+ ;;;;;;  314062 731000))
  ;;; Generated autoloads from textmodes/enriched.el
  
  (autoload 'enriched-mode "enriched" "\
@@@ -8441,7 -8447,7 +8447,7 @@@ Commands
  
  ;;;***
  \f
- ;;;### (autoloads nil "epa" "epa.el" (22093 44991 758016 539000))
+ ;;;### (autoloads nil "epa" "epa.el" (22086 11929 698062 731000))
  ;;; Generated autoloads from epa.el
  
  (autoload 'epa-list-keys "epa" "\
@@@ -8629,8 -8635,8 +8635,8 @@@ Insert selected KEYS after the point
  
  ;;;***
  \f
- ;;;### (autoloads nil "epa-dired" "epa-dired.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "epa-dired" "epa-dired.el" (22086 11929 698062
+ ;;;;;;  731000))
  ;;; Generated autoloads from epa-dired.el
  
  (autoload 'epa-dired-do-decrypt "epa-dired" "\
@@@ -8655,8 -8661,8 +8661,8 @@@ Encrypt marked files
  
  ;;;***
  \f
- ;;;### (autoloads nil "epa-file" "epa-file.el" (21964 28338 113695
- ;;;;;;  749000))
+ ;;;### (autoloads nil "epa-file" "epa-file.el" (22086 11929 698062
+ ;;;;;;  731000))
  ;;; Generated autoloads from epa-file.el
  
  (autoload 'epa-file-handler "epa-file" "\
  
  ;;;***
  \f
- ;;;### (autoloads nil "epa-mail" "epa-mail.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "epa-mail" "epa-mail.el" (22086 11929 698062
+ ;;;;;;  731000))
  ;;; Generated autoloads from epa-mail.el
  
  (autoload 'epa-mail-mode "epa-mail" "\
@@@ -8754,7 -8760,7 +8760,7 @@@ if ARG is omitted or nil
  
  ;;;***
  \f
- ;;;### (autoloads nil "epg" "epg.el" (22076 35900 86633 595000))
+ ;;;### (autoloads nil "epg" "epg.el" (22092 27717 648268 464000))
  ;;; Generated autoloads from epg.el
  (push (purecopy '(epg 1 0 0)) package--builtin-versions)
  
@@@ -8765,8 -8771,8 +8771,8 @@@ Return a context object
  
  ;;;***
  \f
- ;;;### (autoloads nil "epg-config" "epg-config.el" (21927 33969 780642
- ;;;;;;  720000))
+ ;;;### (autoloads nil "epg-config" "epg-config.el" (22086 11929 698062
+ ;;;;;;  731000))
  ;;; Generated autoloads from epg-config.el
  
  (autoload 'epg-configuration "epg-config" "\
@@@ -8786,7 -8792,7 +8792,7 @@@ Look at CONFIG and try to expand GROUP
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc" "erc/erc.el" (22145 6712 764647 100000))
+ ;;;### (autoloads nil "erc" "erc/erc.el" (22093 48588 540393 539000))
  ;;; Generated autoloads from erc/erc.el
  (push (purecopy '(erc 5 3)) package--builtin-versions)
  
@@@ -8835,36 -8841,36 +8841,36 @@@ Otherwise, connect to HOST:PORT as USE
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (21989
- ;;;;;;  31537 763825 721000))
+ ;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (22086
+ ;;;;;;  11929 706062 731000))
  ;;; Generated autoloads from erc/erc-autoaway.el
   (autoload 'erc-autoaway-mode "erc-autoaway")
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-button" "erc/erc-button.el" (21998 46517
- ;;;;;;  30024 649000))
+ ;;;### (autoloads nil "erc-button" "erc/erc-button.el" (22092 27717
+ ;;;;;;  652268 464000))
  ;;; Generated autoloads from erc/erc-button.el
   (autoload 'erc-button-mode "erc-button" nil t)
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (22086 11929
+ ;;;;;;  706062 731000))
  ;;; Generated autoloads from erc/erc-capab.el
   (autoload 'erc-capab-identify-mode "erc-capab" nil t)
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (22086 11929
+ ;;;;;;  706062 731000))
  ;;; Generated autoloads from erc/erc-compat.el
   (autoload 'erc-define-minor-mode "erc-compat")
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-dcc" "erc/erc-dcc.el" (21998 46517 30024
- ;;;;;;  649000))
+ ;;;### (autoloads nil "erc-dcc" "erc/erc-dcc.el" (22086 11929 706062
+ ;;;;;;  731000))
  ;;; Generated autoloads from erc/erc-dcc.el
   (autoload 'erc-dcc-mode "erc-dcc")
  
@@@ -8894,14 -8900,14 +8900,14 @@@ that subcommand
  ;;;***
  \f
  ;;;### (autoloads nil "erc-desktop-notifications" "erc/erc-desktop-notifications.el"
- ;;;;;;  (21670 32330 885624 725000))
+ ;;;;;;  (22086 11929 706062 731000))
  ;;; Generated autoloads from erc/erc-desktop-notifications.el
  (autoload 'erc-notifications-mode "erc-desktop-notifications" "" t)
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-ezbounce" "erc/erc-ezbounce.el" (21855
- ;;;;;;  576 787951 155000))
+ ;;;### (autoloads nil "erc-ezbounce" "erc/erc-ezbounce.el" (22086
+ ;;;;;;  11929 710062 731000))
  ;;; Generated autoloads from erc/erc-ezbounce.el
  
  (autoload 'erc-cmd-ezb "erc-ezbounce" "\
@@@ -8963,8 -8969,8 +8969,8 @@@ Add EZBouncer convenience functions to 
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-fill" "erc/erc-fill.el" (21989 31537 771825
- ;;;;;;  721000))
+ ;;;### (autoloads nil "erc-fill" "erc/erc-fill.el" (22086 11929 710062
+ ;;;;;;  731000))
  ;;; Generated autoloads from erc/erc-fill.el
   (autoload 'erc-fill-mode "erc-fill" nil t)
  
@@@ -8976,8 -8982,8 +8982,8 @@@ You can put this on `erc-insert-modify-
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-identd" "erc/erc-identd.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "erc-identd" "erc/erc-identd.el" (22086 11929
+ ;;;;;;  710062 731000))
  ;;; Generated autoloads from erc/erc-identd.el
   (autoload 'erc-identd-mode "erc-identd")
  
@@@ -8998,8 -9004,8 +9004,8 @@@ system
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-imenu" "erc/erc-imenu.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "erc-imenu" "erc/erc-imenu.el" (22086 11929
+ ;;;;;;  710062 731000))
  ;;; Generated autoloads from erc/erc-imenu.el
  
  (autoload 'erc-create-imenu-index "erc-imenu" "\
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-join" "erc/erc-join.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "erc-join" "erc/erc-join.el" (22086 11929 710062
+ ;;;;;;  731000))
  ;;; Generated autoloads from erc/erc-join.el
   (autoload 'erc-autojoin-mode "erc-join" nil t)
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-list" "erc/erc-list.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "erc-list" "erc/erc-list.el" (22086 11929 710062
+ ;;;;;;  731000))
  ;;; Generated autoloads from erc/erc-list.el
   (autoload 'erc-list-mode "erc-list")
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-log" "erc/erc-log.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "erc-log" "erc/erc-log.el" (22086 11929 710062
+ ;;;;;;  731000))
  ;;; Generated autoloads from erc/erc-log.el
   (autoload 'erc-log-mode "erc-log" nil t)
  
@@@ -9053,8 -9059,8 +9059,8 @@@ You can save every individual message b
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-match" "erc/erc-match.el" (22011 58553
- ;;;;;;  461858 469000))
+ ;;;### (autoloads nil "erc-match" "erc/erc-match.el" (22092 27717
+ ;;;;;;  652268 464000))
  ;;; Generated autoloads from erc/erc-match.el
   (autoload 'erc-match-mode "erc-match")
  
@@@ -9100,15 -9106,15 +9106,15 @@@ Delete dangerous-host interactively to 
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (22086 11929 710062
+ ;;;;;;  731000))
  ;;; Generated autoloads from erc/erc-menu.el
   (autoload 'erc-menu-mode "erc-menu" nil t)
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-netsplit" "erc/erc-netsplit.el" (21670
- ;;;;;;  32330 885624 725000))
+ ;;;### (autoloads nil "erc-netsplit" "erc/erc-netsplit.el" (22086
+ ;;;;;;  11929 710062 731000))
  ;;; Generated autoloads from erc/erc-netsplit.el
   (autoload 'erc-netsplit-mode "erc-netsplit")
  
@@@ -9119,8 -9125,8 +9125,8 @@@ Show who's gone
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-networks" "erc/erc-networks.el" (22011
- ;;;;;;  58553 473858 469000))
+ ;;;### (autoloads nil "erc-networks" "erc/erc-networks.el" (22086
+ ;;;;;;  11929 710062 731000))
  ;;; Generated autoloads from erc/erc-networks.el
  
  (autoload 'erc-determine-network "erc-networks" "\
@@@ -9137,8 -9143,8 +9143,8 @@@ Interactively select a server to connec
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-notify" "erc/erc-notify.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "erc-notify" "erc/erc-notify.el" (22086 11929
+ ;;;;;;  710062 731000))
  ;;; Generated autoloads from erc/erc-notify.el
   (autoload 'erc-notify-mode "erc-notify" nil t)
  
@@@ -9156,36 -9162,36 +9162,36 @@@ with args, toggle notify status of peop
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-page" "erc/erc-page.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "erc-page" "erc/erc-page.el" (22086 11929 710062
+ ;;;;;;  731000))
  ;;; Generated autoloads from erc/erc-page.el
   (autoload 'erc-page-mode "erc-page")
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (22079
- ;;;;;;  12092 327174 267000))
+ ;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (22086
+ ;;;;;;  11929 710062 731000))
  ;;; Generated autoloads from erc/erc-pcomplete.el
   (autoload 'erc-completion-mode "erc-pcomplete" nil t)
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (22086 11929
+ ;;;;;;  710062 731000))
  ;;; Generated autoloads from erc/erc-replace.el
   (autoload 'erc-replace-mode "erc-replace")
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (22092 27717 652268
+ ;;;;;;  464000))
  ;;; Generated autoloads from erc/erc-ring.el
   (autoload 'erc-ring-mode "erc-ring" nil t)
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-services" "erc/erc-services.el" (22011
- ;;;;;;  58553 473858 469000))
+ ;;;### (autoloads nil "erc-services" "erc/erc-services.el" (22086
+ ;;;;;;  11929 710062 731000))
  ;;; Generated autoloads from erc/erc-services.el
   (autoload 'erc-services-mode "erc-services" nil t)
  
@@@ -9202,15 -9208,15 +9208,15 @@@ When called interactively, read the pas
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (22086 11929
+ ;;;;;;  714062 731000))
  ;;; Generated autoloads from erc/erc-sound.el
   (autoload 'erc-sound-mode "erc-sound")
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-speedbar" "erc/erc-speedbar.el" (21980
- ;;;;;;  16567 521544 893000))
+ ;;;### (autoloads nil "erc-speedbar" "erc/erc-speedbar.el" (22086
+ ;;;;;;  11929 714062 731000))
  ;;; Generated autoloads from erc/erc-speedbar.el
  
  (autoload 'erc-speedbar-browser "erc-speedbar" "\
@@@ -9221,22 -9227,22 +9227,22 @@@ This will add a speedbar major display 
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (21727
- ;;;;;;  11963 635339 992000))
+ ;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (22086
+ ;;;;;;  11929 714062 731000))
  ;;; Generated autoloads from erc/erc-spelling.el
   (autoload 'erc-spelling-mode "erc-spelling" nil t)
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (21860 18496
- ;;;;;;  27951 644000))
+ ;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (22086 11929
+ ;;;;;;  714062 731000))
  ;;; Generated autoloads from erc/erc-stamp.el
   (autoload 'erc-timestamp-mode "erc-stamp" nil t)
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-track" "erc/erc-track.el" (21980 16567
- ;;;;;;  521544 893000))
+ ;;;### (autoloads nil "erc-track" "erc/erc-track.el" (22092 27717
+ ;;;;;;  656268 464000))
  ;;; Generated autoloads from erc/erc-track.el
  
  (defvar erc-track-minor-mode nil "\
@@@ -9261,8 -9267,8 +9267,8 @@@ keybindings will not do anything useful
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-truncate" "erc/erc-truncate.el" (21670
- ;;;;;;  32330 885624 725000))
+ ;;;### (autoloads nil "erc-truncate" "erc/erc-truncate.el" (22086
+ ;;;;;;  11929 714062 731000))
  ;;; Generated autoloads from erc/erc-truncate.el
   (autoload 'erc-truncate-mode "erc-truncate" nil t)
  
@@@ -9281,8 -9287,8 +9287,8 @@@ Meant to be used in hooks, like `erc-in
  
  ;;;***
  \f
- ;;;### (autoloads nil "erc-xdcc" "erc/erc-xdcc.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "erc-xdcc" "erc/erc-xdcc.el" (22086 11929 714062
+ ;;;;;;  731000))
  ;;; Generated autoloads from erc/erc-xdcc.el
   (autoload 'erc-xdcc-mode "erc-xdcc")
  
@@@ -9293,8 -9299,8 +9299,8 @@@ Add a file to `erc-xdcc-files'
  
  ;;;***
  \f
- ;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (22063 20273 739891
- ;;;;;;  395000))
+ ;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (22092 27717 632268
+ ;;;;;;  464000))
  ;;; Generated autoloads from emacs-lisp/ert.el
  
  (autoload 'ert-deftest "ert" "\
@@@ -9312,7 -9318,7 +9318,7 @@@ Tests that are expected to fail can be 
  using :expected-result.  See `ert-test-result-type-p' for a
  description of valid values for RESULT-TYPE.
  
- \(fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags '(TAG...)] BODY...)" nil t)
+ \(fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] BODY...)" nil t)
  
  (function-put 'ert-deftest 'doc-string-elt '3)
  
@@@ -9363,8 -9369,8 +9369,8 @@@ Display the documentation for TEST-OR-T
  
  ;;;***
  \f
- ;;;### (autoloads nil "ert-x" "emacs-lisp/ert-x.el" (22011 58553
- ;;;;;;  393858 469000))
+ ;;;### (autoloads nil "ert-x" "emacs-lisp/ert-x.el" (22086 11929
+ ;;;;;;  674062 731000))
  ;;; Generated autoloads from emacs-lisp/ert-x.el
  
  (put 'ert-with-test-buffer 'lisp-indent-function 1)
@@@ -9376,8 -9382,8 +9382,8 @@@ Kill all test buffers that are still li
  
  ;;;***
  \f
- ;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (22065 61995
- ;;;;;;  862407 852000))
+ ;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (22086 11929
+ ;;;;;;  722062 731000))
  ;;; Generated autoloads from eshell/esh-mode.el
  
  (autoload 'eshell-mode "esh-mode" "\
@@@ -9387,8 -9393,8 +9393,8 @@@ Emacs shell interactive mode
  
  ;;;***
  \f
- ;;;### (autoloads nil "eshell" "eshell/eshell.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "eshell" "eshell/eshell.el" (22086 11929 722062
+ ;;;;;;  731000))
  ;;; Generated autoloads from eshell/eshell.el
  (push (purecopy '(eshell 2 4 2)) package--builtin-versions)
  
@@@ -9423,8 -9429,8 +9429,8 @@@ corresponding to a successful execution
  
  ;;;***
  \f
- ;;;### (autoloads nil "etags" "progmodes/etags.el" (22087 6213 768351
- ;;;;;;  952000))
+ ;;;### (autoloads nil "etags" "progmodes/etags.el" (22105 39773 947886
+ ;;;;;;  896000))
  ;;; Generated autoloads from progmodes/etags.el
  
  (defvar tags-file-name nil "\
@@@ -9734,10 -9740,15 +9740,15 @@@ for \\[find-tag] (which see)
  
  \(fn)" t nil)
  
+ (autoload 'etags--xref-backend "etags" "\
+ \(fn)" nil nil)
  ;;;***
  \f
- ;;;### (autoloads nil "ethio-util" "language/ethio-util.el" (21862
- ;;;;;;  60209 768658 443000))
+ ;;;### (autoloads nil "ethio-util" "language/ethio-util.el" (22086
+ ;;;;;;  11929 894062 731000))
  ;;; Generated autoloads from language/ethio-util.el
  
  (autoload 'setup-ethiopic-environment-internal "ethio-util" "\
@@@ -9905,7 -9916,7 +9916,7 @@@ With ARG, insert that many delimiters
  
  ;;;***
  \f
- ;;;### (autoloads nil "eudc" "net/eudc.el" (22026 25907 611502 692000))
+ ;;;### (autoloads nil "eudc" "net/eudc.el" (22099 965 90725 479000))
  ;;; Generated autoloads from net/eudc.el
  
  (autoload 'eudc-set-server "eudc" "\
@@@ -9959,8 -9970,8 +9970,8 @@@ This does nothing except loading eudc b
  
  ;;;***
  \f
- ;;;### (autoloads nil "eudc-bob" "net/eudc-bob.el" (22026 25907 607502
- ;;;;;;  692000))
+ ;;;### (autoloads nil "eudc-bob" "net/eudc-bob.el" (22086 11929 990062
+ ;;;;;;  731000))
  ;;; Generated autoloads from net/eudc-bob.el
  
  (autoload 'eudc-display-generic-binary "eudc-bob" "\
@@@ -9995,8 -10006,8 +10006,8 @@@ Display a button for the JPEG DATA
  
  ;;;***
  \f
- ;;;### (autoloads nil "eudc-export" "net/eudc-export.el" (22026 25907
- ;;;;;;  607502 692000))
+ ;;;### (autoloads nil "eudc-export" "net/eudc-export.el" (22099 965
+ ;;;;;;  74725 479000))
  ;;; Generated autoloads from net/eudc-export.el
  
  (autoload 'eudc-insert-record-at-point-into-bbdb "eudc-export" "\
@@@ -10012,8 -10023,8 +10023,8 @@@ Call `eudc-insert-record-at-point-into-
  
  ;;;***
  \f
- ;;;### (autoloads nil "eudc-hotlist" "net/eudc-hotlist.el" (22026
- ;;;;;;  25907 607502 692000))
+ ;;;### (autoloads nil "eudc-hotlist" "net/eudc-hotlist.el" (22086
+ ;;;;;;  11929 990062 731000))
  ;;; Generated autoloads from net/eudc-hotlist.el
  
  (autoload 'eudc-edit-hotlist "eudc-hotlist" "\
@@@ -10023,8 -10034,8 +10034,8 @@@ Edit the hotlist of directory servers i
  
  ;;;***
  \f
- ;;;### (autoloads nil "ewoc" "emacs-lisp/ewoc.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "ewoc" "emacs-lisp/ewoc.el" (22086 11929 674062
+ ;;;;;;  731000))
  ;;; Generated autoloads from emacs-lisp/ewoc.el
  
  (autoload 'ewoc-create "ewoc" "\
@@@ -10050,7 -10061,7 +10061,7 @@@ fourth arg NOSEP non-nil inhibits this
  
  ;;;***
  \f
- ;;;### (autoloads nil "eww" "net/eww.el" (22147 48445 679722 290000))
+ ;;;### (autoloads nil "eww" "net/eww.el" (22093 48588 548393 539000))
  ;;; Generated autoloads from net/eww.el
  
  (defvar eww-suggest-uris '(eww-links-at-point url-get-url-at-point eww-current-url) "\
@@@ -10097,8 -10108,8 +10108,8 @@@ Display the bookmarks
  
  ;;;***
  \f
- ;;;### (autoloads nil "executable" "progmodes/executable.el" (21988
- ;;;;;;  10682 37624 461000))
+ ;;;### (autoloads nil "executable" "progmodes/executable.el" (22086
+ ;;;;;;  11930 170062 731000))
  ;;; Generated autoloads from progmodes/executable.el
  
  (autoload 'executable-command-find-posix-p "executable" "\
@@@ -10133,7 -10144,7 +10144,7 @@@ file modes
  
  ;;;***
  \f
- ;;;### (autoloads nil "expand" "expand.el" (22011 58553 477858 469000))
+ ;;;### (autoloads nil "expand" "expand.el" (22086 11929 726062 731000))
  ;;; Generated autoloads from expand.el
  
  (autoload 'expand-add-abbrevs "expand" "\
@@@ -10182,8 -10193,8 +10193,8 @@@ This is used only in conjunction with `
  
  ;;;***
  \f
- ;;;### (autoloads nil "f90" "progmodes/f90.el" (22071 17982 246921
- ;;;;;;  531000))
+ ;;;### (autoloads nil "f90" "progmodes/f90.el" (22092 27718 152268
+ ;;;;;;  464000))
  ;;; Generated autoloads from progmodes/f90.el
  
  (autoload 'f90-mode "f90" "\
@@@ -10250,8 -10261,8 +10261,8 @@@ with no args, if that value is non-nil
  
  ;;;***
  \f
- ;;;### (autoloads nil "face-remap" "face-remap.el" (21888 47150 706945
- ;;;;;;  440000))
+ ;;;### (autoloads nil "face-remap" "face-remap.el" (22086 11929 726062
+ ;;;;;;  731000))
  ;;; Generated autoloads from face-remap.el
  
  (autoload 'face-remap-add-relative "face-remap" "\
@@@ -10410,8 -10421,8 +10421,8 @@@ Besides the choice of face, it is the s
  
  ;;;***
  \f
- ;;;### (autoloads nil "feedmail" "mail/feedmail.el" (22011 58553
- ;;;;;;  677858 469000))
+ ;;;### (autoloads nil "feedmail" "mail/feedmail.el" (22092 27717
+ ;;;;;;  880268 464000))
  ;;; Generated autoloads from mail/feedmail.el
  (push (purecopy '(feedmail 11)) package--builtin-versions)
  
@@@ -10445,7 -10456,7 +10456,7 @@@ backup file names and the like)
  (autoload 'feedmail-queue-reminder "feedmail" "\
  Perform some kind of reminder activity about queued and draft messages.
  Called with an optional symbol argument which says what kind of event
- is triggering the reminder activity.  The default is 'on-demand, which
+ is triggering the reminder activity.  The default is `on-demand', which
  is what you typically would use if you were putting this in your Emacs start-up
  or mail hook code.  Other recognized values for WHAT-EVENT (these are passed
  internally by feedmail):
@@@ -10465,7 -10476,7 +10476,7 @@@ you can set `feedmail-queue-reminder-al
  
  ;;;***
  \f
- ;;;### (autoloads nil "ffap" "ffap.el" (22142 30520 599026 947000))
+ ;;;### (autoloads nil "ffap" "ffap.el" (22086 11929 730062 731000))
  ;;; Generated autoloads from ffap.el
  
  (autoload 'ffap-next "ffap" "\
@@@ -10528,8 -10539,8 +10539,8 @@@ Evaluate the forms in variable `ffap-bi
  
  ;;;***
  \f
- ;;;### (autoloads nil "filecache" "filecache.el" (21740 23998 26747
- ;;;;;;  125000))
+ ;;;### (autoloads nil "filecache" "filecache.el" (22086 11929 734062
+ ;;;;;;  731000))
  ;;; Generated autoloads from filecache.el
  
  (autoload 'file-cache-add-directory "filecache" "\
@@@ -10586,8 -10597,8 +10597,8 @@@ the name is considered already unique; 
  
  ;;;***
  \f
- ;;;### (autoloads nil "filenotify" "filenotify.el" (22102 59970 680776
- ;;;;;;  103000))
+ ;;;### (autoloads nil "filenotify" "filenotify.el" (22086 11929 734062
+ ;;;;;;  731000))
  ;;; Generated autoloads from filenotify.el
  
  (autoload 'file-notify-handle-event "filenotify" "\
@@@ -10602,7 -10613,8 +10613,8 @@@ Otherwise, signal a `file-notify-error'
  
  ;;;***
  \f
- ;;;### (autoloads nil "files-x" "files-x.el" (22083 9150 136915 960000))
+ ;;;### (autoloads nil "files-x" "files-x.el" (22086 11929 734062
+ ;;;;;;  731000))
  ;;; Generated autoloads from files-x.el
  
  (autoload 'add-file-local-variable "files-x" "\
@@@ -10667,8 -10679,8 +10679,8 @@@ Copy directory-local variables to the -
  
  ;;;***
  \f
- ;;;### (autoloads nil "filesets" "filesets.el" (22026 25907 587502
- ;;;;;;  692000))
+ ;;;### (autoloads nil "filesets" "filesets.el" (22092 27717 792268
+ ;;;;;;  464000))
  ;;; Generated autoloads from filesets.el
  
  (autoload 'filesets-init "filesets" "\
@@@ -10679,8 -10691,8 +10691,8 @@@ Set up hooks, load the cache file -- i
  
  ;;;***
  \f
- ;;;### (autoloads nil "find-cmd" "find-cmd.el" (22011 58553 489858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "find-cmd" "find-cmd.el" (22086 11929 746062
+ ;;;;;;  731000))
  ;;; Generated autoloads from find-cmd.el
  (push (purecopy '(find-cmd 0 6)) package--builtin-versions)
  
@@@ -10700,8 -10712,8 +10712,8 @@@ result is a string that should be read
  
  ;;;***
  \f
- ;;;### (autoloads nil "find-dired" "find-dired.el" (22011 58553 489858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "find-dired" "find-dired.el" (22086 11929 746062
+ ;;;;;;  731000))
  ;;; Generated autoloads from find-dired.el
  
  (autoload 'find-dired "find-dired" "\
@@@ -10741,8 -10753,8 +10753,8 @@@ use in place of \"-ls\" as the final ar
  
  ;;;***
  \f
- ;;;### (autoloads nil "find-file" "find-file.el" (22011 58553 489858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "find-file" "find-file.el" (22092 27717 792268
+ ;;;;;;  464000))
  ;;; 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)))) "\
@@@ -10832,8 -10844,8 +10844,8 @@@ Visit the file you click on in another 
  
  ;;;***
  \f
- ;;;### (autoloads nil "find-func" "emacs-lisp/find-func.el" (22011
- ;;;;;;  58553 409858 469000))
+ ;;;### (autoloads nil "find-func" "emacs-lisp/find-func.el" (22086
+ ;;;;;;  11929 678062 731000))
  ;;; Generated autoloads from emacs-lisp/find-func.el
  
  (autoload 'find-library "find-func" "\
@@@ -11003,8 -11015,8 +11015,8 @@@ Define some key bindings for the find-f
  
  ;;;***
  \f
- ;;;### (autoloads nil "find-lisp" "find-lisp.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "find-lisp" "find-lisp.el" (22086 11929 746062
+ ;;;;;;  731000))
  ;;; Generated autoloads from find-lisp.el
  
  (autoload 'find-lisp-find-dired "find-lisp" "\
@@@ -11024,7 -11036,7 +11036,7 @@@ Change the filter on a `find-lisp-find-
  
  ;;;***
  \f
- ;;;### (autoloads nil "finder" "finder.el" (21998 46517 46024 649000))
+ ;;;### (autoloads nil "finder" "finder.el" (22086 11929 750062 731000))
  ;;; Generated autoloads from finder.el
  (push (purecopy '(finder 1 0)) package--builtin-versions)
  
@@@ -11046,8 -11058,8 +11058,8 @@@ Find packages matching a given keyword
  
  ;;;***
  \f
- ;;;### (autoloads nil "flow-ctrl" "flow-ctrl.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "flow-ctrl" "flow-ctrl.el" (22086 11929 750062
+ ;;;;;;  731000))
  ;;; Generated autoloads from flow-ctrl.el
  
  (autoload 'enable-flow-control "flow-ctrl" "\
@@@ -11068,8 -11080,8 +11080,8 @@@ to get the effect of a C-q
  
  ;;;***
  \f
- ;;;### (autoloads nil "flow-fill" "gnus/flow-fill.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "flow-fill" "gnus/flow-fill.el" (22086 11929
+ ;;;;;;  774062 731000))
  ;;; Generated autoloads from gnus/flow-fill.el
  
  (autoload 'fill-flowed-encode "flow-fill" "\
  
  ;;;***
  \f
- ;;;### (autoloads nil "flymake" "progmodes/flymake.el" (22011 58553
- ;;;;;;  901858 469000))
+ ;;;### (autoloads nil "flymake" "progmodes/flymake.el" (22092 27718
+ ;;;;;;  156268 464000))
  ;;; Generated autoloads from progmodes/flymake.el
  (push (purecopy '(flymake 0 3)) package--builtin-versions)
  
@@@ -11115,8 -11127,8 +11127,8 @@@ Turn flymake mode off
  
  ;;;***
  \f
- ;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (21980 16568
- ;;;;;;  77544 893000))
+ ;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (22086 11930
+ ;;;;;;  314062 731000))
  ;;; Generated autoloads from textmodes/flyspell.el
  
  (autoload 'flyspell-prog-mode "flyspell" "\
@@@ -11186,14 -11198,14 +11198,14 @@@ Flyspell whole buffer
  
  ;;;***
  \f
- ;;;### (autoloads nil "foldout" "foldout.el" (22011 58553 513858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "foldout" "foldout.el" (22086 11929 750062
+ ;;;;;;  731000))
  ;;; Generated autoloads from foldout.el
  (push (purecopy '(foldout 1 10)) package--builtin-versions)
  
  ;;;***
  \f
- ;;;### (autoloads nil "follow" "follow.el" (22023 49716 552634 164000))
+ ;;;### (autoloads nil "follow" "follow.el" (22096 24780 228094 47000))
  ;;; Generated autoloads from follow.el
  
  (autoload 'turn-on-follow-mode "follow" "\
@@@ -11287,8 -11299,8 +11299,8 @@@ selected if the original window is the 
  
  ;;;***
  \f
- ;;;### (autoloads nil "footnote" "mail/footnote.el" (22026 25907
- ;;;;;;  595502 692000))
+ ;;;### (autoloads nil "footnote" "mail/footnote.el" (22086 11929
+ ;;;;;;  934062 731000))
  ;;; Generated autoloads from mail/footnote.el
  (push (purecopy '(footnote 0 19)) package--builtin-versions)
  
@@@ -11307,7 -11319,7 +11319,7 @@@ play around with the following keys
  
  ;;;***
  \f
- ;;;### (autoloads nil "forms" "forms.el" (21981 37426 535399 97000))
+ ;;;### (autoloads nil "forms" "forms.el" (22086 11929 754062 731000))
  ;;; Generated autoloads from forms.el
  
  (autoload 'forms-mode "forms" "\
@@@ -11343,8 -11355,8 +11355,8 @@@ Visit a file in Forms mode in other win
  
  ;;;***
  \f
- ;;;### (autoloads nil "fortran" "progmodes/fortran.el" (22011 58553
- ;;;;;;  901858 469000))
+ ;;;### (autoloads nil "fortran" "progmodes/fortran.el" (22092 27718
+ ;;;;;;  156268 464000))
  ;;; Generated autoloads from progmodes/fortran.el
  
  (autoload 'fortran-mode "fortran" "\
@@@ -11421,8 -11433,8 +11433,8 @@@ with no args, if that value is non-nil
  
  ;;;***
  \f
- ;;;### (autoloads nil "fortune" "play/fortune.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "fortune" "play/fortune.el" (22086 11930 126062
+ ;;;;;;  731000))
  ;;; Generated autoloads from play/fortune.el
  
  (autoload 'fortune-add-fortune "fortune" "\
@@@ -11470,8 -11482,8 +11482,8 @@@ and choose the directory as the fortune
  
  ;;;***
  \f
- ;;;### (autoloads nil "frameset" "frameset.el" (21799 41766 981374
- ;;;;;;  972000))
+ ;;;### (autoloads nil "frameset" "frameset.el" (22086 11929 754062
+ ;;;;;;  731000))
  ;;; Generated autoloads from frameset.el
  
  (defvar frameset-session-filter-alist '((name . :never) (left . frameset-filter-iconified) (minibuffer . frameset-filter-minibuffer) (top . frameset-filter-iconified)) "\
@@@ -11657,15 -11669,15 +11669,15 @@@ Interactively, reads the register usin
  
  ;;;***
  \f
- ;;;### (autoloads nil "gamegrid" "play/gamegrid.el" (21720 38720
- ;;;;;;  956749 443000))
+ ;;;### (autoloads nil "gamegrid" "play/gamegrid.el" (22086 11930
+ ;;;;;;  126062 731000))
  ;;; Generated autoloads from play/gamegrid.el
  (push (purecopy '(gamegrid 1 2)) package--builtin-versions)
  
  ;;;***
  \f
- ;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (22030 22952
- ;;;;;;  977158 467000))
+ ;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (22092 27718
+ ;;;;;;  172268 464000))
  ;;; Generated autoloads from progmodes/gdb-mi.el
  
  (defvar gdb-enable-debug nil "\
@@@ -11742,8 -11754,8 +11754,8 @@@ detailed description of this mode
  
  ;;;***
  \f
- ;;;### (autoloads nil "generic" "emacs-lisp/generic.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "generic" "emacs-lisp/generic.el" (22086 11929
+ ;;;;;;  678062 731000))
  ;;; Generated autoloads from emacs-lisp/generic.el
  
  (defvar generic-mode-list nil "\
@@@ -11823,8 -11835,8 +11835,8 @@@ regular expression that can be used as 
  
  ;;;***
  \f
- ;;;### (autoloads nil "glasses" "progmodes/glasses.el" (22011 58553
- ;;;;;;  901858 469000))
+ ;;;### (autoloads nil "glasses" "progmodes/glasses.el" (22086 11930
+ ;;;;;;  178062 731000))
  ;;; Generated autoloads from progmodes/glasses.el
  
  (autoload 'glasses-mode "glasses" "\
@@@ -11838,8 -11850,8 +11850,8 @@@ add virtual separators (like underscore
  
  ;;;***
  \f
- ;;;### (autoloads nil "gmm-utils" "gnus/gmm-utils.el" (21993 28596
- ;;;;;;  86597 473000))
+ ;;;### (autoloads nil "gmm-utils" "gnus/gmm-utils.el" (22086 11929
+ ;;;;;;  778062 731000))
  ;;; Generated autoloads from gnus/gmm-utils.el
  
  (autoload 'gmm-regexp-concat "gmm-utils" "\
@@@ -11893,7 -11905,7 +11905,7 @@@ DEFAULT-MAP specifies the default key m
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus" "gnus/gnus.el" (22011 58553 561858 469000))
+ ;;;### (autoloads nil "gnus" "gnus/gnus.el" (22086 11929 810062 731000))
  ;;; Generated autoloads from gnus/gnus.el
  (push (purecopy '(gnus 5 13)) package--builtin-versions)
  (when (fboundp 'custom-autoload)
@@@ -11943,8 -11955,8 +11955,8 @@@ prompt the user for the name of an NNT
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-agent" "gnus/gnus-agent.el" (21989 31537
- ;;;;;;  791825 721000))
+ ;;;### (autoloads nil "gnus-agent" "gnus/gnus-agent.el" (22086 11929
+ ;;;;;;  778062 731000))
  ;;; Generated autoloads from gnus/gnus-agent.el
  
  (autoload 'gnus-unplugged "gnus-agent" "\
@@@ -12034,8 -12046,8 +12046,8 @@@ CLEAN is obsolete and ignored
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (22011 58553
- ;;;;;;  521858 469000))
+ ;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (22086 11929
+ ;;;;;;  782062 731000))
  ;;; Generated autoloads from gnus/gnus-art.el
  
  (autoload 'gnus-article-prepare-display "gnus-art" "\
@@@ -12045,8 -12057,8 +12057,8 @@@ Make the current buffer look like a nic
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-bookmark" "gnus/gnus-bookmark.el" (22011
- ;;;;;;  58553 521858 469000))
+ ;;;### (autoloads nil "gnus-bookmark" "gnus/gnus-bookmark.el" (22086
+ ;;;;;;  11929 782062 731000))
  ;;; Generated autoloads from gnus/gnus-bookmark.el
  
  (autoload 'gnus-bookmark-set "gnus-bookmark" "\
@@@ -12069,8 -12081,8 +12081,8 @@@ deletion, or > if it is flagged for dis
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-cache" "gnus/gnus-cache.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "gnus-cache" "gnus/gnus-cache.el" (22086 11929
+ ;;;;;;  782062 731000))
  ;;; Generated autoloads from gnus/gnus-cache.el
  
  (autoload 'gnus-jog-cache "gnus-cache" "\
@@@ -12111,8 -12123,8 +12123,8 @@@ supported
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-delay" "gnus/gnus-delay.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "gnus-delay" "gnus/gnus-delay.el" (22086 11929
+ ;;;;;;  786062 731000))
  ;;; Generated autoloads from gnus/gnus-delay.el
  
  (autoload 'gnus-delay-article "gnus-delay" "\
@@@ -12147,8 -12159,8 +12159,8 @@@ Checking delayed messages is skipped i
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-diary" "gnus/gnus-diary.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "gnus-diary" "gnus/gnus-diary.el" (22086 11929
+ ;;;;;;  786062 731000))
  ;;; Generated autoloads from gnus/gnus-diary.el
  
  (autoload 'gnus-user-format-function-d "gnus-diary" "\
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-dired" "gnus/gnus-dired.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "gnus-dired" "gnus/gnus-dired.el" (22086 11929
+ ;;;;;;  786062 731000))
  ;;; Generated autoloads from gnus/gnus-dired.el
  
  (autoload 'turn-on-gnus-dired-mode "gnus-dired" "\
@@@ -12174,8 -12186,8 +12186,8 @@@ Convenience method to turn on gnus-dire
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-draft" "gnus/gnus-draft.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "gnus-draft" "gnus/gnus-draft.el" (22086 11929
+ ;;;;;;  786062 731000))
  ;;; Generated autoloads from gnus/gnus-draft.el
  
  (autoload 'gnus-draft-reminder "gnus-draft" "\
@@@ -12185,8 -12197,8 +12197,8 @@@ Reminder user if there are unsent draft
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-fun" "gnus/gnus-fun.el" (21989 31537
- ;;;;;;  811825 721000))
+ ;;;### (autoloads nil "gnus-fun" "gnus/gnus-fun.el" (22086 11929
+ ;;;;;;  786062 731000))
  ;;; Generated autoloads from gnus/gnus-fun.el
  
  (autoload 'gnus--random-face-with-type "gnus-fun" "\
@@@ -12251,8 -12263,8 +12263,8 @@@ Insert a random Face header from `gnus-
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-gravatar" "gnus/gnus-gravatar.el" (21670
- ;;;;;;  32330 885624 725000))
+ ;;;### (autoloads nil "gnus-gravatar" "gnus/gnus-gravatar.el" (22086
+ ;;;;;;  11929 786062 731000))
  ;;; Generated autoloads from gnus/gnus-gravatar.el
  
  (autoload 'gnus-treat-from-gravatar "gnus-gravatar" "\
@@@ -12269,8 -12281,8 +12281,8 @@@ If gravatars are already displayed, rem
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (22011 58553
- ;;;;;;  529858 469000))
+ ;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (22086 11929
+ ;;;;;;  790062 731000))
  ;;; Generated autoloads from gnus/gnus-group.el
  
  (autoload 'gnus-fetch-group "gnus-group" "\
@@@ -12287,8 -12299,8 +12299,8 @@@ Pop up a frame and enter GROUP
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-html" "gnus/gnus-html.el" (21972 22452
- ;;;;;;  190264 357000))
+ ;;;### (autoloads nil "gnus-html" "gnus/gnus-html.el" (22086 11929
+ ;;;;;;  790062 731000))
  ;;; Generated autoloads from gnus/gnus-html.el
  
  (autoload 'gnus-article-html "gnus-html" "\
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-kill" "gnus/gnus-kill.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "gnus-kill" "gnus/gnus-kill.el" (22086 11929
+ ;;;;;;  790062 731000))
  ;;; Generated autoloads from gnus/gnus-kill.el
  
  (defalias 'gnus-batch-kill 'gnus-batch-score)
@@@ -12317,8 -12329,8 +12329,8 @@@ Usage: emacs -batch -l ~/.emacs -l gnu
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-ml" "gnus/gnus-ml.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "gnus-ml" "gnus/gnus-ml.el" (22086 11929 790062
+ ;;;;;;  731000))
  ;;; Generated autoloads from gnus/gnus-ml.el
  
  (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" "\
@@@ -12341,8 -12353,8 +12353,8 @@@ Minor mode for providing mailing-list c
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-mlspl" "gnus/gnus-mlspl.el" (22011 58553
- ;;;;;;  529858 469000))
+ ;;;### (autoloads nil "gnus-mlspl" "gnus/gnus-mlspl.el" (22092 27717
+ ;;;;;;  816268 464000))
  ;;; Generated autoloads from gnus/gnus-mlspl.el
  
  (autoload 'gnus-group-split-setup "gnus-mlspl" "\
@@@ -12413,9 -12425,9 +12425,9 @@@ clauses will be generated
  If CATCH-ALL is nil, no catch-all handling is performed, regardless of
  catch-all marks in group parameters.  Otherwise, if there is no
  selected group whose SPLIT-REGEXP matches the empty string, nor is
- there a selected group whose SPLIT-SPEC is 'catch-all, this fancy
+ there a selected group whose SPLIT-SPEC is `catch-all', this fancy
  split (say, a group name) will be appended to the returned SPLIT list,
- as the last element of a '| SPLIT.
+ as the last element of a `|' SPLIT.
  
  For example, given the following group parameters:
  
@@@ -12442,8 -12454,8 +12454,8 @@@ Calling (gnus-group-split-fancy nil ni
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (21725 56638
- ;;;;;;  795320 63000))
+ ;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (22086 11929
+ ;;;;;;  794062 731000))
  ;;; Generated autoloads from gnus/gnus-msg.el
  
  (autoload 'gnus-msg-mail "gnus-msg" "\
@@@ -12470,7 -12482,7 +12482,7 @@@ Like `message-reply'
  ;;;***
  \f
  ;;;### (autoloads nil "gnus-notifications" "gnus/gnus-notifications.el"
- ;;;;;;  (21757 29489 158925 687000))
+ ;;;;;;  (22086 11929 794062 731000))
  ;;; Generated autoloads from gnus/gnus-notifications.el
  
  (autoload 'gnus-notifications "gnus-notifications" "\
@@@ -12486,8 -12498,8 +12498,8 @@@ This is typically a function to add i
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (22086 11929
+ ;;;;;;  794062 731000))
  ;;; Generated autoloads from gnus/gnus-picon.el
  
  (autoload 'gnus-treat-from-picon "gnus-picon" "\
@@@ -12510,8 -12522,8 +12522,8 @@@ If picons are already displayed, remov
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-range" "gnus/gnus-range.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "gnus-range" "gnus/gnus-range.el" (22086 11929
+ ;;;;;;  794062 731000))
  ;;; Generated autoloads from gnus/gnus-range.el
  
  (autoload 'gnus-sorted-difference "gnus-range" "\
@@@ -12578,8 -12590,8 +12590,8 @@@ Add NUM into sorted LIST by side effect
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-registry" "gnus/gnus-registry.el" (22011
- ;;;;;;  58553 541858 469000))
+ ;;;### (autoloads nil "gnus-registry" "gnus/gnus-registry.el" (22086
+ ;;;;;;  11929 794062 731000))
  ;;; Generated autoloads from gnus/gnus-registry.el
  
  (autoload 'gnus-registry-initialize "gnus-registry" "\
@@@ -12594,8 -12606,8 +12606,8 @@@ Install the registry hooks
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-sieve" "gnus/gnus-sieve.el" (22011 58553
- ;;;;;;  541858 469000))
+ ;;;### (autoloads nil "gnus-sieve" "gnus/gnus-sieve.el" (22086 11929
+ ;;;;;;  794062 731000))
  ;;; Generated autoloads from gnus/gnus-sieve.el
  
  (autoload 'gnus-sieve-update "gnus-sieve" "\
@@@ -12622,8 -12634,8 +12634,8 @@@ See the documentation for these variabl
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-spec" "gnus/gnus-spec.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "gnus-spec" "gnus/gnus-spec.el" (22086 11929
+ ;;;;;;  798062 731000))
  ;;; Generated autoloads from gnus/gnus-spec.el
  
  (autoload 'gnus-update-format "gnus-spec" "\
@@@ -12633,8 -12645,8 +12645,8 @@@ Update the format specification near po
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-start" "gnus/gnus-start.el" (21993 28596
- ;;;;;;  102597 473000))
+ ;;;### (autoloads nil "gnus-start" "gnus/gnus-start.el" (22086 11929
+ ;;;;;;  798062 731000))
  ;;; Generated autoloads from gnus/gnus-start.el
  
  (autoload 'gnus-declare-backend "gnus-start" "\
@@@ -12644,8 -12656,8 +12656,8 @@@ Declare back end NAME with ABILITIES a
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (22080 32958
- ;;;;;;  2580 652000))
+ ;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (22086 11929
+ ;;;;;;  802062 731000))
  ;;; Generated autoloads from gnus/gnus-sum.el
  
  (autoload 'gnus-summary-bookmark-jump "gnus-sum" "\
@@@ -12656,8 -12668,8 +12668,8 @@@ BOOKMARK is a bookmark name or a bookma
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-sync" "gnus/gnus-sync.el" (21832 3452
- ;;;;;;  581913 198000))
+ ;;;### (autoloads nil "gnus-sync" "gnus/gnus-sync.el" (22086 11929
+ ;;;;;;  802062 731000))
  ;;; Generated autoloads from gnus/gnus-sync.el
  
  (autoload 'gnus-sync-initialize "gnus-sync" "\
@@@ -12672,8 -12684,8 +12684,8 @@@ Install the sync hooks
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnus-win" "gnus/gnus-win.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "gnus-win" "gnus/gnus-win.el" (22086 11929
+ ;;;;;;  806062 731000))
  ;;; Generated autoloads from gnus/gnus-win.el
  
  (autoload 'gnus-add-configuration "gnus-win" "\
@@@ -12683,8 -12695,8 +12695,8 @@@ Add the window configuration CONF to `g
  
  ;;;***
  \f
- ;;;### (autoloads nil "gnutls" "net/gnutls.el" (22141 9655 59660
- ;;;;;;  171000))
+ ;;;### (autoloads nil "gnutls" "net/gnutls.el" (22086 11929 994062
+ ;;;;;;  731000))
  ;;; Generated autoloads from net/gnutls.el
  
  (defvar gnutls-min-prime-bits 256 "\
@@@ -12700,8 -12712,8 +12712,8 @@@ A value of nil says to use the default 
  
  ;;;***
  \f
- ;;;### (autoloads nil "gomoku" "play/gomoku.el" (21998 46517 190024
- ;;;;;;  649000))
+ ;;;### (autoloads nil "gomoku" "play/gomoku.el" (22086 11930 126062
+ ;;;;;;  731000))
  ;;; Generated autoloads from play/gomoku.el
  
  (autoload 'gomoku "gomoku" "\
@@@ -12727,8 -12739,8 +12739,8 @@@ Use \\[describe-mode] for more info
  
  ;;;***
  \f
- ;;;### (autoloads nil "goto-addr" "net/goto-addr.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "goto-addr" "net/goto-addr.el" (22086 11929
+ ;;;;;;  994062 731000))
  ;;; Generated autoloads from net/goto-addr.el
  
  (define-obsolete-function-alias 'goto-address-at-mouse 'goto-address-at-point "22.1")
@@@ -12769,8 -12781,8 +12781,8 @@@ Like `goto-address-mode', but only for 
  
  ;;;***
  \f
- ;;;### (autoloads nil "gravatar" "gnus/gravatar.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "gravatar" "gnus/gravatar.el" (22086 11929
+ ;;;;;;  810062 731000))
  ;;; Generated autoloads from gnus/gravatar.el
  
  (autoload 'gravatar-retrieve "gravatar" "\
@@@ -12786,8 -12798,8 +12798,8 @@@ Retrieve MAIL-ADDRESS gravatar and retu
  
  ;;;***
  \f
- ;;;### (autoloads nil "grep" "progmodes/grep.el" (22061 64938 520287
- ;;;;;;  963000))
+ ;;;### (autoloads nil "grep" "progmodes/grep.el" (22086 11930 178062
+ ;;;;;;  731000))
  ;;; Generated autoloads from progmodes/grep.el
  
  (defvar grep-window-height nil "\
@@@ -12954,7 -12966,7 +12966,7 @@@ file name to `*.gz', and sets `grep-hig
  
  ;;;***
  \f
- ;;;### (autoloads nil "gs" "gs.el" (21670 32331 385639 720000))
+ ;;;### (autoloads nil "gs" "gs.el" (22086 11929 854062 731000))
  ;;; Generated autoloads from gs.el
  
  (autoload 'gs-load-image "gs" "\
@@@ -12967,8 -12979,8 +12979,8 @@@ the form \"WINDOW-ID PIXMAP-ID\".  Valu
  
  ;;;***
  \f
- ;;;### (autoloads nil "gud" "progmodes/gud.el" (22018 31799 115263
- ;;;;;;  120000))
+ ;;;### (autoloads nil "gud" "progmodes/gud.el" (22092 27718 188268
+ ;;;;;;  464000))
  ;;; Generated autoloads from progmodes/gud.el
  
  (autoload 'gud-gdb "gud" "\
@@@ -13063,8 -13075,8 +13075,8 @@@ it if ARG is omitted or nil
  
  ;;;***
  \f
- ;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (22011 58553 409858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (22099 26170 382017
+ ;;;;;;  16000))
  ;;; Generated autoloads from emacs-lisp/gv.el
  
  (autoload 'gv-get "gv" "\
@@@ -13159,15 -13171,15 +13171,15 @@@ The return value is the last VAL in th
  Return a reference to PLACE.
  This is like the `&' operator of the C language.
  Note: this only works reliably with lexical binding mode, except for very
- simple PLACEs such as (function-symbol 'foo) which will also work in dynamic
+ simple PLACEs such as (function-symbol \\='foo) which will also work in dynamic
  binding mode.
  
  \(fn PLACE)" nil t)
  
  ;;;***
  \f
- ;;;### (autoloads nil "handwrite" "play/handwrite.el" (22026 25907
- ;;;;;;  631502 692000))
+ ;;;### (autoloads nil "handwrite" "play/handwrite.el" (22086 11930
+ ;;;;;;  130062 731000))
  ;;; Generated autoloads from play/handwrite.el
  
  (autoload 'handwrite "handwrite" "\
@@@ -13184,8 -13196,8 +13196,8 @@@ Variables: `handwrite-linespace'     (d
  
  ;;;***
  \f
- ;;;### (autoloads nil "hanoi" "play/hanoi.el" (21799 41767 31221
- ;;;;;;  635000))
+ ;;;### (autoloads nil "hanoi" "play/hanoi.el" (22086 11930 130062
+ ;;;;;;  731000))
  ;;; Generated autoloads from play/hanoi.el
  
  (autoload 'hanoi "hanoi" "\
@@@ -13212,8 -13224,8 +13224,8 @@@ to be updated
  
  ;;;***
  \f
- ;;;### (autoloads nil "hashcash" "mail/hashcash.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "hashcash" "mail/hashcash.el" (22092 27717
+ ;;;;;;  880268 464000))
  ;;; Generated autoloads from mail/hashcash.el
  
  (autoload 'hashcash-insert-payment "hashcash" "\
@@@ -13255,8 -13267,8 +13267,8 @@@ Prefix arg sets default accept amount t
  
  ;;;***
  \f
- ;;;### (autoloads nil "help-at-pt" "help-at-pt.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "help-at-pt" "help-at-pt.el" (22086 11929 854062
+ ;;;;;;  731000))
  ;;; Generated autoloads from help-at-pt.el
  
  (autoload 'help-at-pt-string "help-at-pt" "\
@@@ -13383,8 -13395,8 +13395,8 @@@ different regions.  With numeric argume
  
  ;;;***
  \f
- ;;;### (autoloads nil "help-fns" "help-fns.el" (22083 9150 144915
- ;;;;;;  960000))
+ ;;;### (autoloads nil "help-fns" "help-fns.el" (22101 42694 89526
+ ;;;;;;  804000))
  ;;; Generated autoloads from help-fns.el
  
  (autoload 'describe-function "help-fns" "\
@@@ -13438,6 -13450,9 +13450,9 @@@ it is displayed along with the global v
  (autoload 'describe-symbol "help-fns" "\
  Display the full documentation of SYMBOL.
  Will show the info of SYMBOL as a function, variable, and/or face.
+ Optional arguments BUFFER and FRAME specify for which buffer and
+ frame to show the information about SYMBOL; they default to the
+ current buffer and the selected frame, respectively.
  
  \(fn SYMBOL &optional BUFFER FRAME)" t nil)
  
@@@ -13468,8 -13483,8 +13483,8 @@@ Produce a texinfo buffer with sorted do
  
  ;;;***
  \f
- ;;;### (autoloads nil "help-macro" "help-macro.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "help-macro" "help-macro.el" (22086 11929 854062
+ ;;;;;;  731000))
  ;;; Generated autoloads from help-macro.el
  
  (defvar three-step-help nil "\
@@@ -13483,8 -13498,8 +13498,8 @@@ gives the window that lists the options
  
  ;;;***
  \f
- ;;;### (autoloads nil "help-mode" "help-mode.el" (21972 22452 270264
- ;;;;;;  357000))
+ ;;;### (autoloads nil "help-mode" "help-mode.el" (22086 11929 854062
+ ;;;;;;  731000))
  ;;; Generated autoloads from help-mode.el
  
  (autoload 'help-mode "help-mode" "\
@@@ -13585,8 -13600,8 +13600,8 @@@ BOOKMARK is a bookmark name or a bookma
  
  ;;;***
  \f
- ;;;### (autoloads nil "helper" "emacs-lisp/helper.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "helper" "emacs-lisp/helper.el" (22086 11929
+ ;;;;;;  678062 731000))
  ;;; Generated autoloads from emacs-lisp/helper.el
  
  (autoload 'Helper-describe-bindings "helper" "\
@@@ -13601,7 -13616,7 +13616,7 @@@ Provide help for current mode
  
  ;;;***
  \f
- ;;;### (autoloads nil "hexl" "hexl.el" (22079 12092 331174 267000))
+ ;;;### (autoloads nil "hexl" "hexl.el" (22086 11929 858062 731000))
  ;;; Generated autoloads from hexl.el
  
  (autoload 'hexl-mode "hexl" "\
@@@ -13695,8 -13710,8 +13710,8 @@@ This discards the buffer's undo informa
  
  ;;;***
  \f
- ;;;### (autoloads nil "hi-lock" "hi-lock.el" (21993 28596 134597
- ;;;;;;  473000))
+ ;;;### (autoloads nil "hi-lock" "hi-lock.el" (22092 27717 860268
+ ;;;;;;  464000))
  ;;; Generated autoloads from hi-lock.el
  
  (autoload 'hi-lock-mode "hi-lock" "\
@@@ -13744,7 -13759,7 +13759,7 @@@ which can be called interactively, are
    (See `font-lock-keywords'.)  They may be edited and re-loaded with \\[hi-lock-find-patterns],
    any valid `font-lock-keywords' form is acceptable.  When a file is
    loaded the patterns are read if `hi-lock-file-patterns-policy' is
-   'ask and the user responds y to the prompt, or if
+   `ask' and the user responds y to the prompt, or if
    `hi-lock-file-patterns-policy' is bound to a function and that
    function returns t.
  
@@@ -13863,8 -13878,8 +13878,8 @@@ be found in variable `hi-lock-interacti
  
  ;;;***
  \f
- ;;;### (autoloads nil "hideif" "progmodes/hideif.el" (21989 31537
- ;;;;;;  939825 721000))
+ ;;;### (autoloads nil "hideif" "progmodes/hideif.el" (22092 27718
+ ;;;;;;  188268 464000))
  ;;; Generated autoloads from progmodes/hideif.el
  
  (autoload 'hide-ifdef-mode "hideif" "\
@@@ -13911,8 -13926,8 +13926,8 @@@ Several variables affect how the hidin
  
  ;;;***
  \f
- ;;;### (autoloads nil "hideshow" "progmodes/hideshow.el" (22026 25907
- ;;;;;;  635502 692000))
+ ;;;### (autoloads nil "hideshow" "progmodes/hideshow.el" (22093 48588
+ ;;;;;;  580393 539000))
  ;;; 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))) "\
@@@ -13951,7 -13966,7 +13966,7 @@@ if ARG is omitted or nil
  
  When hideshow minor mode is on, the menu bar is augmented with hideshow
  commands and the hideshow commands are enabled.
- The value '(hs . t) is added to `buffer-invisibility-spec'.
+ The value (hs . t) is added to `buffer-invisibility-spec'.
  
  The main commands are: `hs-hide-all', `hs-show-all', `hs-hide-block',
  `hs-show-block', `hs-hide-level' and `hs-toggle-hiding'.  There is also
@@@ -13974,8 -13989,8 +13989,8 @@@ Unconditionally turn off `hs-minor-mode
  
  ;;;***
  \f
- ;;;### (autoloads nil "hilit-chg" "hilit-chg.el" (21980 16567 693544
- ;;;;;;  893000))
+ ;;;### (autoloads nil "hilit-chg" "hilit-chg.el" (22086 11929 858062
+ ;;;;;;  731000))
  ;;; Generated autoloads from hilit-chg.el
  
  (autoload 'highlight-changes-mode "hilit-chg" "\
@@@ -14106,8 -14121,8 +14121,8 @@@ See `highlight-changes-mode' for more i
  
  ;;;***
  \f
- ;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (21850 34968 457268
- ;;;;;;  630000))
+ ;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (22086 11929 858062
+ ;;;;;;  731000))
  ;;; Generated autoloads from hippie-exp.el
  (push (purecopy '(hippie-exp 1 6)) package--builtin-versions)
  
@@@ -14139,8 -14154,8 +14154,8 @@@ argument VERBOSE non-nil makes the func
  
  ;;;***
  \f
- ;;;### (autoloads nil "hl-line" "hl-line.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "hl-line" "hl-line.el" (22086 11929 858062
+ ;;;;;;  731000))
  ;;; Generated autoloads from hl-line.el
  
  (autoload 'hl-line-mode "hl-line" "\
@@@ -14189,8 -14204,8 +14204,8 @@@ Global-Hl-Line mode uses the functions 
  
  ;;;***
  \f
- ;;;### (autoloads nil "holidays" "calendar/holidays.el" (22026 25907
- ;;;;;;  551502 692000))
+ ;;;### (autoloads nil "holidays" "calendar/holidays.el" (22086 11929
+ ;;;;;;  534062 731000))
  ;;; 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"))) "\
@@@ -14300,8 -14315,8 +14315,8 @@@ The optional LABEL is used to label th
  
  ;;;***
  \f
- ;;;### (autoloads nil "html2text" "gnus/html2text.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "html2text" "gnus/html2text.el" (22086 11929
+ ;;;;;;  810062 731000))
  ;;; Generated autoloads from gnus/html2text.el
  
  (autoload 'html2text "html2text" "\
@@@ -14311,8 -14326,8 +14326,8 @@@ Convert HTML to plain text in the curre
  
  ;;;***
  \f
- ;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (22131 60223
- ;;;;;;  733707 127000))
+ ;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (22092 27717
+ ;;;;;;  864268 464000))
  ;;; Generated autoloads from htmlfontify.el
  (push (purecopy '(htmlfontify 0 21)) package--builtin-versions)
  
@@@ -14345,8 -14360,8 +14360,8 @@@ You may also want to set `hfy-page-head
  
  ;;;***
  \f
- ;;;### (autoloads nil "ibuf-macs" "ibuf-macs.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "ibuf-macs" "ibuf-macs.el" (22086 11929 862062
+ ;;;;;;  731000))
  ;;; Generated autoloads from ibuf-macs.el
  
  (autoload 'define-ibuffer-column "ibuf-macs" "\
@@@ -14448,8 -14463,8 +14463,8 @@@ bound to the current value of the filte
  
  ;;;***
  \f
- ;;;### (autoloads nil "ibuffer" "ibuffer.el" (22131 60223 745707
- ;;;;;;  127000))
+ ;;;### (autoloads nil "ibuffer" "ibuffer.el" (22092 27717 868268
+ ;;;;;;  464000))
  ;;; Generated autoloads from ibuffer.el
  
  (autoload 'ibuffer-list-buffers "ibuffer" "\
@@@ -14488,8 -14503,8 +14503,8 @@@ FORMATS is the value to use for `ibuffe
  
  ;;;***
  \f
- ;;;### (autoloads nil "icalendar" "calendar/icalendar.el" (22026
- ;;;;;;  25907 551502 692000))
+ ;;;### (autoloads nil "icalendar" "calendar/icalendar.el" (22092
+ ;;;;;;  27717 556268 464000))
  ;;; Generated autoloads from calendar/icalendar.el
  (push (purecopy '(icalendar 0 19)) package--builtin-versions)
  
@@@ -14542,8 -14557,8 +14557,8 @@@ buffer `*icalendar-errors*'
  
  ;;;***
  \f
- ;;;### (autoloads nil "icomplete" "icomplete.el" (21980 16567 701544
- ;;;;;;  893000))
+ ;;;### (autoloads nil "icomplete" "icomplete.el" (22086 11929 862062
+ ;;;;;;  731000))
  ;;; Generated autoloads from icomplete.el
  
  (defvar icomplete-mode nil "\
@@@ -14582,8 -14597,8 +14597,8 @@@ completions
  
  ;;;***
  \f
- ;;;### (autoloads nil "icon" "progmodes/icon.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "icon" "progmodes/icon.el" (22086 11930 186062
+ ;;;;;;  731000))
  ;;; Generated autoloads from progmodes/icon.el
  
  (autoload 'icon-mode "icon" "\
@@@ -14623,8 -14638,8 +14638,8 @@@ with no args, if that value is non-nil
  
  ;;;***
  \f
- ;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (22011
- ;;;;;;  58553 905858 469000))
+ ;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (22086
+ ;;;;;;  11930 194062 731000))
  ;;; Generated autoloads from progmodes/idlw-shell.el
  
  (autoload 'idlwave-shell "idlw-shell" "\
@@@ -14649,8 -14664,8 +14664,8 @@@ See also the variable `idlwave-shell-pr
  
  ;;;***
  \f
- ;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (22011 58553
- ;;;;;;  909858 469000))
+ ;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (22092 27718
+ ;;;;;;  216268 464000))
  ;;; Generated autoloads from progmodes/idlwave.el
  (push (purecopy '(idlwave 6 1 22)) package--builtin-versions)
  
@@@ -14779,7 -14794,7 +14794,7 @@@ The main features of this mode ar
  
  ;;;***
  \f
- ;;;### (autoloads nil "ido" "ido.el" (22011 58553 641858 469000))
+ ;;;### (autoloads nil "ido" "ido.el" (22093 48588 548393 539000))
  ;;; Generated autoloads from ido.el
  
  (defvar ido-mode nil "\
@@@ -14802,8 -14817,8 +14817,8 @@@ With ARG, turn Ido mode on if arg is po
  Turning on Ido mode will remap (via a minor-mode keymap) the default
  keybindings for the `find-file' and `switch-to-buffer' families of
  commands to the Ido versions of these functions.
- However, if ARG arg equals 'files, remap only commands for files, or
- if it equals 'buffers, remap only commands for buffer switching.
+ However, if ARG arg equals `files', remap only commands for files, or
+ if it equals `buffers', remap only commands for buffer switching.
  This function also adds a hook to the minibuffer.
  
  \(fn &optional ARG)" t nil)
@@@ -15041,7 -15056,7 +15056,7 @@@ DEF, if non-nil, is the default value
  
  ;;;***
  \f
- ;;;### (autoloads nil "ielm" "ielm.el" (22067 17342 170157 143000))
+ ;;;### (autoloads nil "ielm" "ielm.el" (22086 11929 866062 731000))
  ;;; Generated autoloads from ielm.el
  
  (autoload 'ielm "ielm" "\
@@@ -15053,7 -15068,7 +15068,7 @@@ See `inferior-emacs-lisp-mode' for deta
  
  ;;;***
  \f
- ;;;### (autoloads nil "iimage" "iimage.el" (21990 52406 604500 385000))
+ ;;;### (autoloads nil "iimage" "iimage.el" (22086 11929 866062 731000))
  ;;; Generated autoloads from iimage.el
  
  (define-obsolete-function-alias 'turn-on-iimage-mode 'iimage-mode "24.1")
@@@ -15069,7 -15084,7 +15084,7 @@@ the mode if ARG is omitted or nil, and 
  
  ;;;***
  \f
- ;;;### (autoloads nil "image" "image.el" (22048 52907 35535 316000))
+ ;;;### (autoloads nil "image" "image.el" (22092 27717 872268 464000))
  ;;; Generated autoloads from image.el
  
  (autoload 'image-type-from-data "image" "\
@@@ -15262,8 -15277,8 +15277,8 @@@ If Emacs is compiled without ImageMagic
  
  ;;;***
  \f
- ;;;### (autoloads nil "image-dired" "image-dired.el" (22011 58553
- ;;;;;;  641858 469000))
+ ;;;### (autoloads nil "image-dired" "image-dired.el" (22092 27717
+ ;;;;;;  872268 464000))
  ;;; Generated autoloads from image-dired.el
  (push (purecopy '(image-dired 0 4 11)) package--builtin-versions)
  
@@@ -15400,8 -15415,8 +15415,8 @@@ easy-to-use form
  
  ;;;***
  \f
- ;;;### (autoloads nil "image-file" "image-file.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "image-file" "image-file.el" (22086 11929 866062
+ ;;;;;;  731000))
  ;;; 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")) "\
@@@ -15463,8 -15478,8 +15478,8 @@@ An image file is one whose name has an 
  
  ;;;***
  \f
- ;;;### (autoloads nil "image-mode" "image-mode.el" (22091 3267 895306
- ;;;;;;  892000))
+ ;;;### (autoloads nil "image-mode" "image-mode.el" (22091 6875 287217
+ ;;;;;;  891000))
  ;;; Generated autoloads from image-mode.el
  
  (autoload 'image-mode "image-mode" "\
@@@ -15511,7 -15526,7 +15526,7 @@@ on these modes
  
  ;;;***
  \f
- ;;;### (autoloads nil "imenu" "imenu.el" (21986 55346 284512 613000))
+ ;;;### (autoloads nil "imenu" "imenu.el" (22092 27717 872268 464000))
  ;;; Generated autoloads from imenu.el
  
  (defvar imenu-sort-function nil "\
@@@ -15649,8 -15664,8 +15664,8 @@@ for more information
  
  ;;;***
  \f
- ;;;### (autoloads nil "ind-util" "language/ind-util.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "ind-util" "language/ind-util.el" (22086 11929
+ ;;;;;;  898062 731000))
  ;;; Generated autoloads from language/ind-util.el
  
  (autoload 'indian-compose-region "ind-util" "\
@@@ -15680,8 -15695,8 +15695,8 @@@ Convert old Emacs Devanagari character
  
  ;;;***
  \f
- ;;;### (autoloads nil "inf-lisp" "progmodes/inf-lisp.el" (22011 58553
- ;;;;;;  909858 469000))
+ ;;;### (autoloads nil "inf-lisp" "progmodes/inf-lisp.el" (22086 11930
+ ;;;;;;  206062 731000))
  ;;; Generated autoloads from progmodes/inf-lisp.el
  
  (autoload 'inferior-lisp "inf-lisp" "\
@@@ -15699,7 -15714,7 +15714,7 @@@ of `inferior-lisp-program').  Runs the 
  
  ;;;***
  \f
- ;;;### (autoloads nil "info" "info.el" (22056 47028 727798 795000))
+ ;;;### (autoloads nil "info" "info.el" (22086 11929 874062 731000))
  ;;; 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))))) "\
@@@ -15911,8 -15926,8 +15926,8 @@@ completion alternatives to currently vi
  
  ;;;***
  \f
- ;;;### (autoloads nil "info-look" "info-look.el" (22011 58553 641858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "info-look" "info-look.el" (22086 11929 870062
+ ;;;;;;  731000))
  ;;; Generated autoloads from info-look.el
  
  (autoload 'info-lookup-reset "info-look" "\
@@@ -15959,8 -15974,8 +15974,8 @@@ Perform completion on file preceding po
  
  ;;;***
  \f
- ;;;### (autoloads nil "info-xref" "info-xref.el" (22030 22952 929158
- ;;;;;;  467000))
+ ;;;### (autoloads nil "info-xref" "info-xref.el" (22086 11929 870062
+ ;;;;;;  731000))
  ;;; Generated autoloads from info-xref.el
  (push (purecopy '(info-xref 3)) package--builtin-versions)
  
@@@ -16043,8 -16058,8 +16058,8 @@@ the sources handy
  
  ;;;***
  \f
- ;;;### (autoloads nil "informat" "informat.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "informat" "informat.el" (22086 11929 874062
+ ;;;;;;  731000))
  ;;; Generated autoloads from informat.el
  
  (autoload 'Info-tagify "informat" "\
@@@ -16089,8 -16104,8 +16104,8 @@@ For example, invoke \"emacs -batch -f b
  
  ;;;***
  \f
- ;;;### (autoloads nil "inline" "emacs-lisp/inline.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "inline" "emacs-lisp/inline.el" (22086 11929
+ ;;;;;;  678062 731000))
  ;;; Generated autoloads from emacs-lisp/inline.el
  
  (autoload 'define-inline "inline" "\
  
  ;;;***
  \f
- ;;;### (autoloads nil "inversion" "cedet/inversion.el" (21993 28595
- ;;;;;;  998597 473000))
+ ;;;### (autoloads nil "inversion" "cedet/inversion.el" (22086 11929
+ ;;;;;;  550062 731000))
  ;;; Generated autoloads from cedet/inversion.el
  (push (purecopy '(inversion 1 3)) package--builtin-versions)
  
@@@ -16117,8 -16132,8 +16132,8 @@@ Only checks one based on which kind of 
  
  ;;;***
  \f
- ;;;### (autoloads nil "isearch-x" "international/isearch-x.el" (22003
- ;;;;;;  64432 624146 533000))
+ ;;;### (autoloads nil "isearch-x" "international/isearch-x.el" (22086
+ ;;;;;;  11929 874062 731000))
  ;;; Generated autoloads from international/isearch-x.el
  
  (autoload 'isearch-toggle-specified-input-method "isearch-x" "\
@@@ -16138,8 -16153,8 +16153,8 @@@ Toggle input method in interactive sear
  
  ;;;***
  \f
- ;;;### (autoloads nil "isearchb" "isearchb.el" (21767 65327 504606
- ;;;;;;  256000))
+ ;;;### (autoloads nil "isearchb" "isearchb.el" (22086 11929 886062
+ ;;;;;;  731000))
  ;;; Generated autoloads from isearchb.el
  (push (purecopy '(isearchb 1 5)) package--builtin-versions)
  
@@@ -16153,8 -16168,8 +16168,8 @@@ accessed via isearchb
  
  ;;;***
  \f
- ;;;### (autoloads nil "iso-cvt" "international/iso-cvt.el" (22011
- ;;;;;;  58553 645858 469000))
+ ;;;### (autoloads nil "iso-cvt" "international/iso-cvt.el" (22086
+ ;;;;;;  11929 874062 731000))
  ;;; Generated autoloads from international/iso-cvt.el
  
  (autoload 'iso-spanish "iso-cvt" "\
@@@ -16245,15 -16260,15 +16260,15 @@@ Add submenus to the File menu, to conve
  ;;;***
  \f
  ;;;### (autoloads nil "iso-transl" "international/iso-transl.el"
- ;;;;;;  (21840 19142 552627 956000))
+ ;;;;;;  (22086 11929 874062 731000))
  ;;; 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)
  
  ;;;***
  \f
- ;;;### (autoloads nil "ispell" "textmodes/ispell.el" (22011 58554
- ;;;;;;  45858 469000))
+ ;;;### (autoloads nil "ispell" "textmodes/ispell.el" (22086 11930
+ ;;;;;;  318062 731000))
  ;;; Generated autoloads from textmodes/ispell.el
  
  (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive))))
@@@ -16486,8 -16501,8 +16501,8 @@@ You can bind this to the key C-c i in G
  
  ;;;***
  \f
- ;;;### (autoloads nil "japan-util" "language/japan-util.el" (22011
- ;;;;;;  58553 673858 469000))
+ ;;;### (autoloads nil "japan-util" "language/japan-util.el" (22086
+ ;;;;;;  11929 898062 731000))
  ;;; Generated autoloads from language/japan-util.el
  
  (autoload 'setup-japanese-environment-internal "japan-util" "\
@@@ -16564,8 -16579,8 +16579,8 @@@ If non-nil, second arg INITIAL-INPUT i
  
  ;;;***
  \f
- ;;;### (autoloads nil "jka-compr" "jka-compr.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "jka-compr" "jka-compr.el" (22086 11929 890062
+ ;;;;;;  731000))
  ;;; Generated autoloads from jka-compr.el
  
  (defvar jka-compr-inhibit nil "\
@@@ -16588,8 -16603,8 +16603,8 @@@ by `jka-compr-installed'
  
  ;;;***
  \f
- ;;;### (autoloads nil "js" "progmodes/js.el" (22069 62806 682804
- ;;;;;;  836000))
+ ;;;### (autoloads nil "js" "progmodes/js.el" (22109 36809 299889
+ ;;;;;;  179000))
  ;;; Generated autoloads from progmodes/js.el
  (push (purecopy '(js 9)) package--builtin-versions)
  
@@@ -16602,12 -16617,12 +16617,12 @@@ Major mode for editing JavaScript
  Major mode for editing JSX.
  
  To customize the indentation for this mode, set the SGML offset
- variables (`sgml-basic-offset', `sgml-attribute-offset' et al)
+ variables (`sgml-basic-offset', `sgml-attribute-offset' et al.)
  locally, like so:
  
    (defun set-jsx-indentation ()
      (setq-local sgml-basic-offset js-indent-level))
-   (add-hook 'js-jsx-mode-hook #'set-jsx-indentation)
+   (add-hook \\='js-jsx-mode-hook #\\='set-jsx-indentation)
  
  \(fn)" t nil)
   (defalias 'javascript-mode 'js-mode)
  
  ;;;***
  \f
- ;;;### (autoloads nil "json" "json.el" (22085 50883 185731 271000))
+ ;;;### (autoloads nil "json" "json.el" (22101 42694 105526 804000))
  ;;; Generated autoloads from json.el
  (push (purecopy '(json 1 4)) package--builtin-versions)
  
  ;;;***
  \f
- ;;;### (autoloads nil "keypad" "emulation/keypad.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "keypad" "emulation/keypad.el" (22092 27717
+ ;;;;;;  636268 464000))
  ;;; Generated autoloads from emulation/keypad.el
  
  (defvar keypad-setup nil "\
@@@ -16663,23 -16678,23 +16678,23 @@@ keys are bound
  
   Setup      Binding
   -------------------------------------------------------------
-  'prefix   Command prefix argument, i.e.  M-0 .. M-9 and M--
-  'S-cursor Bind shifted keypad keys to the shifted cursor movement keys.
-  'cursor   Bind keypad keys to the cursor movement keys.
-  'numeric  Plain numeric keypad, i.e. 0 .. 9 and .  (or DECIMAL arg)
-  'none     Removes all bindings for keypad keys in function-key-map;
-            this enables any user-defined bindings for the keypad keys
-            in the global and local keymaps.
- If SETUP is 'numeric and the optional fourth argument DECIMAL is non-nil,
+  `prefix'   Command prefix argument, i.e.  M-0 .. M-9 and M--
+  `S-cursor' Bind shifted keypad keys to the shifted cursor movement keys.
+  `cursor'   Bind keypad keys to the cursor movement keys.
+  `numeric'  Plain numeric keypad, i.e. 0 .. 9 and .  (or DECIMAL arg)
+  `none'     Removes all bindings for keypad keys in function-key-map;
+             this enables any user-defined bindings for the keypad keys
+             in the global and local keymaps.
+ If SETUP is `numeric' and the optional fourth argument DECIMAL is non-nil,
  the decimal key on the keypad is mapped to DECIMAL instead of `.'
  
  \(fn SETUP &optional NUMLOCK SHIFT DECIMAL)" nil nil)
  
  ;;;***
  \f
- ;;;### (autoloads nil "kinsoku" "international/kinsoku.el" (21670
- ;;;;;;  32331 385639 720000))
+ ;;;### (autoloads nil "kinsoku" "international/kinsoku.el" (22086
+ ;;;;;;  11929 878062 731000))
  ;;; Generated autoloads from international/kinsoku.el
  
  (autoload 'kinsoku "kinsoku" "\
@@@ -16700,8 -16715,8 +16715,8 @@@ the context of text formatting
  
  ;;;***
  \f
- ;;;### (autoloads nil "kkc" "international/kkc.el" (21978 61237 570488
- ;;;;;;  269000))
+ ;;;### (autoloads nil "kkc" "international/kkc.el" (22086 11929 878062
+ ;;;;;;  731000))
  ;;; Generated autoloads from international/kkc.el
  
  (defvar kkc-after-update-conversion-functions nil "\
@@@ -16723,7 -16738,7 +16738,7 @@@ and the return value is the length of t
  
  ;;;***
  \f
- ;;;### (autoloads nil "kmacro" "kmacro.el" (21990 52406 604500 385000))
+ ;;;### (autoloads nil "kmacro" "kmacro.el" (22086 11929 890062 731000))
  ;;; Generated autoloads from kmacro.el
   (global-set-key "\C-x(" 'kmacro-start-macro)
   (global-set-key "\C-x)" 'kmacro-end-macro)
@@@ -16835,8 -16850,8 +16850,8 @@@ If kbd macro currently being defined en
  
  ;;;***
  \f
- ;;;### (autoloads nil "korea-util" "language/korea-util.el" (21670
- ;;;;;;  32331 385639 720000))
+ ;;;### (autoloads nil "korea-util" "language/korea-util.el" (22086
+ ;;;;;;  11929 902062 731000))
  ;;; Generated autoloads from language/korea-util.el
  
  (defvar default-korean-keyboard (purecopy (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "")) "\
@@@ -16850,8 -16865,8 +16865,8 @@@ The kind of Korean keyboard for Korean 
  
  ;;;***
  \f
- ;;;### (autoloads nil "lao-util" "language/lao-util.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "lao-util" "language/lao-util.el" (22086 11929
+ ;;;;;;  902062 731000))
  ;;; Generated autoloads from language/lao-util.el
  
  (autoload 'lao-compose-string "lao-util" "\
@@@ -16888,8 -16903,8 +16903,8 @@@ Transcribe Romanized Lao string STR to 
  
  ;;;***
  \f
- ;;;### (autoloads nil "latexenc" "international/latexenc.el" (21670
- ;;;;;;  32331 385639 720000))
+ ;;;### (autoloads nil "latexenc" "international/latexenc.el" (22086
+ ;;;;;;  11929 878062 731000))
  ;;; 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))) "\
@@@ -16921,7 -16936,7 +16936,7 @@@ coding system names is determined from 
  ;;;***
  \f
  ;;;### (autoloads nil "latin1-disp" "international/latin1-disp.el"
- ;;;;;;  (22011 58553 645858 469000))
+ ;;;;;;  (22086 11929 878062 731000))
  ;;; Generated autoloads from international/latin1-disp.el
  
  (defvar latin1-display nil "\
@@@ -16962,8 -16977,8 +16977,8 @@@ use either \\[customize] or the functio
  
  ;;;***
  \f
- ;;;### (autoloads nil "ld-script" "progmodes/ld-script.el" (21670
- ;;;;;;  32331 385639 720000))
+ ;;;### (autoloads nil "ld-script" "progmodes/ld-script.el" (22086
+ ;;;;;;  11930 210062 731000))
  ;;; Generated autoloads from progmodes/ld-script.el
  
  (autoload 'ld-script-mode "ld-script" "\
@@@ -16973,8 -16988,8 +16988,8 @@@ A major mode to edit GNU ld script file
  
  ;;;***
  \f
- ;;;### (autoloads nil "let-alist" "emacs-lisp/let-alist.el" (22110
- ;;;;;;  2280 793544 228000))
+ ;;;### (autoloads nil "let-alist" "emacs-lisp/let-alist.el" (22092
+ ;;;;;;  27717 632268 464000))
  ;;; Generated autoloads from emacs-lisp/let-alist.el
  (push (purecopy '(let-alist 1 0 4)) package--builtin-versions)
  
@@@ -16993,10 -17008,10 +17008,10 @@@ For instance, the following cod
  
  essentially expands to
  
-   (let ((.title (cdr (assq 'title alist)))
-         (.body  (cdr (assq 'body alist)))
-         (.site  (cdr (assq 'site alist)))
-         (.site.contents (cdr (assq 'contents (cdr (assq 'site alist))))))
+   (let ((.title (cdr (assq \\='title alist)))
+         (.body  (cdr (assq \\='body alist)))
+         (.site  (cdr (assq \\='site alist)))
+         (.site.contents (cdr (assq \\='contents (cdr (assq \\='site alist))))))
      (if (and .title .body)
          .body
        .site
@@@ -17013,7 -17028,7 +17028,7 @@@ displayed in the example above
  
  ;;;***
  \f
- ;;;### (autoloads nil "life" "play/life.el" (21670 32331 385639 720000))
+ ;;;### (autoloads nil "life" "play/life.el" (22086 11930 130062 731000))
  ;;; Generated autoloads from play/life.el
  
  (autoload 'life "life" "\
@@@ -17026,7 -17041,7 +17041,7 @@@ generations (this defaults to 1)
  
  ;;;***
  \f
- ;;;### (autoloads nil "linum" "linum.el" (22092 24132 128832 464000))
+ ;;;### (autoloads nil "linum" "linum.el" (22086 11929 930062 731000))
  ;;; Generated autoloads from linum.el
  (push (purecopy '(linum 0 9 24)) package--builtin-versions)
  
@@@ -17063,8 -17078,8 +17078,8 @@@ See `linum-mode' for more information o
  
  ;;;***
  \f
- ;;;### (autoloads nil "loadhist" "loadhist.el" (22011 58553 673858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "loadhist" "loadhist.el" (22086 11929 930062
+ ;;;;;;  731000))
  ;;; Generated autoloads from loadhist.el
  
  (autoload 'unload-feature "loadhist" "\
@@@ -17095,7 -17110,7 +17110,7 @@@ something strange, such as redefining a
  
  ;;;***
  \f
- ;;;### (autoloads nil "locate" "locate.el" (21670 32331 385639 720000))
+ ;;;### (autoloads nil "locate" "locate.el" (22086 11929 930062 731000))
  ;;; Generated autoloads from locate.el
  
  (defvar locate-ls-subdir-switches (purecopy "-al") "\
@@@ -17147,8 -17162,8 +17162,8 @@@ except that FILTER is not optional
  
  ;;;***
  \f
- ;;;### (autoloads nil "log-edit" "vc/log-edit.el" (22011 58554 93858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "log-edit" "vc/log-edit.el" (22092 27718 544268
+ ;;;;;;  464000))
  ;;; Generated autoloads from vc/log-edit.el
  
  (autoload 'log-edit "log-edit" "\
@@@ -17179,8 -17194,8 +17194,8 @@@ done.  Otherwise, it uses the current b
  
  ;;;***
  \f
- ;;;### (autoloads nil "log-view" "vc/log-view.el" (21947 19252 637252
- ;;;;;;  749000))
+ ;;;### (autoloads nil "log-view" "vc/log-view.el" (22086 11930 378062
+ ;;;;;;  731000))
  ;;; Generated autoloads from vc/log-view.el
  
  (autoload 'log-view-mode "log-view" "\
@@@ -17190,7 -17205,7 +17205,7 @@@ Major mode for browsing CVS log output
  
  ;;;***
  \f
- ;;;### (autoloads nil "lpr" "lpr.el" (22011 58553 673858 469000))
+ ;;;### (autoloads nil "lpr" "lpr.el" (22086 11929 930062 731000))
  ;;; Generated autoloads from lpr.el
  
  (defvar lpr-windows-system (memq system-type '(ms-dos windows-nt)) "\
@@@ -17285,8 -17300,8 +17300,8 @@@ for further customization of the printe
  
  ;;;***
  \f
- ;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (21993 28596 150597
- ;;;;;;  473000))
+ ;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (22086 11929 930062
+ ;;;;;;  731000))
  ;;; Generated autoloads from ls-lisp.el
  
  (defvar ls-lisp-support-shell-wildcards t "\
@@@ -17297,8 -17312,8 +17312,8 @@@ Otherwise they are treated as Emacs reg
  
  ;;;***
  \f
- ;;;### (autoloads nil "lunar" "calendar/lunar.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "lunar" "calendar/lunar.el" (22086 11929 534062
+ ;;;;;;  731000))
  ;;; Generated autoloads from calendar/lunar.el
  
  (autoload 'lunar-phases "lunar" "\
@@@ -17310,8 -17325,8 +17325,8 @@@ This function is suitable for executio
  
  ;;;***
  \f
- ;;;### (autoloads nil "m4-mode" "progmodes/m4-mode.el" (22015 55603
- ;;;;;;  805705 321000))
+ ;;;### (autoloads nil "m4-mode" "progmodes/m4-mode.el" (22086 11930
+ ;;;;;;  210062 731000))
  ;;; Generated autoloads from progmodes/m4-mode.el
  
  (autoload 'm4-mode "m4-mode" "\
@@@ -17321,7 -17336,7 +17336,7 @@@ A major mode to edit m4 macro files
  
  ;;;***
  \f
- ;;;### (autoloads nil "macros" "macros.el" (21887 28847 979667 16000))
+ ;;;### (autoloads nil "macros" "macros.el" (22086 11929 930062 731000))
  ;;; Generated autoloads from macros.el
  
  (autoload 'name-last-kbd-macro "macros" "\
@@@ -17410,8 -17425,8 +17425,8 @@@ and then select the region of un-tablif
  
  ;;;***
  \f
- ;;;### (autoloads nil "mail-extr" "mail/mail-extr.el" (22026 25907
- ;;;;;;  599502 692000))
+ ;;;### (autoloads nil "mail-extr" "mail/mail-extr.el" (22086 11929
+ ;;;;;;  934062 731000))
  ;;; Generated autoloads from mail/mail-extr.el
  
  (autoload 'mail-extract-address-components "mail-extr" "\
@@@ -17441,8 -17456,8 +17456,8 @@@ Convert mail domain DOMAIN to the count
  
  ;;;***
  \f
- ;;;### (autoloads nil "mail-hist" "mail/mail-hist.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "mail-hist" "mail/mail-hist.el" (22086 11929
+ ;;;;;;  934062 731000))
  ;;; Generated autoloads from mail/mail-hist.el
  
  (autoload 'mail-hist-define-keys "mail-hist" "\
@@@ -17471,8 -17486,8 +17486,8 @@@ This function normally would be called 
  
  ;;;***
  \f
- ;;;### (autoloads nil "mail-utils" "mail/mail-utils.el" (21964 28338
- ;;;;;;  125695 749000))
+ ;;;### (autoloads nil "mail-utils" "mail/mail-utils.el" (22086 11929
+ ;;;;;;  934062 731000))
  ;;; Generated autoloads from mail/mail-utils.el
  
  (defvar mail-use-rfc822 nil "\
@@@ -17546,8 -17561,8 +17561,8 @@@ matches may be returned from the messag
  
  ;;;***
  \f
- ;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (21850 35149
- ;;;;;;  497265 880000))
+ ;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (22086 11929
+ ;;;;;;  938062 731000))
  ;;; Generated autoloads from mail/mailabbrev.el
  
  (defvar mail-abbrevs-mode nil "\
@@@ -17596,8 -17611,8 +17611,8 @@@ double-quotes
  
  ;;;***
  \f
- ;;;### (autoloads nil "mailalias" "mail/mailalias.el" (21993 28596
- ;;;;;;  166597 473000))
+ ;;;### (autoloads nil "mailalias" "mail/mailalias.el" (22086 11929
+ ;;;;;;  938062 731000))
  ;;; Generated autoloads from mail/mailalias.el
  
  (defvar mail-complete-style 'angles "\
@@@ -17650,8 -17665,8 +17665,8 @@@ current header, calls `mail-complete-fu
  
  ;;;***
  \f
- ;;;### (autoloads nil "mailclient" "mail/mailclient.el" (22011 58553
- ;;;;;;  693858 469000))
+ ;;;### (autoloads nil "mailclient" "mail/mailclient.el" (22086 11929
+ ;;;;;;  938062 731000))
  ;;; Generated autoloads from mail/mailclient.el
  
  (autoload 'mailclient-send-it "mailclient" "\
@@@ -17663,8 -17678,8 +17678,8 @@@ The mail client is taken to be the hand
  
  ;;;***
  \f
- ;;;### (autoloads nil "make-mode" "progmodes/make-mode.el" (22011
- ;;;;;;  58553 913858 469000))
+ ;;;### (autoloads nil "make-mode" "progmodes/make-mode.el" (22086
+ ;;;;;;  11930 210062 731000))
  ;;; Generated autoloads from progmodes/make-mode.el
  
  (autoload 'makefile-mode "make-mode" "\
@@@ -17781,8 -17796,8 +17796,8 @@@ An adapted `makefile-mode' that knows a
  
  ;;;***
  \f
- ;;;### (autoloads nil "makesum" "makesum.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "makesum" "makesum.el" (22086 11929 954062
+ ;;;;;;  731000))
  ;;; Generated autoloads from makesum.el
  
  (autoload 'make-command-summary "makesum" "\
@@@ -17793,7 -17808,7 +17808,7 @@@ Previous contents of that buffer are ki
  
  ;;;***
  \f
- ;;;### (autoloads nil "man" "man.el" (22026 25907 603502 692000))
+ ;;;### (autoloads nil "man" "man.el" (22086 11929 954062 731000))
  ;;; Generated autoloads from man.el
  
  (defalias 'manual-entry 'man)
@@@ -17849,14 -17864,14 +17864,14 @@@ Default bookmark handler for Man buffer
  
  ;;;***
  \f
- ;;;### (autoloads nil "map" "emacs-lisp/map.el" (22084 30014 55762
- ;;;;;;  3000))
+ ;;;### (autoloads nil "map" "emacs-lisp/map.el" (22086 11929 678062
+ ;;;;;;  731000))
  ;;; Generated autoloads from emacs-lisp/map.el
  (push (purecopy '(map 1 0)) package--builtin-versions)
  
  ;;;***
  \f
- ;;;### (autoloads nil "master" "master.el" (21670 32331 385639 720000))
+ ;;;### (autoloads nil "master" "master.el" (22086 11929 954062 731000))
  ;;; Generated autoloads from master.el
  (push (purecopy '(master 1 0 2)) package--builtin-versions)
  
@@@ -17879,8 -17894,8 +17894,8 @@@ yourself the value of `master-of' by ca
  
  ;;;***
  \f
- ;;;### (autoloads nil "mb-depth" "mb-depth.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "mb-depth" "mb-depth.el" (22086 11929 958062
+ ;;;;;;  731000))
  ;;; Generated autoloads from mb-depth.el
  
  (defvar minibuffer-depth-indicate-mode nil "\
@@@ -17907,14 -17922,14 +17922,14 @@@ recursion depth in the minibuffer promp
  
  ;;;***
  \f
- ;;;### (autoloads nil "md4" "md4.el" (21670 32331 385639 720000))
+ ;;;### (autoloads nil "md4" "md4.el" (22086 11929 958062 731000))
  ;;; Generated autoloads from md4.el
  (push (purecopy '(md4 1 0)) package--builtin-versions)
  
  ;;;***
  \f
- ;;;### (autoloads nil "message" "gnus/message.el" (22011 58553 581858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "message" "gnus/message.el" (22092 27717 852268
+ ;;;;;;  464000))
  ;;; 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)
@@@ -18079,8 -18094,8 +18094,8 @@@ which specify the range to operate on
  
  ;;;***
  \f
- ;;;### (autoloads nil "meta-mode" "progmodes/meta-mode.el" (21670
- ;;;;;;  32331 385639 720000))
+ ;;;### (autoloads nil "meta-mode" "progmodes/meta-mode.el" (22086
+ ;;;;;;  11930 210062 731000))
  ;;; Generated autoloads from progmodes/meta-mode.el
  (push (purecopy '(meta-mode 1 0)) package--builtin-versions)
  
@@@ -18096,8 -18111,8 +18111,8 @@@ Major mode for editing MetaPost sources
  
  ;;;***
  \f
- ;;;### (autoloads nil "metamail" "mail/metamail.el" (21980 16567
- ;;;;;;  769544 893000))
+ ;;;### (autoloads nil "metamail" "mail/metamail.el" (22086 11929
+ ;;;;;;  938062 731000))
  ;;; Generated autoloads from mail/metamail.el
  
  (autoload 'metamail-interpret-header "metamail" "\
@@@ -18140,8 -18155,8 +18155,8 @@@ redisplayed as output is inserted
  
  ;;;***
  \f
- ;;;### (autoloads nil "mh-comp" "mh-e/mh-comp.el" (22011 58553 729858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "mh-comp" "mh-e/mh-comp.el" (22086 11929 970062
+ ;;;;;;  731000))
  ;;; Generated autoloads from mh-e/mh-comp.el
  
  (autoload 'mh-smail "mh-comp" "\
@@@ -18231,7 -18246,7 +18246,7 @@@ delete the draft message
  
  ;;;***
  \f
- ;;;### (autoloads nil "mh-e" "mh-e/mh-e.el" (22030 22952 945158 467000))
+ ;;;### (autoloads nil "mh-e" "mh-e/mh-e.el" (22092 27717 888268 464000))
  ;;; Generated autoloads from mh-e/mh-e.el
  (push (purecopy '(mh-e 8 6)) package--builtin-versions)
  
@@@ -18248,8 -18263,8 +18263,8 @@@ Display version information about MH-E 
  
  ;;;***
  \f
- ;;;### (autoloads nil "mh-folder" "mh-e/mh-folder.el" (22011 58553
- ;;;;;;  749858 469000))
+ ;;;### (autoloads nil "mh-folder" "mh-e/mh-folder.el" (22086 11929
+ ;;;;;;  970062 731000))
  ;;; Generated autoloads from mh-e/mh-folder.el
  
  (autoload 'mh-rmail "mh-folder" "\
@@@ -18330,8 -18345,8 +18345,8 @@@ perform the operation on all messages i
  
  ;;;***
  \f
- ;;;### (autoloads nil "midnight" "midnight.el" (21822 58098 20521
- ;;;;;;  61000))
+ ;;;### (autoloads nil "midnight" "midnight.el" (22086 11929 978062
+ ;;;;;;  731000))
  ;;; Generated autoloads from midnight.el
  
  (defvar midnight-mode nil "\
@@@ -18371,8 -18386,8 +18386,8 @@@ to its second argument TM
  
  ;;;***
  \f
- ;;;### (autoloads nil "minibuf-eldef" "minibuf-eldef.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "minibuf-eldef" "minibuf-eldef.el" (22086 11929
+ ;;;;;;  978062 731000))
  ;;; Generated autoloads from minibuf-eldef.el
  
  (defvar minibuffer-electric-default-mode nil "\
@@@ -18401,7 -18416,7 +18416,7 @@@ is modified to remove the default indic
  
  ;;;***
  \f
- ;;;### (autoloads nil "misc" "misc.el" (21670 32331 385639 720000))
+ ;;;### (autoloads nil "misc" "misc.el" (22086 11929 982062 731000))
  ;;; Generated autoloads from misc.el
  
  (autoload 'butterfly "misc" "\
@@@ -18429,7 -18444,8 +18444,8 @@@ The return value is always nil
  
  ;;;***
  \f
- ;;;### (autoloads nil "misearch" "misearch.el" (21797 36 720489 297000))
+ ;;;### (autoloads nil "misearch" "misearch.el" (22086 11929 982062
+ ;;;;;;  731000))
  ;;; Generated autoloads from misearch.el
   (add-hook 'isearch-mode-hook 'multi-isearch-setup)
  
@@@ -18517,8 -18533,8 +18533,8 @@@ whose file names match the specified wi
  
  ;;;***
  \f
- ;;;### (autoloads nil "mixal-mode" "progmodes/mixal-mode.el" (21670
- ;;;;;;  32331 385639 720000))
+ ;;;### (autoloads nil "mixal-mode" "progmodes/mixal-mode.el" (22086
+ ;;;;;;  11930 210062 731000))
  ;;; Generated autoloads from progmodes/mixal-mode.el
  (push (purecopy '(mixal-mode 0 1)) package--builtin-versions)
  
@@@ -18529,8 -18545,8 +18545,8 @@@ Major mode for the mixal asm language
  
  ;;;***
  \f
- ;;;### (autoloads nil "mm-encode" "gnus/mm-encode.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "mm-encode" "gnus/mm-encode.el" (22086 11929
+ ;;;;;;  818062 731000))
  ;;; Generated autoloads from gnus/mm-encode.el
  
  (autoload 'mm-default-file-encoding "mm-encode" "\
@@@ -18540,8 -18556,8 +18556,8 @@@ Return a default encoding for FILE
  
  ;;;***
  \f
- ;;;### (autoloads nil "mm-extern" "gnus/mm-extern.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "mm-extern" "gnus/mm-extern.el" (22086 11929
+ ;;;;;;  818062 731000))
  ;;; Generated autoloads from gnus/mm-extern.el
  
  (autoload 'mm-extern-cache-contents "mm-extern" "\
@@@ -18559,8 -18575,8 +18575,8 @@@ If NO-DISPLAY is nil, display it. Other
  
  ;;;***
  \f
- ;;;### (autoloads nil "mm-partial" "gnus/mm-partial.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "mm-partial" "gnus/mm-partial.el" (22086 11929
+ ;;;;;;  818062 731000))
  ;;; Generated autoloads from gnus/mm-partial.el
  
  (autoload 'mm-inline-partial "mm-partial" "\
@@@ -18573,8 -18589,8 +18589,8 @@@ If NO-DISPLAY is nil, display it. Other
  
  ;;;***
  \f
- ;;;### (autoloads nil "mm-url" "gnus/mm-url.el" (22084 30014 55762
- ;;;;;;  3000))
+ ;;;### (autoloads nil "mm-url" "gnus/mm-url.el" (22086 11929 818062
+ ;;;;;;  731000))
  ;;; Generated autoloads from gnus/mm-url.el
  
  (autoload 'mm-url-insert-file-contents "mm-url" "\
@@@ -18590,8 -18606,8 +18606,8 @@@ Insert file contents of URL using `mm-u
  
  ;;;***
  \f
- ;;;### (autoloads nil "mm-uu" "gnus/mm-uu.el" (22010 37685 116774
- ;;;;;;  305000))
+ ;;;### (autoloads nil "mm-uu" "gnus/mm-uu.el" (22086 11929 818062
+ ;;;;;;  731000))
  ;;; Generated autoloads from gnus/mm-uu.el
  
  (autoload 'mm-uu-dissect "mm-uu" "\
@@@ -18610,7 -18626,7 +18626,7 @@@ Assume text has been decoded if DECODE
  
  ;;;***
  \f
- ;;;### (autoloads nil "mml" "gnus/mml.el" (21826 49866 790514 606000))
+ ;;;### (autoloads nil "mml" "gnus/mml.el" (22086 11929 822062 731000))
  ;;; Generated autoloads from gnus/mml.el
  
  (autoload 'mml-to-mime "mml" "\
@@@ -18635,8 -18651,8 +18651,8 @@@ body) or \"attachment\" (separate from 
  
  ;;;***
  \f
- ;;;### (autoloads nil "mml1991" "gnus/mml1991.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "mml1991" "gnus/mml1991.el" (22086 11929 822062
+ ;;;;;;  731000))
  ;;; Generated autoloads from gnus/mml1991.el
  
  (autoload 'mml1991-encrypt "mml1991" "\
  
  ;;;***
  \f
- ;;;### (autoloads nil "mml2015" "gnus/mml2015.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "mml2015" "gnus/mml2015.el" (22086 11929 822062
+ ;;;;;;  731000))
  ;;; Generated autoloads from gnus/mml2015.el
  
  (autoload 'mml2015-decrypt "mml2015" "\
  
  ;;;***
  \f
- ;;;### (autoloads nil "mode-local" "cedet/mode-local.el" (22030 22952
- ;;;;;;  905158 467000))
+ ;;;### (autoloads nil "mode-local" "cedet/mode-local.el" (22096 24780
+ ;;;;;;  204094 47000))
  ;;; Generated autoloads from cedet/mode-local.el
  
  (put 'define-overloadable-function 'doc-string-elt 3)
  
  ;;;***
  \f
- ;;;### (autoloads nil "modula2" "progmodes/modula2.el" (21607 54478
- ;;;;;;  800121 42000))
+ ;;;### (autoloads nil "modula2" "progmodes/modula2.el" (22086 11930
+ ;;;;;;  214062 731000))
  ;;; Generated autoloads from progmodes/modula2.el
  
  (defalias 'modula-2-mode 'm2-mode)
@@@ -18734,8 -18750,8 +18750,8 @@@ followed by the first character of the 
  
  ;;;***
  \f
- ;;;### (autoloads nil "morse" "play/morse.el" (22026 25907 631502
- ;;;;;;  692000))
+ ;;;### (autoloads nil "morse" "play/morse.el" (22086 11930 130062
+ ;;;;;;  731000))
  ;;; Generated autoloads from play/morse.el
  
  (autoload 'morse-region "morse" "\
@@@ -18760,8 -18776,8 +18776,8 @@@ Convert NATO phonetic alphabet in regio
  
  ;;;***
  \f
- ;;;### (autoloads nil "mouse-drag" "mouse-drag.el" (21993 28596 194597
- ;;;;;;  473000))
+ ;;;### (autoloads nil "mouse-drag" "mouse-drag.el" (22086 11929 982062
+ ;;;;;;  731000))
  ;;; Generated autoloads from mouse-drag.el
  
  (autoload 'mouse-drag-throw "mouse-drag" "\
@@@ -18808,7 -18824,7 +18824,7 @@@ To test this function, evaluate
  
  ;;;***
  \f
- ;;;### (autoloads nil "mpc" "mpc.el" (22093 44991 770016 539000))
+ ;;;### (autoloads nil "mpc" "mpc.el" (22105 39773 859886 896000))
  ;;; Generated autoloads from mpc.el
  
  (autoload 'mpc "mpc" "\
@@@ -18818,7 -18834,7 +18834,7 @@@ Main entry point for MPC
  
  ;;;***
  \f
- ;;;### (autoloads nil "mpuz" "play/mpuz.el" (21670 32331 385639 720000))
+ ;;;### (autoloads nil "mpuz" "play/mpuz.el" (22086 11930 130062 731000))
  ;;; Generated autoloads from play/mpuz.el
  
  (autoload 'mpuz "mpuz" "\
@@@ -18828,7 -18844,7 +18844,7 @@@ Multiplication puzzle with GNU Emacs
  
  ;;;***
  \f
- ;;;### (autoloads nil "msb" "msb.el" (22011 58553 757858 469000))
+ ;;;### (autoloads nil "msb" "msb.el" (22086 11929 986062 731000))
  ;;; Generated autoloads from msb.el
  
  (defvar msb-mode nil "\
@@@ -18853,8 -18869,8 +18869,8 @@@ different buffer menu using the functio
  
  ;;;***
  \f
- ;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (21998
- ;;;;;;  46517 78024 649000))
+ ;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (22086
+ ;;;;;;  11929 882062 731000))
  ;;; Generated autoloads from international/mule-diag.el
  
  (autoload 'list-character-sets "mule-diag" "\
@@@ -18986,8 -19002,8 +19002,8 @@@ The default is 20.  If LIMIT is negativ
  
  ;;;***
  \f
- ;;;### (autoloads nil "mule-util" "international/mule-util.el" (22002
- ;;;;;;  43570 532887 749000))
+ ;;;### (autoloads nil "mule-util" "international/mule-util.el" (22108
+ ;;;;;;  15942 546032 987000))
  ;;; Generated autoloads from international/mule-util.el
  
  (defsubst string-to-list (string) "\
@@@ -19146,8 -19162,8 +19162,8 @@@ QUALITY can be
  
  ;;;***
  \f
- ;;;### (autoloads nil "net-utils" "net/net-utils.el" (22011 58553
- ;;;;;;  761858 469000))
+ ;;;### (autoloads nil "net-utils" "net/net-utils.el" (22086 11929
+ ;;;;;;  998062 731000))
  ;;; Generated autoloads from net/net-utils.el
  
  (autoload 'ifconfig "net-utils" "\
@@@ -19241,8 -19257,8 +19257,8 @@@ Open a network connection to HOST on PO
  
  ;;;***
  \f
- ;;;### (autoloads nil "netrc" "net/netrc.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "netrc" "net/netrc.el" (22086 11929 998062
+ ;;;;;;  731000))
  ;;; Generated autoloads from net/netrc.el
  
  (autoload 'netrc-credentials "netrc" "\
@@@ -19254,8 -19270,8 +19270,8 @@@ listed in the PORTS list
  
  ;;;***
  \f
- ;;;### (autoloads nil "network-stream" "net/network-stream.el" (22146
- ;;;;;;  27578 220451 942000))
+ ;;;### (autoloads nil "network-stream" "net/network-stream.el" (22086
+ ;;;;;;  11929 998062 731000))
  ;;; Generated autoloads from net/network-stream.el
  
  (autoload 'open-network-stream "network-stream" "\
@@@ -19351,8 -19367,8 +19367,8 @@@ asynchronously, if possible
  
  ;;;***
  \f
- ;;;### (autoloads nil "newst-backend" "net/newst-backend.el" (22011
- ;;;;;;  58553 765858 469000))
+ ;;;### (autoloads nil "newst-backend" "net/newst-backend.el" (22092
+ ;;;;;;  27717 964268 464000))
  ;;; Generated autoloads from net/newst-backend.el
  
  (autoload 'newsticker-running-p "newst-backend" "\
@@@ -19374,7 -19390,7 +19390,7 @@@ Run `newsticker-start-hook' if newstick
  ;;;***
  \f
  ;;;### (autoloads nil "newst-plainview" "net/newst-plainview.el"
- ;;;;;;  (21980 16567 809544 893000))
+ ;;;;;;  (22092 27717 980268 464000))
  ;;; Generated autoloads from net/newst-plainview.el
  
  (autoload 'newsticker-plainview "newst-plainview" "\
@@@ -19384,8 -19400,8 +19400,8 @@@ Start newsticker plainview
  
  ;;;***
  \f
- ;;;### (autoloads nil "newst-reader" "net/newst-reader.el" (22011
- ;;;;;;  58553 765858 469000))
+ ;;;### (autoloads nil "newst-reader" "net/newst-reader.el" (22086
+ ;;;;;;  11929 998062 731000))
  ;;; Generated autoloads from net/newst-reader.el
  
  (autoload 'newsticker-show-news "newst-reader" "\
@@@ -19395,8 -19411,8 +19411,8 @@@ Start reading news.  You may want to bi
  
  ;;;***
  \f
- ;;;### (autoloads nil "newst-ticker" "net/newst-ticker.el" (21670
- ;;;;;;  32331 385639 720000))
+ ;;;### (autoloads nil "newst-ticker" "net/newst-ticker.el" (22086
+ ;;;;;;  11929 998062 731000))
  ;;; Generated autoloads from net/newst-ticker.el
  
  (autoload 'newsticker-ticker-running-p "newst-ticker" "\
@@@ -19416,8 -19432,8 +19432,8 @@@ running already
  
  ;;;***
  \f
- ;;;### (autoloads nil "newst-treeview" "net/newst-treeview.el" (22030
- ;;;;;;  22952 973158 467000))
+ ;;;### (autoloads nil "newst-treeview" "net/newst-treeview.el" (22109
+ ;;;;;;  36809 263889 179000))
  ;;; Generated autoloads from net/newst-treeview.el
  
  (autoload 'newsticker-treeview "newst-treeview" "\
@@@ -19427,8 -19443,8 +19443,8 @@@ Start newsticker treeview
  
  ;;;***
  \f
- ;;;### (autoloads nil "nndiary" "gnus/nndiary.el" (21990 52406 596500
- ;;;;;;  385000))
+ ;;;### (autoloads nil "nndiary" "gnus/nndiary.el" (22086 11929 822062
+ ;;;;;;  731000))
  ;;; Generated autoloads from gnus/nndiary.el
  
  (autoload 'nndiary-generate-nov-databases "nndiary" "\
@@@ -19438,8 -19454,8 +19454,8 @@@ Generate NOV databases in all nndiary d
  
  ;;;***
  \f
- ;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (22011 58553 585858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (22086 11929 822062
+ ;;;;;;  731000))
  ;;; Generated autoloads from gnus/nndoc.el
  
  (autoload 'nndoc-add-type "nndoc" "\
@@@ -19453,8 -19469,8 +19469,8 @@@ symbol in the alist
  
  ;;;***
  \f
- ;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (22086 11929
+ ;;;;;;  826062 731000))
  ;;; Generated autoloads from gnus/nnfolder.el
  
  (autoload 'nnfolder-generate-active-file "nnfolder" "\
@@@ -19465,7 -19481,7 +19481,7 @@@ This command does not work if you use s
  
  ;;;***
  \f
- ;;;### (autoloads nil "nnml" "gnus/nnml.el" (22054 5291 911134 163000))
+ ;;;### (autoloads nil "nnml" "gnus/nnml.el" (22102 63557 304509 103000))
  ;;; Generated autoloads from gnus/nnml.el
  
  (autoload 'nnml-generate-nov-databases "nnml" "\
@@@ -19475,7 -19491,7 +19491,7 @@@ Generate NOV databases in all nnml dire
  
  ;;;***
  \f
- ;;;### (autoloads nil "novice" "novice.el" (21985 34484 234705 925000))
+ ;;;### (autoloads nil "novice" "novice.el" (22086 11930 22062 731000))
  ;;; Generated autoloads from novice.el
  
  (define-obsolete-variable-alias 'disabled-command-hook 'disabled-command-function "22.1")
@@@ -19507,8 -19523,8 +19523,8 @@@ future sessions
  
  ;;;***
  \f
- ;;;### (autoloads nil "nroff-mode" "textmodes/nroff-mode.el" (21670
- ;;;;;;  32331 885635 586000))
+ ;;;### (autoloads nil "nroff-mode" "textmodes/nroff-mode.el" (22086
+ ;;;;;;  11930 318062 731000))
  ;;; Generated autoloads from textmodes/nroff-mode.el
  
  (autoload 'nroff-mode "nroff-mode" "\
@@@ -19522,14 -19538,14 +19538,14 @@@ closing requests for requests that are 
  
  ;;;***
  \f
- ;;;### (autoloads nil "ntlm" "net/ntlm.el" (22069 62806 678804 836000))
+ ;;;### (autoloads nil "ntlm" "net/ntlm.el" (22086 11930 2062 731000))
  ;;; Generated autoloads from net/ntlm.el
  (push (purecopy '(ntlm 2 0 0)) package--builtin-versions)
  
  ;;;***
  \f
- ;;;### (autoloads nil "nxml-glyph" "nxml/nxml-glyph.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "nxml-glyph" "nxml/nxml-glyph.el" (22086 11930
+ ;;;;;;  26062 731000))
  ;;; Generated autoloads from nxml/nxml-glyph.el
  
  (autoload 'nxml-glyph-display-string "nxml-glyph" "\
@@@ -19541,8 -19557,8 +19557,8 @@@ Return nil if the face cannot display 
  
  ;;;***
  \f
- ;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (22021 7991
- ;;;;;;  61719 83000))
+ ;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (22086 11930
+ ;;;;;;  26062 731000))
  ;;; Generated autoloads from nxml/nxml-mode.el
  
  (autoload 'nxml-mode "nxml-mode" "\
@@@ -19602,8 -19618,8 +19618,8 @@@ Many aspects this mode can be customize
  
  ;;;***
  \f
- ;;;### (autoloads nil "nxml-uchnm" "nxml/nxml-uchnm.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "nxml-uchnm" "nxml/nxml-uchnm.el" (22086 11930
+ ;;;;;;  26062 731000))
  ;;; Generated autoloads from nxml/nxml-uchnm.el
  
  (autoload 'nxml-enable-unicode-char-name-sets "nxml-uchnm" "\
@@@ -19615,8 -19631,8 +19631,8 @@@ the variable `nxml-enabled-unicode-bloc
  
  ;;;***
  \f
- ;;;### (autoloads nil "octave" "progmodes/octave.el" (22027 46774
- ;;;;;;  680310 591000))
+ ;;;### (autoloads nil "octave" "progmodes/octave.el" (22086 11930
+ ;;;;;;  214062 731000))
  ;;; Generated autoloads from progmodes/octave.el
  
  (autoload 'octave-mode "octave" "\
@@@ -19653,8 -19669,8 +19669,8 @@@ startup file, `~/.emacs-octave'
  
  ;;;***
  \f
- ;;;### (autoloads nil "opascal" "progmodes/opascal.el" (21948 40114
- ;;;;;;  450686 453000))
+ ;;;### (autoloads nil "opascal" "progmodes/opascal.el" (22086 11930
+ ;;;;;;  214062 731000))
  ;;; Generated autoloads from progmodes/opascal.el
  
  (define-obsolete-function-alias 'delphi-mode 'opascal-mode "24.4")
@@@ -19689,7 -19705,7 +19705,7 @@@ Coloring
  
  ;;;***
  \f
- ;;;### (autoloads nil "org" "org/org.el" (22011 58553 849858 469000))
+ ;;;### (autoloads nil "org" "org/org.el" (22092 27718 88268 464000))
  ;;; Generated autoloads from org/org.el
  
  (autoload 'org-babel-do-load-languages "org" "\
@@@ -19910,8 -19926,8 +19926,8 @@@ Call the customize function with org a
  
  ;;;***
  \f
- ;;;### (autoloads nil "org-agenda" "org/org-agenda.el" (22011 58553
- ;;;;;;  805858 469000))
+ ;;;### (autoloads nil "org-agenda" "org/org-agenda.el" (22092 27718
+ ;;;;;;  24268 464000))
  ;;; Generated autoloads from org/org-agenda.el
  
  (autoload 'org-toggle-sticky-agenda "org-agenda" "\
@@@ -20135,8 -20151,8 +20151,8 @@@ Do we have a reason to ignore this TOD
  
  (autoload 'org-agenda-set-restriction-lock "org-agenda" "\
  Set restriction lock for agenda, to current subtree or file.
- Restriction will be the file if TYPE is `file', or if type is the
- universal prefix '(4), or if the cursor is before the first headline
+ Restriction will be the file if TYPE is `file', or if TYPE is the
+ universal prefix `(4)', or if the cursor is before the first headline
  in the file.  Otherwise, restriction will be to the current subtree.
  
  \(fn &optional TYPE)" t nil)
@@@ -20184,8 -20200,8 +20200,8 @@@ to override `appt-message-warning-time'
  
  ;;;***
  \f
- ;;;### (autoloads nil "org-capture" "org/org-capture.el" (21993 28596
- ;;;;;;  242597 473000))
+ ;;;### (autoloads nil "org-capture" "org/org-capture.el" (22086 11930
+ ;;;;;;  82062 731000))
  ;;; Generated autoloads from org/org-capture.el
  
  (autoload 'org-capture-string "org-capture" "\
@@@ -20227,8 -20243,8 +20243,8 @@@ Set `org-capture-templates' to be simil
  
  ;;;***
  \f
- ;;;### (autoloads nil "org-colview" "org/org-colview.el" (22011 58553
- ;;;;;;  809858 469000))
+ ;;;### (autoloads nil "org-colview" "org/org-colview.el" (22086 11930
+ ;;;;;;  82062 731000))
  ;;; Generated autoloads from org/org-colview.el
  
  (autoload 'org-columns-remove-overlays "org-colview" "\
@@@ -20291,8 -20307,8 +20307,8 @@@ Turn on or update column view in the ag
  
  ;;;***
  \f
- ;;;### (autoloads nil "org-compat" "org/org-compat.el" (21988 10681
- ;;;;;;  989624 461000))
+ ;;;### (autoloads nil "org-compat" "org/org-compat.el" (22086 11930
+ ;;;;;;  82062 731000))
  ;;; Generated autoloads from org/org-compat.el
  
  (autoload 'org-check-version "org-compat" "\
@@@ -20302,8 -20318,8 +20318,8 @@@ Try very hard to provide sensible versi
  
  ;;;***
  \f
- ;;;### (autoloads nil "org-macs" "org/org-macs.el" (21855 577 287944
- ;;;;;;  835000))
+ ;;;### (autoloads nil "org-macs" "org/org-macs.el" (22092 27718 44268
+ ;;;;;;  464000))
  ;;; Generated autoloads from org/org-macs.el
  
  (autoload 'org-load-noerror-mustsuffix "org-macs" "\
@@@ -20313,8 -20329,8 +20329,8 @@@ Load FILE with optional arguments NOERR
  
  ;;;***
  \f
- ;;;### (autoloads nil "org-version" "org/org-version.el" (21607 54478
- ;;;;;;  800121 42000))
+ ;;;### (autoloads nil "org-version" "org/org-version.el" (22086 11930
+ ;;;;;;  98062 731000))
  ;;; Generated autoloads from org/org-version.el
  
  (autoload 'org-release "org-version" "\
@@@ -20331,8 -20347,8 +20347,8 @@@ The Git version of org-mode
  
  ;;;***
  \f
- ;;;### (autoloads nil "outline" "outline.el" (21990 52406 672500
- ;;;;;;  385000))
+ ;;;### (autoloads nil "outline" "outline.el" (22086 11930 118062
+ ;;;;;;  731000))
  ;;; Generated autoloads from outline.el
  (put 'outline-regexp 'safe-local-variable 'stringp)
  (put 'outline-heading-end-regexp 'safe-local-variable 'stringp)
@@@ -20375,8 -20391,8 +20391,8 @@@ See the command `outline-mode' for mor
  
  ;;;***
  \f
- ;;;### (autoloads nil "package" "emacs-lisp/package.el" (22104 15298
- ;;;;;;  466671 488000))
+ ;;;### (autoloads nil "package" "emacs-lisp/package.el" (22092 27717
+ ;;;;;;  636268 464000))
  ;;; Generated autoloads from emacs-lisp/package.el
  (push (purecopy '(package 1 0 1)) package--builtin-versions)
  
@@@ -20491,7 -20507,7 +20507,7 @@@ The list is displayed in a buffer name
  
  ;;;***
  \f
- ;;;### (autoloads nil "paren" "paren.el" (21670 32331 385639 720000))
+ ;;;### (autoloads nil "paren" "paren.el" (22086 11930 122062 731000))
  ;;; Generated autoloads from paren.el
  
  (defvar show-paren-mode nil "\
@@@ -20517,8 -20533,8 +20533,8 @@@ matching parenthesis is highlighted in 
  
  ;;;***
  \f
- ;;;### (autoloads nil "parse-time" "calendar/parse-time.el" (21670
- ;;;;;;  32330 885624 725000))
+ ;;;### (autoloads nil "parse-time" "calendar/parse-time.el" (22086
+ ;;;;;;  11929 534062 731000))
  ;;; Generated autoloads from calendar/parse-time.el
  (put 'parse-time-rules 'risky-local-variable t)
  
@@@ -20531,8 -20547,8 +20547,8 @@@ unknown are returned as nil
  
  ;;;***
  \f
- ;;;### (autoloads nil "pascal" "progmodes/pascal.el" (21974 64192
- ;;;;;;  644009 993000))
+ ;;;### (autoloads nil "pascal" "progmodes/pascal.el" (22092 27718
+ ;;;;;;  228268 464000))
  ;;; Generated autoloads from progmodes/pascal.el
  
  (autoload 'pascal-mode "pascal" "\
@@@ -20581,8 -20597,8 +20597,8 @@@ See also the user variables `pascal-typ
  
  ;;;***
  \f
- ;;;### (autoloads nil "password-cache" "password-cache.el" (21670
- ;;;;;;  32331 385639 720000))
+ ;;;### (autoloads nil "password-cache" "password-cache.el" (22086
+ ;;;;;;  11930 122062 731000))
  ;;; Generated autoloads from password-cache.el
  
  (defvar password-cache t "\
@@@ -20603,8 -20619,8 +20619,8 @@@ Check if KEY is in the cache
  
  ;;;***
  \f
- ;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (22073 59712
- ;;;;;;  774803 451000))
+ ;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (22091 6875 247217
+ ;;;;;;  891000))
  ;;; Generated autoloads from emacs-lisp/pcase.el
  
  (autoload 'pcase "pcase" "\
@@@ -20705,8 -20721,8 +20721,8 @@@ to this macro
  
  ;;;***
  \f
- ;;;### (autoloads nil "pcmpl-cvs" "pcmpl-cvs.el" (21998 46517 178024
- ;;;;;;  649000))
+ ;;;### (autoloads nil "pcmpl-cvs" "pcmpl-cvs.el" (22086 11930 122062
+ ;;;;;;  731000))
  ;;; Generated autoloads from pcmpl-cvs.el
  
  (autoload 'pcomplete/cvs "pcmpl-cvs" "\
@@@ -20716,8 -20732,8 +20732,8 @@@ Completion rules for the `cvs' command
  
  ;;;***
  \f
- ;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (22086 11930 122062
+ ;;;;;;  731000))
  ;;; Generated autoloads from pcmpl-gnu.el
  
  (autoload 'pcomplete/gzip "pcmpl-gnu" "\
@@@ -20744,8 -20760,8 +20760,8 @@@ Completion for the GNU tar utility
  
  ;;;***
  \f
- ;;;### (autoloads nil "pcmpl-linux" "pcmpl-linux.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "pcmpl-linux" "pcmpl-linux.el" (22086 11930
+ ;;;;;;  122062 731000))
  ;;; Generated autoloads from pcmpl-linux.el
  
  (autoload 'pcomplete/kill "pcmpl-linux" "\
@@@ -20765,8 -20781,8 +20781,8 @@@ Completion for GNU/Linux `mount'
  
  ;;;***
  \f
- ;;;### (autoloads nil "pcmpl-rpm" "pcmpl-rpm.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "pcmpl-rpm" "pcmpl-rpm.el" (22086 11930 122062
+ ;;;;;;  731000))
  ;;; Generated autoloads from pcmpl-rpm.el
  
  (autoload 'pcomplete/rpm "pcmpl-rpm" "\
@@@ -20776,8 -20792,8 +20792,8 @@@ Completion for the `rpm' command
  
  ;;;***
  \f
- ;;;### (autoloads nil "pcmpl-unix" "pcmpl-unix.el" (21791 47660 796747
- ;;;;;;  422000))
+ ;;;### (autoloads nil "pcmpl-unix" "pcmpl-unix.el" (22086 11930 122062
+ ;;;;;;  731000))
  ;;; Generated autoloads from pcmpl-unix.el
  
  (autoload 'pcomplete/cd "pcmpl-unix" "\
@@@ -20832,8 -20848,8 +20848,8 @@@ Includes files as well as host names fo
  
  ;;;***
  \f
- ;;;### (autoloads nil "pcmpl-x" "pcmpl-x.el" (21980 16567 953544
- ;;;;;;  893000))
+ ;;;### (autoloads nil "pcmpl-x" "pcmpl-x.el" (22086 11930 122062
+ ;;;;;;  731000))
  ;;; Generated autoloads from pcmpl-x.el
  
  (autoload 'pcomplete/tlmgr "pcmpl-x" "\
@@@ -20857,8 -20873,8 +20873,8 @@@ Completion for the `ag' command
  
  ;;;***
  \f
- ;;;### (autoloads nil "pcomplete" "pcomplete.el" (21980 16567 953544
- ;;;;;;  893000))
+ ;;;### (autoloads nil "pcomplete" "pcomplete.el" (22086 11930 122062
+ ;;;;;;  731000))
  ;;; Generated autoloads from pcomplete.el
  
  (autoload 'pcomplete "pcomplete" "\
@@@ -20915,7 -20931,7 +20931,7 @@@ Setup `shell-mode' to use pcomplete
  
  ;;;***
  \f
- ;;;### (autoloads nil "pcvs" "vc/pcvs.el" (22065 61995 886407 852000))
+ ;;;### (autoloads nil "pcvs" "vc/pcvs.el" (22092 27718 548268 464000))
  ;;; Generated autoloads from vc/pcvs.el
  
  (autoload 'cvs-checkout "pcvs" "\
@@@ -20990,8 -21006,8 +21006,8 @@@ The exact behavior is determined also b
  
  ;;;***
  \f
- ;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (21670 32331
- ;;;;;;  885635 586000))
+ ;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (22086 11930
+ ;;;;;;  378062 731000))
  ;;; 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)) "\
@@@ -20999,8 -21015,8 +21015,8 @@@ Global menu used by PCL-CVS."
  
  ;;;***
  \f
- ;;;### (autoloads nil "perl-mode" "progmodes/perl-mode.el" (22011
- ;;;;;;  58553 921858 469000))
+ ;;;### (autoloads nil "perl-mode" "progmodes/perl-mode.el" (22086
+ ;;;;;;  11930 214062 731000))
  ;;; Generated autoloads from progmodes/perl-mode.el
  (put 'perl-indent-level 'safe-local-variable 'integerp)
  (put 'perl-continued-statement-offset 'safe-local-variable 'integerp)
@@@ -21061,8 -21077,8 +21077,8 @@@ Turning on Perl mode runs the normal ho
  
  ;;;***
  \f
- ;;;### (autoloads nil "picture" "textmodes/picture.el" (21670 32331
- ;;;;;;  885635 586000))
+ ;;;### (autoloads nil "picture" "textmodes/picture.el" (22086 11930
+ ;;;;;;  318062 731000))
  ;;; Generated autoloads from textmodes/picture.el
  
  (autoload 'picture-mode "picture" "\
@@@ -21142,8 -21158,8 +21158,8 @@@ they are not by default assigned to key
  
  ;;;***
  \f
- ;;;### (autoloads nil "pinentry" "net/pinentry.el" (22076 35900 90633
- ;;;;;;  595000))
+ ;;;### (autoloads nil "pinentry" "net/pinentry.el" (22086 11930 2062
+ ;;;;;;  731000))
  ;;; Generated autoloads from net/pinentry.el
  (push (purecopy '(pinentry 0 1)) package--builtin-versions)
  
@@@ -21160,8 -21176,8 +21176,8 @@@ will not be shown
  
  ;;;***
  \f
- ;;;### (autoloads nil "plstore" "gnus/plstore.el" (21786 29744 368212
- ;;;;;;  633000))
+ ;;;### (autoloads nil "plstore" "gnus/plstore.el" (22086 11929 842062
+ ;;;;;;  731000))
  ;;; Generated autoloads from gnus/plstore.el
  
  (autoload 'plstore-open "plstore" "\
@@@ -21176,8 -21192,8 +21192,8 @@@ Major mode for editing PLSTORE files
  
  ;;;***
  \f
- ;;;### (autoloads nil "po" "textmodes/po.el" (22026 25907 651502
- ;;;;;;  692000))
+ ;;;### (autoloads nil "po" "textmodes/po.el" (22086 11930 322062
+ ;;;;;;  731000))
  ;;; Generated autoloads from textmodes/po.el
  
  (autoload 'po-find-file-coding-system "po" "\
@@@ -21188,7 -21204,7 +21204,7 @@@ Called through `file-coding-system-alis
  
  ;;;***
  \f
- ;;;### (autoloads nil "pong" "play/pong.el" (21670 32331 385639 720000))
+ ;;;### (autoloads nil "pong" "play/pong.el" (22086 11930 130062 731000))
  ;;; Generated autoloads from play/pong.el
  
  (autoload 'pong "pong" "\
@@@ -21204,7 -21220,7 +21220,7 @@@ pong-mode keybindings:\\<pong-mode-map
  
  ;;;***
  \f
- ;;;### (autoloads nil "pop3" "gnus/pop3.el" (21974 64192 580009 993000))
+ ;;;### (autoloads nil "pop3" "gnus/pop3.el" (22086 11929 846062 731000))
  ;;; Generated autoloads from gnus/pop3.el
  
  (autoload 'pop3-movemail "pop3" "\
@@@ -21215,8 -21231,8 +21231,8 @@@ Use streaming commands
  
  ;;;***
  \f
- ;;;### (autoloads nil "pp" "emacs-lisp/pp.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "pp" "emacs-lisp/pp.el" (22086 11929 682062
+ ;;;;;;  731000))
  ;;; Generated autoloads from emacs-lisp/pp.el
  
  (autoload 'pp-to-string "pp" "\
@@@ -21266,8 -21282,8 +21282,8 @@@ Ignores leading comment characters
  
  ;;;***
  \f
- ;;;### (autoloads nil "printing" "printing.el" (21990 52406 680500
- ;;;;;;  385000))
+ ;;;### (autoloads nil "printing" "printing.el" (22092 27718 128268
+ ;;;;;;  464000))
  ;;; Generated autoloads from printing.el
  (push (purecopy '(printing 6 9 3)) package--builtin-versions)
  
@@@ -21855,7 -21871,7 +21871,7 @@@ are both set to t
  
  ;;;***
  \f
- ;;;### (autoloads nil "proced" "proced.el" (22085 50883 209731 271000))
+ ;;;### (autoloads nil "proced" "proced.el" (22092 27718 128268 464000))
  ;;; Generated autoloads from proced.el
  
  (autoload 'proced "proced" "\
@@@ -21873,8 -21889,8 +21889,8 @@@ Proced buffers
  
  ;;;***
  \f
- ;;;### (autoloads nil "profiler" "profiler.el" (21948 40114 402686
- ;;;;;;  453000))
+ ;;;### (autoloads nil "profiler" "profiler.el" (22086 11930 134062
+ ;;;;;;  731000))
  ;;; Generated autoloads from profiler.el
  
  (autoload 'profiler-start "profiler" "\
@@@ -21902,8 -21918,8 +21918,8 @@@ Open profile FILENAME
  
  ;;;***
  \f
- ;;;### (autoloads nil "project" "progmodes/project.el" (22083 9150
- ;;;;;;  180915 960000))
+ ;;;### (autoloads nil "project" "progmodes/project.el" (22088 30660
+ ;;;;;;  79412 927000))
  ;;; Generated autoloads from progmodes/project.el
  
  (autoload 'project-current "project" "\
@@@ -21929,8 -21945,8 +21945,8 @@@ pattern to search for
  
  ;;;***
  \f
- ;;;### (autoloads nil "prolog" "progmodes/prolog.el" (22040 58794
- ;;;;;;  692259 771000))
+ ;;;### (autoloads nil "prolog" "progmodes/prolog.el" (22086 11930
+ ;;;;;;  218062 731000))
  ;;; Generated autoloads from progmodes/prolog.el
  
  (autoload 'prolog-mode "prolog" "\
@@@ -21963,19 -21979,19 +21979,19 @@@ With prefix argument ARG, restart the P
  
  ;;;***
  \f
- ;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (21670 32331 885635 586000))
+ ;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (22092 27718 404268 464000))
  ;;; 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")) "\
  List of directories to search for `BDF' font files.
- The default value is '(\"/usr/local/share/emacs/fonts/bdf\").")
+ The default value is (\"/usr/local/share/emacs/fonts/bdf\").")
  
  (custom-autoload 'bdf-directory-list "ps-bdf" t)
  
  ;;;***
  \f
- ;;;### (autoloads nil "ps-mode" "progmodes/ps-mode.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "ps-mode" "progmodes/ps-mode.el" (22086 11930
+ ;;;;;;  218062 731000))
  ;;; Generated autoloads from progmodes/ps-mode.el
  (push (purecopy '(ps-mode 1 1 9)) package--builtin-versions)
  
@@@ -22021,8 -22037,8 +22037,8 @@@ Typing \\<ps-run-mode-map>\\[ps-run-got
  
  ;;;***
  \f
- ;;;### (autoloads nil "ps-print" "ps-print.el" (22131 60223 805707
- ;;;;;;  127000))
+ ;;;### (autoloads nil "ps-print" "ps-print.el" (22092 27718 412268
+ ;;;;;;  464000))
  ;;; Generated autoloads from ps-print.el
  (push (purecopy '(ps-print 7 3 5)) package--builtin-versions)
  
@@@ -22148,8 -22164,8 +22164,8 @@@ image in a file with that name
  (autoload 'ps-line-lengths "ps-print" "\
  Display the correspondence between a line length and a font size.
  Done using the current ps-print setup.
- Try: pr -t file | awk '{printf \"%3d %s
- \", length($0), $0}' | sort -r | head
+ Try: pr -t file | awk \\='{printf \"%3d %s
+ \", length($0), $0}\\=' | sort -r | head
  
  \(fn)" t nil)
  
@@@ -22219,8 -22235,8 +22235,8 @@@ If EXTENSION is any other symbol, it i
  
  ;;;***
  \f
- ;;;### (autoloads nil "pulse" "cedet/pulse.el" (21968 25395 287570
- ;;;;;;  741000))
+ ;;;### (autoloads nil "pulse" "cedet/pulse.el" (22086 11929 550062
+ ;;;;;;  731000))
  ;;; Generated autoloads from cedet/pulse.el
  (push (purecopy '(pulse 1 0)) package--builtin-versions)
  
@@@ -22238,12 -22254,12 +22254,12 @@@ Optional argument FACE specifies the fa
  
  ;;;***
  \f
- ;;;### (autoloads nil "python" "progmodes/python.el" (22069 62806
- ;;;;;;  686804 836000))
+ ;;;### (autoloads nil "python" "progmodes/python.el" (22092 27718
+ ;;;;;;  244268 464000))
  ;;; Generated autoloads from progmodes/python.el
  (push (purecopy '(python 0 25 1)) package--builtin-versions)
  
- (add-to-list 'auto-mode-alist (cons (purecopy "\\.py\\'") 'python-mode))
+ (add-to-list 'auto-mode-alist (cons (purecopy "\\.pyw?\\'") 'python-mode))
  
  (add-to-list 'interpreter-mode-alist (cons (purecopy "python[0-9.]*") 'python-mode))
  
@@@ -22276,7 -22292,7 +22292,7 @@@ Major mode for editing Python files
  
  ;;;***
  \f
- ;;;### (autoloads nil "qp" "gnus/qp.el" (21670 32331 385639 720000))
+ ;;;### (autoloads nil "qp" "gnus/qp.el" (22086 11929 846062 731000))
  ;;; Generated autoloads from gnus/qp.el
  
  (autoload 'quoted-printable-decode-region "qp" "\
@@@ -22295,8 -22311,8 +22311,8 @@@ them into characters should be done sep
  
  ;;;***
  \f
- ;;;### (autoloads nil "quail" "international/quail.el" (21988 10681
- ;;;;;;  981624 461000))
+ ;;;### (autoloads nil "quail" "international/quail.el" (22086 11929
+ ;;;;;;  882062 731000))
  ;;; Generated autoloads from international/quail.el
  
  (autoload 'quail-title "quail" "\
@@@ -22526,8 -22542,8 +22542,8 @@@ of each directory
  
  ;;;***
  \f
- ;;;### (autoloads nil "quail/hangul" "leim/quail/hangul.el" (21953
- ;;;;;;  58033 331058 929000))
+ ;;;### (autoloads nil "quail/hangul" "leim/quail/hangul.el" (22086
+ ;;;;;;  11929 922062 731000))
  ;;; Generated autoloads from leim/quail/hangul.el
  
  (autoload 'hangul-input-method-activate "quail/hangul" "\
@@@ -22540,7 -22556,7 +22556,7 @@@ HELP-TEXT is a text set in `hangul-inpu
  ;;;***
  \f
  ;;;### (autoloads nil "quail/uni-input" "leim/quail/uni-input.el"
- ;;;;;;  (21670 32331 385639 720000))
+ ;;;;;;  (22086 11929 930062 731000))
  ;;; Generated autoloads from leim/quail/uni-input.el
  
  (autoload 'ucs-input-activate "quail/uni-input" "\
@@@ -22554,8 -22570,8 +22570,8 @@@ While this input method is active, the 
  
  ;;;***
  \f
- ;;;### (autoloads nil "quickurl" "net/quickurl.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "quickurl" "net/quickurl.el" (22086 11930 2062
+ ;;;;;;  731000))
  ;;; 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" "\
@@@ -22626,8 -22642,8 +22642,8 @@@ Display `quickurl-list' as a formatted 
  
  ;;;***
  \f
- ;;;### (autoloads nil "rcirc" "net/rcirc.el" (22011 58553 765858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "rcirc" "net/rcirc.el" (22092 27717 984268
+ ;;;;;;  464000))
  ;;; Generated autoloads from net/rcirc.el
  
  (autoload 'rcirc "rcirc" "\
@@@ -22665,8 -22681,8 +22681,8 @@@ if ARG is omitted or nil
  
  ;;;***
  \f
- ;;;### (autoloads nil "re-builder" "emacs-lisp/re-builder.el" (21998
- ;;;;;;  46517 18024 649000))
+ ;;;### (autoloads nil "re-builder" "emacs-lisp/re-builder.el" (22086
+ ;;;;;;  11929 682062 731000))
  ;;; Generated autoloads from emacs-lisp/re-builder.el
  
  (defalias 'regexp-builder 're-builder)
@@@ -22684,8 -22700,8 +22700,8 @@@ matching parts of the target buffer wil
  
  ;;;***
  \f
- ;;;### (autoloads nil "recentf" "recentf.el" (21998 46517 266024
- ;;;;;;  649000))
+ ;;;### (autoloads nil "recentf" "recentf.el" (22086 11930 254062
+ ;;;;;;  731000))
  ;;; Generated autoloads from recentf.el
  
  (defvar recentf-mode nil "\
@@@ -22711,7 -22727,7 +22727,7 @@@ were operated on recently
  
  ;;;***
  \f
- ;;;### (autoloads nil "rect" "rect.el" (22087 6213 796351 952000))
+ ;;;### (autoloads nil "rect" "rect.el" (22087 9807 394279 951000))
  ;;; Generated autoloads from rect.el
  
  (autoload 'delete-rectangle "rect" "\
@@@ -22851,8 -22867,8 +22867,8 @@@ Activates the region if needed.  Only l
  
  ;;;***
  \f
- ;;;### (autoloads nil "refill" "textmodes/refill.el" (21670 32331
- ;;;;;;  885635 586000))
+ ;;;### (autoloads nil "refill" "textmodes/refill.el" (22086 11930
+ ;;;;;;  322062 731000))
  ;;; Generated autoloads from textmodes/refill.el
  
  (autoload 'refill-mode "refill" "\
@@@ -22872,8 -22888,8 +22888,8 @@@ For true \"word wrap\" behavior, use `v
  
  ;;;***
  \f
- ;;;### (autoloads nil "reftex" "textmodes/reftex.el" (22131 60223
- ;;;;;;  841707 127000))
+ ;;;### (autoloads nil "reftex" "textmodes/reftex.el" (22086 11930
+ ;;;;;;  330062 731000))
  ;;; Generated autoloads from textmodes/reftex.el
  (autoload 'reftex-citation "reftex-cite" nil t)
  (autoload 'reftex-all-document-files "reftex-parse")
@@@ -22926,8 -22942,8 +22942,8 @@@ This enforces rescanning the buffer on 
  
  ;;;***
  \f
- ;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (22025
- ;;;;;;  5040 882195 139000))
+ ;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (22092
+ ;;;;;;  27718 512268 464000))
  ;;; 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))))
  
  ;;;***
  \f
- ;;;### (autoloads nil "regexp-opt" "emacs-lisp/regexp-opt.el" (22011
- ;;;;;;  58553 413858 469000))
+ ;;;### (autoloads nil "regexp-opt" "emacs-lisp/regexp-opt.el" (22086
+ ;;;;;;  11929 682062 731000))
  ;;; Generated autoloads from emacs-lisp/regexp-opt.el
  
  (autoload 'regexp-opt "regexp-opt" "\
@@@ -22966,15 -22982,15 +22982,15 @@@ This means the number of non-shy regex
  
  ;;;***
  \f
- ;;;### (autoloads nil "regi" "emacs-lisp/regi.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "regi" "emacs-lisp/regi.el" (22086 11929 682062
+ ;;;;;;  731000))
  ;;; Generated autoloads from emacs-lisp/regi.el
  (push (purecopy '(regi 1 8)) package--builtin-versions)
  
  ;;;***
  \f
- ;;;### (autoloads nil "remember" "textmodes/remember.el" (21670 32331
- ;;;;;;  885635 586000))
+ ;;;### (autoloads nil "remember" "textmodes/remember.el" (22086 11930
+ ;;;;;;  334062 731000))
  ;;; Generated autoloads from textmodes/remember.el
  (push (purecopy '(remember 2 0)) package--builtin-versions)
  
@@@ -23028,7 -23044,7 +23044,7 @@@ to turn the *scratch* buffer into your 
  
  ;;;***
  \f
- ;;;### (autoloads nil "repeat" "repeat.el" (21670 32331 885635 586000))
+ ;;;### (autoloads nil "repeat" "repeat.el" (22086 11930 258062 731000))
  ;;; Generated autoloads from repeat.el
  (push (purecopy '(repeat 0 51)) package--builtin-versions)
  
@@@ -23051,8 -23067,8 +23067,8 @@@ recently executed command not bound to 
  
  ;;;***
  \f
- ;;;### (autoloads nil "reporter" "mail/reporter.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "reporter" "mail/reporter.el" (22086 11929
+ ;;;;;;  938062 731000))
  ;;; Generated autoloads from mail/reporter.el
  
  (autoload 'reporter-submit-bug-report "reporter" "\
@@@ -23083,8 -23099,8 +23099,8 @@@ mail-sending package is used for editin
  
  ;;;***
  \f
- ;;;### (autoloads nil "reposition" "reposition.el" (21670 32331 885635
- ;;;;;;  586000))
+ ;;;### (autoloads nil "reposition" "reposition.el" (22086 11930 262062
+ ;;;;;;  731000))
  ;;; Generated autoloads from reposition.el
  
  (autoload 'reposition-window "reposition" "\
@@@ -23110,7 -23126,7 +23126,7 @@@ first comment line visible (if point i
  
  ;;;***
  \f
- ;;;### (autoloads nil "reveal" "reveal.el" (21670 32331 885635 586000))
+ ;;;### (autoloads nil "reveal" "reveal.el" (22086 11930 262062 731000))
  ;;; Generated autoloads from reveal.el
  
  (autoload 'reveal-mode "reveal" "\
@@@ -23145,8 -23161,8 +23161,8 @@@ the mode if ARG is omitted or nil
  
  ;;;***
  \f
- ;;;### (autoloads nil "ring" "emacs-lisp/ring.el" (21998 46517 18024
- ;;;;;;  649000))
+ ;;;### (autoloads nil "ring" "emacs-lisp/ring.el" (22086 11929 682062
+ ;;;;;;  731000))
  ;;; Generated autoloads from emacs-lisp/ring.el
  
  (autoload 'ring-p "ring" "\
@@@ -23161,8 -23177,8 +23177,8 @@@ Make a ring that can contain SIZE eleme
  
  ;;;***
  \f
- ;;;### (autoloads nil "rlogin" "net/rlogin.el" (22011 58553 765858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "rlogin" "net/rlogin.el" (22086 11930 6062
+ ;;;;;;  731000))
  ;;; Generated autoloads from net/rlogin.el
  
  (autoload 'rlogin "rlogin" "\
@@@ -23206,8 -23222,8 +23222,8 @@@ variable
  
  ;;;***
  \f
- ;;;### (autoloads nil "rmail" "mail/rmail.el" (22131 60223 757707
- ;;;;;;  127000))
+ ;;;### (autoloads nil "rmail" "mail/rmail.el" (22092 27717 884268
+ ;;;;;;  464000))
  ;;; Generated autoloads from mail/rmail.el
  
  (defvar rmail-file-name (purecopy "~/RMAIL") "\
@@@ -23226,7 -23242,7 +23242,7 @@@ Its name should end with a slash."
  
  (autoload 'rmail-movemail-variant-p "rmail" "\
  Return t if the current movemail variant is any of VARIANTS.
- Currently known variants are 'emacs and 'mailutils.
+ Currently known variants are `emacs' and `mailutils'.
  
  \(fn &rest VARIANTS)" nil nil)
  
@@@ -23404,8 -23420,8 +23420,8 @@@ Set PASSWORD to be used for retrieving 
  
  ;;;***
  \f
- ;;;### (autoloads nil "rmailout" "mail/rmailout.el" (21989 31537
- ;;;;;;  907825 721000))
+ ;;;### (autoloads nil "rmailout" "mail/rmailout.el" (22086 11929
+ ;;;;;;  942062 731000))
  ;;; Generated autoloads from mail/rmailout.el
  (put 'rmail-output-file-alist 'risky-local-variable t)
  
@@@ -23469,8 -23485,8 +23485,8 @@@ than appending to it.  Deletes the mess
  
  ;;;***
  \f
- ;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (21978 61237
- ;;;;;;  666488 269000))
+ ;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (22086 11930
+ ;;;;;;  26062 731000))
  ;;; Generated autoloads from nxml/rng-cmpct.el
  
  (autoload 'rng-c-load-schema "rng-cmpct" "\
@@@ -23481,8 -23497,8 +23497,8 @@@ Return a pattern
  
  ;;;***
  \f
- ;;;### (autoloads nil "rng-nxml" "nxml/rng-nxml.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "rng-nxml" "nxml/rng-nxml.el" (22086 11930
+ ;;;;;;  30062 731000))
  ;;; Generated autoloads from nxml/rng-nxml.el
  
  (autoload 'rng-nxml-mode-init "rng-nxml" "\
@@@ -23494,8 -23510,8 +23510,8 @@@ Validation will be enabled if `rng-nxml
  
  ;;;***
  \f
- ;;;### (autoloads nil "rng-valid" "nxml/rng-valid.el" (21948 40114
- ;;;;;;  322686 453000))
+ ;;;### (autoloads nil "rng-valid" "nxml/rng-valid.el" (22086 11930
+ ;;;;;;  30062 731000))
  ;;; Generated autoloads from nxml/rng-valid.el
  
  (autoload 'rng-validate-mode "rng-valid" "\
@@@ -23525,8 -23541,8 +23541,8 @@@ to use for finding the schema
  
  ;;;***
  \f
- ;;;### (autoloads nil "rng-xsd" "nxml/rng-xsd.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "rng-xsd" "nxml/rng-xsd.el" (22086 11930 30062
+ ;;;;;;  731000))
  ;;; Generated autoloads from nxml/rng-xsd.el
  
  (put 'http://www\.w3\.org/2001/XMLSchema-datatypes 'rng-dt-compile 'rng-xsd-compile)
@@@ -23553,8 -23569,8 +23569,8 @@@ must be equal
  
  ;;;***
  \f
- ;;;### (autoloads nil "robin" "international/robin.el" (21953 58033
- ;;;;;;  303058 929000))
+ ;;;### (autoloads nil "robin" "international/robin.el" (22086 11929
+ ;;;;;;  882062 731000))
  ;;; Generated autoloads from international/robin.el
  
  (autoload 'robin-define-package "robin" "\
@@@ -23586,7 -23602,7 +23602,7 @@@ Start using robin package NAME, which i
  
  ;;;***
  \f
- ;;;### (autoloads nil "rot13" "rot13.el" (21670 32331 885635 586000))
+ ;;;### (autoloads nil "rot13" "rot13.el" (22086 11930 266062 731000))
  ;;; Generated autoloads from rot13.el
  
  (autoload 'rot13 "rot13" "\
@@@ -23623,8 -23639,8 +23639,8 @@@ Toggle the use of ROT13 encoding for th
  
  ;;;***
  \f
- ;;;### (autoloads nil "rst" "textmodes/rst.el" (22034 20008 325500
- ;;;;;;  287000))
+ ;;;### (autoloads nil "rst" "textmodes/rst.el" (22086 11930 338062
+ ;;;;;;  731000))
  ;;; Generated autoloads from textmodes/rst.el
   (add-to-list 'auto-mode-alist (purecopy '("\\.re?st\\'" . rst-mode)))
  
@@@ -23654,8 -23670,8 +23670,8 @@@ for modes derived from Text mode, like 
  
  ;;;***
  \f
- ;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (22015
- ;;;;;;  55603 817705 321000))
+ ;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (22089
+ ;;;;;;  51528 360929 316000))
  ;;; Generated autoloads from progmodes/ruby-mode.el
  (push (purecopy '(ruby-mode 1 2)) package--builtin-versions)
  
@@@ -23666,14 -23682,14 +23682,14 @@@ Major mode for editing Ruby code
  
  \(fn)" t nil)
  
- (add-to-list 'auto-mode-alist (cons (purecopy (concat "\\(?:\\." "rb\\|ru\\|rake\\|thor" "\\|jbuilder\\|rabl\\|gemspec\\|podspec" "\\|/" "\\(?:Gem\\|Rake\\|Cap\\|Thor" "\\|Puppet\\|Berks" "\\|Vagrant\\|Guard\\|Pod\\)file" "\\)\\'")) 'ruby-mode))
+ (add-to-list 'auto-mode-alist (cons (purecopy (concat "\\(?:\\.\\(?:" "rbw?\\|ru\\|rake\\|thor" "\\|jbuilder\\|rabl\\|gemspec\\|podspec" "\\)" "\\|/" "\\(?:Gem\\|Rake\\|Cap\\|Thor" "\\|Puppet\\|Berks" "\\|Vagrant\\|Guard\\|Pod\\)file" "\\)\\'")) 'ruby-mode))
  
  (dolist (name (list "ruby" "rbx" "jruby" "ruby1.9" "ruby1.8")) (add-to-list 'interpreter-mode-alist (cons (purecopy name) 'ruby-mode)))
  
  ;;;***
  \f
- ;;;### (autoloads nil "ruler-mode" "ruler-mode.el" (22026 25907 643502
- ;;;;;;  692000))
+ ;;;### (autoloads nil "ruler-mode" "ruler-mode.el" (22086 11930 266062
+ ;;;;;;  731000))
  ;;; Generated autoloads from ruler-mode.el
  (push (purecopy '(ruler-mode 1 6)) package--builtin-versions)
  
@@@ -23691,8 -23707,8 +23707,8 @@@ if ARG is omitted or nil
  
  ;;;***
  \f
- ;;;### (autoloads nil "rx" "emacs-lisp/rx.el" (22011 58553 441858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "rx" "emacs-lisp/rx.el" (22086 11929 686062
+ ;;;;;;  731000))
  ;;; Generated autoloads from emacs-lisp/rx.el
  
  (autoload 'rx-to-string "rx" "\
@@@ -24003,15 -24019,15 +24019,15 @@@ enclosed in `(and ...)'
  
  ;;;***
  \f
- ;;;### (autoloads nil "sasl-ntlm" "net/sasl-ntlm.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "sasl-ntlm" "net/sasl-ntlm.el" (22086 11930
+ ;;;;;;  6062 731000))
  ;;; Generated autoloads from net/sasl-ntlm.el
  (push (purecopy '(sasl 1 0)) package--builtin-versions)
  
  ;;;***
  \f
- ;;;### (autoloads nil "savehist" "savehist.el" (21981 37426 703399
- ;;;;;;  97000))
+ ;;;### (autoloads nil "savehist" "savehist.el" (22086 11930 266062
+ ;;;;;;  731000))
  ;;; Generated autoloads from savehist.el
  (push (purecopy '(savehist 24)) package--builtin-versions)
  
@@@ -24043,8 -24059,8 +24059,8 @@@ histories, which is probably undesirabl
  
  ;;;***
  \f
- ;;;### (autoloads nil "saveplace" "saveplace.el" (21822 58098 20521
- ;;;;;;  61000))
+ ;;;### (autoloads nil "saveplace" "saveplace.el" (22086 11930 266062
+ ;;;;;;  731000))
  ;;; Generated autoloads from saveplace.el
  
  (defvar save-place-mode nil "\
@@@ -24065,8 -24081,8 +24081,8 @@@ where it was when you previously visite
  
  ;;;***
  \f
- ;;;### (autoloads nil "scheme" "progmodes/scheme.el" (22011 58553
- ;;;;;;  925858 469000))
+ ;;;### (autoloads nil "scheme" "progmodes/scheme.el" (22086 11930
+ ;;;;;;  222062 731000))
  ;;; Generated autoloads from progmodes/scheme.el
  
  (autoload 'scheme-mode "scheme" "\
@@@ -24105,8 -24121,8 +24121,8 @@@ that variable's value is a string
  
  ;;;***
  \f
- ;;;### (autoloads nil "score-mode" "gnus/score-mode.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "score-mode" "gnus/score-mode.el" (22086 11929
+ ;;;;;;  850062 731000))
  ;;; Generated autoloads from gnus/score-mode.el
  
  (autoload 'gnus-score-mode "score-mode" "\
@@@ -24119,8 -24135,8 +24135,8 @@@ This mode is an extended emacs-lisp mod
  
  ;;;***
  \f
- ;;;### (autoloads nil "scroll-all" "scroll-all.el" (21670 32331 885635
- ;;;;;;  586000))
+ ;;;### (autoloads nil "scroll-all" "scroll-all.el" (22089 51528 372929
+ ;;;;;;  316000))
  ;;; Generated autoloads from scroll-all.el
  
  (defvar scroll-all-mode nil "\
@@@ -24145,8 -24161,8 +24161,8 @@@ one window apply to all visible window
  
  ;;;***
  \f
- ;;;### (autoloads nil "scroll-lock" "scroll-lock.el" (21670 32331
- ;;;;;;  885635 586000))
+ ;;;### (autoloads nil "scroll-lock" "scroll-lock.el" (22086 11930
+ ;;;;;;  270062 731000))
  ;;; Generated autoloads from scroll-lock.el
  
  (autoload 'scroll-lock-mode "scroll-lock" "\
@@@ -24162,16 -24178,16 +24178,16 @@@ vertically fixed relative to window bou
  
  ;;;***
  \f
- ;;;### (autoloads nil "secrets" "net/secrets.el" (22011 58553 765858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "secrets" "net/secrets.el" (22086 11930 6062
+ ;;;;;;  731000))
  ;;; Generated autoloads from net/secrets.el
  (when (featurep 'dbusbind)
   (autoload 'secrets-show-secrets "secrets" nil t))
  
  ;;;***
  \f
- ;;;### (autoloads nil "semantic" "cedet/semantic.el" (21948 40114
- ;;;;;;  186686 453000))
+ ;;;### (autoloads nil "semantic" "cedet/semantic.el" (22092 27717
+ ;;;;;;  568268 464000))
  ;;; Generated autoloads from cedet/semantic.el
  (push (purecopy '(semantic 2 2)) package--builtin-versions)
  
@@@ -24229,7 -24245,7 +24245,7 @@@ Semantic mode
  ;;;***
  \f
  ;;;### (autoloads nil "semantic/bovine/grammar" "cedet/semantic/bovine/grammar.el"
- ;;;;;;  (21670 32330 885624 725000))
+ ;;;;;;  (22086 11929 554062 731000))
  ;;; Generated autoloads from cedet/semantic/bovine/grammar.el
  
  (autoload 'bovine-grammar-mode "semantic/bovine/grammar" "\
@@@ -24240,7 -24256,7 +24256,7 @@@ Major mode for editing Bovine grammars
  ;;;***
  \f
  ;;;### (autoloads nil "semantic/wisent/grammar" "cedet/semantic/wisent/grammar.el"
- ;;;;;;  (21670 32330 885624 725000))
+ ;;;;;;  (22086 11929 578062 731000))
  ;;; Generated autoloads from cedet/semantic/wisent/grammar.el
  
  (autoload 'wisent-grammar-mode "semantic/wisent/grammar" "\
@@@ -24250,8 -24266,8 +24266,8 @@@ Major mode for editing Wisent grammars
  
  ;;;***
  \f
- ;;;### (autoloads nil "sendmail" "mail/sendmail.el" (22026 25907
- ;;;;;;  603502 692000))
+ ;;;### (autoloads nil "sendmail" "mail/sendmail.el" (22086 11929
+ ;;;;;;  946062 731000))
  ;;; Generated autoloads from mail/sendmail.el
  
  (defvar mail-from-style 'default "\
@@@ -24532,14 -24548,14 +24548,14 @@@ Like `mail' command, but display mail b
  
  ;;;***
  \f
- ;;;### (autoloads nil "seq" "emacs-lisp/seq.el" (22084 30014 55762
- ;;;;;;  3000))
+ ;;;### (autoloads nil "seq" "emacs-lisp/seq.el" (22086 11929 686062
+ ;;;;;;  731000))
  ;;; Generated autoloads from emacs-lisp/seq.el
  (push (purecopy '(seq 2 3)) package--builtin-versions)
  
  ;;;***
  \f
- ;;;### (autoloads nil "server" "server.el" (22056 47028 775798 795000))
+ ;;;### (autoloads nil "server" "server.el" (22093 48588 588393 539000))
  ;;; Generated autoloads from server.el
  
  (put 'server-host 'risky-local-variable t)
@@@ -24606,7 -24622,7 +24622,7 @@@ only these files will be asked to be sa
  
  ;;;***
  \f
- ;;;### (autoloads nil "ses" "ses.el" (22149 3770 262205 950000))
+ ;;;### (autoloads nil "ses" "ses.el" (22092 27718 416268 464000))
  ;;; Generated autoloads from ses.el
  
  (autoload 'ses-mode "ses" "\
@@@ -24650,8 -24666,8 +24666,8 @@@ formula
  
  ;;;***
  \f
- ;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (22011
- ;;;;;;  58554 69858 469000))
+ ;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (22092
+ ;;;;;;  27718 512268 464000))
  ;;; Generated autoloads from textmodes/sgml-mode.el
  
  (autoload 'sgml-mode "sgml-mode" "\
@@@ -24716,8 -24732,8 +24732,8 @@@ To work around that, do
  
  ;;;***
  \f
- ;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (22061
- ;;;;;;  64938 532287 963000))
+ ;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (22092
+ ;;;;;;  27718 260268 464000))
  ;;; Generated autoloads from progmodes/sh-script.el
  (push (purecopy '(sh-script 2 0 6)) package--builtin-versions)
  (put 'sh-shell 'safe-local-variable 'symbolp)
@@@ -24780,8 -24796,8 +24796,8 @@@ with your script for an edit-interpret-
  
  ;;;***
  \f
- ;;;### (autoloads nil "shadow" "emacs-lisp/shadow.el" (22026 25907
- ;;;;;;  583502 692000))
+ ;;;### (autoloads nil "shadow" "emacs-lisp/shadow.el" (22086 11929
+ ;;;;;;  686062 731000))
  ;;; Generated autoloads from emacs-lisp/shadow.el
  
  (autoload 'list-load-path-shadows "shadow" "\
@@@ -24830,8 -24846,8 +24846,8 @@@ function, `load-path-shadows-find'
  
  ;;;***
  \f
- ;;;### (autoloads nil "shadowfile" "shadowfile.el" (21670 32331 885635
- ;;;;;;  586000))
+ ;;;### (autoloads nil "shadowfile" "shadowfile.el" (22086 11930 278062
+ ;;;;;;  731000))
  ;;; Generated autoloads from shadowfile.el
  
  (autoload 'shadow-define-cluster "shadowfile" "\
@@@ -24869,7 -24885,7 +24885,7 @@@ Set up file shadowing
  
  ;;;***
  \f
- ;;;### (autoloads nil "shell" "shell.el" (21896 48221 754207 816000))
+ ;;;### (autoloads nil "shell" "shell.el" (22086 11930 278062 731000))
  ;;; Generated autoloads from shell.el
  
  (defvar shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe") "\
@@@ -24917,7 -24933,7 +24933,7 @@@ Otherwise, one argument `-i' is passed 
  
  ;;;***
  \f
- ;;;### (autoloads nil "shr" "net/shr.el" (22146 27578 232451 942000))
+ ;;;### (autoloads nil "shr" "net/shr.el" (22087 9807 382279 951000))
  ;;; Generated autoloads from net/shr.el
  
  (autoload 'shr-render-region "shr" "\
@@@ -24934,8 -24950,8 +24950,8 @@@ DOM should be a parse tree as generate
  
  ;;;***
  \f
- ;;;### (autoloads nil "sieve" "gnus/sieve.el" (21972 22452 270264
- ;;;;;;  357000))
+ ;;;### (autoloads nil "sieve" "gnus/sieve.el" (22086 11929 850062
+ ;;;;;;  731000))
  ;;; Generated autoloads from gnus/sieve.el
  
  (autoload 'sieve-manage "sieve" "\
  
  ;;;***
  \f
- ;;;### (autoloads nil "sieve-mode" "gnus/sieve-mode.el" (21931 31023
- ;;;;;;  733164 572000))
+ ;;;### (autoloads nil "sieve-mode" "gnus/sieve-mode.el" (22086 11929
+ ;;;;;;  850062 731000))
  ;;; Generated autoloads from gnus/sieve-mode.el
  
  (autoload 'sieve-mode "sieve-mode" "\
@@@ -24976,8 -24992,8 +24992,8 @@@ Turning on Sieve mode runs `sieve-mode-
  
  ;;;***
  \f
- ;;;### (autoloads nil "simula" "progmodes/simula.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "simula" "progmodes/simula.el" (22092 27718
+ ;;;;;;  288268 464000))
  ;;; Generated autoloads from progmodes/simula.el
  
  (autoload 'simula-mode "simula" "\
@@@ -24998,22 -25014,22 +25014,22 @@@ Variables controlling indentation style
      with respect to the previous line of the statement.
   `simula-label-offset' -4711
      Offset of SIMULA label lines relative to usual indentation.
-  `simula-if-indent' '(0 . 0)
+  `simula-if-indent' (0 . 0)
      Extra indentation of THEN and ELSE with respect to the starting IF.
      Value is a cons cell, the car is extra THEN indentation and the cdr
      extra ELSE indentation.  IF after ELSE is indented as the starting IF.
-  `simula-inspect-indent' '(0 . 0)
+  `simula-inspect-indent' (0 . 0)
      Extra indentation of WHEN and OTHERWISE with respect to the
      corresponding INSPECT.  Value is a cons cell, the car is
      extra WHEN indentation and the cdr extra OTHERWISE indentation.
   `simula-electric-indent' nil
      If this variable is non-nil, `simula-indent-line'
      will check the previous line to see if it has to be reindented.
-  `simula-abbrev-keyword' 'upcase
+  `simula-abbrev-keyword' `upcase'
      Determine how SIMULA keywords will be expanded.  Value is one of
      the symbols `upcase', `downcase', `capitalize', (as in) `abbrev-table',
      or nil if they should not be changed.
-  `simula-abbrev-stdproc' 'abbrev-table
+  `simula-abbrev-stdproc' `abbrev-table'
      Determine how standard SIMULA procedure and class names will be
      expanded.  Value is one of the symbols `upcase', `downcase', `capitalize',
      (as in) `abbrev-table', or nil if they should not be changed.
@@@ -25025,8 -25041,8 +25041,8 @@@ with no arguments, if that value is non
  
  ;;;***
  \f
- ;;;### (autoloads nil "skeleton" "skeleton.el" (22026 25907 643502
- ;;;;;;  692000))
+ ;;;### (autoloads nil "skeleton" "skeleton.el" (22086 11930 290062
+ ;;;;;;  731000))
  ;;; Generated autoloads from skeleton.el
  
  (defvar skeleton-filter-function 'identity "\
@@@ -25145,8 -25161,8 +25161,8 @@@ twice for the others
  
  ;;;***
  \f
- ;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (21670 32331
- ;;;;;;  885635 586000))
+ ;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (22092 27718
+ ;;;;;;  548268 464000))
  ;;; Generated autoloads from vc/smerge-mode.el
  
  (autoload 'smerge-ediff "smerge-mode" "\
@@@ -25173,8 -25189,8 +25189,8 @@@ If no conflict maker is found, turn of
  
  ;;;***
  \f
- ;;;### (autoloads nil "smiley" "gnus/smiley.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "smiley" "gnus/smiley.el" (22086 11929 850062
+ ;;;;;;  731000))
  ;;; Generated autoloads from gnus/smiley.el
  
  (autoload 'smiley-region "smiley" "\
@@@ -25191,8 -25207,8 +25207,8 @@@ interactively.  If there's no argument
  
  ;;;***
  \f
- ;;;### (autoloads nil "smtpmail" "mail/smtpmail.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "smtpmail" "mail/smtpmail.el" (22086 11929
+ ;;;;;;  950062 731000))
  ;;; Generated autoloads from mail/smtpmail.el
  
  (autoload 'smtpmail-send-it "smtpmail" "\
@@@ -25207,8 -25223,8 +25223,8 @@@ Send mail that was queued as a result o
  
  ;;;***
  \f
- ;;;### (autoloads nil "snake" "play/snake.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "snake" "play/snake.el" (22086 11930 130062
+ ;;;;;;  731000))
  ;;; Generated autoloads from play/snake.el
  
  (autoload 'snake "snake" "\
@@@ -25231,8 -25247,8 +25247,8 @@@ Snake mode keybindings
  
  ;;;***
  \f
- ;;;### (autoloads nil "snmp-mode" "net/snmp-mode.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "snmp-mode" "net/snmp-mode.el" (22086 11930
+ ;;;;;;  10062 731000))
  ;;; Generated autoloads from net/snmp-mode.el
  
  (autoload 'snmp-mode "snmp-mode" "\
@@@ -25261,15 -25277,15 +25277,15 @@@ then `snmpv2-mode-hook'
  
  ;;;***
  \f
- ;;;### (autoloads nil "soap-client" "net/soap-client.el" (22084 30014
- ;;;;;;  59762 3000))
+ ;;;### (autoloads nil "soap-client" "net/soap-client.el" (22092 27717
+ ;;;;;;  988268 464000))
  ;;; Generated autoloads from net/soap-client.el
  (push (purecopy '(soap-client 3 0 2)) package--builtin-versions)
  
  ;;;***
  \f
- ;;;### (autoloads nil "solar" "calendar/solar.el" (21849 48176 337264
- ;;;;;;  443000))
+ ;;;### (autoloads nil "solar" "calendar/solar.el" (22086 11929 534062
+ ;;;;;;  731000))
  ;;; Generated autoloads from calendar/solar.el
  
  (autoload 'sunrise-sunset "solar" "\
@@@ -25284,8 -25300,8 +25300,8 @@@ This function is suitable for executio
  
  ;;;***
  \f
- ;;;### (autoloads nil "solitaire" "play/solitaire.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "solitaire" "play/solitaire.el" (22086 11930
+ ;;;;;;  130062 731000))
  ;;; Generated autoloads from play/solitaire.el
  
  (autoload 'solitaire "solitaire" "\
@@@ -25360,7 -25376,7 +25376,7 @@@ Pick your favorite shortcuts
  
  ;;;***
  \f
- ;;;### (autoloads nil "sort" "sort.el" (22011 58553 993858 469000))
+ ;;;### (autoloads nil "sort" "sort.el" (22086 11930 290062 731000))
  ;;; Generated autoloads from sort.el
  (put 'sort-fold-case 'safe-local-variable 'booleanp)
  
@@@ -25535,7 -25551,7 +25551,7 @@@ is non-nil, it also prints a message de
  
  ;;;***
  \f
- ;;;### (autoloads nil "spam" "gnus/spam.el" (21981 37426 607399 97000))
+ ;;;### (autoloads nil "spam" "gnus/spam.el" (22086 11929 854062 731000))
  ;;; Generated autoloads from gnus/spam.el
  
  (autoload 'spam-initialize "spam" "\
@@@ -25549,8 -25565,8 +25565,8 @@@ installed through `spam-necessary-extra
  
  ;;;***
  \f
- ;;;### (autoloads nil "spam-report" "gnus/spam-report.el" (22011
- ;;;;;;  58553 601858 469000))
+ ;;;### (autoloads nil "spam-report" "gnus/spam-report.el" (22086
+ ;;;;;;  11929 850062 731000))
  ;;; Generated autoloads from gnus/spam-report.el
  
  (autoload 'spam-report-process-queue "spam-report" "\
@@@ -25592,8 -25608,8 +25608,8 @@@ Spam reports will be queued with the me
  
  ;;;***
  \f
- ;;;### (autoloads nil "speedbar" "speedbar.el" (22011 58553 993858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "speedbar" "speedbar.el" (22092 27718 452268
+ ;;;;;;  464000))
  ;;; Generated autoloads from speedbar.el
  
  (defalias 'speedbar 'speedbar-frame-mode)
@@@ -25617,8 -25633,8 +25633,8 @@@ selected.  If the speedbar frame is act
  
  ;;;***
  \f
- ;;;### (autoloads nil "spook" "play/spook.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "spook" "play/spook.el" (22086 11930 130062
+ ;;;;;;  731000))
  ;;; Generated autoloads from play/spook.el
  
  (autoload 'spook "spook" "\
@@@ -25633,8 -25649,8 +25649,8 @@@ Return a vector containing the lines fr
  
  ;;;***
  \f
- ;;;### (autoloads nil "sql" "progmodes/sql.el" (22011 58553 929858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "sql" "progmodes/sql.el" (22092 27718 320268
+ ;;;;;;  464000))
  ;;; Generated autoloads from progmodes/sql.el
  (push (purecopy '(sql 3 5)) package--builtin-versions)
  
@@@ -25992,7 -26008,7 +26008,7 @@@ your might try undecided-dos as a codin
  Try to set `comint-output-filter-functions' like this:
  
  \(setq comint-output-filter-functions (append comint-output-filter-functions
-                                            '(comint-strip-ctrl-m)))
+                                            \\='(comint-strip-ctrl-m)))
  
  \(Type \\[describe-mode] in the SQL buffer for a list of commands.)
  
@@@ -26100,15 -26116,15 +26116,15 @@@ Run vsql as an inferior process
  
  ;;;***
  \f
- ;;;### (autoloads nil "srecode" "cedet/srecode.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "srecode" "cedet/srecode.el" (22086 11929 578062
+ ;;;;;;  731000))
  ;;; Generated autoloads from cedet/srecode.el
  (push (purecopy '(srecode 1 2)) package--builtin-versions)
  
  ;;;***
  \f
  ;;;### (autoloads nil "srecode/srt-mode" "cedet/srecode/srt-mode.el"
- ;;;;;;  (21998 46516 910024 649000))
+ ;;;;;;  (22086 11929 582062 731000))
  ;;; Generated autoloads from cedet/srecode/srt-mode.el
  
  (autoload 'srecode-template-mode "srecode/srt-mode" "\
@@@ -26120,8 -26136,8 +26136,8 @@@ Major-mode for writing SRecode macros
  
  ;;;***
  \f
- ;;;### (autoloads nil "starttls" "gnus/starttls.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "starttls" "gnus/starttls.el" (22086 11929
+ ;;;;;;  854062 731000))
  ;;; Generated autoloads from gnus/starttls.el
  
  (autoload 'starttls-open-stream "starttls" "\
@@@ -26144,8 -26160,8 +26160,8 @@@ GnuTLS requires a port number
  
  ;;;***
  \f
- ;;;### (autoloads nil "strokes" "strokes.el" (21981 37426 735399
- ;;;;;;  97000))
+ ;;;### (autoloads nil "strokes" "strokes.el" (22086 11930 294062
+ ;;;;;;  731000))
  ;;; Generated autoloads from strokes.el
  
  (autoload 'strokes-global-set-stroke "strokes" "\
@@@ -26258,8 -26274,8 +26274,8 @@@ Read a complex stroke and insert its gl
  
  ;;;***
  \f
- ;;;### (autoloads nil "studly" "play/studly.el" (21607 54478 800121
- ;;;;;;  42000))
+ ;;;### (autoloads nil "studly" "play/studly.el" (22086 11930 130062
+ ;;;;;;  731000))
  ;;; Generated autoloads from play/studly.el
  
  (autoload 'studlify-region "studly" "\
@@@ -26279,8 -26295,8 +26295,8 @@@ Studlify-case the current buffer
  
  ;;;***
  \f
- ;;;### (autoloads nil "subword" "progmodes/subword.el" (21670 32331
- ;;;;;;  885635 586000))
+ ;;;### (autoloads nil "subword" "progmodes/subword.el" (22086 11930
+ ;;;;;;  226062 731000))
  ;;; Generated autoloads from progmodes/subword.el
  
  (define-obsolete-function-alias 'capitalized-words-mode 'subword-mode "25.1")
@@@ -26372,8 -26388,8 +26388,8 @@@ See `superword-mode' for more informati
  
  ;;;***
  \f
- ;;;### (autoloads nil "supercite" "mail/supercite.el" (21852 24381
- ;;;;;;  697240 10000))
+ ;;;### (autoloads nil "supercite" "mail/supercite.el" (22086 11929
+ ;;;;;;  950062 731000))
  ;;; Generated autoloads from mail/supercite.el
  
  (autoload 'sc-cite-original "supercite" "\
@@@ -26405,8 -26421,8 +26421,8 @@@ and `sc-post-hook' is run after the gut
  
  ;;;***
  \f
- ;;;### (autoloads nil "t-mouse" "t-mouse.el" (21670 32331 885635
- ;;;;;;  586000))
+ ;;;### (autoloads nil "t-mouse" "t-mouse.el" (22086 11930 298062
+ ;;;;;;  731000))
  ;;; Generated autoloads from t-mouse.el
  
  (define-obsolete-function-alias 't-mouse-mode 'gpm-mouse-mode "23.1")
@@@ -26434,7 -26450,7 +26450,7 @@@ It relies on the `gpm' daemon being act
  
  ;;;***
  \f
- ;;;### (autoloads nil "tabify" "tabify.el" (21670 32331 885635 586000))
+ ;;;### (autoloads nil "tabify" "tabify.el" (22086 11930 298062 731000))
  ;;; Generated autoloads from tabify.el
  
  (autoload 'untabify "tabify" "\
@@@ -26463,8 -26479,8 +26479,8 @@@ The variable `tab-width' controls the s
  
  ;;;***
  \f
- ;;;### (autoloads nil "table" "textmodes/table.el" (21998 46517 298024
- ;;;;;;  649000))
+ ;;;### (autoloads nil "table" "textmodes/table.el" (22092 27718 520268
+ ;;;;;;  464000))
  ;;; Generated autoloads from textmodes/table.el
  
  (autoload 'table-insert "table" "\
@@@ -26834,7 -26850,7 +26850,7 @@@ WHERE is provided the cell and table a
  (autoload 'table-generate-source "table" "\
  Generate source of the current table in the specified language.
  LANGUAGE is a symbol that specifies the language to describe the
- structure of the table.  It must be either 'html, 'latex or 'cals.
+ structure of the table.  It must be either `html', `latex' or `cals'.
  The resulted source text is inserted into DEST-BUFFER and the buffer
  object is returned.  When DEST-BUFFER is omitted or nil the default
  buffer specified in `table-dest-buffer-name' is used.  In this case
@@@ -26923,7 -26939,7 +26939,7 @@@ delimiter regular expressions.  This pa
  columns and rows of the table automatically.  If COL-DELIM-REGEXP and
  ROW-DELIM-REGEXP are omitted the result table has only one cell and
  the entire region contents is placed in that cell.  Optional JUSTIFY
- is one of 'left, 'center or 'right, which specifies the cell
+ is one of `left', `center' or `right', which specifies the cell
  justification.  Optional MIN-CELL-WIDTH specifies the minimum cell
  width.  Optional COLUMNS specify the number of columns when
  ROW-DELIM-REGEXP is not specified.
@@@ -27035,7 -27051,7 +27051,7 @@@ converts a table into plain text withou
  
  ;;;***
  \f
- ;;;### (autoloads nil "talk" "talk.el" (21670 32331 885635 586000))
+ ;;;### (autoloads nil "talk" "talk.el" (22086 11930 298062 731000))
  ;;; Generated autoloads from talk.el
  
  (autoload 'talk-connect "talk" "\
@@@ -27050,8 -27066,8 +27066,8 @@@ Connect to the Emacs talk group from th
  
  ;;;***
  \f
- ;;;### (autoloads nil "tar-mode" "tar-mode.el" (21704 50495 455324
- ;;;;;;  752000))
+ ;;;### (autoloads nil "tar-mode" "tar-mode.el" (22086 11930 298062
+ ;;;;;;  731000))
  ;;; Generated autoloads from tar-mode.el
  
  (autoload 'tar-mode "tar-mode" "\
@@@ -27074,8 -27090,8 +27090,8 @@@ See also: variables `tar-update-datesta
  
  ;;;***
  \f
- ;;;### (autoloads nil "tcl" "progmodes/tcl.el" (21842 42581 539414
- ;;;;;;  570000))
+ ;;;### (autoloads nil "tcl" "progmodes/tcl.el" (22086 11930 230062
+ ;;;;;;  731000))
  ;;; Generated autoloads from progmodes/tcl.el
  
  (autoload 'tcl-mode "tcl" "\
@@@ -27123,8 -27139,8 +27139,8 @@@ Prefix argument means invert sense of `
  
  ;;;***
  \f
- ;;;### (autoloads nil "telnet" "net/telnet.el" (21852 24381 767239
- ;;;;;;  782000))
+ ;;;### (autoloads nil "telnet" "net/telnet.el" (22086 11930 14062
+ ;;;;;;  731000))
  ;;; Generated autoloads from net/telnet.el
  
  (autoload 'telnet "telnet" "\
@@@ -27149,7 -27165,7 +27165,7 @@@ Normally input is edited in Emacs and s
  
  ;;;***
  \f
- ;;;### (autoloads nil "term" "term.el" (22042 14122 209169 136000))
+ ;;;### (autoloads nil "term" "term.el" (22102 63557 312509 103000))
  ;;; Generated autoloads from term.el
  
  (autoload 'make-term "term" "\
@@@ -27191,8 -27207,8 +27207,8 @@@ use in that buffer
  
  ;;;***
  \f
- ;;;### (autoloads nil "testcover" "emacs-lisp/testcover.el" (21998
- ;;;;;;  46517 22024 649000))
+ ;;;### (autoloads nil "testcover" "emacs-lisp/testcover.el" (22086
+ ;;;;;;  11929 686062 731000))
  ;;; Generated autoloads from emacs-lisp/testcover.el
  
  (autoload 'testcover-this-defun "testcover" "\
@@@ -27202,8 -27218,8 +27218,8 @@@ Start coverage on function under point
  
  ;;;***
  \f
- ;;;### (autoloads nil "tetris" "play/tetris.el" (22000 1842 148539
- ;;;;;;  693000))
+ ;;;### (autoloads nil "tetris" "play/tetris.el" (22086 11930 130062
+ ;;;;;;  731000))
  ;;; Generated autoloads from play/tetris.el
  (push (purecopy '(tetris 2 1)) package--builtin-versions)
  
@@@ -27228,8 -27244,8 +27244,8 @@@ tetris-mode keybindings
  
  ;;;***
  \f
- ;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (22076 35900
- ;;;;;;  118633 595000))
+ ;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (22092 27718
+ ;;;;;;  524268 464000))
  ;;; Generated autoloads from textmodes/tex-mode.el
  
  (defvar tex-shell-file-name nil "\
@@@ -27331,7 -27347,7 +27347,7 @@@ If two printers are not enough of a cho
  for example,
  
      (setq tex-alt-dvi-print-command
-          '(format \"lpr -P%s\" (read-string \"Use printer: \")))
+          \\='(format \"lpr -P%s\" (read-string \"Use printer: \")))
  
  would tell \\[tex-print] with a prefix argument to ask you which printer to
  use.")
@@@ -27530,8 -27546,8 +27546,8 @@@ Major mode to edit DocTeX files
  
  ;;;***
  \f
- ;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (22011 58554
- ;;;;;;  81858 469000))
+ ;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (22086 11930
+ ;;;;;;  350062 731000))
  ;;; Generated autoloads from textmodes/texinfmt.el
  
  (autoload 'texinfo-format-buffer "texinfmt" "\
@@@ -27570,8 -27586,8 +27586,8 @@@ if large.  You can use `Info-split' to 
  
  ;;;***
  \f
- ;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (22026 25907
- ;;;;;;  667502 692000))
+ ;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (22086 11930
+ ;;;;;;  350062 731000))
  ;;; Generated autoloads from textmodes/texinfo.el
  
  (defvar texinfo-open-quote (purecopy "``") "\
@@@ -27655,8 -27671,8 +27671,8 @@@ value of `texinfo-mode-hook'
  
  ;;;***
  \f
- ;;;### (autoloads nil "thai-util" "language/thai-util.el" (21670
- ;;;;;;  32331 385639 720000))
+ ;;;### (autoloads nil "thai-util" "language/thai-util.el" (22086
+ ;;;;;;  11929 902062 731000))
  ;;; Generated autoloads from language/thai-util.el
  
  (autoload 'thai-compose-region "thai-util" "\
@@@ -27683,8 -27699,8 +27699,8 @@@ Compose Thai characters in the current 
  
  ;;;***
  \f
- ;;;### (autoloads nil "thingatpt" "thingatpt.el" (22011 58554 85858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "thingatpt" "thingatpt.el" (22086 11930 354062
+ ;;;;;;  731000))
  ;;; Generated autoloads from thingatpt.el
  
  (autoload 'forward-thing "thingatpt" "\
@@@ -27748,7 -27764,7 +27764,7 @@@ Return the Lisp list at point, or nil i
  
  ;;;***
  \f
- ;;;### (autoloads nil "thumbs" "thumbs.el" (21993 28596 414597 473000))
+ ;;;### (autoloads nil "thumbs" "thumbs.el" (22086 11930 354062 731000))
  ;;; Generated autoloads from thumbs.el
  
  (autoload 'thumbs-find-thumb "thumbs" "\
@@@ -27782,15 -27798,15 +27798,15 @@@ In dired, call the setroot program on t
  
  ;;;***
  \f
- ;;;### (autoloads nil "thunk" "emacs-lisp/thunk.el" (22064 41137
- ;;;;;;  961468 395000))
+ ;;;### (autoloads nil "thunk" "emacs-lisp/thunk.el" (22086 11929
+ ;;;;;;  690062 731000))
  ;;; Generated autoloads from emacs-lisp/thunk.el
  (push (purecopy '(thunk 1 0)) package--builtin-versions)
  
  ;;;***
  \f
- ;;;### (autoloads nil "tibet-util" "language/tibet-util.el" (21670
- ;;;;;;  32331 385639 720000))
+ ;;;### (autoloads nil "tibet-util" "language/tibet-util.el" (22086
+ ;;;;;;  11929 906062 731000))
  ;;; Generated autoloads from language/tibet-util.el
  
  (autoload 'tibetan-char-p "tibet-util" "\
@@@ -27863,8 -27879,8 +27879,8 @@@ See also docstring of the function tibe
  
  ;;;***
  \f
- ;;;### (autoloads nil "tildify" "textmodes/tildify.el" (22026 25907
- ;;;;;;  667502 692000))
+ ;;;### (autoloads nil "tildify" "textmodes/tildify.el" (22086 11930
+ ;;;;;;  354062 731000))
  ;;; Generated autoloads from textmodes/tildify.el
  (push (purecopy '(tildify 4 6 1)) package--builtin-versions)
  
@@@ -27930,7 -27946,7 +27946,7 @@@ variable will be set to the representat
  
  ;;;***
  \f
- ;;;### (autoloads nil "time" "time.el" (22026 25907 667502 692000))
+ ;;;### (autoloads nil "time" "time.el" (22086 11930 354062 731000))
  ;;; Generated autoloads from time.el
  
  (defvar display-time-day-and-date nil "\
@@@ -27992,8 -28008,8 +28008,8 @@@ Return a string giving the duration of 
  
  ;;;***
  \f
- ;;;### (autoloads nil "time-date" "calendar/time-date.el" (22000
- ;;;;;;  55581 510930 477000))
+ ;;;### (autoloads nil "time-date" "calendar/time-date.el" (22086
+ ;;;;;;  11929 538062 731000))
  ;;; Generated autoloads from calendar/time-date.el
  
  (autoload 'date-to-time "time-date" "\
@@@ -28096,8 -28112,8 +28112,8 @@@ Convert the time interval in seconds t
  
  ;;;***
  \f
- ;;;### (autoloads nil "time-stamp" "time-stamp.el" (21980 16568 89544
- ;;;;;;  893000))
+ ;;;### (autoloads nil "time-stamp" "time-stamp.el" (22092 27718 528268
+ ;;;;;;  464000))
  ;;; 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)
@@@ -28137,8 -28153,8 +28153,8 @@@ With ARG, turn time stamping on if and 
  
  ;;;***
  \f
- ;;;### (autoloads nil "timeclock" "calendar/timeclock.el" (21998
- ;;;;;;  46516 882024 649000))
+ ;;;### (autoloads nil "timeclock" "calendar/timeclock.el" (22086
+ ;;;;;;  11929 538062 731000))
  ;;; Generated autoloads from calendar/timeclock.el
  (push (purecopy '(timeclock 2 6 1)) package--builtin-versions)
  
@@@ -28248,7 -28264,7 +28264,7 @@@ relative only to the time worked today
  ;;;***
  \f
  ;;;### (autoloads nil "titdic-cnv" "international/titdic-cnv.el"
- ;;;;;;  (22011 58553 673858 469000))
+ ;;;;;;  (22086 11929 886062 731000))
  ;;; Generated autoloads from international/titdic-cnv.el
  
  (autoload 'titdic-convert "titdic-cnv" "\
@@@ -28270,7 -28286,7 +28286,7 @@@ To get complete usage, invoke \"emacs -
  
  ;;;***
  \f
- ;;;### (autoloads nil "tmm" "tmm.el" (21907 48688 873360 195000))
+ ;;;### (autoloads nil "tmm" "tmm.el" (22086 11930 354062 731000))
  ;;; Generated autoloads from tmm.el
   (define-key global-map "\M-`" 'tmm-menubar)
   (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse)
@@@ -28312,8 -28328,8 +28328,8 @@@ Its value should be an event that has 
  
  ;;;***
  \f
- ;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (22015
- ;;;;;;  55603 665705 321000))
+ ;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (22086
+ ;;;;;;  11929 538062 731000))
  ;;; Generated autoloads from calendar/todo-mode.el
  
  (autoload 'todo-show "todo-mode" "\
@@@ -28380,8 -28396,8 +28396,8 @@@ Mode for displaying and reprioritizing 
  
  ;;;***
  \f
- ;;;### (autoloads nil "tool-bar" "tool-bar.el" (21670 32331 885635
- ;;;;;;  586000))
+ ;;;### (autoloads nil "tool-bar" "tool-bar.el" (22086 11930 358062
+ ;;;;;;  731000))
  ;;; Generated autoloads from tool-bar.el
  
  (autoload 'toggle-tool-bar-mode-from-frame "tool-bar" "\
@@@ -28451,8 -28467,8 +28467,8 @@@ holds a keymap
  
  ;;;***
  \f
- ;;;### (autoloads nil "tq" "emacs-lisp/tq.el" (21670 32330 885624
- ;;;;;;  725000))
+ ;;;### (autoloads nil "tq" "emacs-lisp/tq.el" (22086 11929 690062
+ ;;;;;;  731000))
  ;;; Generated autoloads from emacs-lisp/tq.el
  
  (autoload 'tq-create "tq" "\
@@@ -28465,8 -28481,8 +28481,8 @@@ to a tcp server on another machine
  
  ;;;***
  \f
- ;;;### (autoloads nil "trace" "emacs-lisp/trace.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "trace" "emacs-lisp/trace.el" (22086 11929
+ ;;;;;;  690062 731000))
  ;;; Generated autoloads from emacs-lisp/trace.el
  
  (defvar trace-buffer "*trace-output*" "\
@@@ -28511,7 -28527,7 +28527,7 @@@ the output buffer or changing the windo
  
  ;;;***
  \f
- ;;;### (autoloads nil "tramp" "net/tramp.el" (22083 9150 180915 960000))
+ ;;;### (autoloads nil "tramp" "net/tramp.el" (22092 27718 8268 464000))
  ;;; Generated autoloads from net/tramp.el
  
  (defvar tramp-mode t "\
@@@ -28525,8 -28541,8 +28541,8 @@@ Tramp filename syntax to be used
  
  It can have the following values:
  
-   'ftp -- Ange-FTP respective EFS like syntax (GNU Emacs default)
-   'sep -- Syntax as defined for XEmacs.")
+   `ftp' -- Ange-FTP respective EFS like syntax (GNU Emacs default)
+   `sep' -- Syntax as defined for XEmacs.")
  
  (custom-autoload 'tramp-syntax "tramp" t)
  
@@@ -28626,8 -28642,8 +28642,8 @@@ Discard Tramp from loading remote files
  
  ;;;***
  \f
- ;;;### (autoloads nil "tramp-ftp" "net/tramp-ftp.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "tramp-ftp" "net/tramp-ftp.el" (22086 11930
+ ;;;;;;  14062 731000))
  ;;; Generated autoloads from net/tramp-ftp.el
  
  (autoload 'tramp-ftp-enable-ange-ftp "tramp-ftp" "\
  
  ;;;***
  \f
- ;;;### (autoloads nil "tutorial" "tutorial.el" (22011 58554 85858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "tutorial" "tutorial.el" (22086 11930 358062
+ ;;;;;;  731000))
  ;;; Generated autoloads from tutorial.el
  
  (autoload 'help-with-tutorial "tutorial" "\
@@@ -28662,8 -28678,8 +28678,8 @@@ resumed later
  
  ;;;***
  \f
- ;;;### (autoloads nil "tv-util" "language/tv-util.el" (21855 577
- ;;;;;;  57945 485000))
+ ;;;### (autoloads nil "tv-util" "language/tv-util.el" (22086 11929
+ ;;;;;;  906062 731000))
  ;;; Generated autoloads from language/tv-util.el
  
  (autoload 'tai-viet-composition-function "tv-util" "\
  
  ;;;***
  \f
- ;;;### (autoloads nil "two-column" "textmodes/two-column.el" (21998
- ;;;;;;  46517 298024 649000))
+ ;;;### (autoloads nil "two-column" "textmodes/two-column.el" (22086
+ ;;;;;;  11930 354062 731000))
  ;;; Generated autoloads from textmodes/two-column.el
   (autoload '2C-command "two-column" () t 'keymap)
   (global-set-key "\C-x6" '2C-command)
@@@ -28721,8 -28737,8 +28737,8 @@@ First column's text    sSs  Second colu
  
  ;;;***
  \f
- ;;;### (autoloads nil "type-break" "type-break.el" (22011 58554 85858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "type-break" "type-break.el" (22086 11930 358062
+ ;;;;;;  731000))
  ;;; Generated autoloads from type-break.el
  
  (defvar type-break-mode nil "\
@@@ -28854,7 -28870,7 +28870,7 @@@ FRAC should be the inverse of the fract
  
  ;;;***
  \f
- ;;;### (autoloads nil "uce" "mail/uce.el" (22026 25907 603502 692000))
+ ;;;### (autoloads nil "uce" "mail/uce.el" (22086 11929 950062 731000))
  ;;; Generated autoloads from mail/uce.el
  
  (autoload 'uce-reply-to-uce "uce" "\
@@@ -28868,7 -28884,7 +28884,7 @@@ You might need to set `uce-mail-reader
  ;;;***
  \f
  ;;;### (autoloads nil "ucs-normalize" "international/ucs-normalize.el"
- ;;;;;;  (21670 32331 385639 720000))
+ ;;;;;;  (22086 11929 886062 731000))
  ;;; Generated autoloads from international/ucs-normalize.el
  
  (autoload 'ucs-normalize-NFD-region "ucs-normalize" "\
@@@ -28933,8 -28949,8 +28949,8 @@@ Normalize the string STR by the Unicod
  
  ;;;***
  \f
- ;;;### (autoloads nil "underline" "textmodes/underline.el" (21670
- ;;;;;;  32331 885635 586000))
+ ;;;### (autoloads nil "underline" "textmodes/underline.el" (22086
+ ;;;;;;  11930 354062 731000))
  ;;; Generated autoloads from textmodes/underline.el
  
  (autoload 'underline-region "underline" "\
@@@ -28954,8 -28970,8 +28970,8 @@@ which specify the range to operate on
  
  ;;;***
  \f
- ;;;### (autoloads nil "unrmail" "mail/unrmail.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "unrmail" "mail/unrmail.el" (22086 11929 950062
+ ;;;;;;  731000))
  ;;; Generated autoloads from mail/unrmail.el
  
  (autoload 'batch-unrmail "unrmail" "\
@@@ -28975,8 -28991,8 +28991,8 @@@ The variable `unrmail-mbox-format' cont
  
  ;;;***
  \f
- ;;;### (autoloads nil "unsafep" "emacs-lisp/unsafep.el" (21670 32330
- ;;;;;;  885624 725000))
+ ;;;### (autoloads nil "unsafep" "emacs-lisp/unsafep.el" (22086 11929
+ ;;;;;;  690062 731000))
  ;;; Generated autoloads from emacs-lisp/unsafep.el
  
  (autoload 'unsafep "unsafep" "\
@@@ -28988,7 -29004,7 +29004,7 @@@ UNSAFEP-VARS is a list of symbols with 
  
  ;;;***
  \f
- ;;;### (autoloads nil "url" "url/url.el" (21670 32331 885635 586000))
+ ;;;### (autoloads nil "url" "url/url.el" (22086 11930 366062 731000))
  ;;; Generated autoloads from url/url.el
  
  (autoload 'url-retrieve "url" "\
@@@ -29035,8 -29051,8 +29051,8 @@@ no further processing).  URL is either 
  
  ;;;***
  \f
- ;;;### (autoloads nil "url-auth" "url/url-auth.el" (22142 30520 631026
- ;;;;;;  947000))
+ ;;;### (autoloads nil "url-auth" "url/url-auth.el" (22092 27718 528268
+ ;;;;;;  464000))
  ;;; Generated autoloads from url/url-auth.el
  
  (autoload 'url-get-authentication "url-auth" "\
@@@ -29077,8 -29093,8 +29093,8 @@@ RATING   a rating between 1 and 10 of t
  
  ;;;***
  \f
- ;;;### (autoloads nil "url-cache" "url/url-cache.el" (21670 32331
- ;;;;;;  885635 586000))
+ ;;;### (autoloads nil "url-cache" "url/url-cache.el" (22086 11930
+ ;;;;;;  362062 731000))
  ;;; Generated autoloads from url/url-cache.el
  
  (autoload 'url-store-in-cache "url-cache" "\
@@@ -29099,8 -29115,8 +29115,8 @@@ Extract FNAM from the local disk cache
  
  ;;;***
  \f
- ;;;### (autoloads nil "url-cid" "url/url-cid.el" (21670 32331 885635
- ;;;;;;  586000))
+ ;;;### (autoloads nil "url-cid" "url/url-cid.el" (22086 11930 362062
+ ;;;;;;  731000))
  ;;; Generated autoloads from url/url-cid.el
  
  (autoload 'url-cid "url-cid" "\
  
  ;;;***
  \f
- ;;;### (autoloads nil "url-dav" "url/url-dav.el" (22011 58554 85858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "url-dav" "url/url-dav.el" (22086 11930 362062
+ ;;;;;;  731000))
  ;;; Generated autoloads from url/url-dav.el
  
  (autoload 'url-dav-supported-p "url-dav" "\
@@@ -29145,8 -29161,8 +29161,8 @@@ added to this list, so most requests ca
  
  ;;;***
  \f
- ;;;### (autoloads nil "url-file" "url/url-file.el" (21670 32331 885635
- ;;;;;;  586000))
+ ;;;### (autoloads nil "url-file" "url/url-file.el" (22086 11930 362062
+ ;;;;;;  731000))
  ;;; Generated autoloads from url/url-file.el
  
  (autoload 'url-file "url-file" "\
@@@ -29156,8 -29172,8 +29172,8 @@@ Handle file: and ftp: URLs
  
  ;;;***
  \f
- ;;;### (autoloads nil "url-gw" "url/url-gw.el" (22011 58554 85858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "url-gw" "url/url-gw.el" (22086 11930 362062
+ ;;;;;;  731000))
  ;;; Generated autoloads from url/url-gw.el
  
  (autoload 'url-gateway-nslookup-host "url-gw" "\
@@@ -29178,8 -29194,8 +29194,8 @@@ overriding the value of `url-gateway-me
  
  ;;;***
  \f
- ;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (22142
- ;;;;;;  30520 631026 947000))
+ ;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (22089
+ ;;;;;;  51528 372929 316000))
  ;;; Generated autoloads from url/url-handlers.el
  
  (defvar url-handler-mode nil "\
@@@ -29226,13 -29242,6 +29242,13 @@@ accessible
  
  \(fn URL &rest IGNORED)" nil nil)
  
 +(autoload 'url-insert-buffer-contents "url-handlers" "\
 +Insert the contents of BUFFER into current buffer.
 +This is like `url-insert', but also decodes the current buffer as
 +if it had been inserted from a file named URL.
 +
 +\(fn BUFFER URL &optional VISIT BEG END REPLACE)" nil nil)
 +
  (autoload 'url-insert-file-contents "url-handlers" "\
  
  
  
  ;;;***
  \f
- ;;;### (autoloads nil "url-http" "url/url-http.el" (22146 27578 232451
- ;;;;;;  942000))
+ ;;;### (autoloads nil "url-http" "url/url-http.el" (22092 27718 532268
+ ;;;;;;  464000))
  ;;; Generated autoloads from url/url-http.el
   (autoload 'url-default-expander "url-expand")
  
  
  ;;;***
  \f
- ;;;### (autoloads nil "url-irc" "url/url-irc.el" (21670 32331 885635
- ;;;;;;  586000))
+ ;;;### (autoloads nil "url-irc" "url/url-irc.el" (22086 11930 366062
+ ;;;;;;  731000))
  ;;; Generated autoloads from url/url-irc.el
  
  (autoload 'url-irc "url-irc" "\
  
  ;;;***
  \f
- ;;;### (autoloads nil "url-ldap" "url/url-ldap.el" (21670 32331 885635
- ;;;;;;  586000))
+ ;;;### (autoloads nil "url-ldap" "url/url-ldap.el" (22086 11930 366062
+ ;;;;;;  731000))
  ;;; Generated autoloads from url/url-ldap.el
  
  (autoload 'url-ldap "url-ldap" "\
@@@ -29278,8 -29287,8 +29294,8 @@@ URL can be a URL string, or a URL vecto
  
  ;;;***
  \f
- ;;;### (autoloads nil "url-mailto" "url/url-mailto.el" (21670 32331
- ;;;;;;  885635 586000))
+ ;;;### (autoloads nil "url-mailto" "url/url-mailto.el" (22086 11930
+ ;;;;;;  366062 731000))
  ;;; Generated autoloads from url/url-mailto.el
  
  (autoload 'url-mail "url-mailto" "\
@@@ -29294,8 -29303,8 +29310,8 @@@ Handle the mailto: URL syntax
  
  ;;;***
  \f
- ;;;### (autoloads nil "url-misc" "url/url-misc.el" (21670 32331 885635
- ;;;;;;  586000))
+ ;;;### (autoloads nil "url-misc" "url/url-misc.el" (22086 11930 366062
+ ;;;;;;  731000))
  ;;; Generated autoloads from url/url-misc.el
  
  (autoload 'url-man "url-misc" "\
@@@ -29326,8 -29335,8 +29342,8 @@@ Fetch a data URL (RFC 2397)
  
  ;;;***
  \f
- ;;;### (autoloads nil "url-news" "url/url-news.el" (21670 32331 885635
- ;;;;;;  586000))
+ ;;;### (autoloads nil "url-news" "url/url-news.el" (22086 11930 366062
+ ;;;;;;  731000))
  ;;; Generated autoloads from url/url-news.el
  
  (autoload 'url-news "url-news" "\
  
  ;;;***
  \f
- ;;;### (autoloads nil "url-ns" "url/url-ns.el" (21670 32331 885635
- ;;;;;;  586000))
+ ;;;### (autoloads nil "url-ns" "url/url-ns.el" (22086 11930 366062
+ ;;;;;;  731000))
  ;;; Generated autoloads from url/url-ns.el
  
  (autoload 'isPlainHostName "url-ns" "\
  
  ;;;***
  \f
- ;;;### (autoloads nil "url-parse" "url/url-parse.el" (22142 30520
- ;;;;;;  663026 947000))
+ ;;;### (autoloads nil "url-parse" "url/url-parse.el" (22086 11930
+ ;;;;;;  366062 731000))
  ;;; Generated autoloads from url/url-parse.el
  
  (autoload 'url-recreate-url "url-parse" "\
@@@ -29435,8 -29444,8 +29451,8 @@@ parses t
  
  ;;;***
  \f
- ;;;### (autoloads nil "url-privacy" "url/url-privacy.el" (21670 32331
- ;;;;;;  885635 586000))
+ ;;;### (autoloads nil "url-privacy" "url/url-privacy.el" (22086 11930
+ ;;;;;;  366062 731000))
  ;;; Generated autoloads from url/url-privacy.el
  
  (autoload 'url-setup-privacy-info "url-privacy" "\
@@@ -29446,8 -29455,8 +29462,8 @@@ Setup variables that expose info about 
  
  ;;;***
  \f
- ;;;### (autoloads nil "url-queue" "url/url-queue.el" (21670 32331
- ;;;;;;  885635 586000))
+ ;;;### (autoloads nil "url-queue" "url/url-queue.el" (22086 11930
+ ;;;;;;  366062 731000))
  ;;; Generated autoloads from url/url-queue.el
  
  (autoload 'url-queue-retrieve "url-queue" "\
@@@ -29461,8 -29470,8 +29477,8 @@@ The variable `url-queue-timeout' sets 
  
  ;;;***
  \f
- ;;;### (autoloads nil "url-tramp" "url/url-tramp.el" (21670 32331
- ;;;;;;  885635 586000))
+ ;;;### (autoloads nil "url-tramp" "url/url-tramp.el" (22086 11930
+ ;;;;;;  366062 731000))
  ;;; Generated autoloads from url/url-tramp.el
  
  (defvar url-tramp-protocols '("ftp" "ssh" "scp" "rsync" "telnet") "\
@@@ -29480,8 -29489,8 +29496,8 @@@ would have been passed to OPERATION
  
  ;;;***
  \f
- ;;;### (autoloads nil "url-util" "url/url-util.el" (22146 27578 232451
- ;;;;;;  942000))
+ ;;;### (autoloads nil "url-util" "url/url-util.el" (22092 27718 532268
+ ;;;;;;  464000))
  ;;; Generated autoloads from url/url-util.el
  
  (defvar url-debug nil "\
@@@ -29517,7 -29526,7 +29533,7 @@@ conversion.  Replaces these characters 
  \(fn STRING)" nil nil)
  
  (autoload 'url-normalize-url "url-util" "\
- Return a 'normalized' version of URL.
+ Return a \"normalized\" version of URL.
  Strips out default port numbers, etc.
  
  \(fn URL)" nil nil)
@@@ -29529,7 -29538,7 +29545,7 @@@ Will not do anything if `url-show-statu
  \(fn &rest ARGS)" nil nil)
  
  (autoload 'url-get-normalized-date "url-util" "\
- Return a 'real' date string that most HTTP servers can understand.
+ Return a date string that most HTTP servers can understand.
  
  \(fn &optional SPECIFIED-TIME)" nil nil)
  
@@@ -29649,14 -29658,14 +29665,14 @@@ This uses `url-current-object', set loc
  
  ;;;***
  \f
- ;;;### (autoloads nil "userlock" "userlock.el" (21976 19510 152430
- ;;;;;;  241000))
+ ;;;### (autoloads nil "userlock" "userlock.el" (22092 27718 532268
+ ;;;;;;  464000))
  ;;; Generated autoloads from userlock.el
  
  (autoload 'ask-user-about-lock "userlock" "\
  Ask user what to do when he wants to edit FILE but it is locked by OPPONENT.
  This function has a choice of three things to do:
-   do (signal 'file-locked (list FILE OPPONENT))
+   do (signal \\='file-locked (list FILE OPPONENT))
      to refrain from editing the file
    return t (grab the lock on the file)
    return nil (edit the file even though it is locked).
@@@ -29668,7 -29677,7 +29684,7 @@@ in any way you like
  (autoload 'ask-user-about-supersession-threat "userlock" "\
  Ask a user who is about to modify an obsolete buffer what to do.
  This function has two choices: it can return, in which case the modification
- of the buffer will proceed, or it can (signal 'file-supersession (file)),
+ of the buffer will proceed, or it can (signal \\='file-supersession (file)),
  in which case the proposed buffer modification will not be made.
  
  You can rewrite this to use any criterion you like to choose which one to do.
@@@ -29678,8 -29687,8 +29694,8 @@@ The buffer in question is current when 
  
  ;;;***
  \f
- ;;;### (autoloads nil "utf-7" "international/utf-7.el" (21670 32331
- ;;;;;;  385639 720000))
+ ;;;### (autoloads nil "utf-7" "international/utf-7.el" (22086 11929
+ ;;;;;;  886062 731000))
  ;;; Generated autoloads from international/utf-7.el
  
  (autoload 'utf-7-post-read-conversion "utf-7" "\
  
  ;;;***
  \f
- ;;;### (autoloads nil "utf7" "gnus/utf7.el" (21670 32331 385639 720000))
+ ;;;### (autoloads nil "utf7" "gnus/utf7.el" (22086 11929 854062 731000))
  ;;; Generated autoloads from gnus/utf7.el
  
  (autoload 'utf7-encode "utf7" "\
@@@ -29714,8 -29723,8 +29730,8 @@@ Encode UTF-7 STRING.  Use IMAP modifica
  
  ;;;***
  \f
- ;;;### (autoloads nil "uudecode" "mail/uudecode.el" (21855 577 67944
- ;;;;;;  554000))
+ ;;;### (autoloads nil "uudecode" "mail/uudecode.el" (22086 11929
+ ;;;;;;  954062 731000))
  ;;; Generated autoloads from mail/uudecode.el
  
  (autoload 'uudecode-decode-region-external "uudecode" "\
@@@ -29739,7 -29748,7 +29755,7 @@@ If FILE-NAME is non-nil, save the resul
  
  ;;;***
  \f
- ;;;### (autoloads nil "vc" "vc/vc.el" (22083 9150 184915 960000))
+ ;;;### (autoloads nil "vc" "vc/vc.el" (22093 48588 592393 539000))
  ;;; Generated autoloads from vc/vc.el
  
  (defvar vc-checkout-hook nil "\
@@@ -30051,8 -30060,8 +30067,8 @@@ Return the branch part of a revision nu
  
  ;;;***
  \f
- ;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (22011 58554
- ;;;;;;  93858 469000))
+ ;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (22086 11930
+ ;;;;;;  382062 731000))
  ;;; Generated autoloads from vc/vc-annotate.el
  
  (autoload 'vc-annotate "vc-annotate" "\
@@@ -30091,8 -30100,8 +30107,8 @@@ should be applied to the background or 
  
  ;;;***
  \f
- ;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (22081 53819 655137
- ;;;;;;  351000))
+ ;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (22086 11930 382062
+ ;;;;;;  731000))
  ;;; Generated autoloads from vc/vc-bzr.el
  
  (defconst vc-bzr-admin-dirname ".bzr" "\
@@@ -30108,8 -30117,8 +30124,8 @@@ Name of the format file in a .bzr direc
  
  ;;;***
  \f
- ;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (22064 41138 17468
- ;;;;;;  395000))
+ ;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (22099 26170 434017
+ ;;;;;;  16000))
  ;;; Generated autoloads from vc/vc-cvs.el
  (defun vc-cvs-registered (f)
    "Return non-nil if file F is registered with CVS."
  
  ;;;***
  \f
- ;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (22085 50883 245731
- ;;;;;;  271000))
+ ;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (22086 11930 386062
+ ;;;;;;  731000))
  ;;; Generated autoloads from vc/vc-dir.el
  
  (autoload 'vc-dir "vc-dir" "\
@@@ -30145,8 -30154,8 +30161,8 @@@ These are the commands available for us
  
  ;;;***
  \f
- ;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (21862
- ;;;;;;  60209 928657 362000))
+ ;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (22104
+ ;;;;;;  18893 237441 487000))
  ;;; Generated autoloads from vc/vc-dispatcher.el
  
  (autoload 'vc-do-command "vc-dispatcher" "\
@@@ -30169,8 -30178,8 +30185,8 @@@ case, and the process object in the asy
  
  ;;;***
  \f
- ;;;### (autoloads nil "vc-git" "vc/vc-git.el" (22081 53819 659137
- ;;;;;;  351000))
+ ;;;### (autoloads nil "vc-git" "vc/vc-git.el" (22097 45637 495432
+ ;;;;;;  455000))
  ;;; Generated autoloads from vc/vc-git.el
   (defun vc-git-registered (file)
    "Return non-nil if FILE is registered with git."
  
  ;;;***
  \f
- ;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (22081 53819 659137 351000))
+ ;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (22097 45637 503432 455000))
  ;;; Generated autoloads from vc/vc-hg.el
   (defun vc-hg-registered (file)
    "Return non-nil if FILE is registered with hg."
  
  ;;;***
  \f
- ;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (22064 41138 21468
- ;;;;;;  395000))
+ ;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (22097 45637 515432
+ ;;;;;;  455000))
  ;;; Generated autoloads from vc/vc-mtn.el
  
  (defconst vc-mtn-admin-dir "_MTN" "\
@@@ -30209,8 -30218,8 +30225,8 @@@ Name of the monotone directory's forma
  
  ;;;***
  \f
- ;;;### (autoloads nil "vc-rcs" "vc/vc-rcs.el" (22014 34736 851840
- ;;;;;;  613000))
+ ;;;### (autoloads nil "vc-rcs" "vc/vc-rcs.el" (22097 45637 527432
+ ;;;;;;  455000))
  ;;; Generated autoloads from vc/vc-rcs.el
  
  (defvar vc-rcs-master-templates (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\
@@@ -30223,8 -30232,8 +30239,8 @@@ For a description of possible values, s
  
  ;;;***
  \f
- ;;;### (autoloads nil "vc-sccs" "vc/vc-sccs.el" (22014 34736 863840
- ;;;;;;  613000))
+ ;;;### (autoloads nil "vc-sccs" "vc/vc-sccs.el" (22086 11930 386062
+ ;;;;;;  731000))
  ;;; Generated autoloads from vc/vc-sccs.el
  
  (defvar vc-sccs-master-templates (purecopy '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\
@@@ -30242,8 -30251,8 +30258,8 @@@ find any project directory." (let ((pro
  
  ;;;***
  \f
- ;;;### (autoloads nil "vc-src" "vc/vc-src.el" (22014 34736 863840
- ;;;;;;  613000))
+ ;;;### (autoloads nil "vc-src" "vc/vc-src.el" (22086 11930 386062
+ ;;;;;;  731000))
  ;;; Generated autoloads from vc/vc-src.el
  
  (defvar vc-src-master-templates (purecopy '("%s.src/%s,v")) "\
@@@ -30256,8 -30265,8 +30272,8 @@@ For a description of possible values, s
  
  ;;;***
  \f
- ;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (22081 53819 663137
- ;;;;;;  351000))
+ ;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (22101 42694 157526
+ ;;;;;;  804000))
  ;;; Generated autoloads from vc/vc-svn.el
   (defun vc-svn-registered (f)
    (let ((admin-dir (cond ((and (eq system-type 'windows-nt)
  
  ;;;***
  \f
- ;;;### (autoloads nil "vera-mode" "progmodes/vera-mode.el" (22011
- ;;;;;;  58553 929858 469000))
+ ;;;### (autoloads nil "vera-mode" "progmodes/vera-mode.el" (22092
+ ;;;;;;  27718 320268 464000))
  ;;; 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))
@@@ -30330,7 -30339,7 +30346,7 @@@ Key bindings
  ;;;***
  \f
  ;;;### (autoloads nil "verilog-mode" "progmodes/verilog-mode.el"
- ;;;;;;  (22097 42046 455599 456000))
+ ;;;;;;  (22092 27718 348268 464000))
  ;;; Generated autoloads from progmodes/verilog-mode.el
  
  (autoload 'verilog-mode "verilog-mode" "\
@@@ -30398,12 -30407,12 +30414,12 @@@ Variables controlling indentation/edit 
     will be inserted.  Setting this variable to zero results in every
     end acquiring a comment; the default avoids too many redundant
     comments in tight quarters.
-  `verilog-auto-lineup'              (default 'declarations)
+  `verilog-auto-lineup'              (default `declarations')
     List of contexts where auto lineup of code should be done.
  
  Variables controlling other actions:
  
-  `verilog-linter'                   (default surelint)
+  `verilog-linter'                   (default `surelint')
     Unix program to call to run the lint checker.  This is the default
     command for \\[compile-command] and \\[verilog-auto-save-compile].
  
@@@ -30469,8 -30478,8 +30485,8 @@@ Key bindings specific to `verilog-mode-
  
  ;;;***
  \f
- ;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (22011
- ;;;;;;  58553 969858 469000))
+ ;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (22092
+ ;;;;;;  27718 400268 464000))
  ;;; Generated autoloads from progmodes/vhdl-mode.el
  
  (autoload 'vhdl-mode "vhdl-mode" "\
@@@ -31024,8 -31033,8 +31040,8 @@@ Key bindings
  
  ;;;***
  \f
- ;;;### (autoloads nil "viet-util" "language/viet-util.el" (21670
- ;;;;;;  32331 385639 720000))
+ ;;;### (autoloads nil "viet-util" "language/viet-util.el" (22086
+ ;;;;;;  11929 906062 731000))
  ;;; Generated autoloads from language/viet-util.el
  
  (autoload 'viet-encode-viscii-char "viet-util" "\
@@@ -31069,7 -31078,7 +31085,7 @@@ Convert Vietnamese characters of the cu
  
  ;;;***
  \f
- ;;;### (autoloads nil "view" "view.el" (21670 32331 885635 586000))
+ ;;;### (autoloads nil "view" "view.el" (22086 11930 390062 731000))
  ;;; Generated autoloads from view.el
  
  (defvar view-remove-frame-by-deleting t "\
@@@ -31325,8 -31334,8 +31341,8 @@@ Exit View mode and make the current buf
  
  ;;;***
  \f
- ;;;### (autoloads nil "viper" "emulation/viper.el" (22011 58553 461858
- ;;;;;;  469000))
+ ;;;### (autoloads nil "viper" "emulation/viper.el" (22086 11929 698062
+ ;;;;;;  731000))
  ;;; Generated autoloads from emulation/viper.el
  (push (purecopy '(viper 3 14 1)) package--builtin-versions)
  
@@@ -31343,8 -31352,8 +31359,8 @@@ Turn on Viper emulation of Vi in Emacs
  
  ;;;***
  \f
- ;;;### (autoloads nil "warnings" "emacs-lisp/warnings.el" (21986
- ;;;;;;  55346 260512 613000))
+ ;;;### (autoloads nil "warnings" "emacs-lisp/warnings.el" (22086
+ ;;;;;;  11929 690062 731000))
  ;;; Generated autoloads from emacs-lisp/warnings.el
  
  (defvar warning-prefix-function nil "\
@@@ -31434,7 -31443,7 +31450,7 @@@ this is equivalent to `display-warning'
  
  ;;;***
  \f
- ;;;### (autoloads nil "wdired" "wdired.el" (22026 25907 675502 692000))
+ ;;;### (autoloads nil "wdired" "wdired.el" (22086 11930 394062 731000))
  ;;; Generated autoloads from wdired.el
  (push (purecopy '(wdired 2 0)) package--builtin-versions)
  
@@@ -31452,8 -31461,8 +31468,8 @@@ See `wdired-mode'
  
  ;;;***
  \f
- ;;;### (autoloads nil "webjump" "net/webjump.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "webjump" "net/webjump.el" (22086 11930 22062
+ ;;;;;;  731000))
  ;;; Generated autoloads from net/webjump.el
  
  (autoload 'webjump "webjump" "\
@@@ -31469,8 -31478,8 +31485,8 @@@ Please submit bug reports and other fee
  
  ;;;***
  \f
- ;;;### (autoloads nil "which-func" "progmodes/which-func.el" (22109
- ;;;;;;  33223 420655 811000))
+ ;;;### (autoloads nil "which-func" "progmodes/which-func.el" (22086
+ ;;;;;;  11930 242062 731000))
  ;;; Generated autoloads from progmodes/which-func.el
   (put 'which-func-format 'risky-local-variable t)
   (put 'which-func-current 'risky-local-variable t)
@@@ -31500,8 -31509,8 +31516,8 @@@ in certain major modes
  
  ;;;***
  \f
- ;;;### (autoloads nil "whitespace" "whitespace.el" (22026 25907 675502
- ;;;;;;  692000))
+ ;;;### (autoloads nil "whitespace" "whitespace.el" (22086 11930 394062
+ ;;;;;;  731000))
  ;;; Generated autoloads from whitespace.el
  (push (purecopy '(whitespace 13 2 2)) package--builtin-versions)
  
@@@ -31869,8 -31878,8 +31885,8 @@@ cleaning up these problems
  
  ;;;***
  \f
- ;;;### (autoloads nil "wid-browse" "wid-browse.el" (21670 32331 885635
- ;;;;;;  586000))
+ ;;;### (autoloads nil "wid-browse" "wid-browse.el" (22086 11930 394062
+ ;;;;;;  731000))
  ;;; Generated autoloads from wid-browse.el
  
  (autoload 'widget-browse-at "wid-browse" "\
@@@ -31898,8 -31907,8 +31914,8 @@@ if ARG is omitted or nil
  
  ;;;***
  \f
- ;;;### (autoloads nil "wid-edit" "wid-edit.el" (22003 64432 668146
- ;;;;;;  533000))
+ ;;;### (autoloads nil "wid-edit" "wid-edit.el" (22092 27718 580268
+ ;;;;;;  464000))
  ;;; Generated autoloads from wid-edit.el
  
  (autoload 'widgetp "wid-edit" "\
@@@ -31941,8 -31950,8 +31957,8 @@@ Setup current buffer so editing string 
  
  ;;;***
  \f
- ;;;### (autoloads nil "windmove" "windmove.el" (21852 24382 97237
- ;;;;;;  703000))
+ ;;;### (autoloads nil "windmove" "windmove.el" (22092 27718 580268
+ ;;;;;;  464000))
  ;;; Generated autoloads from windmove.el
  
  (autoload 'windmove-left "windmove" "\
@@@ -31988,13 -31997,13 +32004,13 @@@ If no window is at the desired location
  (autoload 'windmove-default-keybindings "windmove" "\
  Set up keybindings for `windmove'.
  Keybindings are of the form MODIFIER-{left,right,up,down}.
- Default MODIFIER is 'shift.
+ Default MODIFIER is `shift'.
  
  \(fn &optional MODIFIER)" t nil)
  
  ;;;***
  \f
- ;;;### (autoloads nil "winner" "winner.el" (22030 22953 17158 467000))
+ ;;;### (autoloads nil "winner" "winner.el" (22086 11930 398062 731000))
  ;;; Generated autoloads from winner.el
  
  (defvar winner-mode nil "\
@@@ -32017,7 -32026,7 +32033,7 @@@ the mode if ARG is omitted or nil, and 
  
  ;;;***
  \f
- ;;;### (autoloads nil "woman" "woman.el" (22026 25907 679502 692000))
+ ;;;### (autoloads nil "woman" "woman.el" (22092 27718 620268 464000))
  ;;; Generated autoloads from woman.el
  (push (purecopy '(woman 0 551)) package--builtin-versions)
  
@@@ -32066,7 -32075,7 +32082,7 @@@ Default bookmark handler for Woman buff
  
  ;;;***
  \f
- ;;;### (autoloads nil "xml" "xml.el" (21974 64192 720009 993000))
+ ;;;### (autoloads nil "xml" "xml.el" (22092 27718 620268 464000))
  ;;; Generated autoloads from xml.el
  
  (autoload 'xml-parse-file "xml" "\
@@@ -32122,8 -32131,8 +32138,8 @@@ Both features can be combined by provid
  
  ;;;***
  \f
- ;;;### (autoloads nil "xmltok" "nxml/xmltok.el" (21670 32331 385639
- ;;;;;;  720000))
+ ;;;### (autoloads nil "xmltok" "nxml/xmltok.el" (22086 11930 30062
+ ;;;;;;  731000))
  ;;; Generated autoloads from nxml/xmltok.el
  
  (autoload 'xmltok-get-declared-encoding-position "xmltok" "\
@@@ -32141,10 -32150,15 +32157,15 @@@ If LIMIT is non-nil, then do not consid
  
  ;;;***
  \f
- ;;;### (autoloads nil "xref" "progmodes/xref.el" (22087 6213 784351
- ;;;;;;  952000))
+ ;;;### (autoloads nil "xref" "progmodes/xref.el" (22105 39773 959886
+ ;;;;;;  896000))
  ;;; Generated autoloads from progmodes/xref.el
  
+ (autoload 'xref-find-backend "xref" "\
+ \(fn)" nil nil)
  (autoload 'xref-pop-marker-stack "xref" "\
  Pop back to where \\[xref-find-definitions] was last invoked.
  
@@@ -32199,8 -32213,8 +32220,8 @@@ The argument has the same meaning as i
  
  ;;;***
  \f
- ;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (21852 24382 117243
- ;;;;;;  951000))
+ ;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (22086 11930 402062
+ ;;;;;;  731000))
  ;;; Generated autoloads from xt-mouse.el
  
  (defvar xterm-mouse-mode nil "\
@@@ -32229,7 -32243,7 +32250,7 @@@ down the SHIFT key while pressing the m
  
  ;;;***
  \f
- ;;;### (autoloads nil "yenc" "gnus/yenc.el" (21670 32331 385639 720000))
+ ;;;### (autoloads nil "yenc" "gnus/yenc.el" (22086 11929 854062 731000))
  ;;; Generated autoloads from gnus/yenc.el
  
  (autoload 'yenc-decode-region "yenc" "\
@@@ -32244,7 -32258,7 +32265,7 @@@ Extract file name from an yenc header
  
  ;;;***
  \f
- ;;;### (autoloads nil "zone" "play/zone.el" (21670 32331 385639 720000))
+ ;;;### (autoloads nil "zone" "play/zone.el" (22086 11930 130062 731000))
  ;;; Generated autoloads from play/zone.el
  
  (autoload 'zone "zone" "\
@@@ -32324,13 -32338,12 +32345,13 @@@ Zone out, completely
  ;;;;;;  "cedet/srecode/loaddefs.el" "cedet/srecode/map.el" "cedet/srecode/mode.el"
  ;;;;;;  "cedet/srecode/semantic.el" "cedet/srecode/srt.el" "cedet/srecode/table.el"
  ;;;;;;  "cedet/srecode/template.el" "cedet/srecode/texi.el" "cus-dep.el"
 -;;;;;;  "dframe.el" "dired-aux.el" "dired-x.el" "dom.el" "dos-fns.el"
 -;;;;;;  "dos-vars.el" "dos-w32.el" "dynamic-setting.el" "emacs-lisp/avl-tree.el"
 -;;;;;;  "emacs-lisp/bindat.el" "emacs-lisp/byte-opt.el" "emacs-lisp/cl-extra.el"
 -;;;;;;  "emacs-lisp/cl-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"
 +;;;;;;  "dframe.el" "dired-aux.el" "dired-loaddefs.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-loaddefs.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"
  ;;;;;;  "gnus/nntp.el" "gnus/nnvirtual.el" "gnus/nnweb.el" "gnus/registry.el"
  ;;;;;;  "gnus/rfc1843.el" "gnus/rfc2045.el" "gnus/rfc2047.el" "gnus/rfc2231.el"
  ;;;;;;  "gnus/rtree.el" "gnus/sieve-manage.el" "gnus/smime.el" "gnus/spam-stat.el"
- ;;;;;;  "gnus/spam-wash.el" "hex-util.el" "hfy-cmap.el" "htmlfontify-loaddefs.el"
- ;;;;;;  "ibuf-ext.el" "ibuffer-loaddefs.el" "international/charscript.el"
- ;;;;;;  "international/fontset.el" "international/iso-ascii.el" "international/ja-dic-cnv.el"
- ;;;;;;  "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/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/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/thai.el" "leim/quail/tibetan.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/py-punct.el"
+ ;;;;;;  "leim/quail/pypunct-b5.el" "leim/quail/rfc1345.el" "leim/quail/sgml-input.el"
+ ;;;;;;  "leim/quail/sisheng.el" "leim/quail/slovak.el" "leim/quail/symbol-ksc.el"
+ ;;;;;;  "leim/quail/tamil-dvorak.el" "leim/quail/thai.el" "leim/quail/tibetan.el"
  ;;;;;;  "leim/quail/viqr.el" "leim/quail/vntelex.el" "leim/quail/vnvni.el"
  ;;;;;;  "leim/quail/welsh.el" "loadup.el" "mail/blessmail.el" "mail/mailheader.el"
 -;;;;;;  "mail/mspools.el" "mail/rfc2368.el" "mail/rfc822.el" "mail/rmail-spam-filter.el"
 -;;;;;;  "mail/rmailedit.el" "mail/rmailkwd.el" "mail/rmailmm.el"
 -;;;;;;  "mail/rmailmsc.el" "mail/rmailsort.el" "mail/rmailsum.el"
 -;;;;;;  "mail/undigest.el" "mh-e/mh-acros.el" "mh-e/mh-alias.el"
 -;;;;;;  "mh-e/mh-buffers.el" "mh-e/mh-compat.el" "mh-e/mh-funcs.el"
 -;;;;;;  "mh-e/mh-gnus.el" "mh-e/mh-identity.el" "mh-e/mh-inc.el"
 -;;;;;;  "mh-e/mh-junk.el" "mh-e/mh-letter.el" "mh-e/mh-limit.el"
 +;;;;;;  "mail/mspools.el" "mail/rfc2368.el" "mail/rfc822.el" "mail/rmail-loaddefs.el"
 +;;;;;;  "mail/rmail-spam-filter.el" "mail/rmailedit.el" "mail/rmailkwd.el"
 +;;;;;;  "mail/rmailmm.el" "mail/rmailmsc.el" "mail/rmailsort.el"
 +;;;;;;  "mail/rmailsum.el" "mail/undigest.el" "mh-e/mh-acros.el"
 +;;;;;;  "mh-e/mh-alias.el" "mh-e/mh-buffers.el" "mh-e/mh-compat.el"
 +;;;;;;  "mh-e/mh-funcs.el" "mh-e/mh-gnus.el" "mh-e/mh-identity.el"
 +;;;;;;  "mh-e/mh-inc.el" "mh-e/mh-junk.el" "mh-e/mh-letter.el" "mh-e/mh-limit.el"
  ;;;;;;  "mh-e/mh-loaddefs.el" "mh-e/mh-mime.el" "mh-e/mh-print.el"
  ;;;;;;  "mh-e/mh-scan.el" "mh-e/mh-search.el" "mh-e/mh-seq.el" "mh-e/mh-show.el"
  ;;;;;;  "mh-e/mh-speed.el" "mh-e/mh-thread.el" "mh-e/mh-tool-bar.el"
  ;;;;;;  "net/dns.el" "net/eudc-vars.el" "net/eudcb-bbdb.el" "net/eudcb-ldap.el"
  ;;;;;;  "net/eudcb-mab.el" "net/eudcb-ph.el" "net/hmac-def.el" "net/hmac-md5.el"
  ;;;;;;  "net/imap.el" "net/ldap.el" "net/mairix.el" "net/newsticker.el"
- ;;;;;;  "net/nsm.el" "net/puny.el" "net/rfc2104.el" "net/sasl-cram.el"
- ;;;;;;  "net/sasl-digest.el" "net/sasl-scram-rfc.el" "net/sasl.el"
- ;;;;;;  "net/shr-color.el" "net/soap-inspect.el" "net/socks.el" "net/tls.el"
- ;;;;;;  "net/tramp-adb.el" "net/tramp-cache.el" "net/tramp-cmds.el"
- ;;;;;;  "net/tramp-compat.el" "net/tramp-gvfs.el" "net/tramp-gw.el"
- ;;;;;;  "net/tramp-loaddefs.el" "net/tramp-sh.el" "net/tramp-smb.el"
- ;;;;;;  "net/tramp-uu.el" "net/trampver.el" "net/zeroconf.el" "notifications.el"
- ;;;;;;  "nxml/nxml-enc.el" "nxml/nxml-maint.el" "nxml/nxml-ns.el"
- ;;;;;;  "nxml/nxml-outln.el" "nxml/nxml-parse.el" "nxml/nxml-rap.el"
- ;;;;;;  "nxml/nxml-util.el" "nxml/rng-dt.el" "nxml/rng-loc.el" "nxml/rng-maint.el"
- ;;;;;;  "nxml/rng-match.el" "nxml/rng-parse.el" "nxml/rng-pttrn.el"
- ;;;;;;  "nxml/rng-uri.el" "nxml/rng-util.el" "nxml/xsd-regexp.el"
- ;;;;;;  "org/ob-C.el" "org/ob-R.el" "org/ob-asymptote.el" "org/ob-awk.el"
- ;;;;;;  "org/ob-calc.el" "org/ob-clojure.el" "org/ob-comint.el" "org/ob-core.el"
- ;;;;;;  "org/ob-css.el" "org/ob-ditaa.el" "org/ob-dot.el" "org/ob-emacs-lisp.el"
- ;;;;;;  "org/ob-eval.el" "org/ob-exp.el" "org/ob-fortran.el" "org/ob-gnuplot.el"
- ;;;;;;  "org/ob-haskell.el" "org/ob-io.el" "org/ob-java.el" "org/ob-js.el"
- ;;;;;;  "org/ob-keys.el" "org/ob-latex.el" "org/ob-ledger.el" "org/ob-lilypond.el"
+ ;;;;;;  "net/nsm.el" "net/rfc2104.el" "net/sasl-cram.el" "net/sasl-digest.el"
+ ;;;;;;  "net/sasl-scram-rfc.el" "net/sasl.el" "net/shr-color.el"
+ ;;;;;;  "net/soap-inspect.el" "net/socks.el" "net/tls.el" "net/tramp-adb.el"
+ ;;;;;;  "net/tramp-cache.el" "net/tramp-cmds.el" "net/tramp-compat.el"
+ ;;;;;;  "net/tramp-gvfs.el" "net/tramp-gw.el" "net/tramp-loaddefs.el"
+ ;;;;;;  "net/tramp-sh.el" "net/tramp-smb.el" "net/tramp-uu.el" "net/trampver.el"
+ ;;;;;;  "net/zeroconf.el" "notifications.el" "nxml/nxml-enc.el" "nxml/nxml-maint.el"
+ ;;;;;;  "nxml/nxml-ns.el" "nxml/nxml-outln.el" "nxml/nxml-parse.el"
+ ;;;;;;  "nxml/nxml-rap.el" "nxml/nxml-util.el" "nxml/rng-dt.el" "nxml/rng-loc.el"
+ ;;;;;;  "nxml/rng-maint.el" "nxml/rng-match.el" "nxml/rng-parse.el"
+ ;;;;;;  "nxml/rng-pttrn.el" "nxml/rng-uri.el" "nxml/rng-util.el"
+ ;;;;;;  "nxml/xsd-regexp.el" "obarray.el" "org/ob-C.el" "org/ob-R.el"
+ ;;;;;;  "org/ob-asymptote.el" "org/ob-awk.el" "org/ob-calc.el" "org/ob-clojure.el"
+ ;;;;;;  "org/ob-comint.el" "org/ob-core.el" "org/ob-css.el" "org/ob-ditaa.el"
+ ;;;;;;  "org/ob-dot.el" "org/ob-emacs-lisp.el" "org/ob-eval.el" "org/ob-exp.el"
+ ;;;;;;  "org/ob-fortran.el" "org/ob-gnuplot.el" "org/ob-haskell.el"
+ ;;;;;;  "org/ob-io.el" "org/ob-java.el" "org/ob-js.el" "org/ob-keys.el"
+ ;;;;;;  "org/ob-latex.el" "org/ob-ledger.el" "org/ob-lilypond.el"
  ;;;;;;  "org/ob-lisp.el" "org/ob-lob.el" "org/ob-makefile.el" "org/ob-matlab.el"
  ;;;;;;  "org/ob-maxima.el" "org/ob-mscgen.el" "org/ob-ocaml.el" "org/ob-octave.el"
  ;;;;;;  "org/ob-org.el" "org/ob-perl.el" "org/ob-picolisp.el" "org/ob-plantuml.el"
  ;;;;;;  "progmodes/ebnf-dtd.el" "progmodes/ebnf-ebx.el" "progmodes/ebnf-iso.el"
  ;;;;;;  "progmodes/ebnf-otz.el" "progmodes/ebnf-yac.el" "progmodes/idlw-complete-structtag.el"
  ;;;;;;  "progmodes/idlw-help.el" "progmodes/idlw-toolbar.el" "progmodes/mantemp.el"
- ;;;;;;  "progmodes/xscheme.el" "ps-def.el" "ps-mule.el" "ps-print-loaddefs.el"
- ;;;;;;  "ps-samp.el" "sb-image.el" "scroll-bar.el" "soundex.el" "subdirs.el"
- ;;;;;;  "tempo.el" "textmodes/bib-mode.el" "textmodes/makeinfo.el"
- ;;;;;;  "textmodes/page-ext.el" "textmodes/refbib.el" "textmodes/refer.el"
- ;;;;;;  "textmodes/reftex-auc.el" "textmodes/reftex-cite.el" "textmodes/reftex-dcr.el"
- ;;;;;;  "textmodes/reftex-global.el" "textmodes/reftex-index.el"
- ;;;;;;  "textmodes/reftex-loaddefs.el" "textmodes/reftex-parse.el"
- ;;;;;;  "textmodes/reftex-ref.el" "textmodes/reftex-sel.el" "textmodes/reftex-toc.el"
- ;;;;;;  "textmodes/texnfo-upd.el" "timezone.el" "tooltip.el" "tree-widget.el"
- ;;;;;;  "url/url-about.el" "url/url-cookie.el" "url/url-dired.el"
- ;;;;;;  "url/url-domsuf.el" "url/url-expand.el" "url/url-ftp.el"
- ;;;;;;  "url/url-future.el" "url/url-history.el" "url/url-imap.el"
- ;;;;;;  "url/url-methods.el" "url/url-nfs.el" "url/url-proxy.el"
- ;;;;;;  "url/url-vars.el" "vc/ediff-diff.el" "vc/ediff-init.el" "vc/ediff-merg.el"
- ;;;;;;  "vc/ediff-ptch.el" "vc/ediff-vers.el" "vc/ediff-wind.el"
- ;;;;;;  "vc/pcvs-info.el" "vc/pcvs-parse.el" "vc/pcvs-util.el" "vc/vc-dav.el"
- ;;;;;;  "vc/vc-filewise.el" "vcursor.el" "vt-control.el" "vt100-led.el"
- ;;;;;;  "w32-fns.el" "w32-vars.el" "x-dnd.el") (22147 48445 679722
- ;;;;;;  290000))
+ ;;;;;;  "progmodes/xscheme.el" "ps-def.el" "ps-mule.el" "ps-samp.el"
+ ;;;;;;  "sb-image.el" "scroll-bar.el" "soundex.el" "subdirs.el" "tempo.el"
+ ;;;;;;  "textmodes/bib-mode.el" "textmodes/makeinfo.el" "textmodes/page-ext.el"
+ ;;;;;;  "textmodes/refbib.el" "textmodes/refer.el" "textmodes/reftex-auc.el"
+ ;;;;;;  "textmodes/reftex-cite.el" "textmodes/reftex-dcr.el" "textmodes/reftex-global.el"
+ ;;;;;;  "textmodes/reftex-index.el" "textmodes/reftex-parse.el" "textmodes/reftex-ref.el"
+ ;;;;;;  "textmodes/reftex-sel.el" "textmodes/reftex-toc.el" "textmodes/texnfo-upd.el"
+ ;;;;;;  "timezone.el" "tooltip.el" "tree-widget.el" "url/url-about.el"
+ ;;;;;;  "url/url-cookie.el" "url/url-dired.el" "url/url-domsuf.el"
+ ;;;;;;  "url/url-expand.el" "url/url-ftp.el" "url/url-future.el"
+ ;;;;;;  "url/url-history.el" "url/url-imap.el" "url/url-methods.el"
+ ;;;;;;  "url/url-nfs.el" "url/url-proxy.el" "url/url-vars.el" "vc/ediff-diff.el"
+ ;;;;;;  "vc/ediff-init.el" "vc/ediff-merg.el" "vc/ediff-ptch.el"
+ ;;;;;;  "vc/ediff-vers.el" "vc/ediff-wind.el" "vc/pcvs-info.el" "vc/pcvs-parse.el"
+ ;;;;;;  "vc/pcvs-util.el" "vc/vc-dav.el" "vc/vc-filewise.el" "vcursor.el"
+ ;;;;;;  "vt-control.el" "vt100-led.el" "w32-fns.el" "w32-vars.el"
+ ;;;;;;  "x-dnd.el") (22108 15942 558032 987000))
  
  ;;;***
  \f
diff --combined lisp/net/eww.el
index e0964932d7d8b79e6aacecbbb0ec36f87315b304,107df24e865a357704db298313034cb564b8a160..fabf36ba263f0c8569d9c6bc59a0891da05e4345
@@@ -31,7 -31,6 +31,7 @@@
  (require 'url-queue)
  (require 'url-util)                   ; for url-get-url-at-point
  (require 'mm-url)
 +(require 'puny)
  (eval-when-compile (require 'subr-x)) ;; for string-trim
  
  (defgroup eww nil
@@@ -94,7 -93,7 +94,7 @@@ desktop.  Otherwise, such entries will 
  
  (defcustom eww-restore-desktop nil
    "How to restore EWW buffers on `desktop-restore'.
- If t or 'auto, the buffers will be reloaded automatically.
+ If t or `auto', the buffers will be reloaded automatically.
  If nil, buffers will require manual reload, and will contain the text
  specified in `eww-restore-reload-prompt' instead of the actual Web
  page contents."
@@@ -276,13 -275,6 +276,13 @@@ word(s) will be searched for via `eww-s
             (setq url (concat eww-search-prefix
                               (replace-regexp-in-string " " "+" url))))))
    (eww-setup-buffer)
 +  ;; Check whether the domain only uses "Highly Restricted" Unicode
 +  ;; IDNA characters.  If not, transform to punycode to indicate that
 +  ;; there may be funny business going on.
 +  (let ((parsed (url-generic-parse-url url)))
 +    (unless (puny-highly-restrictive-domain-p (url-host parsed))
 +      (setf (url-host parsed) (puny-encode-domain (url-host parsed)))
 +      (setq url (url-recreate-url parsed))))
    (plist-put eww-data :url url)
    (plist-put eww-data :title "")
    (eww-update-header-line-format)
@@@ -330,7 -322,8 +330,8 @@@ Currently this means either text/html o
                    (or (cdr (assq 'charset (cdr content-type)))
                        (eww-detect-charset (eww-html-p (car content-type)))
                        "utf-8"))))
-        (data-buffer (current-buffer)))
+        (data-buffer (current-buffer))
+        last-coding-system-used)
      ;; Save the https peer status.
      (with-current-buffer buffer
        (plist-put eww-data :peer (plist-get status :peer)))
           ((string-match-p "\\`image/" (car content-type))
            (eww-display-image buffer))
           (t
-           (eww-display-raw buffer encode)))
+           (eww-display-raw buffer (or encode charset 'utf-8))))
          (with-current-buffer buffer
            (plist-put eww-data :url url)
            (eww-update-header-line-format)
            (setq eww-history-position 0)
+           (and last-coding-system-used
+                (set-buffer-file-coding-system last-coding-system-used))
            (run-hooks 'eww-after-render-hook)))
        (kill-buffer data-buffer))))
  
             (list
              'base (list (cons 'href url))
              (progn
-               (when (or (and encode
-                              (not (eq charset encode)))
-                         (not (eq charset 'utf-8)))
-                 (condition-case nil
-                     (decode-coding-region (point) (point-max)
-                                           (or encode charset))
-                   (coding-system-error nil)))
+               (setq encode (or encode charset 'utf-8))
+               (condition-case nil
+                   (decode-coding-region (point) (point-max) encode)
+                 (coding-system-error nil))
                (libxml-parse-html-region (point) (point-max))))))
        (source (and (null document)
                     (buffer-substring (point) (point-max)))))
      (with-current-buffer buffer
+       (setq bidi-paragraph-direction 'left-to-right)
        (plist-put eww-data :source source)
        (plist-put eww-data :dom document)
        (let ((inhibit-read-only t)
        (let ((inhibit-read-only t))
        (erase-buffer)
        (insert data)
-       (unless (eq encode 'utf-8)
-         (encode-coding-region (point-min) (1+ (length data)) 'utf-8)
-         (condition-case nil
-             (decode-coding-region (point-min) (1+ (length data)) encode)
-           (coding-system-error nil))))
+       (condition-case nil
+           (decode-coding-region (point-min) (1+ (length data)) encode)
+         (coding-system-error nil)))
        (goto-char (point-min)))))
  
  (defun eww-display-image (buffer)
@@@ -751,8 -742,7 +750,7 @@@ the like.
    (setq-local desktop-save-buffer #'eww-desktop-misc-data)
    ;; multi-page isearch support
    (setq-local multi-isearch-next-buffer-function #'eww-isearch-next-buffer)
-   (setq truncate-lines t
-         bidi-paragraph-direction 'left-to-right)
+   (setq truncate-lines t)
    (buffer-disable-undo)
    (setq buffer-read-only t))
  
@@@ -1944,7 -1934,7 +1942,7 @@@ Generally, the list should not include 
  
  (defun eww-restore-desktop (file-name buffer-name misc-data)
    "Restore an eww buffer from its desktop file record.
- If `eww-restore-desktop' is t or 'auto, this function will also
+ If `eww-restore-desktop' is t or `auto', this function will also
  initiate the retrieval of the respective URI in the background.
  Otherwise, the restored buffer will contain a prompt to do so by using
  \\[eww-reload]."
diff --combined lisp/ses.el
index ee2bcd54b009046b2929b6df44764f580c3d08da,d15483f4783baa22c15fbaa14706e27707dd6e36..86b0ae672acc539b079519612d07da7f5c6af42d
@@@ -336,7 -336,7 +336,7 @@@ default printer and then modify its out
    '(ses--col-widths  -5 ses--col-printers -4 ses--default-printer -3
      ses--header-row  -2 ses--file-format   1 ses--numrows          2
      ses--numcols      3 ses--numlocprn     4)
-   "Offsets from 'Global parameters' line to various parameter lines in the
+   "Offsets from \"Global parameters\" line to various parameter lines in the
  data area of a spreadsheet.")
  
  (defconst ses-paramfmt-plist
      ses--numrows          " %S ;numrows"
      ses--numcols          " %S ;numcols"
      ses--numlocprn        " %S ;numlocprn")
-   "Formats of 'Global parameters' various parameters in the data
+   "Formats of \"Global parameters\" various parameters in the data
  area of a spreadsheet.")
  
  ;;
  
  (defvar ses-relocate-return nil
    "Set by `ses-relocate-formula' and `ses-relocate-range', read by
- `ses-relocate-all'.  Set to 'delete if a cell-reference was deleted from a
- formula--so the formula needs recalculation.  Set to 'range if the size of a
+ `ses-relocate-all'.  Set to `delete' if a cell-reference was deleted from a
+ formula--so the formula needs recalculation.  Set to `range' if the size of a
  `ses-range' was changed--so both the formula's value and list of dependents
  need to be recalculated.")
  
@@@ -672,7 -672,7 +672,7 @@@ checking that it is a valid printer fun
        (add-to-list 'ses-read-printer-history (prin1-to-string printer))))
  
  (defun ses-formula-record (formula)
-   "If FORMULA is of the form 'symbol, add it to the list of symbolic formulas
+   "If FORMULA is of the form \\='SYMBOL, add it to the list of symbolic formulas
  for this spreadsheet."
    (when (and (eq (car-safe formula) 'quote)
             (symbolp (cadr formula)))
        (concat (ses-column-letter (1- (/ col 26))) units))))
  
  (defun ses-create-cell-symbol (row col)
-   "Produce a symbol that names the cell (ROW,COL).  (0,0) => 'A1."
+   "Produce a symbol that names the cell (ROW,COL).  (0,0) => A1."
    (intern (concat (ses-column-letter col) (number-to-string (1+ row)))))
  
  (defun ses-decode-cell-symbol (str)
@@@ -1114,10 -1114,12 +1114,10 @@@ region, or nil if cursor is not at a ce
  
  (defun ses-check-curcell (&rest args)
    "Signal an error if `ses--curcell' is inappropriate.
- The end marker is appropriate if some argument is 'end.
- A range is appropriate if some argument is 'range.
- A single cell is appropriate unless some argument is 'needrange."
+ The end marker is appropriate if some argument is `end'.
+ A range is appropriate if some argument is `range'.
+ A single cell is appropriate unless some argument is `needrange'."
 -  (if (eq ses--curcell t)
 -      ;; curcell recalculation was postponed, but user typed ahead.
 -      (ses-set-curcell))
 +  (ses-set-curcell); fix  bug#21054
    (cond
     ((not ses--curcell)
      (or (memq 'end args)
@@@ -1283,7 -1285,7 +1283,7 @@@ printer signaled one (and \"%s\" is use
                            (and locprn
                                 (ses--locprn-compiled locprn))))
                     printer)
 -               (or value "")))
 +               value))
        (if (stringp value)
            value
          (or (stringp (car-safe value))
@@@ -1495,7 -1497,7 +1495,7 @@@ If ROWINCR or COLINCR is negative, refe
  removed.  Example:
        (ses-relocate-formula \\='(+ A1 B2 D3) 0 1 0 -1)
        => (+ A1 C3)
- Sets `ses-relocate-return' to 'delete if cell-references were removed."
+ Sets `ses-relocate-return' to `delete' if cell-references were removed."
    (let (rowcol result)
      (if (or (atom formula) (eq (car formula) 'quote))
        (if (and (setq rowcol (ses-sym-rowcol formula))
        (nreverse result))))
  
  (defun ses-relocate-range (range startrow startcol rowincr colincr)
-   "Relocate one RANGE, of the form '(ses-range min max).  Cells starting
+   "Relocate one RANGE, of the form (SES-RANGE MIN MAX).  Cells starting
  at (STARTROW,STARTCOL) are being shifted by (ROWINCR,COLINCR).  Result is the
  new range, or nil if the entire range is deleted.  If new rows are being added
  just beyond the end of a row range, or new columns just beyond a column range,
@@@ -2859,7 -2861,7 +2859,7 @@@ SES attributes recording the contents o
  
  (defun ses-copy-region-helper (line)
    "Converts one line (of a rectangle being extracted from a spreadsheet) to
- external form by attaching to each print cell a 'ses attribute that records
+ external form by attaching to each print cell a `ses' attribute that records
  the corresponding data cell."
    (or (> (length line) 1)
        (error "Empty range"))
@@@ -2905,7 -2907,7 +2905,7 @@@ We clear the killed cells instead of de
  (defun ses--advice-yank (yank-fun &optional arg &rest args)
    "In SES mode, the yanked text is inserted as cells.
  
- If the text contains 'ses attributes (meaning it went to the kill-ring from a
+ If the text contains `ses' attributes (meaning it went to the kill-ring from a
  SES buffer), the formulas and print functions are restored for the cells.  If
  the text contains tabs, this is an insertion of tab-separated formulas.
  Otherwise the text is inserted as the formula for the current cell.
@@@ -2917,7 -2919,7 +2917,7 @@@ prefix to specify insertion without rel
  formulas refer to cells outside the yanked text.
  
  When inserting formulas, the text is treated as a string constant if it doesn't
- make sense as a sexp or would otherwise be considered a symbol.  Use 'sym to
+ make sense as a sexp or would otherwise be considered a symbol.  Use `sym' to
  explicitly insert a symbol, or use the C-u prefix to treat all unmarked words
  as symbols."
    (if (not (and (derived-mode-p 'ses-mode)
@@@ -2960,7 -2962,7 +2960,7 @@@ previous insertion.
    (setq this-command 'yank))
  
  (defun ses-yank-cells (text arg)
-   "If the TEXT has a proper set of 'ses attributes, insert the text as
+   "If the TEXT has a proper set of `ses' attributes, insert the text as
  cells, else return nil.  The cells are reprinted--the supplied text is
  ignored because the column widths, default printer, etc. at yank time might
  be different from those at kill-time.  ARG is a list to indicate that
@@@ -3408,17 -3410,15 +3408,17 @@@ highlighted range in the spreadsheet.
      (setf (ses-cell--symbol cell) new-name)
      (makunbound sym)
      (and curcell (setq ses--curcell new-name))
 -    (let* ((pos (point))
 -         (inhibit-read-only t)
 -         (col (current-column))
 -         (end (save-excursion
 -                (move-to-column (1+ col))
 -                (if (eolp)
 -                    (+ pos (ses-col-width col) 1)
 -                  (point)))))
 -      (put-text-property pos end 'cursor-intangible new-name))
 +    (save-excursion
 +      (or curcell (ses-goto-print row col))
 +      (let* ((pos (point))
 +             (inhibit-read-only t)
 +             (end (progn
 +                    (move-to-column (+ (current-column) (ses-col-width col)))
 +                    (if (eolp)
 +                        (+ pos (ses-col-width col) 1)
 +                      (forward-char)
 +                      (point)))))
 +        (put-text-property pos end 'cursor-intangible new-name)))
      ;; Update the cell name in the mode-line.
      (force-mode-line-update)))
  
@@@ -3558,7 -3558,7 +3558,7 @@@ is read and how it is formatted
  In the sequel we assume that cells A1, B1, A2 B2 have respective values
  1 2 3 and 4.
  
- Readout direction is specified by a `>v', '`>^', `<v', `<^',
+ Readout direction is specified by a `>v', `>^', `<v', `<^',
  `v>', `v<', `^>', `^<' flag.  For historical reasons, in absence
  of such a flag, a default direction of `^<' is assumed.  This
  way `(ses-range A1 B2 ^>)' will evaluate to `(1 3 2 4)',