]> code.delx.au - gnu-emacs/commitdiff
-
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 30 Jan 2016 19:43:26 +0000 (11:43 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 30 Jan 2016 19:43:26 +0000 (11:43 -0800)
15 files changed:
1  2 
configure.ac
doc/misc/eww.texi
doc/misc/tramp.texi
etc/NEWS
lisp/font-lock.el
lisp/ldefs-boot.el
lisp/net/tramp-cmds.el
lisp/net/tramp-gvfs.el
lisp/org/ChangeLog.1
lisp/progmodes/cc-engine.el
lisp/progmodes/python.el
src/emacs.c
src/window.c
test/manual/etags/c-src/emacs/src/lisp.h
test/manual/etags/el-src/emacs/lisp/progmodes/etags.el

diff --combined configure.ac
index 50bc04b4c87d77b0fb6163826bfdf68cad808e0c,fad556f799248630f71c76e2c03cb7029ba7f9bf..4a0dc56874262da740fdda8bf21aa89c12d336c3
@@@ -23,7 -23,7 +23,7 @@@ dnl  along with GNU Emacs.  If not, se
  
  AC_PREREQ(2.65)
  dnl Note this is parsed by (at least) make-dist and lisp/cedet/ede/emacs.el.
 -AC_INIT(GNU Emacs, 25.0.50, bug-gnu-emacs@gnu.org)
 +AC_INIT(GNU Emacs, 25.1.50, bug-gnu-emacs@gnu.org)
  
  dnl Set emacs_config_options to the options of 'configure', quoted for the shell,
  dnl and then quoted again for a C string.  Separate options with spaces.
@@@ -33,7 -33,7 +33,7 @@@ emacs_config_options
  optsep=
  dnl This is the documented way to record the args passed to configure,
  dnl rather than $ac_configure_args.
- for opt in ${1+"$@"} CFLAGS CPPFLAGS LDFLAGS; do
+ for opt in "$@" CFLAGS CPPFLAGS LDFLAGS; do
    case $opt in
      -n | --no-create | --no-recursion)
        continue ;;
@@@ -330,7 -330,7 +330,7 @@@ OPTION_DEFAULT_ON([tiff],[don't compil
  OPTION_DEFAULT_ON([gif],[don't compile with GIF image support])
  OPTION_DEFAULT_ON([png],[don't compile with PNG image support])
  OPTION_DEFAULT_ON([rsvg],[don't compile with SVG image support])
- OPTION_DEFAULT_OFF([cairo],[compile with Cairo drawing])
+ OPTION_DEFAULT_OFF([cairo],[compile with Cairo drawing (experimental)])
  OPTION_DEFAULT_ON([xml2],[don't compile with XML parsing support])
  OPTION_DEFAULT_ON([imagemagick],[don't compile with ImageMagick image support])
  
@@@ -3141,13 -3141,13 +3141,13 @@@ AC_SUBST(LIBOTF_LIBS
  AC_SUBST(M17N_FLT_CFLAGS)
  AC_SUBST(M17N_FLT_LIBS)
  
USE_CAIRO=no
HAVE_CAIRO=no
  if test "${HAVE_X11}" = "yes"; then
    if test "${with_cairo}" != "no"; then
      CAIRO_REQUIRED=1.12.0
      CAIRO_MODULE="cairo >= $CAIRO_REQUIRED"
-     EMACS_CHECK_MODULES(CAIRO, $CAIRO_MODULE, USE_CAIRO=yes, :)
-     if test $USE_CAIRO = yes; then
+     EMACS_CHECK_MODULES(CAIRO, $CAIRO_MODULE)
+     if test $HAVE_CAIRO = yes; then
        AC_DEFINE(USE_CAIRO, 1, [Define to 1 if using cairo.])
      else
        AC_MSG_ERROR([cairo requested but not found.])
@@@ -4245,7 -4245,7 +4245,7 @@@ els
    SEPCHAR=':'
  fi
  AC_DEFINE_UNQUOTED(SEPCHAR, ['$SEPCHAR'], [Character that separates PATH elements.])
 -dnl This is for MinGW, and is used in test/automated/Makefile.in.
 +dnl This is for MinGW, and is used in test/Makefile.in.
  dnl The MSYS Bash has heuristics for replacing ':' with ';' when it
  dnl decides that a command-line argument to be passed to a MinGW program
  dnl is a PATH-style list of directories.  But that heuristics plays it
@@@ -4920,7 -4920,7 +4920,7 @@@ if test "${HAVE_X_WINDOWS}" = "yes" ; t
    XMENU_OBJ=xmenu.o
    XOBJ="xterm.o xfns.o xselect.o xrdb.o xsmfns.o xsettings.o"
    FONT_OBJ=xfont.o
-   if test "$USE_CAIRO" = "yes"; then
+   if test "$HAVE_CAIRO" = "yes"; then
      FONT_OBJ="ftfont.o ftcrfont.o"
    elif test "$HAVE_XFT" = "yes"; then
      FONT_OBJ="$FONT_OBJ ftfont.o xftfont.o ftxfont.o"
@@@ -5268,7 -5268,7 +5268,7 @@@ for opt in XAW3D XPM JPEG TIFF GIF PNG 
  
      case $opt in
        NOTIFY|ACL) eval val=\${${opt}_SUMMARY} ;;
-       CAIRO|TOOLKIT_SCROLL_BARS|X_TOOLKIT) eval val=\${USE_$opt} ;;
+       TOOLKIT_SCROLL_BARS|X_TOOLKIT) eval val=\${USE_$opt} ;;
        *) eval val=\${HAVE_$opt} ;;
      esac
      case x$val in
@@@ -5295,7 -5295,7 +5295,7 @@@ AS_ECHO(["  Does Emacs use -lXaw3d
    Does Emacs use a gif library?                           ${HAVE_GIF} $LIBGIF
    Does Emacs use a png library?                           ${HAVE_PNG} $LIBPNG
    Does Emacs use -lrsvg-2?                                ${HAVE_RSVG}
-   Does Emacs use cairo?                                   ${USE_CAIRO}
+   Does Emacs use cairo?                                   ${HAVE_CAIRO}
    Does Emacs use imagemagick?                             ${HAVE_IMAGEMAGICK}
    Does Emacs support sound?                               ${HAVE_SOUND}
    Does Emacs use -lgpm?                                   ${HAVE_GPM}
@@@ -5389,13 -5389,13 +5389,13 @@@ AC_CONFIG_FILES([Makefile lib/Makefile 
         leim/Makefile nextstep/Makefile nt/Makefile])
  
  dnl test/ is not present in release tarfiles.
 -opt_makefile=test/automated/Makefile
 +opt_makefile=test/Makefile
  
  if test -f "$srcdir/$opt_makefile.in"; then
    SUBDIR_MAKEFILES="$SUBDIR_MAKEFILES $opt_makefile"
    dnl Again, it's best not to use a variable.  Though you can add
    dnl ", [], [opt_makefile='$opt_makefile']" and it should work.
 -  AC_CONFIG_FILES([test/automated/Makefile])
 +  AC_CONFIG_FILES([test/Makefile])
  fi
  
  
diff --combined doc/misc/eww.texi
index 14f0a8d0ea2b7a6dea0b755f8bfc5dc35ad91aea,9bc80fbd10d134aaa03415d68799d6bc2da5b7df..0e9bedbe1d025d5f886e67a6e47ba6cb14f39014
@@@ -109,12 -109,6 +109,12 @@@ only display this part.  This usually g
    The @kbd{F} command (@code{eww-toggle-fonts}) toggles whether to use
  variable-pitch fonts or not.  This sets the @code{shr-use-fonts} variable.
  
 +@findex eww-toggle-colors
 +@findex shr-use-colors
 +@kindex F
 +  The @kbd{C} command (@code{eww-toggle-colors}) toggles whether to use
 +HTML-specified colors or not.  This sets the @code{shr-use-colors} variable.
 +
  @findex eww-download
  @vindex eww-download-directory
  @kindex d
@@@ -168,8 -162,8 +168,8 @@@ You can view stored bookmarks with @kbd
  @kindex S
  @cindex Multiple Buffers
    To get summary of currently opened EWW buffers, press @kbd{S}
- (@code{eww-list-buffers}).  The @file{*eww buffers*} buffer allows to
- quickly kill, flip through and switch to specific EWW buffer.
+ (@code{eww-list-buffers}).  The @file{*eww buffers*} buffer allows you
to quickly kill, flip through and switch to specific EWW buffer.
  
  @findex eww-browse-with-external-browser
  @vindex shr-external-browser
diff --combined doc/misc/tramp.texi
index 37bf7ea8bc48d792878284555b97404d4ef4b3e5,7bf2e532e019887940d6a2a7362eb34f4c557cf6..d01f9be9fbfc0695404d098d1e6946050b538b39
@@@ -51,10 -51,10 +51,10 @@@ copy and modify this GNU manual.'
  @end copying
  
  @c Entries for @command{install-info} to use
 -@dircategory @value{emacsname} network features
 +@dircategory Emacs network features
  @direntry
  * TRAMP: (tramp).               Transparent Remote Access, Multiple Protocol
 -                                  @value{emacsname} remote file access via ssh and scp.
 +                                  Emacs remote file access via ssh and scp.
  @end direntry
  
  @titlepage
  @top @value{tramp} version @value{trampver} User Manual
  
  This file documents @value{tramp} version @value{trampver}, a remote file
 -editing package for @value{emacsname}.
 +editing package for Emacs.
  
  @value{tramp} stands for ``Transparent Remote (file) Access, Multiple
  Protocol''.  This package provides remote file editing, similar to
 -@value{ftppackagename}.
 +Ange FTP.
  
 -The difference is that @value{ftppackagename} uses FTP to transfer
 -files between the local and the remote host, whereas @value{tramp} uses a
 -combination of @command{rsh} and @command{rcp} or other work-alike
 -programs, such as @command{ssh}/@command{scp}.
 +The difference is that Ange FTP uses FTP to transfer files between the
 +local and the remote host, whereas @value{tramp} uses a combination of
 +@command{rsh} and @command{rcp} or other work-alike programs, such as
 +@command{ssh}/@command{scp}.
  
  You can find the latest version of this document on the web at
  @uref{http://www.gnu.org/software/tramp/}.
  
 -@c Pointer to the other Emacs flavor is necessary only in case of
 -@c standalone installation.
 -@ifset installchapter
 -The manual has been generated for @value{emacsname}.
 -@ifinfo
 -If you want to read the info pages for @value{emacsothername}, you
 -should read in @ref{Installation} how to create them.
 -@end ifinfo
 -@ifhtml
 -If you're using the other Emacs flavor, you should read the
 -@uref{@value{emacsotherfilename}, @value{emacsothername}} pages.
 -@end ifhtml
 -@end ifset
 -
  @ifhtml
  The latest release of @value{tramp} is available for
  @uref{ftp://ftp.gnu.org/gnu/tramp/, download}, or you may see
@@@ -123,7 -137,7 +123,7 @@@ For the end user
  * Obtaining Tramp::             How to obtain @value{tramp}.
  * History::                     History of @value{tramp}.
  @ifset installchapter
 -* Installation::                Installing @value{tramp} with your @value{emacsname}.
 +* Installation::                Installing @value{tramp} with your Emacs.
  @end ifset
  * Configuration::               Configuring @value{tramp} for use.
  * Usage::                       An overview of the operation of @value{tramp}.
@@@ -136,6 -150,7 +136,6 @@@ For the developer
                                  How file names, directories and localnames
                                    are mangled and managed.
  * Traces and Profiles::         How to Customize Traces.
 -* Issues::                      Debatable Issues and What Was Decided.
  
  * GNU Free Documentation License:: The license for this documentation.
  * Function Index::              @value{tramp} functions.
   --- The Detailed Node Listing ---
  @c
  @ifset installchapter
 -Installing @value{tramp} with your @value{emacsname}
 +Installing @value{tramp} with your Emacs
  
  * Installation parameters::     Parameters in order to control installation.
  * Load paths::                  How to plug-in @value{tramp} into your environment.
@@@ -158,8 -173,12 +158,8 @@@ Configuring @value{tramp} for us
  * Connection types::            Types of connections to remote hosts.
  * Inline methods::              Inline methods.
  * External methods::            External methods.
 -@ifset emacsgvfs
  * GVFS based methods::          GVFS based external methods.
 -@end ifset
 -@ifset emacsgw
  * Gateway methods::             Gateway methods.
 -@end ifset
  * Default Method::              Selecting a default method.
  * Default User::                Selecting a default user.
  * Default Host::                Selecting a default host.
@@@ -181,13 -200,15 +181,13 @@@ Using @value{tramp
  * File name Syntax::            @value{tramp} file name conventions.
  * File name completion::        File name completion.
  * Ad-hoc multi-hops::           Declaring multiple hops in the file name.
 -* Remote processes::            Integration with other @value{emacsname} packages.
 +* Remote processes::            Integration with other Emacs packages.
  * Cleanup remote connections::  Cleanup remote connections.
  
  How file names, directories and localnames are mangled and managed
  
  * Localname deconstruction::    Breaking a localname into its components.
 -@ifset emacs
  * External packages::           Integration with external Lisp packages.
 -@end ifset
  
  @end detailmenu
  @end menu
  @cindex overview
  
  @value{tramp} is for transparently accessing remote files from within
 -@value{emacsname}.  @value{tramp} enables an easy, convenient, and
 -consistent interface to remote files as if they are local files.
 -@value{tramp}'s transparency extends to editing, version control, and
 -@code{dired}.
 +Emacs.  @value{tramp} enables an easy, convenient, and consistent
 +interface to remote files as if they are local files.  @value{tramp}'s
 +transparency extends to editing, version control, and @code{dired}.
  
  @value{tramp} can access remote hosts using any number of access
  methods, such as @command{rsh}, @command{rlogin}, @command{telnet},
@@@ -223,7 -245,7 +223,7 @@@ and transparent access
  @value{tramp} temporarily transfers a remote file's contents to the
  local host editing and related operations.  @value{tramp} can also
  transfer files between hosts using standard Emacs interfaces, a
 -benefit of direct integration of @value{tramp} in @value{emacsname}.
 +benefit of direct integration of @value{tramp} in Emacs.
  
  @value{tramp} can transfer files using any number of available host
  programs for remote files, such as @command{rcp}, @command{scp},
@@@ -257,7 -279,8 +257,7 @@@ first time connection to that host, her
  @value{tramp} invokes @samp{telnet @var{host}} or @samp{rsh @var{host}
  -l @var{user}} and establishes an external process to connect to the
  remote host.  @value{tramp} communicates with the process through an
 -@value{emacsname} buffer, which also shows output from the remote
 -host.
 +Emacs buffer, which also shows output from the remote host.
  
  @item
  The remote host may prompt for a login name (for @command{telnet}, for
@@@ -335,7 -358,7 +335,7 @@@ behind the scenes when you open a file 
  
  @c For the end user
  @node Obtaining Tramp
 -@chapter Obtaining Tramp.
 +@chapter Obtaining @value{tramp}
  @cindex obtaining Tramp
  
  @value{tramp} is included as part of Emacs (since Emacs version 22.1).
@@@ -357,7 -380,7 +357,7 @@@ navigation bar at the top
  Another way is to follow the terminal session below:
  
  @example
 -] @strong{cd ~/@value{emacsdir}}
 +] @strong{cd ~/emacs}
  ] @strong{git clone git://git.savannah.gnu.org/tramp.git}
  @end example
  
@@@ -377,14 -400,14 +377,14 @@@ Tramp developers
  @end example
  
  @noindent
 -After one of the above commands, @file{~/@value{emacsdir}/tramp} will
 +After one of the above commands, @file{~/emacs/tramp} will
  containing the latest version of @value{tramp}.
  
  @noindent
  To fetch updates from the repository, use git pull:
  
  @example
 -] @strong{cd ~/@value{emacsdir}/tramp}
 +] @strong{cd ~/emacs/tramp}
  ] @strong{git pull}
  @end example
  
@@@ -393,7 -416,7 +393,7 @@@ Run @command{autoconf} as follows to ge
  @file{configure} script:
  
  @example
 -] @strong{cd ~/@value{emacsdir}/tramp}
 +] @strong{cd ~/emacs/tramp}
  ] @strong{autoconf}
  @end example
  
@@@ -413,16 -436,23 +413,16 @@@ for version control
  April 2000 was the first time when multi-hop methods were added.  In
  July 2002, @value{tramp} unified file names with Ange-FTP@.  In July
  2004, proxy hosts replaced multi-hop methods.  Running commands on
 -remote hosts was introduced in December 2005.
 -@ifset emacsgw
 -Support for gateways since April 2007.
 -@end ifset
 +remote hosts was introduced in December 2005.  Support for gateways
 +since April 2007.
  @ifset emacsgvfs
  GVFS integration started in February 2009.
  @end ifset
 -@ifset emacs
 -Remote commands on Windows hosts since September 2011.
 -@end ifset
 -Ad-hoc multi-hop methods (with a changed syntax) re-enabled in November
 -2011.
 +Remote commands on Windows hosts since September 2011.  Ad-hoc
 +multi-hop methods (with a changed syntax) re-enabled in November 2011.
  
  In November 2012, added Juergen Hoetzel's @file{tramp-adb.el}.
  
 -In December 2001, XEmacs package repository adds @value{tramp}.
 -
  
  @c Installation chapter is necessary only in case of standalone
  @c installation.  Text taken from trampinst.texi.
@@@ -449,8 -479,8 +449,8 @@@ defaults to one of several other option
  types}).
  
  @strong{Note} that some user options and variables described in these
 -examples are not auto loaded by @value{emacsname}.  All examples
 -require @value{tramp} is installed and loaded:
 +examples are not auto loaded by Emacs.  All examples require
 +@value{tramp} is installed and loaded:
  
  @lisp
  (require 'tramp)
  * Connection types::            Types of connections to remote hosts.
  * Inline methods::              Inline methods.
  * External methods::            External methods.
 -@ifset emacsgvfs
  * GVFS based methods::          GVFS based external methods.
 -@end ifset
 -@ifset emacsgw
  * Gateway methods::             Gateway methods.
 -@end ifset
  * Default Method::              Selecting a default method.
                                    Here we also try to help those who
                                    don't have the foggiest which method
@@@ -527,7 -561,7 +527,7 @@@ Inline methods use the same login conne
  contents.  Inline methods are quick and easy for small files.  They
  depend on the availability of suitable encoding and decoding programs
  on the remote host.  For local source and destination, @value{tramp}
 -may use built-in equivalents of such programs in @value{emacsname}.
 +may use built-in equivalents of such programs in Emacs.
  
  Inline methods can work in situations where an external transfer
  program is unavailable.  Inline methods also work when transferring
@@@ -559,6 -593,7 +559,6 @@@ specifies the file size for such optimi
  @command{rsh} is an option for connecting to hosts within local
  networks since @command{rsh} is not as secure as other methods.
  
 -
  @item @option{ssh}
  @cindex method ssh
  @cindex ssh method
@@@ -578,6 -613,7 +578,6 @@@ host name, a hash sign, then a port num
  Connecting to a remote host with @command{telnet} is as insecure
  as the @option{rsh} method.
  
 -
  @item @option{su}
  @cindex method su
  @cindex su method
@@@ -594,16 -630,6 +594,16 @@@ the host returned by the function @comm
  Similar to @option{su} method, @option{sudo} uses @command{sudo}.
  @command{sudo} must have sufficient rights to start a shell.
  
 +@item @option{sg}
 +@cindex method sg
 +@cindex sg method
 +
 +The @command{sg} program allows editing as different group.  The host
 +can be either @samp{localhost} or the host returned by the function
 +@command{(system-name)}.  The user name must be specified, but it
 +denotes a group name.  See @ref{Multi-hops} for an exception to this
 +behavior.
 +
  @item @option{sshx}
  @cindex method sshx
  @cindex sshx method
@@@ -640,6 -666,7 +640,6 @@@ This method is also similar to @option{
  
  This is another method from the Kerberos suite.  It behaves like @option{su}.
  
 -
  @item @option{plink}
  @cindex method plink
  @cindex plink method
@@@ -653,6 -680,7 +653,6 @@@ session
  
  @option{plink} method supports the @samp{-P} argument.
  
 -
  @item @option{plinkx}
  @cindex method plinkx
  @cindex plinkx method
@@@ -729,6 -757,7 +729,6 @@@ is lost if the file exists only on one 
  
  This method supports the @samp{-p} argument.
  
 -
  @item @option{scpx}---@command{ssh} and @command{scp}
  @cindex method scpx
  @cindex scpx method
@@@ -745,6 -774,7 +745,6 @@@ shell prompts that confuses @value{tram
  
  This method supports the @samp{-p} argument.
  
 -
  @item @option{pscp}---@command{plink} and @command{pscp}
  @item @option{psftp}---@command{plink} and @command{psftp}
  @cindex method pscp
@@@ -768,6 -798,7 +768,6 @@@ session
  
  These methods support the @samp{-P} argument.
  
 -
  @item @option{fcp}---@command{fsh} and @command{fcp}
  @cindex method fcp
  @cindex fcp method
@@@ -808,18 -839,21 +808,16 @@@ decode programs
  @cindex ftp method
  
  When @value{tramp} uses @option{ftp}, it forwards requests to whatever
 -ftp program is specified by @value{ftppackagename}.  This external
 -program must be capable of servicing requests from @value{tramp}.
 -
 -@ifset xemacs
 -This method works only for unified file names, see @ref{Issues}.
 -@end ifset
 -
 +ftp program is specified by Ange FTP.  This external program must be
 +capable of servicing requests from @value{tramp}.
  
  @item @option{smb}---@command{smbclient}
  @cindex method smb
  @cindex smb method
  
- This is another non-native @value{tramp} method.  @command{smbclient}
- connects to any host with SMB/CIFS protocol, such as MS Windows and
- Samba Servers running on Unixes.  Tests show this @value{tramp} method
- works with MS Windows NT, MS Windows 2000, MS Windows XP, MS Windows
- Vista, and MS Windows 7.
+ This non-native @value{tramp} method connects via the Server Message
+ Block (SMB) networking protocol to hosts running file servers that are
+ typically based on @url{https://www.samba.org/,,Samba} or MS Windows.
  
  Using @command{smbclient} requires a few tweaks when working with
  @value{tramp}:
  The first directory in the localname must be a share name on the
  remote host.
  
- Since smb shares end in the @code{$} character, @value{tramp} must use
+ Since SMB shares end in the @code{$} character, @value{tramp} must use
  @code{$$} when specifying those shares to avoid environment variable
  substitutions.
  
@@@ -871,17 -905,19 +869,18 @@@ uses the anonymous user (without prompt
  behavior is unlike other @value{tramp} methods, where local user name
  is substituted.
  
- @option{smb} method is unavailable if Emacs is run under a local user
- authentication context in MS Windows.  However such users can still
- access remote files using UNC file names instead of @value{tramp}:
 -The @option{smb} method is unavailable if @value{emacsname} is run under a
++The @option{smb} method is unavailable if Emacs is run under a
+ local user authentication context in MS Windows.  However such users
+ can still access remote files using UNC file names instead of @value{tramp}:
  
  @example
  //melancholia/daniel$$/.emacs
  @end example
  
- UNC file name specification does not allow to specify a different user
- name for authentication like the @command{smbclient} can.
+ UNC file name specification does not allow the specification of a
+ different user name for authentication like the @command{smbclient}
+ can.
  
 -
  @item @option{adb}
  @cindex method adb
  @cindex adb method
@@@ -897,7 -933,7 +896,7 @@@ or the absolute path set in the variabl
  @value{tramp} connects to Android devices with @option{adb} only when
  the custom option @option{tramp-adb-connect-if-not-connected} is not
  @code{nil}.  Otherwise, the connection must be established outside
 -@value{emacsname}.
 +Emacs.
  
  @value{tramp} does not require a host name part of the remote file
  name when a single Android device is connected to @command{adb}.
  name.  @command{adb devices} shows available host names.
  
  @option{adb} method normally does not need user name to authenticate
 -on the Android device because it runs under the @command{adbd}
 +on the Andriod device because it runs under the @command{adbd}
  process.  But when a user name is specified, however, @value{tramp}
  applies an @command{su} in the syntax.  When authentication does not
  succeed, especially on un-rooted Android devices, @value{tramp}
  displays login errors.
  
 -For Android devices connected through TCP/IP, a port number can be
 +For Andriod devices connected through TCP/IP, a port number can be
  specified using @file{device#42} host name syntax or @value{tramp} can
  use the default value as declared in @command{adb} command.  Port
  numbers are not applicable to Android devices connected through USB@.
@@@ -931,9 -967,9 +930,9 @@@ GVFS is the virtual file system for th
  mounted locally through FUSE and @value{tramp} uses this locally
  mounted directory internally.
  
 -@value{emacsname} uses the D-Bus mechanism to communicate with GVFS@.
 -@value{emacsname} must have the message bus system, D-Bus integration
 -active, @pxref{Top, , D-Bus, dbus}.
 +Emacs uses the D-Bus mechanism to communicate with GVFS@.  Emacs must
 +have the message bus system, D-Bus integration active, @pxref{Top, ,
 +D-Bus, dbus}.
  
  @table @asis
  @item @option{afp}
@@@ -963,6 -999,7 +962,6 @@@ but with SSL encryption.  Both methods 
  OBEX is an FTP-like access protocol for cell phones and similar simple
  devices.  @value{tramp} supports OBEX over Bluetooth.
  
 -
  @item @option{sftp}
  @cindex method sftp
  @cindex sftp method
@@@ -991,6 -1028,7 +990,6 @@@ include are: @option{ftp} and @option{s
  @end ifset
  
  
 -@ifset emacsgw
  @node Gateway methods
  @section Gateway methods
  @cindex methods, gateway
@@@ -1023,6 -1061,7 +1022,6 @@@ For authentication, this protocol uses 
  Authentication} (see RFC 2617).  When no port number is specified, this
  protocol defaults to @option{8080}.
  
 -
  @item @option{socks}
  @cindex method socks
  @cindex socks method
@@@ -1034,6 -1073,7 +1033,6 @@@ The default port number for the socks s
  specified otherwise.
  
  @end table
 -@end ifset
  
  
  @node Default Method
@@@ -1157,9 -1197,9 +1156,9 @@@ See the documentation for the variable 
  for more details.
  
  A Caution: @value{tramp} will override any default user specified in
 -the configuration files outside @value{emacsname}, such as
 -@file{~/.ssh/config}.  To stop @value{tramp} from applying the default
 -value, set the corresponding alist entry to nil:
 +the configuration files outside Emacs, such as @file{~/.ssh/config}.
 +To stop @value{tramp} from applying the default value, set the
 +corresponding alist entry to nil:
  
  @lisp
  (add-to-list 'tramp-default-user-alist
@@@ -1182,9 -1222,9 +1181,9 @@@ for catch-all or most often used login
  @vindex tramp-default-host-alist
  
  When host name is omitted, @value{tramp} substitutes the value from
 -the @code{tramp-default-host} variable.  It is initially populated with
 -the local hostname where @value{emacsname} is running.  Both the
 -default user and default host can be overridden as follows:
 +the @code{tramp-default-host} variable.  It is initially populated
 +with the local hostname where Emacs is running.  Both the default user
 +and default host can be overridden as follows:
  
  @lisp
  (setq tramp-default-user "john"
  With both defaults set, @samp{@trampfn{ssh,,}} will connect
  @value{tramp} to John's home directory on target.
  
 -@ifset emacs
  @strong{Note} @samp{/::} won't work, because @samp{/:} is the prefix
  for quoted file names.
 -@end ifset
  
  Instead of a single default host, @code{tramp-default-host-alist}
  allows multiple default host values based on access method or user
@@@ -1234,8 -1276,13 +1233,8 @@@ regular expression which always matches
  @var{proxy} is a literal @value{tramp} file name whose local name part
  is ignored, and the method and user name parts are optional.
  
 -@ifset emacsgw
  The method must be an inline or gateway method (@pxref{Inline
  methods}, @pxref{Gateway methods}).
 -@end ifset
 -@ifclear emacsgw
 -The method must be an inline method (@pxref{Inline methods}).
 -@end ifclear
  If @var{proxy} is @code{nil}, no additional hop is required reaching
  @var{user}@@@var{host}.
  
@@@ -1299,6 -1346,7 +1298,6 @@@ local one, first connect via @command{s
  The above configuration allows @value{tramp} connection as @samp{root}
  to remote Ubuntu hosts.
  
 -@ifset emacsgw
  @code{tramp-default-proxies-alist} is also used for passing through
  firewalls or proxy servers.
  
@@@ -1319,6 -1367,7 +1318,6 @@@ discussion of ethical issues.}  Then th
  @end lisp
  
  Gateway methods in a multiple hop chain can be declared only as the first hop.
 -@end ifset
  @end defopt
  
  Passing through hops involves dealing with restricted shells, such as
@@@ -1446,11 -1495,6 +1445,11 @@@ A function dedicated to @file{/etc/host
  
  A function which parses @file{/etc/passwd} files for user names.
  
 +@item @code{tramp-parse-etc-group}
 +@findex tramp-parse-etc-group
 +
 +A function which parses @file{/etc/group} files for group names.
 +
  @item @code{tramp-parse-netrc}
  @findex tramp-parse-netrc
  
@@@ -1522,8 -1566,9 +1521,8 @@@ the same user or host name independent 
  
  @code{password-cache-expiry} sets the duration (in seconds) the
  passwords are remembered.  Passwords are never saved permanently nor
 -can they extend beyond the lifetime of the current @value{emacsname}
 -session.  Set @code{password-cache-expiry} to @code{nil} to disable
 -expiration.
 +can they extend beyond the lifetime of the current Emacs session.  Set
 +@code{password-cache-expiry} to @code{nil} to disable expiration.
  
  @vindex password-cache
  
@@@ -1531,8 -1576,8 +1530,8 @@@ Set @code{password-cache} to @code{nil
  
  @strong{Implementation Note}: password caching depends on
  @file{password-cache.el} package.  @value{tramp} activates password
 -caching only if @value{tramp} can discover, while @value{emacsname} is
 -loading, the package through @code{load-path}.
 +caching only if @value{tramp} can discover, while Emacs is loading,
 +the package through @code{load-path}.
  
  @ifset installchapter
  @file{password.el} is available from No Gnus or from the @value{tramp}
@@@ -1549,12 -1594,17 +1548,12 @@@ For faster initial connection times, @v
  connection properties in a file specified by the variable
  @code{tramp-persistency-file-name}.
  
 -The default file name for @code{tramp-persistency-file-name} is:
 -@ifset emacs
 +The default file name for @code{tramp-persistency-file-name} is
  @file{~/.emacs.d/tramp}.
 -@end ifset
 -@ifset xemacs
 -@file{~/.xemacs/tramp}.
 -@end ifset
  
 -@value{tramp} reads this file during @value{emacsname} startup, and
 -writes to it when exiting @value{emacsname}.  Delete this file for
 -@value{tramp} to recreate a new one on next @value{emacsname} startup.
 +@value{tramp} reads this file during Emacs startup, and writes to it
 +when exiting Emacs.  Delete this file for @value{tramp} to recreate a
 +new one on next Emacs startup.
  
  Set @code{tramp-persistency-file-name} to @code{nil} to disable
  storing connections persistently.
@@@ -1671,8 -1721,8 +1670,8 @@@ preserves the path value, which can be 
  
  When remote search paths are changed, local @value{tramp} caches must
  be recomputed.  To force @value{tramp} to recompute afresh, exit
 -@value{emacsname}, remove the persistent file (@pxref{Connection
 -caching}), and restart @value{emacsname}.
 +Emacs, remove the persistent file (@pxref{Connection caching}), and
 +restart Emacs.
  
  
  @node Remote shell setup
  @end example
  
  @ifinfo
 -@ifset emacs
 -@xref{Interactive Shell, , , @value{emacsdir}}.
 -@end ifset
 +@xref{Interactive Shell, , , emacs}.
  @end ifinfo
  
  @item @command{busybox} / @command{nc}
@@@ -1880,7 -1932,7 +1879,7 @@@ where @samp{192.168.0.1} is the remote 
  
  @value{tramp} uses the @option{adb} method to access Android
  devices.  Android devices provide a restricted shell access through an
 -USB connection.  The local host must have the Android SDK installed.
 +USB connection.  The local host must have Andriod SDK installed.
  
  Applications such as @code{SSHDroid} that run @command{sshd} process
  on the Android device can accept any @option{ssh}-based methods
@@@ -1949,34 -2001,61 +1948,34 @@@ Open a remote connection with a more co
  @section Auto-save and Backup configuration
  @cindex auto-save
  @cindex backup
 -@ifset emacs
  @vindex backup-directory-alist
 -@end ifset
 -@ifset xemacs
 -@vindex bkup-backup-directory-info
 -@end ifset
  
  To avoid @value{tramp} from saving backup files owned by root to
  locations accessible to others, default backup settings in
 -@ifset emacs
 -@code{backup-directory-alist}
 -@end ifset
 -@ifset xemacs
 -@code{bkup-backup-directory-info}
 -@end ifset
 -have to be altered.
 -
 -Here's a scenario where files could be inadvertently
 -exposed.  @value{emacsname} by default writes backup files to the same
 -directory as the original files unless changed to another location,
 -such as @file{~/.emacs.d/backups/}.  Such a directory will also be used
 -by default by @value{tramp} when using, say, a restricted file
 -@file{@trampfn{su,root@@localhost,/etc/secretfile}}.  The backup file
 -of the secretfile is now owned by the user logged in from tramp and
 -not root.
 -
 -When
 -@ifset emacs
 -@code{backup-directory-alist}
 -@end ifset
 -@ifset xemacs
 -@code{bkup-backup-directory-info}
 -@end ifset
 -is @code{nil} (the default), such problems do not occur.
 +@code{backup-directory-alist} have to be altered.
 +
 +Here's a scenario where files could be inadvertently exposed.  Emacs
 +by default writes backup files to the same directory as the original
 +files unless changed to another location, such as
 +@file{~/.emacs.d/backups/}.  Such a directory will also be used by
 +default by @value{tramp} when using, say, a restricted file
 +@file{@trampfn{su,root@@localhost,/etc/secretfile}}.  The backup
 +file of the secretfile is now owned by the user logged in from tramp
 +and not root.
 +
 +When @code{backup-directory-alist} is @code{nil} (the default), such
 +problems do not occur.
  
  To ``turns off'' the backup feature for @value{tramp} files and stop
  @value{tramp} from saving to the backup directory, use this:
  
 -@ifset emacs
  @lisp
  (add-to-list 'backup-directory-alist
               (cons tramp-file-name-regexp nil))
  @end lisp
 -@end ifset
 -@ifset xemacs
 -@lisp
 -(require 'backup-dir)
 -(add-to-list 'bkup-backup-directory-info
 -             (list tramp-file-name-regexp ""))
 -@end lisp
 -@end ifset
  
 -@ifset emacs
  @noindent
 -Disabling backups can be targeted to just the @option{su} and
 +Disabling backups can be targetted to just @option{su} and
  @option{sudo} methods:
  
  @lisp
                  (when (stringp method)
                    (member method '("su" "sudo"))))))))
  @end lisp
 -@end ifset
  
  Another option is to create better backup file naming with user and
  host names prefixed to the file name.  For example, transforming
  @file{/etc/secretfile} to
  @file{~/.emacs.d/backups/!su:root@@localhost:!etc!secretfile}, set the
 -@value{tramp} variable
 -@ifset emacs
 -@code{tramp-backup-directory-alist}
 -@end ifset
 -@ifset xemacs
 -@code{tramp-bkup-backup-directory-info}
 -@end ifset
 -from the existing variable
 -@ifset emacs
 -@code{backup-directory-alist}.
 -@end ifset
 -@ifset xemacs
 -@code{bkup-backup-directory-info}.
 -@end ifset
 +@value{tramp} variable @code{tramp-backup-directory-alist} from the
 +existing variable @code{backup-directory-alist}.
  
  Then @value{tramp} backs up to a file name that is transformed with a
  prefix consisting of the DIRECTORY name.  This file name prefixing
@@@ -2003,30 -2095,51 +2002,30 @@@ happens only when the DIRECTORY is an a
  @noindent
  Example:
  
 -@ifset emacs
  @lisp
  (add-to-list 'backup-directory-alist
               (cons "." "~/.emacs.d/backups/"))
  (setq tramp-backup-directory-alist backup-directory-alist)
  @end lisp
 -@end ifset
 -@ifset xemacs
 -@lisp
 -(require 'backup-dir)
 -(add-to-list 'bkup-backup-directory-info
 -             (list "." "~/.emacs.d/backups/" 'full-path))
 -(setq tramp-bkup-backup-directory-info bkup-backup-directory-info)
 -@end lisp
 -@end ifset
  
  @noindent
  The backup file name of
  @file{@trampfn{su,root@@localhost,/etc/secretfile}} would be
 -@ifset emacs
 -@file{@trampfn{su,root@@localhost,~/.emacs.d/backups/!su:root@@localhost:!etc!secretfile~}}
 -@end ifset
 -@ifset xemacs
 -@file{@trampfn{su,root@@localhost,~/.emacs.d/backups/![su!root@@localhost]!etc!secretfile~}}
 -@end ifset
 +@file{@trampfn{su,root@@localhost,~/.emacs.d/backups/!su:root@@localhost:!etc!secretfile~}}.
  
  Just as for backup files, similar issues of file naming affect
 -auto-saving @value{tramp} files.
 -@ifset emacs
 -Auto-saved files are saved in the directory specified by the variable
 +auto-saving @value{tramp} files.  Auto-saved files are saved in the
 +directory specified by the variable
  @code{auto-save-file-name-transforms}.  By default this is set to the
  local temporary directory.  But in some versions of Debian GNU/Linux,
 -this points to the source directory where the @value{emacsname} was
 -compiled.   Reset such values to a valid directory.
 +this points to the source directory where the Emacs was compiled.
 +Reset such values to a valid directory.
  
  Set @code{auto-save-file-name-transforms} to @code{nil} to save
  auto-saved files to the same directory as the original file.
  
  Alternatively, set the variable @code{tramp-auto-save-directory} to
  direct all auto saves to that location.
 -@end ifset
 -@ifset xemacs
 -@code{auto-save-directory} can also be used here instead of other
 -locations specified above.
 -@end ifset
  
  @node Windows setup hints
  @section Issues with Cygwin ssh
@@@ -2037,9 -2150,9 +2036,9 @@@ This section is incomplete.  Please sha
  @cindex method sshx with Cygwin
  @cindex sshx method with Cygwin
  
 -Cygwin's @command{ssh} works only with a Cygwin version of
 -@value{emacsname}.  To check for compatibility: type @kbd{M-x eshell}, and
 -start @kbd{ssh test.host}.  Incompatibilities trigger this message:
 +Cygwin's @command{ssh} works only with a Cygwin version of Emacs.  To
 +check for compatibility: type @kbd{M-x eshell}, and start @kbd{ssh
 +test.host}.  Incompatbilities trigger this message:
  
  @example
  Pseudo-terminal will not be allocated because stdin is not a terminal.
@@@ -2053,7 -2166,7 +2052,7 @@@ Some older versions of Cygwin's @comman
  @cindex method scpx with Cygwin
  @cindex scpx method with Cygwin
  
 -When using the @option{scpx} access method, @value{emacsname} may call
 +When using the @option{scpx} access method, Emacs may call
  @command{scp} with Windows file naming, such as @code{c:/foo}.  But
  the version of @command{scp} that is installed with Cygwin does not
  know about Windows file naming, which causes it to incorrectly look
@@@ -2063,17 -2176,18 +2062,17 @@@ A workaround: write a wrapper script fo
  Windows file names to Cygwin file names.
  
  @cindex Cygwin and ssh-agent
 -@cindex SSH_AUTH_SOCK and @value{emacsname} on Windows
 +@cindex SSH_AUTH_SOCK and Emacs on Windows
  
  When using the @command{ssh-agent} on Windows for password-less
  interaction, @option{ssh} methods depend on the environment variable
 -@env{SSH_AUTH_SOCK}.  But this variable is not set when
 -@value{emacsname} is started from a Desktop shortcut and
 -authentication fails.
 +@env{SSH_AUTH_SOCK}.  But this variable is not set when Emacs is
 +started from a Desktop shortcut and authentication fails.
  
  One workaround is to use a Windows based SSH Agent, such as
  Pageant.  It is part of the Putty Suite of tools.
  
 -The fallback is to start @value{emacsname} from a shell.
 +The fallback is to start Emacs from a shell.
  
  
  @node Usage
  they are local.  However, @value{tramp} employs a formalized remote
  file naming syntax to perform its functions transparently.  This
  syntax consists of many parts specifying access methods,
 -authentication, host names, and file names.
 -@ifset emacs
 -@value{ftppackagename} uses a similar syntax.
 -@end ifset
 +authentication, host names, and file names.  Ange FTP uses a similar
 +syntax.
  
  @cindex type-ahead
  
 -Unlike opening local files in @value{emacsname}, which are
 -instantaneous, opening remote files in @value{tramp} is slower at
 -first.  Sometimes there is a noticeable delay before the prompts for
 -passwords or authentication appear in the minibuffer.  Hitting
 -@kbd{@key{RET}} or other keys during this gap will be processed by
 -@value{emacsname}.  This type-ahead facility is a feature of
 -@value{emacsname} that may cause missed prompts when using
 +Unlike opening local files in Emacs, which are instantaneous, opening
 +remote files in @value{tramp} is slower at first.  Sometimes there is
 +a noticable delay before the prompts for passwords or authentication
 +appear in the minibuffer.  Hitting @kbd{@key{RET}} or other keys
 +during this gap will be processed by Emacs.  This type-ahead facility
 +is a feature of Emacs that may cause missed prompts when using
  @value{tramp}.
  
  @menu
  * File name Syntax::            @value{tramp} file name conventions.
  * File name completion::        File name completion.
  * Ad-hoc multi-hops::           Declaring multiple hops in the file name.
 -* Remote processes::            Integration with other @value{emacsname} packages.
 +* Remote processes::            Integration with other Emacs packages.
  * Cleanup remote connections::  Cleanup remote connections.
  @end menu
  
@@@ -2140,8 -2257,10 +2139,8 @@@ For the file @file{/etc/squid.conf} on 
  @var{host} can take IPv4 or IPv6 address, as in
  @file{@trampf{127.0.0.1,.emacs}} or
  @file{@trampf{@value{ipv6prefix}::1@value{ipv6postfix},.emacs}}.
 -@ifset emacs
  For syntactical reasons, IPv6 addresses must be embedded in square
  brackets @file{@value{ipv6prefix}} and @file{@value{ipv6postfix}}.
 -@end ifset
  
  By default, @value{tramp} will use the current local user name as the
  remote user name for log in to the remote host.  Specifying a different
@@@ -2158,10 -2277,17 +2157,10 @@@ name using the proper syntax will overr
  Specify other file access methods (@pxref{Inline methods},
  @pxref{External methods}) as part of the file name.
  
 -@ifset emacs
  Method name comes before user name, as in
  @file{@value{prefix}@var{method}@value{postfixhop}} (Note the trailing
 -colon).
 -@end ifset
 -@ifset xemacs
 -This is done by replacing the initial @file{@value{prefix}} with
 -@file{@value{prefix}@var{method}@value{postfixhop}} (Note the trailing
 -slash!).
 -@end ifset
 -The syntax specifications for user, host, and file do not change.
 +colon).  The syntax specificaton for user, host, and file do not
 +change.
  
  To connect to the host @code{melancholia} as @code{daniel}, using
  @option{ssh} method for @file{.emacs} in @code{daniel}'s home
@@@ -2181,11 -2307,13 +2180,11 @@@ name.  For example: @file{@trampfn{ssh,
  
  @value{tramp} can complete the following @value{tramp} file name
  components: method names, user names, host names, and file names
 -located on remote hosts.
 -@ifset emacs
 -Enable this by activating partial completion in @file{.emacs}.
 +located on remote hosts.  Enable this by activating partial completion
 +in @file{.emacs}.
  @ifinfo
 -@xref{Completion Options, , , @value{emacsdir}}.
 +@xref{Completion Options, , , emacs}.
  @end ifinfo
 -@end ifset
  
  For example, type @kbd{C-x C-f @value{prefix}t @key{TAB}},
  @value{tramp} completion choices show up as
  @example
  @c @multitable {@trampfn{telnet,melancholia.danann.net,}} {@trampfn{telnet,192.168.0.1,}}
  @multitable @columnfractions .5 .5
 -@ifset emacs
  @item @value{prefixhop}telnet@value{postfixhop} @tab tmp/
  @item @value{prefixhop}toto@value{postfix} @tab
 -@end ifset
 -@ifset xemacs
 -@item @value{prefixhop}telnet@value{postfixhop} @tab @value{prefixhop}toto@value{postfix}
 -@end ifset
  @end multitable
  @end example
  
 -@samp{@value{prefixhop}telnet@value{postfixhop}}
 -is a possible completion for the respective method,
 -@ifset emacs
 -@samp{tmp/} stands for the directory @file{/tmp} on your local host,
 -@end ifset
 -and @samp{@value{prefixhop}toto@value{postfix}}
 -might be a host @value{tramp} has detected in your @file{~/.ssh/known_hosts}
 -file (when using @option{ssh} as default method).
 +@samp{@value{prefixhop}telnet@value{postfixhop}} is a possible
 +completion for the respective method, @samp{tmp/} stands for the
 +directory @file{/tmp} on your local host, and
 +@samp{@value{prefixhop}toto@value{postfix}} might be a host
 +@value{tramp} has detected in your @file{~/.ssh/known_hosts} file
 +(when using @option{ssh} as default method).
  
  Type @kbd{e @key{TAB}} for the minibuffer completion to
  @samp{@value{prefix}telnet@value{postfixhop}}.  Typing @kbd{@key{TAB}}
@@@ -2230,18 -2365,21 +2229,18 @@@ persistently (@pxref{Connection caching
  completion lists.
  
  After remote host name completion comes completion of file names on
 -the remote host.  It works the same as with local host file completion,
 -except that killing with double-slash @file{//} kills only the file
 -name part of the @value{tramp} file name syntax.
 -@ifset emacs
 -A triple-slash stands for the default behavior.
 -@end ifset
 +the remote host.  It works the same as on loal host file completion
 +except when killing with double-slash @file{//} kills only the file
 +name part of the @value{tramp} file name syntax.  A triple-slash
 +stands for the default behavior.
  @ifinfo
 -@xref{Minibuffer File, , , @value{emacsdir}}.
 +@xref{Minibuffer File, , , emacs}.
  @end ifinfo
  
  @noindent
  Example:
  
  @example
 -@ifset emacs
  @kbd{C-x C-f @trampfn{telnet,melancholia,/usr/local/bin//etc} @key{TAB}}
       @print{} @trampfn{telnet,melancholia,/etc}
  
  
  @kbd{C-x C-f @trampfn{telnet,melancholia,/usr/local/bin///etc} @key{TAB}}
       @print{} /etc
 -@end ifset
 -
 -@ifset xemacs
 -@kbd{C-x C-f @trampfn{telnet,melancholia,/usr/local/bin//}}
 -     @print{} @trampfn{telnet,melancholia,/}
 -
 -@kbd{C-x C-f @trampfn{telnet,melancholia,//}}
 -     @print{} /
 -@end ifset
  @end example
  
  During file name completion, remote directory contents are re-read
  regularly to account for any changes in the filesystem that may affect
  the completion candidates.  Such re-reads can account for changes to
 -the file system by applications outside @value{emacsname}
 -(@pxref{Connection caching}).
 +the file system by applications outside Emacs (@pxref{Connection
 +caching}).
  
  @defopt tramp-completion-reread-directory-timeout
  @vindex tramp-completion-reread-directory-timeout
@@@ -2290,15 -2437,15 +2289,15 @@@ Proxies can take patterns @code{%h} or 
  
  @value{tramp} adds the ad-hoc definitions on the fly to
  @code{tramp-default-proxies-alist} and is available for re-use during
 -that @value{emacsname} session.  Subsequent @value{tramp} connections
 -to the same remote host can then use the shortcut form:
 +that Emacs session.  Subsequent @value{tramp} connections to the same
 +remote host can then use the shortcut form:
  @samp{@trampfn{ssh,you@@remotehost,/path}}.
  
  @defopt tramp-save-ad-hoc-proxies
  @vindex tramp-save-ad-hoc-proxies
  For ad-hoc definitions to be saved automatically in
 -@option{tramp-default-proxies-alist} for future @value{emacsname}
 -sessions, set @option{tramp-save-ad-hoc-proxies}.
 +@option{tramp-default-proxies-alist} for future Emacs sessions, set
 +@option{tramp-save-ad-hoc-proxies}.
  
  @lisp
  (setq tramp-save-ad-hoc-proxies t)
  
  
  @node Remote processes
 -@section Integration with other @value{emacsname} packages
 +@section Integration with other Emacs packages
  @cindex compile
  @cindex recompile
  
  @value{tramp} supports starting new running processes on the remote
 -host for discovering remote file names.  @value{emacsname} packages on
 -the remote host need no specific modifications for @value{tramp}'s
 -use.
 +host for discovering remote file names.  Emacs packages on the remote
 +host need no specific modifications for @value{tramp}'s use.
  
  This type of integration does not work with the @option{ftp} method,
  and does not support the pty association as specified in
@@@ -2396,8 -2544,8 +2395,8 @@@ them as follows
  This works only for environment variables not already set in the
  @code{process-environment}.
  
 -For integrating other @value{emacsname} packages so @value{tramp} can
 -execute remotely, please file a bug report.  @xref{Bug Reports}.
 +For integrating other Emacs packages so @value{tramp} can execute
 +remotely, please file a bug report.  @xref{Bug Reports}.
  
  
  @subsection Running remote programs that create local X11 windows
@@@ -2432,9 -2580,11 +2431,9 @@@ when using @value{tramp} between two ho
  systems, such as @samp{windows-nt} and @samp{gnu/linux}.  This option
  ensures the correct name of the remote shell program.
  
 -@ifset emacs
  Starting with Emacs 24, when @option{explicit-shell-file-name} is
  equal to @code{nil}, calling @code{shell} interactively will prompt
  for a shell name.
 -@end ifset
  
  
  @subsection Running @code{shell-command} on a remote host
@@@ -2452,7 -2602,9 +2451,7 @@@ host.  Example
  @command{tail} command outputs continuously to the local buffer,
  @file{*Async Shell Command*}
  
 -@ifset emacs
  @kbd{M-x auto-revert-tail-mode} runs similarly showing continuous output.
 -@end ifset
  
  
  @subsection Running @code{eshell} on a remote host
@@@ -2475,8 -2627,9 +2474,8 @@@ uid=0(root) gid=0(root) groups=0(root
  @b{@trampfn{sudo,root@@host,/etc} $}
  @end example
  
 -@ifset emacs
 -@code{eshell} in @value{emacsname} 23.2 added custom @code{su} and
 -@code{sudo} commands that set the default directory correctly for the
 +@code{eshell} in Emacs 23.2 added custom @code{su} and @code{sudo}
 +commands that set the default directory correctly for the
  @file{*eshell*} buffer.  @value{tramp} silently updates
  @code{tramp-default-proxies-alist} with an entry for this directory
  (@pxref{Multi-hops}):
@@@ -2493,6 -2646,7 +2492,6 @@@ File is not readable: @trampfn{ssh,user
  uid=0(root) gid=0(root) groups=0(root)
  @b{@trampfn{su,root@@remotehost,/root} $}
  @end example
 -@end ifset
  
  
  @anchor{Running a debugger on a remote host}
  @cindex perldb
  
  @file{gud.el} provides a unified interface to symbolic debuggers
 -@ifset emacs
  @ifinfo
 -(@ref{Debuggers, , , @value{emacsdir}}).
 +(@ref{Debuggers, , , emacs}).
  @end ifinfo
 -@end ifset
  @value{tramp} can run debug on remote hosts by calling @code{gdb}
  with a remote file name:
  
@@@ -2616,9 -2772,11 +2615,9 @@@ To subscribe to the mailing list, visit
  @uref{http://lists.gnu.org/mailman/listinfo/tramp-devel/, the
  @value{tramp} Mail Subscription Page}.
  
 -@ifset emacs
  @ifset installchapter
  Before sending a bug report, run the test suite first @ref{Testing}.
  @end ifset
 -@end ifset
  
  @findex tramp-bug
  Check if the bug or problem is already addressed in @xref{Frequently
@@@ -2677,7 -2835,8 +2676,7 @@@ Where is the latest @value{tramp}
  @item
  Which systems does it work on?
  
 -The package works successfully on Emacs 22, Emacs 23, Emacs 24, Emacs
 -25, XEmacs 21 (starting with 21.4), and SXEmacs 22.
 +The package works successfully on Emacs 23, Emacs 24, and Emacs 25.
  
  While Unix and Unix-like systems are the primary remote targets,
  @value{tramp} has equal success connecting to other platforms, such as
@@@ -2825,12 -2984,12 +2824,12 @@@ Host 
  
  @value{tramp} overwrites @code{ControlPath} settings when initiating
  @command{ssh} sessions.  @value{tramp} does this to fend off a stall
 -if a master session opened outside the @value{emacsname} session is no
 -longer open.  That is why @value{tramp} prompts for the password again
 -even if there is an @command{ssh} already open.
 +if a master session opened outside the Emacs session is no longer
 +open.  That is why @value{tramp} prompts for the password again even
 +if there is an @command{ssh} already open.
  
  Some @command{ssh} versions support a @code{ControlPersist} option,
- which allows to set the @code{ControlPath} provided the variable
+ which allows you to set the @code{ControlPath} provided the variable
  @code{tramp-ssh-controlmaster-options} is customized as follows:
  
  @lisp
@@@ -2887,8 -3046,8 +2886,8 @@@ When testing, ensure the remote shell i
  @item
  How to get notified after @value{tramp} completes file transfers?
  
 -Make @value{emacsname} beep after reading from or writing to the
 -remote host with the following code in @file{~/.emacs} file.
 +Make Emacs beep after reading from or writing to the remote host with
 +the following code in @file{~/.emacs} file.
  
  @lisp
  (defadvice tramp-handle-write-region
  @end lisp
  
  
 -@ifset emacs
  @item
  How to get a Visual Warning when working with @samp{root} privileges
  
  Get a modeline indication when working with @samp{root} privileges
 -with the following code (tested with @value{emacsname} 22.1) in
 -@file{~/.emacs} file:
 +with the following code (tested with Emacs 22.1) in @file{~/.emacs}
 +file:
  
  @lisp
  (defun my-mode-line-function ()
  (add-hook 'find-file-hook 'my-mode-line-function)
  (add-hook 'dired-mode-hook 'my-mode-line-function)
  @end lisp
 -@end ifset
  
  
 -@ifset emacs
  @item
  How to get host indication in the mode line?
  
 -The following code (tested with @value{emacsname} 22.1) in
 -@file{~/.emacs} file shows it:
 +The following code (tested with Emacs 22.1) in @file{~/.emacs} file
 +shows it:
  
  @lisp
  (defconst my-mode-line-buffer-identification
      my-mode-line-buffer-identification)))
  @end lisp
  
 -The mode line in @value{emacsname} 23.1 and later versions now
 -contains an indication if @code{default-directory} for the current
 -buffer is on a remote host.  Moreover, the corresponding tool-tip
 -shows the remote host name.  The above @code{:eval} clause can also be
 -simplified to show the host name in the mode line:
 +The mode line in Emacs 23.1 and later versions now contains an
 +indication if @code{default-directory} for the current buffer is on a
 +remote host.  Moreover, the corresponding tool-tip shows the remote
 +host name.  The above @code{:eval} clause can also be simplified to
 +show the host name in the mode line:
  
  @lisp
     '(:eval
             (substring host-name 0 (match-beginning 1))
           host-name)))
  @end lisp
 -@end ifset
  
  
 -@ifset emacs
  @item
  Remote host does not understand default options for directory listing
  
 -@value{emacsname} computes the @command{dired} options based on the
 -local host but if the remote host cannot understand the same
 -@command{ls} command, then set them with a hook as follows:
 +Emacs computes the @command{dired} options based on the local host but
 +if the remote host cannot understand the same @command{ls} command,
 +then set them with a hook as follows:
  
  @lisp
  (add-hook
     (when (file-remote-p default-directory)
       (setq dired-actual-switches "-al"))))
  @end lisp
 -@end ifset
  
  
  @item
@@@ -3070,8 -3235,8 +3069,8 @@@ completion can further reduce key strok
  Use environment variables to expand long strings
  
  For long file names, set up environment variables that are expanded in
 -the minibuffer.  Environment variables are set either outside
 -@value{emacsname} or inside @value{emacsname} with Lisp:
 +the minibuffer.  Environment variables are set either outside Emacs or
 +inside Emacs with Lisp:
  
  @lisp
  (setenv "xy" "@trampfn{ssh,news@@news.my.domain,/opt/news/etc/}")
@@@ -3085,7 -3250,7 +3084,7 @@@ minibuffer
  
  @item Define own keys:
  
 -Redefine another key sequence in @value{emacsname} for @kbd{C-x C-f}:
 +Redefine another key sequence in Emacs for @kbd{C-x C-f}:
  
  @lisp
  (global-set-key
@@@ -3155,32 -3320,70 +3154,32 @@@ The minibuffer expands for further edit
  
  Use bookmarks to save Tramp file names.
  @ifinfo
 -@pxref{Bookmarks, , , @value{emacsdir}}.
 +@pxref{Bookmarks, , , emacs}.
  @end ifinfo
  
  Upon visiting a location with @value{tramp}, save it as a bookmark with
 -@ifset emacs
  @kbd{@key{menu-bar} @key{edit} @key{bookmarks} @key{set}}.
 -@end ifset
 -@ifset xemacs
 -@kbd{@key{menu-bar} @key{view} @key{bookmarks} @key{set}}.
 -@end ifset
  
  To revisit that bookmark:
 -@ifset emacs
  @kbd{@key{menu-bar} @key{edit} @key{bookmarks} @key{jump}}.
 -@end ifset
 -@ifset xemacs
 -@kbd{@key{menu-bar} @key{view} @key{bookmarks} @key{jump}}.
 -@end ifset
  
  @item Use recent files:
  
 -@ifset emacs
 -@file{recentf}
 -@end ifset
 -@ifset xemacs
 -@file{recent-files}
 -@end ifset
 -remembers visited places.
 +@file{recentf} remembers visited places.
  @ifinfo
 -@ifset emacs
 -@pxref{File Conveniences, , , @value{emacsdir}}.
 -@end ifset
 -@ifset xemacs
 -@pxref{recent-files, , , edit-utils}.
 -@end ifset
 +@pxref{File Conveniences, , , emacs}.
  @end ifinfo
  
  Keep remote file names in the recent list without have to check for
  their accessibility through remote access:
  
  @lisp
 -@ifset emacs
  (recentf-mode 1)
 -@end ifset
 -@ifset xemacs
 -(recent-files-initialize)
 -(add-hook
 - 'find-file-hook
 - (lambda ()
 -   (when (file-remote-p (buffer-file-name))
 -     (recent-files-make-permanent)))
 - 'append)
 -@end ifset
  @end lisp
  
 -Reaching recently opened files:
 -@ifset emacs
 -@kbd{@key{menu-bar} @key{file} @key{Open Recent}}.
 -@end ifset
 -@ifset xemacs
 -@kbd{@key{menu-bar} @key{Recent Files}}.
 -@end ifset
 +Reaching recently opened files: @kbd{@key{menu-bar} @key{file}
 +@key{Open Recent}}.
  
 -@ifset emacs
  @item Use filecache:
  
  Since @file{filecache} remembers visited places, add the remote
@@@ -3194,16 -3397,18 +3193,16 @@@ directory to the cache
  
  Then use directory completion in the minibuffer with @kbd{C-x C-f
  C-@key{TAB}}.
 -@end ifset
  
 -@ifset emacs
  @item Use bbdb:
  
 -@file{bbdb} has a built-in feature for @value{ftppackagename} files,
 -which also works for @value{tramp} file names.
 +@file{bbdb} has a built-in feature for Ange FTP files, which also
 +works for @value{tramp} file names.
  @ifinfo
  @pxref{bbdb-ftp, Storing FTP sites in the BBDB, , bbdb}.
  @end ifinfo
  
 -Load @file{bbdb} in @value{emacs}:
 +Load @file{bbdb} in Emacs:
  
  @lisp
  (require 'bbdb)
@@@ -3223,17 -3428,23 +3222,17 @@@ a method and user name where needed.  E
  @end example
  
  In BBDB buffer, access an entry by pressing the key @key{F}.
 -@end ifset
  
  @end enumerate
  
  Thanks to @value{tramp} users for contributing to these recipes.
  
  @item
 -Why saved multi-hop file names do not work in a new @value{emacsname}
 -session?
 +Why saved multi-hop file names do not work in a new Emacs session?
  
  When saving ad-hoc multi-hop @value{tramp} file names (@pxref{Ad-hoc
 -multi-hops}) via bookmarks, recent files,
 -@ifset emacs
 -filecache, bbdb,
 -@end ifset
 -or another package, use the full ad-hoc file name including all hops,
 -like
 +multi-hops}) via bookmarks, recent files, filecache, bbdb, or another
 +package, use the full ad-hoc file name including all hops, like
  @file{@trampfn{ssh,bird@@bastion|ssh@value{postfixhop}news.my.domain,/opt/news/etc}}.
  
  Alternatively, when saving abbreviated multi-hop file names
@@@ -3242,12 -3453,13 +3241,12 @@@ option @code{tramp-save-ad-hoc-proxies
  value.
  
  
 -@ifset emacs
  @item
 -How to connect to a remote @value{emacsname} session using @value{tramp}?
 +How to connect to a remote Emacs session using @value{tramp}?
  
  Configure Emacs Client
  @ifinfo
 -(@pxref{Emacs Server, , , @value{emacsdir}}).
 +(@pxref{Emacs Server, , , emacs}).
  @end ifinfo
  
  Then on the remote host, start the Emacs Server:
@@@ -3288,6 -3500,7 +3287,6 @@@ wrapper script
  @example
  export EDITOR=/path/to/emacsclient.sh
  @end example
 -@end ifset
  
  
  @item
@@@ -3324,25 -3537,35 +3323,25 @@@ Disable remote directory tracking mode
  How to disable @value{tramp}?
  
  @itemize @minus
 -@ifset emacs
  @item
 -To keep @value{ftppackagename} as default the remote files access
 -package, set this in @file{.emacs}:
 +To keep Ange FTP as default the remote files access package, set this
 +in @file{.emacs}:
  
  @lisp
  (setq tramp-default-method "ftp")
  @end lisp
 -@end ifset
  
  @item
 -To disable both
 -@ifset emacs
 -@value{tramp} (and @value{ftppackagename}),
 -@end ifset
 -@ifset xemacs
 -@value{tramp},
 -@end ifset
 -set @code{tramp-mode} to @code{nil} in @file{.emacs}.
 +To disable both @value{tramp} (and Ange FTP), set @code{tramp-mode} to
 +@code{nil} in @file{.emacs}.
  
  @lisp
  (setq tramp-mode nil)
  @end lisp
  
  @item
 -To unload @value{tramp}, type @kbd{M-x tramp-unload-tramp}.
 -@ifset emacs
 -Unloading @value{tramp} resets @value{ftppackagename} plugins also.
 -@end ifset
 +To unload @value{tramp}, type @kbd{M-x tramp-unload-tramp}.  Unloading
 +@value{tramp} resets Ange FTP plugins also.
  @end itemize
  @end itemize
  
  
  @menu
  * Localname deconstruction::    Splitting a localname into its component parts.
 -@ifset emacs
  * External packages::           Integrating with external Lisp packages.
 -@end ifset
  @end menu
  
  
@@@ -3371,6 -3596,7 +3370,6 @@@ file name.  By relying on the original 
  handlers.
  
  
 -@ifset emacs
  @node External packages
  @section Integrating with external Lisp packages
  @subsection File name completion.
@@@ -3428,6 -3654,7 +3427,6 @@@ attributes cache in its process sentine
  Since @value{tramp} traverses subdirectories starting with the
  root-directory, it is most likely sufficient to make the
  @code{default-directory} of the process buffer as the root directory.
 -@end ifset
  
  
  @node Traces and Profiles
@@@ -3458,7 -3685,7 +3457,7 @@@ set the @code{tramp-verbose} level to 
  
  The debug buffer is in
  @ifinfo
 -@ref{Outline Mode, , , @value{emacsdir}}.
 +@ref{Outline Mode, , , emacs}.
  @end ifinfo
  @ifnotinfo
  Outline Mode.
@@@ -3467,7 -3694,7 +3466,7 @@@ In this buffer, messages can be filtere
  messages up to verbosity level 5, enter @kbd{C-u 6 C-c C-q}.
  @ifinfo
  Other navigation keys are described in
 -@ref{Outline Visibility, , , @value{emacsdir}}.
 +@ref{Outline Visibility, , , emacs}.
  @end ifinfo
  
  @value{tramp} handles errors internally.  But to get a Lisp backtrace,
@@@ -3495,6 -3722,62 +3494,6 @@@ call traces.  Disable @code{tramp-read-
  being written to @file{*trace-output*}.
  
  
 -@node Issues
 -@chapter Debatable Issues and What Was Decided
 -
 -@itemize @bullet
 -@item The uuencode method does not always work.
 -
 -@command{uudecode} on some systems cannot write to stdout, but
 -@value{tramp} depends on encoding and decoding programs to be able to
 -read from stdin and write to stdout.
 -
 -We can find ways to circumvent @command{uudecode}'s ability to write
 -to stdout, such as writing to a temporary file and then piping that to
 -stdout.
 -
 -But I have decided not to implement workarounds as they are too
 -fragile to work reliably.  Some on systems, @value{tramp} will not have
 -uuencode method.
 -
 -@item The @value{tramp} file name syntax differs between Emacs and XEmacs.
 -
 -The Emacs maintainers wish to use a unified file name syntax for
 -Ange-FTP and @value{tramp} so that users don't have to learn yet
 -another syntax though it is okay to learn new extensions.
 -
 -For the XEmacs maintainers, the disruption from a unified file name
 -syntax are not worth the gains.  Firstly, the XEmacs package system
 -relies on EFS for downloading new packages and therefore is already
 -installed.  On the other hand, @value{tramp} is not installed by
 -default in XEmacs.  Unifying will require @value{tramp} installed from
 -the start.
 -
 -@ifset xemacs
 -@strong{Note:} To make the syntax similar to @value{ftppackagename},
 -make this change to the init file:
 -
 -@lisp
 -(setq tramp-unified-filenames t)
 -(require 'tramp)
 -@end lisp
 -
 -To disable auto loading @value{emacsname} @value{tramp} package, set
 -file permissions of
 -@file{@dots{}/xemacs-packages/lisp/tramp/auto-autoloads.el*} to
 -@code{000}.
 -
 -When using unified file names, @value{emacsname} download sites are
 -added to @code{tramp-default-method-alist} with default method of
 -@option{ftp} @xref{Default Method} for proper working of the
 -@value{emacsname} package system.
 -
 -The syntax for unified file names is described in the @value{tramp} manual
 -for @value{emacsothername}.
 -@end ifset
 -@end itemize
 -
 -
  @node GNU Free Documentation License
  @appendix GNU Free Documentation License
  @include doclicense.texi
diff --combined etc/NEWS
index d6044ce2c2b52148b6e0226181024e7985461685,09bced4b000015eb55d952d71ac5f0ed716ad081..a1292db61deafdb2c34eb2c0eb05a4f87a20717b
+++ b/etc/NEWS
@@@ -22,61 -22,6 +22,61 @@@ Temporary note
  When you add a new item, use the appropriate mark if you are sure it applies,
  otherwise leave it unmarked.
  
 +\f
 +* Installation Changes in Emacs 25.2
 +
 +\f
 +* Startup Changes in Emacs 25.2
 +
 +\f
 +* Changes in Emacs 25.2
 +
 +** It is possible to disable attempted recovery on fatal signals
 +
 +Two new variables allow to disable attempts to recover from stack
 +overflow and to avoid automatic auto-save when Emacs is delivered a
 +fatal signal.  `attempt-stack-overflow-recovery', if set to `nil',
 +will disable attempts to recover from C stack overflows; Emacs will
 +then crash as with any other fatal signal.
 +`attempt-orderly-shutdown-on-fatal-signal', if set to `nil', will
 +disable attempts to auto-save the session and shut down in an orderly
 +fashion when Emacs receives a fatal signal; instead, Emacs will
 +terminate immediately.  Both variables are non-`nil' by default.
 +These variables are for users who would like to avoid the small
 +probability of data corruption due to techniques Emacs uses to recover
 +in these situations.
 +
 +\f
 +* Editing Changes in Emacs 25.2
 +
 +\f
 +* Changes in Specialized Modes and Packages in Emacs 25.2
 +
 +---
 +** Support for non-string values of `time-stamp-format' has been removed.
 +
 +** Tramp
 +
 +*** New connection method "sg", which allows to edit files under
 +different group ID.
 +
 +\f
 +* New Modes and Packages in Emacs 25.2
 +
 +\f
 +* Incompatible Lisp Changes in Emacs 25.2
 +
 +\f
 +* Lisp Changes in Emacs 25.2
 +
 +** New var syntax-ppss-table to control the syntax-table used in syntax-ppss
 +
 +** Autoload files can be generated without timestamps,
 +by setting `autoload-timestamps' to nil.
 +
 +\f
 +* Changes in Emacs 25.2 on Non-Free Operating Systems
 +
  \f
  * Installation Changes in Emacs 25.1
  
@@@ -142,7 -87,7 +142,7 @@@ and silent rules are now quieter.  To g
  build with 'make V=1'.
  
  ---
- ** The configure option '--with-gameuser' now allows to specify a
+ ** The configure option '--with-gameuser' now allows you to specify a
  group instead of a user if its argument is prefixed by ':' (a colon).
  This will cause the game score files in ${localstatedir}/games/emacs
  to be owned by that group, and the helper program for updating them to
@@@ -234,38 -179,29 +234,37 @@@ by default, and must be enabled by usin
  at configure time.
  
  +++
- ** 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.
+ ** A second dir-local file (.dir-locals-2.el) is now accepted.
+ See the variable `dir-locals-file-2' for more information.
  
  +++
  ** Network security (TLS/SSL certificate validity and the like) is
  added via the new Network Security Manager (NSM) and controlled via
  the `network-security-level' variable.
  
 +---
 +** International domain names (IDNA) are now encoded via the new
 +puny.el library, so that one can visit web sites like
 +"http://méxico.icom.museum".
 +
  +++
  ** C-h l now also lists the commands that were run.
  
 -+++
 -** x-select-enable-clipboard is renamed select-enable-clipboard
 -and x-select-enable-primary is renamed select-enable-primary.
 +** The new M-s M-w key binding uses eww to search the web for the
 +text in the region.
 +
 +** M-x suggests shorthands and ignores obsolete commands for completion.
 +** x-select-enable-clipboard is renamed select-enable-clipboard.
 +x-select-enable-primary and renamed select-enable-primary.
  Additionally they both now apply to all systems (OSX, GNUstep, Windows, you
  name it), with the proviso that on some systems (e.g. Windows)
  select-enable-primary is ineffective since the system doesn't
  have the equivalent of a primary selection.
  
  +++
- ** 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 option `switch-to-buffer-in-dedicated-window' allows you 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
@@@ -293,6 -229,14 +292,6 @@@ for use in Emacs bug reports
  hiding character but the default `.' can be used by let-binding the
  variable `read-hide-char'.
  
 -+++
 -** The Emacs pseudo-random number generator can be securely seeded.
 -On system where Emacs can access the system entropy or some other
 -cryptographically secure random stream, it now uses that when `random'
 -is called with its argument `t'.  This allows cryptographically strong
 -random values; in particular, the Emacs server now uses this facility
 -to produce its authentication key.
 -
  ---
  ** New input methods: `tamil-dvorak' and `programmer-dvorak'.
  
@@@ -483,9 -427,6 +482,9 @@@ additionally need to add `getSelection
  `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.
 +
  ---
  *** Reconnection is now asynchronous.
  
@@@ -690,11 -631,6 +689,11 @@@ useful when, for example, one needs to 
  whether to use variable-pitch fonts or not.  The user can also
  customize the `shr-use-fonts' variable.
  
 ++++
 +*** 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.
 +
  +++
  *** A new command `R' (`eww-readable') will try do identify the main
  textual parts of a web page and display only that, leaving menus and
@@@ -833,8 -769,6 +832,8 @@@ to produce a neat summary
  
  ---
  ** New js.el option `js-indent-first-init'.
 +It was renamed from `js-indent-first-initialiser', to avoid issues
 +with American vs British spelling.
  
  ** Info
  
@@@ -920,11 -854,12 +919,12 @@@ plist will contain a :peer element tha
  ** Tramp
  
  +++
- *** New connection method "afp", which allows to access Mac OS X
+ *** New connection method "afp", which allows you to access Mac OS X
  volumes via the Apple Filing Protocol.
  
  +++
- *** New connection method "nc", which allows to access dumb busyboxes.
+ *** New connection method "nc", which allows you to access dumb
+ busyboxes.
  
  +++
  *** Method-specific parameters can be overwritten now with variable
@@@ -1231,9 -1166,6 +1231,9 @@@ compression command is determined from 
  `dired-compress-files-alist' variable.
  
  +++
 +*** `W' is now bound to `browse-url-of-dired-file', and is useful for
 +viewing HTML files and the like.
 +
  *** New user interface for the `A' and `Q' commands.
  These keys, now bound to `dired-do-find-regexp' and
  `dired-do-find-regexp-and-replace', work similarly to `xref-find-apropos'
@@@ -1288,7 -1220,7 +1288,7 @@@ node "Generic Functions" in the Emacs L
  let-bind the values stored in an alist.
  
  ---
- ** `tildify-mode' allows to automatically insert hard spaces as one
+ ** `tildify-mode' allows automatic insertion of hard spaces as one
  types the text.  Breaking line after a single-character words is
  forbidden by Czech and Polish typography (and may be discouraged in
  other languages), so `auto-tildify-mode' makes it easier to create
@@@ -1492,7 -1424,7 +1492,7 @@@ commands other than the predefined `C-u
  
  +++
  ** New functions `filepos-to-bufferpos' and `bufferpos-to-filepos'.
- These allow to convert between buffer positions and the corresponding
+ These allow conversion between buffer positions and the corresponding
  file byte offsets, given the file's encoding.
  
  +++
@@@ -1615,14 -1547,14 +1615,14 @@@ called interactively
  ** New function `function-put' to use instead of `put' for function properties.
  
  +++
- ** The new function `bidi-find-overridden-directionality' allows to
+ ** The new function `bidi-find-overridden-directionality' allows you 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
+ ** The new function `buffer-substring-with-bidi-context' allows you 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
@@@ -1745,7 -1677,7 +1745,7 @@@ undocumented integer-pair format.  Inst
  integers.
  
  +++
- ** New function `set-binary-mode' allows to switch a standard stream
+ ** New function `set-binary-mode' allows switching a standard stream
  of the Emacs process to binary I/O mode.
  
  +++
@@@ -1856,8 -1788,8 +1856,8 @@@ fullwidth frames, the behavior may depe
     number of columns or lines it displays.
  
  +++
- *** New function `window-preserve-size' allows to preserve the size of
windows without "fixing" it.  It's supported by `fit-window-to-buffer',
+ *** New function `window-preserve-size' allows you to preserve the size of
a window without "fixing" it.  It's supported by `fit-window-to-buffer',
  `temp-buffer-resize-mode' and `display-buffer'.
  
  +++
diff --combined lisp/font-lock.el
index 988bf7bd2160d21ef5778c1724f2009c6838dfa4,6f94f353c90fd7f0990d35a5c56be548f610b892..471db6b148fedb8cee6fc597447f359d0280d258
@@@ -39,7 -39,7 +39,7 @@@
  ;;
  ;; To turn Font Lock mode on automatically, add this to your init file:
  ;;
 -;;  (add-hook 'emacs-lisp-mode-hook 'turn-on-font-lock)
 +;;  (add-hook 'emacs-lisp-mode-hook #'turn-on-font-lock)
  ;;
  ;; Or if you want to turn Font Lock mode on in many modes:
  ;;
@@@ -562,11 -562,11 +562,11 @@@ When called with no args it should leav
  enclosing textual block and mark at the end.
  This is normally set via `font-lock-defaults'.")
  
 -(defvar font-lock-fontify-buffer-function 'font-lock-default-fontify-buffer
 +(defvar font-lock-fontify-buffer-function #'font-lock-default-fontify-buffer
    "Function to use for fontifying the buffer.
  This is normally set via `font-lock-defaults'.")
  
 -(defvar font-lock-unfontify-buffer-function 'font-lock-default-unfontify-buffer
 +(defvar font-lock-unfontify-buffer-function #'font-lock-default-unfontify-buffer
    "Function to use for unfontifying the buffer.
  This is used when turning off Font Lock mode.
  This is normally set via `font-lock-defaults'.")
@@@ -580,7 -580,7 +580,7 @@@ If it fontifies a larger region, it sho
  \(jit-lock-bounds BEG . END) indicating the bounds of the region actually
  fontified.")
  
 -(defvar font-lock-unfontify-region-function 'font-lock-default-unfontify-region
 +(defvar font-lock-unfontify-region-function #'font-lock-default-unfontify-region
    "Function to use for unfontifying a region.
  It should take two args, the beginning and end of the region.
  This is normally set via `font-lock-defaults'.")
@@@ -647,12 -647,12 +647,12 @@@ be enabled.
  (defun font-lock-mode-internal (arg)
    ;; Turn on Font Lock mode.
    (when arg
 -    (add-hook 'after-change-functions 'font-lock-after-change-function t t)
 +    (add-hook 'after-change-functions #'font-lock-after-change-function t t)
      (font-lock-set-defaults)
      (font-lock-turn-on-thing-lock))
    ;; Turn off Font Lock mode.
    (unless font-lock-mode
 -    (remove-hook 'after-change-functions 'font-lock-after-change-function t)
 +    (remove-hook 'after-change-functions #'font-lock-after-change-function t)
      (font-lock-unfontify-buffer)
      (font-lock-turn-off-thing-lock)))
  
@@@ -911,17 -911,17 +911,17 @@@ The value of this variable is used whe
      (`jit-lock-mode
       ;; Prepare for jit-lock
       (remove-hook 'after-change-functions
 -                  'font-lock-after-change-function t)
 +                  #'font-lock-after-change-function t)
       (set (make-local-variable 'font-lock-flush-function)
 -          'jit-lock-refontify)
 +          #'jit-lock-refontify)
       (set (make-local-variable 'font-lock-ensure-function)
 -          'jit-lock-fontify-now)
 +          #'jit-lock-fontify-now)
       ;; Prevent font-lock-fontify-buffer from fontifying eagerly the whole
       ;; buffer.  This is important for things like CWarn mode which
       ;; adds/removes a few keywords and does a refontify (which takes ages on
       ;; large files).
       (set (make-local-variable 'font-lock-fontify-buffer-function)
 -          'jit-lock-refontify)
 +          #'jit-lock-refontify)
       ;; Don't fontify eagerly (and don't abort if the buffer is large).
       (set (make-local-variable 'font-lock-fontified) t)
       ;; Use jit-lock.
                          (not font-lock-keywords-only))
       ;; Tell jit-lock how we extend the region to refontify.
       (add-hook 'jit-lock-after-change-extend-region-functions
 -               'font-lock-extend-jit-lock-region-after-change
 +               #'font-lock-extend-jit-lock-region-after-change
                 nil t))))
  
  (defun font-lock-turn-off-thing-lock ()
@@@ -1074,7 -1074,13 +1074,13 @@@ accessible portion of the current buffe
  
  (defvar font-lock-ensure-function
    (lambda (_beg _end)
-     (unless font-lock-fontified (font-lock-default-fontify-buffer)))
+     (unless font-lock-fontified
+       (font-lock-default-fontify-buffer)
+       (unless font-lock-mode
+         ;; If font-lock is not enabled, we don't have the hooks in place to
+         ;; track modifications, so a subsequent call to font-lock-ensure can't
+         ;; assume that the fontification is still valid.
+         (setq font-lock-fontified nil))))
    "Function to make sure a region has been fontified.
  Called with two arguments BEG and END.")
  
@@@ -1564,7 -1570,6 +1570,7 @@@ START should be at the beginning of a l
    "Put proper face on each string and comment between START and END.
  START should be at the beginning of a line."
    (syntax-propertize end)  ; Apply any needed syntax-table properties.
 +  (with-syntax-table (or syntax-ppss-table (syntax-table))
    (let ((comment-end-regexp
         (or font-lock-comment-end-skip
             (regexp-quote
                                     font-lock-comment-delimiter-face))))
          (< (point) end))
        (setq state (parse-partial-sexp (point) end nil nil state
 -                                    'syntax-table)))))
 +                                    'syntax-table))))))
  
  ;;; End of Syntactic fontification functions.
  \f
@@@ -1759,7 -1764,7 +1765,7 @@@ If SYNTACTIC-KEYWORDS is non-nil, it me
                        (mapcar #'font-lock-compile-keyword keywords))))
      (if (and (not syntactic-keywords)
             (let ((beg-function syntax-begin-function))
 -             (or (eq beg-function 'beginning-of-defun)
 +             (or (eq beg-function #'beginning-of-defun)
                     (if (symbolp beg-function)
                         (get beg-function 'font-lock-syntax-paren-check))))
             (not beginning-of-defun-function))
@@@ -1880,7 -1885,7 +1886,7 @@@ Sets various variables using `font-lock
          (let ((syntax (cdr selem)))
            (dolist (char (if (numberp (car selem))
                              (list (car selem))
 -                          (mapcar 'identity (car selem))))
 +                          (mapcar #'identity (car selem))))
              (modify-syntax-entry char syntax font-lock-syntax-table)))))
        ;; (nth 4 defaults) used to hold `font-lock-beginning-of-syntax-function',
        ;; but that was removed in 25.1, so if it's a cons cell, we assume that
  ;;         ;; The default level is usually, but not necessarily, level 1.
  ;;         (setq level (- (length keywords)
  ;;                        (length (member (eval (car keywords))
 -;;                                        (mapcar 'eval (cdr keywords))))))))
 +;;                                        (mapcar #'eval (cdr keywords))))))))
  ;;      (setq font-lock-fontify-level (list level (> level 1)
  ;;                                      (< level (1- (length keywords))))))))
  ;;
diff --combined lisp/ldefs-boot.el
index f0c65fa032bdf772ed1f4782ef36ecad42c11e7b,7d7e635271b955e833cd5bc121c07fefd2ea68a4..7b46822aad77ed08a67eb15ae274c2fad4f92eb6
@@@ -3,7 -3,7 +3,7 @@@
  ;;; Code:
  
  \f
 -;;;### (autoloads nil "5x5" "play/5x5.el" (22150 28228 674072 702000))
 +;;;### (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" (22150 28228
 -;;;;;;  750072 702000))
 +;;;### (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" (22150 28228
 -;;;;;;  750072 702000))
 +;;;### (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" (22150 28228
 -;;;;;;  754072 702000))
 +;;;### (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" (22150 28229 246072
 -;;;;;;  702000))
 +;;;### (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" (22150 28227
 -;;;;;;  338072 702000))
 +;;;### (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" (22150 28226 938072 702000))
 +;;;### (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" (22150 28226 942072 702000))
 +;;;### (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" (22150
 -;;;;;;  28226 938072 702000))
 +;;;### (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" (22150 28228 350072
 -;;;;;;  702000))
 +;;;### (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" (22150 28228 674072
 -;;;;;;  702000))
 +;;;### (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" (22150 28226 942072
 -;;;;;;  702000))
 +;;;### (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" (22150
 -;;;;;;  28228 754072 702000))
 +;;;### (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" (22150 28227 46072
 -;;;;;;  702000))
 +;;;### (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" (22150 28226 942072
 -;;;;;;  702000))
 +;;;### (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" (22150 28226 946072
 -;;;;;;  702000))
 +;;;### (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" (22150 28226 946072 702000))
 +;;;### (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" (22150 28229
 -;;;;;;  86072 702000))
 +;;;### (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" (22150 28228
 -;;;;;;  758072 702000))
 +;;;### (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" (22150
 -;;;;;;  28227 658072 702000))
 +;;;### (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" (22150 28226 946072
 -;;;;;;  702000))
 +;;;### (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" (22150 28228
 -;;;;;;  758072 702000))
 +;;;### (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" (22150 28226 946072
 -;;;;;;  702000))
 +;;;### (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" (22150
 -;;;;;;  28227 338072 702000))
 +;;;### (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" (22150 28226 946072
 -;;;;;;  702000))
 +;;;### (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" (22150 28226 946072 702000))
 +;;;### (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" (22150 28228
 -;;;;;;  758072 702000))
 +;;;### (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" (22150 28226 946072
 -;;;;;;  702000))
 +;;;### (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" (22150
 -;;;;;;  28227 338072 702000))
 +;;;### (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" (22150 28229
 -;;;;;;  94072 702000))
 +;;;### (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"
 -;;;;;;  (22150 28229 86072 702000))
 +;;;;;;  (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" (22150 28228 226072
 -;;;;;;  702000))
 +;;;### (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" (22150 28228
 -;;;;;;  674072 702000))
 +;;;### (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" (22150 28226 950072
 -;;;;;;  702000))
 +;;;### (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" (22150 28228
 -;;;;;;  350072 702000))
 +;;;### (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 "\
@@@ -2395,12 -2395,17 +2395,12 @@@ Ask a WWW browser to display the curren
  (autoload 'browse-url "browse-url" "\
  Ask a WWW browser to load URL.
  Prompt for a URL, defaulting to the URL at or before point.
 -Invokes a suitable browser function which does the actual job.
 -The variable `browse-url-browser-function' says which browser function to
 -use.  If the URL is a mailto: URL, consult `browse-url-mailto-function'
 +The variable `browse-url-browser-function' says which browser to use.
 +If the URL is a mailto: URL, consult `browse-url-mailto-function'
  first, if that exists.
  
 -The additional ARGS are passed to the browser function.  See the doc
 -strings of the actual functions, starting with `browse-url-browser-function',
 -for information about the significance of ARGS (most of the functions
 -ignore it).
 -If ARGS are omitted, the default is to pass `browse-url-new-window-flag'
 -as ARGS.
 +Passes any ARGS to the browser function.
 +The default is to pass `browse-url-new-window-flag'.
  
  \(fn URL &rest ARGS)" t nil)
  
@@@ -2490,6 -2495,7 +2490,6 @@@ Ask the Chromium WWW browser to load UR
  Default to the URL around or before point.  The strings in
  variable `browse-url-chromium-arguments' are also passed to
  Chromium.
 -The optional argument NEW-WINDOW is not used.
  
  \(fn URL &optional NEW-WINDOW)" t nil)
  
@@@ -2624,6 -2630,7 +2624,6 @@@ URL defaults to the URL around or befor
  This runs the text browser specified by `browse-url-text-browser'.
  in an Xterm window using the Xterm program named by `browse-url-xterm-program'
  with possible additional arguments `browse-url-xterm-args'.
 -The optional argument NEW-WINDOW is not used.
  
  \(fn URL &optional NEW-WINDOW)" t nil)
  
@@@ -2672,6 -2679,7 +2672,6 @@@ don't offer a form of remote control
  (autoload 'browse-url-kde "browse-url" "\
  Ask the KDE WWW browser to load URL.
  Default to the URL around or before point.
 -The optional argument NEW-WINDOW is not used.
  
  \(fn URL &optional NEW-WINDOW)" t nil)
  
@@@ -2689,7 -2697,7 +2689,7 @@@ from `browse-url-elinks-wrapper'
  
  ;;;***
  \f
 -;;;### (autoloads nil "bs" "bs.el" (22150 28226 950072 702000))
 +;;;### (autoloads nil "bs" "bs.el" (22086 11929 498062 731000))
  ;;; Generated autoloads from bs.el
  (push (purecopy '(bs 1 17)) package--builtin-versions)
  
@@@ -2730,8 -2738,8 +2730,8 @@@ name of buffer configuration
  
  ;;;***
  \f
 -;;;### (autoloads nil "bubbles" "play/bubbles.el" (22150 28228 674072
 -;;;;;;  702000))
 +;;;### (autoloads nil "bubbles" "play/bubbles.el" (22086 11930 122062
 +;;;;;;  731000))
  ;;; Generated autoloads from play/bubbles.el
  
  (autoload 'bubbles "bubbles" "\
@@@ -2753,7 -2761,7 +2753,7 @@@ columns on its right towards the left
  ;;;***
  \f
  ;;;### (autoloads nil "bug-reference" "progmodes/bug-reference.el"
 -;;;;;;  (22150 28228 758072 702000))
 +;;;;;;  (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 -2781,8 +2773,8 @@@ Like `bug-reference-mode', but only but
  
  ;;;***
  \f
 -;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (22150
 -;;;;;;  28227 358072 702000))
 +;;;### (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 -2902,8 +2894,8 @@@ and corresponding effects
  
  ;;;***
  \f
 -;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (22150
 -;;;;;;  28227 46072 702000))
 +;;;### (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" (22150 28227
 -;;;;;;  50072 702000))
 +;;;### (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" (22150
 -;;;;;;  28227 50072 702000))
 +;;;### (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 -2937,7 +2929,7 @@@ from the cursor position
  
  ;;;***
  \f
 -;;;### (autoloads nil "calc" "calc/calc.el" (22150 28227 26072 702000))
 +;;;### (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 -3023,8 +3015,8 @@@ See Info node `(calc)Defining Functions
  
  ;;;***
  \f
 -;;;### (autoloads nil "calc-undo" "calc/calc-undo.el" (22150 28227
 -;;;;;;  22072 702000))
 +;;;### (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" (22150 28227 46072
 -;;;;;;  702000))
 +;;;### (autoloads nil "calculator" "calculator.el" (22092 27717 520268
 +;;;;;;  464000))
  ;;; Generated autoloads from calculator.el
  
  (autoload 'calculator "calculator" "\
@@@ -3038,8 -3046,8 +3038,8 @@@ See the documentation for `calculator-m
  
  ;;;***
  \f
 -;;;### (autoloads nil "calendar" "calendar/calendar.el" (22150 28227
 -;;;;;;  62072 702000))
 +;;;### (autoloads nil "calendar" "calendar/calendar.el" (22092 27717
 +;;;;;;  540268 464000))
  ;;; Generated autoloads from calendar/calendar.el
  
  (autoload 'calendar "calendar" "\
@@@ -3082,8 -3090,8 +3082,8 @@@ This function is suitable for executio
  
  ;;;***
  \f
 -;;;### (autoloads nil "canlock" "gnus/canlock.el" (22150 28227 658072
 -;;;;;;  702000))
 +;;;### (autoloads nil "canlock" "gnus/canlock.el" (22086 11929 774062
 +;;;;;;  731000))
  ;;; Generated autoloads from gnus/canlock.el
  
  (autoload 'canlock-insert-header "canlock" "\
@@@ -3100,8 -3108,8 +3100,8 @@@ it fails
  
  ;;;***
  \f
 -;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (22150
 -;;;;;;  28228 786072 702000))
 +;;;### (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 -3119,8 +3111,8 @@@ Return the syntactic context of the cur
  
  ;;;***
  \f
 -;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (22150 28228
 -;;;;;;  790072 702000))
 +;;;### (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 -3218,8 +3210,8 @@@ the absolute file name of the file if S
  
  ;;;***
  \f
 -;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (22150 28228
 -;;;;;;  798072 702000))
 +;;;### (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 -3377,8 +3369,8 @@@ Key bindings
  
  ;;;***
  \f
 -;;;### (autoloads nil "cc-styles" "progmodes/cc-styles.el" (22150
 -;;;;;;  28228 798072 702000))
 +;;;### (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 -3429,8 +3421,8 @@@ and exists only for compatibility reaso
  
  ;;;***
  \f
 -;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (22150 28228
 -;;;;;;  802072 702000))
 +;;;### (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" (22150 28228 106072
 -;;;;;;  702000))
 +;;;### (autoloads nil "ccl" "international/ccl.el" (22086 11929 874062
 +;;;;;;  731000))
  ;;; Generated autoloads from international/ccl.el
  
  (autoload 'ccl-compile "ccl" "\
@@@ -3724,8 -3732,8 +3724,8 @@@ See the documentation of `define-ccl-pr
  
  ;;;***
  \f
 -;;;### (autoloads nil "cconv" "emacs-lisp/cconv.el" (22150 28227
 -;;;;;;  358072 702000))
 +;;;### (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 -3752,15 +3744,15 @@@ Add the warnings that closure conversio
  
  ;;;***
  \f
 -;;;### (autoloads nil "cedet" "cedet/cedet.el" (22150 28227 146072
 -;;;;;;  702000))
 +;;;### (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" (22150 28228
 -;;;;;;  802072 702000))
 +;;;### (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 -3789,8 +3781,8 @@@ Choose `cfengine2-mode' or `cfengine3-m
  
  ;;;***
  \f
 -;;;### (autoloads nil "character-fold" "character-fold.el" (22150
 -;;;;;;  28227 274072 702000))
 +;;;### (autoloads nil "character-fold" "character-fold.el" (22109
 +;;;;;;  36809 195889 179000))
  ;;; Generated autoloads from character-fold.el
  
  (autoload 'character-fold-to-regexp "character-fold" "\
@@@ -3801,15 -3809,15 +3801,15 @@@ from which to start
  
  ;;;***
  \f
 -;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (22150 28227
 -;;;;;;  358072 702000))
 +;;;### (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"
 -;;;;;;  (22150 28227 358072 702000))
 +;;;;;;  (22086 11929 650062 731000))
  ;;; Generated autoloads from emacs-lisp/check-declare.el
  
  (autoload 'check-declare-file "check-declare" "\
@@@ -3826,8 -3834,8 +3826,8 @@@ Returns non-nil if any false statement
  
  ;;;***
  \f
 -;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (22150
 -;;;;;;  28227 362072 702000))
 +;;;### (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)
@@@ -4037,8 -4045,8 +4037,8 @@@ Find package keywords that aren't in `f
  
  ;;;***
  \f
 -;;;### (autoloads nil "china-util" "language/china-util.el" (22150
 -;;;;;;  28228 162072 702000))
 +;;;### (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" "\
@@@ -4075,8 -4083,8 +4075,8 @@@ Encode the text in the current buffer t
  
  ;;;***
  \f
 -;;;### (autoloads nil "chistory" "chistory.el" (22150 28227 274072
 -;;;;;;  702000))
 +;;;### (autoloads nil "chistory" "chistory.el" (22086 11929 582062
 +;;;;;;  731000))
  ;;; Generated autoloads from chistory.el
  
  (autoload 'repeat-matching-complex-command "chistory" "\
@@@ -4115,8 -4123,8 +4115,8 @@@ and runs the normal hook `command-histo
  
  ;;;***
  \f
 -;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (22150
 -;;;;;;  28227 366072 702000))
 +;;;### (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" "\
@@@ -4199,8 -4207,8 +4199,8 @@@ instead
  
  ;;;***
  \f
 -;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (22150 28227
 -;;;;;;  366072 702000))
 +;;;### (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)
  
@@@ -4218,8 -4226,8 +4218,8 @@@ a future Emacs interpreter will be abl
  
  ;;;***
  \f
 -;;;### (autoloads nil "cmacexp" "progmodes/cmacexp.el" (22150 28228
 -;;;;;;  802072 702000))
 +;;;### (autoloads nil "cmacexp" "progmodes/cmacexp.el" (22086 11930
 +;;;;;;  158062 731000))
  ;;; Generated autoloads from progmodes/cmacexp.el
  
  (autoload 'c-macro-expand "cmacexp" "\
@@@ -4239,8 -4247,8 +4239,8 @@@ For use inside Lisp programs, see also 
  
  ;;;***
  \f
 -;;;### (autoloads nil "cmuscheme" "cmuscheme.el" (22150 28227 274072
 -;;;;;;  702000))
 +;;;### (autoloads nil "cmuscheme" "cmuscheme.el" (22086 11929 582062
 +;;;;;;  731000))
  ;;; Generated autoloads from cmuscheme.el
  
  (autoload 'run-scheme "cmuscheme" "\
@@@ -4260,7 -4268,7 +4260,7 @@@ is run)
  
  ;;;***
  \f
 -;;;### (autoloads nil "color" "color.el" (22150 28227 274072 702000))
 +;;;### (autoloads nil "color" "color.el" (22086 11929 582062 731000))
  ;;; Generated autoloads from color.el
  
  (autoload 'color-name-to-rgb "color" "\
@@@ -4279,7 -4287,7 +4279,7 @@@ If FRAME cannot display COLOR, return n
  
  ;;;***
  \f
 -;;;### (autoloads nil "comint" "comint.el" (22150 28227 278072 702000))
 +;;;### (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) "\
@@@ -4380,8 -4388,8 +4380,8 @@@ REGEXP-GROUP is the regular expression 
  
  ;;;***
  \f
 -;;;### (autoloads nil "compare-w" "vc/compare-w.el" (22150 28229
 -;;;;;;  250072 702000))
 +;;;### (autoloads nil "compare-w" "vc/compare-w.el" (22086 11930
 +;;;;;;  370062 731000))
  ;;; Generated autoloads from vc/compare-w.el
  
  (autoload 'compare-windows "compare-w" "\
@@@ -4417,8 -4425,8 +4417,8 @@@ on third call it again advances points 
  
  ;;;***
  \f
 -;;;### (autoloads nil "compile" "progmodes/compile.el" (22150 28228
 -;;;;;;  802072 702000))
 +;;;### (autoloads nil "compile" "progmodes/compile.el" (22099 26170
 +;;;;;;  422017 16000))
  ;;; Generated autoloads from progmodes/compile.el
  
  (defvar compilation-mode-hook nil "\
@@@ -4599,8 -4607,8 +4599,8 @@@ This is the value of `next-error-functi
  
  ;;;***
  \f
 -;;;### (autoloads nil "completion" "completion.el" (22150 28227 286072
 -;;;;;;  702000))
 +;;;### (autoloads nil "completion" "completion.el" (22086 11929 586062
 +;;;;;;  731000))
  ;;; Generated autoloads from completion.el
  
  (defvar dynamic-completion-mode nil "\
@@@ -4622,8 -4630,8 +4622,8 @@@ if ARG is omitted or nil
  
  ;;;***
  \f
 -;;;### (autoloads nil "conf-mode" "textmodes/conf-mode.el" (22150
 -;;;;;;  28229 94072 702000))
 +;;;### (autoloads nil "conf-mode" "textmodes/conf-mode.el" (22086
 +;;;;;;  11930 314062 731000))
  ;;; Generated autoloads from textmodes/conf-mode.el
  
  (autoload 'conf-mode "conf-mode" "\
@@@ -4778,8 -4786,8 +4778,8 @@@ For details see `conf-mode'.  Example
  
  ;;;***
  \f
 -;;;### (autoloads nil "cookie1" "play/cookie1.el" (22150 28228 674072
 -;;;;;;  702000))
 +;;;### (autoloads nil "cookie1" "play/cookie1.el" (22086 11930 122062
 +;;;;;;  731000))
  ;;; Generated autoloads from play/cookie1.el
  
  (autoload 'cookie "cookie1" "\
@@@ -4807,8 -4815,8 +4807,8 @@@ and subsequent calls on the same file w
  
  ;;;***
  \f
 -;;;### (autoloads nil "copyright" "emacs-lisp/copyright.el" (22150
 -;;;;;;  28227 374072 702000))
 +;;;### (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)
@@@ -4846,8 -4854,8 +4846,8 @@@ If FIX is non-nil, run `copyright-fix-y
  
  ;;;***
  \f
 -;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (22150
 -;;;;;;  28228 806072 702000))
 +;;;### (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)
@@@ -5045,8 -5053,8 +5045,8 @@@ Run a `perldoc' on the word around poin
  
  ;;;***
  \f
 -;;;### (autoloads nil "cpp" "progmodes/cpp.el" (22150 28228 806072
 -;;;;;;  702000))
 +;;;### (autoloads nil "cpp" "progmodes/cpp.el" (22092 27718 148268
 +;;;;;;  464000))
  ;;; Generated autoloads from progmodes/cpp.el
  
  (autoload 'cpp-highlight-buffer "cpp" "\
@@@ -5064,8 -5072,8 +5064,8 @@@ Edit display information for cpp condit
  
  ;;;***
  \f
 -;;;### (autoloads nil "crm" "emacs-lisp/crm.el" (22150 28227 374072
 -;;;;;;  702000))
 +;;;### (autoloads nil "crm" "emacs-lisp/crm.el" (22086 11929 662062
 +;;;;;;  731000))
  ;;; Generated autoloads from emacs-lisp/crm.el
  
  (autoload 'completing-read-multiple "crm" "\
@@@ -5091,8 -5099,8 +5091,8 @@@ with empty strings removed
  
  ;;;***
  \f
 -;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (22150 28229
 -;;;;;;  94072 702000))
 +;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (22086 11930
 +;;;;;;  314062 731000))
  ;;; Generated autoloads from textmodes/css-mode.el
  
  (autoload 'css-mode "css-mode" "\
@@@ -5108,8 -5116,8 +5108,8 @@@ Major mode to edit \"Sassy CSS\" files
  
  ;;;***
  \f
 -;;;### (autoloads nil "cua-base" "emulation/cua-base.el" (22150 28227
 -;;;;;;  458072 702000))
 +;;;### (autoloads nil "cua-base" "emulation/cua-base.el" (22086 11929
 +;;;;;;  690062 731000))
  ;;; Generated autoloads from emulation/cua-base.el
  
  (defvar cua-mode nil "\
@@@ -5154,8 -5162,8 +5154,8 @@@ Enable CUA selection mode without the C
  
  ;;;***
  \f
 -;;;### (autoloads nil "cua-rect" "emulation/cua-rect.el" (22150 28227
 -;;;;;;  462072 702000))
 +;;;### (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" "\
@@@ -5167,7 -5175,7 +5167,7 @@@ Activates the region if needed.  Only l
  ;;;***
  \f
  ;;;### (autoloads nil "cursor-sensor" "emacs-lisp/cursor-sensor.el"
 -;;;;;;  (22150 28227 374072 702000))
 +;;;;;;  (22086 11929 662062 731000))
  ;;; Generated autoloads from emacs-lisp/cursor-sensor.el
  
  (autoload 'cursor-intangible-mode "cursor-sensor" "\
@@@ -5187,8 -5195,8 +5187,8 @@@ entering the area covered by the text-p
  
  ;;;***
  \f
 -;;;### (autoloads nil "cus-edit" "cus-edit.el" (22150 28227 290072
 -;;;;;;  702000))
 +;;;### (autoloads nil "cus-edit" "cus-edit.el" (22086 11929 590062
 +;;;;;;  731000))
  ;;; Generated autoloads from cus-edit.el
  
  (defvar custom-browse-sort-alphabetically nil "\
@@@ -5507,8 -5515,8 +5507,8 @@@ The format is suitable for use with `ea
  
  ;;;***
  \f
 -;;;### (autoloads nil "cus-theme" "cus-theme.el" (22150 28227 290072
 -;;;;;;  702000))
 +;;;### (autoloads nil "cus-theme" "cus-theme.el" (22086 11929 590062
 +;;;;;;  731000))
  ;;; Generated autoloads from cus-theme.el
  
  (autoload 'customize-create-theme "cus-theme" "\
@@@ -5541,8 -5549,8 +5541,8 @@@ omitted, a buffer named *Custom Themes
  
  ;;;***
  \f
 -;;;### (autoloads nil "cvs-status" "vc/cvs-status.el" (22150 28229
 -;;;;;;  250072 702000))
 +;;;### (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" "\
@@@ -5552,8 -5560,8 +5552,8 @@@ Mode used for cvs status output
  
  ;;;***
  \f
 -;;;### (autoloads nil "cwarn" "progmodes/cwarn.el" (22150 28228 810072
 -;;;;;;  702000))
 +;;;### (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)
  
@@@ -5597,8 -5605,8 +5597,8 @@@ See `cwarn-mode' for more information o
  
  ;;;***
  \f
 -;;;### (autoloads nil "cyril-util" "language/cyril-util.el" (22150
 -;;;;;;  28228 162072 702000))
 +;;;### (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" "\
@@@ -5626,8 -5634,8 +5626,8 @@@ If the argument is nil, we return the d
  
  ;;;***
  \f
 -;;;### (autoloads nil "dabbrev" "dabbrev.el" (22150 28227 290072
 -;;;;;;  702000))
 +;;;### (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)
@@@ -5673,8 -5681,8 +5673,8 @@@ See also `dabbrev-abbrev-char-regexp' a
  
  ;;;***
  \f
 -;;;### (autoloads nil "data-debug" "cedet/data-debug.el" (22150 28227
 -;;;;;;  146072 702000))
 +;;;### (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" "\
@@@ -5684,7 -5692,7 +5684,7 @@@ Create a new data-debug buffer with NAM
  
  ;;;***
  \f
 -;;;### (autoloads nil "dbus" "net/dbus.el" (22150 28228 354072 702000))
 +;;;### (autoloads nil "dbus" "net/dbus.el" (22086 11929 990062 731000))
  ;;; Generated autoloads from net/dbus.el
  
  (autoload 'dbus-handle-event "dbus" "\
@@@ -5697,8 -5705,8 +5697,8 @@@ If the HANDLER returns a `dbus-error', 
  
  ;;;***
  \f
 -;;;### (autoloads nil "dcl-mode" "progmodes/dcl-mode.el" (22150 28228
 -;;;;;;  810072 702000))
 +;;;### (autoloads nil "dcl-mode" "progmodes/dcl-mode.el" (22086 11930
 +;;;;;;  162062 731000))
  ;;; Generated autoloads from progmodes/dcl-mode.el
  
  (autoload 'dcl-mode "dcl-mode" "\
@@@ -5824,8 -5832,8 +5824,8 @@@ There is some minimal font-lock suppor
  
  ;;;***
  \f
 -;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (22150 28227
 -;;;;;;  378072 702000))
 +;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (22086 11929
 +;;;;;;  662062 731000))
  ;;; Generated autoloads from emacs-lisp/debug.el
  
  (setq debugger 'debug)
@@@ -5868,8 -5876,8 +5868,8 @@@ To specify a nil argument interactively
  
  ;;;***
  \f
 -;;;### (autoloads nil "decipher" "play/decipher.el" (22150 28228
 -;;;;;;  674072 702000))
 +;;;### (autoloads nil "decipher" "play/decipher.el" (22086 11930
 +;;;;;;  126062 731000))
  ;;; Generated autoloads from play/decipher.el
  
  (autoload 'decipher "decipher" "\
@@@ -5897,8 -5905,8 +5897,8 @@@ The most useful commands are
  
  ;;;***
  \f
 -;;;### (autoloads nil "delim-col" "delim-col.el" (22150 28227 290072
 -;;;;;;  702000))
 +;;;### (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)
  
@@@ -5923,7 -5931,7 +5923,7 @@@ START and END delimits the corners of t
  
  ;;;***
  \f
 -;;;### (autoloads nil "delsel" "delsel.el" (22150 28227 290072 702000))
 +;;;### (autoloads nil "delsel" "delsel.el" (22086 11929 594062 731000))
  ;;; Generated autoloads from delsel.el
  
  (defalias 'pending-delete-mode 'delete-selection-mode)
@@@ -5951,8 -5959,8 +5951,8 @@@ point regardless of any selection
  
  ;;;***
  \f
 -;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (22150 28227
 -;;;;;;  398072 702000))
 +;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (22086 11929
 +;;;;;;  666062 731000))
  ;;; Generated autoloads from emacs-lisp/derived.el
  
  (autoload 'define-derived-mode "derived" "\
@@@ -6020,8 -6028,8 +6020,8 @@@ the first time the mode is used
  
  ;;;***
  \f
 -;;;### (autoloads nil "descr-text" "descr-text.el" (22150 28227 290072
 -;;;;;;  702000))
 +;;;### (autoloads nil "descr-text" "descr-text.el" (22086 11929 594062
 +;;;;;;  731000))
  ;;; Generated autoloads from descr-text.el
  
  (autoload 'describe-text-properties "descr-text" "\
@@@ -6070,8 -6078,8 +6070,8 @@@ This function is meant to be used as a 
  
  ;;;***
  \f
 -;;;### (autoloads nil "desktop" "desktop.el" (22150 28227 294072
 -;;;;;;  702000))
 +;;;### (autoloads nil "desktop" "desktop.el" (22092 27717 592268
 +;;;;;;  464000))
  ;;; Generated autoloads from desktop.el
  
  (defvar desktop-save-mode nil "\
@@@ -6280,8 -6288,8 +6280,8 @@@ Revert to the last loaded desktop
  
  ;;;***
  \f
 -;;;### (autoloads nil "deuglify" "gnus/deuglify.el" (22150 28227
 -;;;;;;  658072 702000))
 +;;;### (autoloads nil "deuglify" "gnus/deuglify.el" (22086 11929
 +;;;;;;  774062 731000))
  ;;; Generated autoloads from gnus/deuglify.el
  
  (autoload 'gnus-article-outlook-unwrap-lines "deuglify" "\
@@@ -6313,8 -6321,8 +6313,8 @@@ Deuglify broken Outlook (Express) artic
  
  ;;;***
  \f
 -;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (22150
 -;;;;;;  28227 74072 702000))
 +;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (22092
 +;;;;;;  27717 544268 464000))
  ;;; Generated autoloads from calendar/diary-lib.el
  
  (autoload 'diary "diary-lib" "\
@@@ -6356,7 -6364,7 +6356,7 @@@ Major mode for editing the diary file
  
  ;;;***
  \f
 -;;;### (autoloads nil "diff" "vc/diff.el" (22150 28229 254072 702000))
 +;;;### (autoloads nil "diff" "vc/diff.el" (22086 11930 370062 731000))
  ;;; Generated autoloads from vc/diff.el
  
  (defvar diff-switches (purecopy "-u") "\
@@@ -6404,8 -6412,8 +6404,8 @@@ This requires the external program `dif
  
  ;;;***
  \f
 -;;;### (autoloads nil "diff-mode" "vc/diff-mode.el" (22150 28229
 -;;;;;;  250072 702000))
 +;;;### (autoloads nil "diff-mode" "vc/diff-mode.el" (22087 9807 430279
 +;;;;;;  951000))
  ;;; Generated autoloads from vc/diff-mode.el
  
  (autoload 'diff-mode "diff-mode" "\
@@@ -6437,7 -6445,7 +6437,7 @@@ the mode if ARG is omitted or nil
  
  ;;;***
  \f
 -;;;### (autoloads nil "dig" "net/dig.el" (22150 28228 354072 702000))
 +;;;### (autoloads nil "dig" "net/dig.el" (22086 11929 990062 731000))
  ;;; Generated autoloads from net/dig.el
  
  (autoload 'dig "dig" "\
@@@ -6448,7 -6456,7 +6448,7 @@@ Optional arguments are passed to `dig-i
  
  ;;;***
  \f
 -;;;### (autoloads nil "dired" "dired.el" (22150 28227 310072 702000))
 +;;;### (autoloads nil "dired" "dired.el" (22086 11929 598062 731000))
  ;;; Generated autoloads from dired.el
  
  (defvar dired-listing-switches (purecopy "-al") "\
@@@ -6574,8 -6582,8 +6574,8 @@@ Keybindings
  
  ;;;***
  \f
 -;;;### (autoloads nil "dirtrack" "dirtrack.el" (22150 28227 310072
 -;;;;;;  702000))
 +;;;### (autoloads nil "dirtrack" "dirtrack.el" (22086 11929 598062
 +;;;;;;  731000))
  ;;; Generated autoloads from dirtrack.el
  
  (autoload 'dirtrack-mode "dirtrack" "\
@@@ -6605,8 -6613,8 +6605,8 @@@ from `default-directory'
  
  ;;;***
  \f
 -;;;### (autoloads nil "disass" "emacs-lisp/disass.el" (22150 28227
 -;;;;;;  398072 702000))
 +;;;### (autoloads nil "disass" "emacs-lisp/disass.el" (22086 11929
 +;;;;;;  666062 731000))
  ;;; Generated autoloads from emacs-lisp/disass.el
  
  (autoload 'disassemble "disass" "\
@@@ -6620,8 -6628,8 +6620,8 @@@ redefine OBJECT if it is a symbol
  
  ;;;***
  \f
 -;;;### (autoloads nil "disp-table" "disp-table.el" (22150 28227 310072
 -;;;;;;  702000))
 +;;;### (autoloads nil "disp-table" "disp-table.el" (22086 11929 598062
 +;;;;;;  731000))
  ;;; Generated autoloads from disp-table.el
  
  (autoload 'make-display-table "disp-table" "\
@@@ -6742,8 -6750,8 +6742,8 @@@ in `.emacs'
  
  ;;;***
  \f
 -;;;### (autoloads nil "dissociate" "play/dissociate.el" (22150 28228
 -;;;;;;  674072 702000))
 +;;;### (autoloads nil "dissociate" "play/dissociate.el" (22086 11930
 +;;;;;;  126062 731000))
  ;;; Generated autoloads from play/dissociate.el
  
  (autoload 'dissociated-press "dissociate" "\
@@@ -6759,7 -6767,7 +6759,7 @@@ Default is 2
  
  ;;;***
  \f
 -;;;### (autoloads nil "dnd" "dnd.el" (22150 28227 314072 702000))
 +;;;### (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)) "\
@@@ -6779,8 -6787,8 +6779,8 @@@ if some action was made, or nil if the 
  
  ;;;***
  \f
 -;;;### (autoloads nil "dns-mode" "textmodes/dns-mode.el" (22150 28229
 -;;;;;;  98072 702000))
 +;;;### (autoloads nil "dns-mode" "textmodes/dns-mode.el" (22086 11930
 +;;;;;;  314062 731000))
  ;;; Generated autoloads from textmodes/dns-mode.el
  
  (autoload 'dns-mode "dns-mode" "\
@@@ -6803,8 -6811,8 +6803,8 @@@ Locate SOA record and increment the ser
  
  ;;;***
  \f
 -;;;### (autoloads nil "doc-view" "doc-view.el" (22150 28227 314072
 -;;;;;;  702000))
 +;;;### (autoloads nil "doc-view" "doc-view.el" (22086 11929 598062
 +;;;;;;  731000))
  ;;; Generated autoloads from doc-view.el
  
  (autoload 'doc-view-mode-p "doc-view" "\
@@@ -6850,8 -6858,8 +6850,8 @@@ See the command `doc-view-mode' for mor
  
  ;;;***
  \f
 -;;;### (autoloads nil "doctor" "play/doctor.el" (22150 28228 678072
 -;;;;;;  702000))
 +;;;### (autoloads nil "doctor" "play/doctor.el" (22086 11930 126062
 +;;;;;;  731000))
  ;;; Generated autoloads from play/doctor.el
  
  (autoload 'doctor "doctor" "\
@@@ -6861,7 -6869,7 +6861,7 @@@ Switch to *doctor* buffer and start giv
  
  ;;;***
  \f
 -;;;### (autoloads nil "double" "double.el" (22150 28227 318072 702000))
 +;;;### (autoloads nil "double" "double.el" (22086 11929 602062 731000))
  ;;; Generated autoloads from double.el
  
  (autoload 'double-mode "double" "\
@@@ -6877,8 -6885,8 +6877,8 @@@ strings when pressed twice.  See `doubl
  
  ;;;***
  \f
 -;;;### (autoloads nil "dunnet" "play/dunnet.el" (22150 28228 678072
 -;;;;;;  702000))
 +;;;### (autoloads nil "dunnet" "play/dunnet.el" (22093 48588 576393
 +;;;;;;  539000))
  ;;; Generated autoloads from play/dunnet.el
  (push (purecopy '(dunnet 2 2)) package--builtin-versions)
  
@@@ -6889,8 -6897,8 +6889,8 @@@ Switch to *dungeon* buffer and start ga
  
  ;;;***
  \f
 -;;;### (autoloads nil "easy-mmode" "emacs-lisp/easy-mmode.el" (22150
 -;;;;;;  28227 398072 702000))
 +;;;### (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)
@@@ -7034,8 -7042,8 +7034,8 @@@ CSS contains a list of syntax specifica
  
  ;;;***
  \f
 -;;;### (autoloads nil "easymenu" "emacs-lisp/easymenu.el" (22150
 -;;;;;;  28227 398072 702000))
 +;;;### (autoloads nil "easymenu" "emacs-lisp/easymenu.el" (22086
 +;;;;;;  11929 666062 731000))
  ;;; Generated autoloads from emacs-lisp/easymenu.el
  
  (autoload 'easy-menu-define "easymenu" "\
@@@ -7173,8 -7181,8 +7173,8 @@@ To implement dynamic menus, either cal
  
  ;;;***
  \f
 -;;;### (autoloads nil "ebnf2ps" "progmodes/ebnf2ps.el" (22150 28228
 -;;;;;;  814072 702000))
 +;;;### (autoloads nil "ebnf2ps" "progmodes/ebnf2ps.el" (22086 11930
 +;;;;;;  166062 731000))
  ;;; Generated autoloads from progmodes/ebnf2ps.el
  (push (purecopy '(ebnf2ps 4 4)) package--builtin-versions)
  
@@@ -7439,8 -7447,8 +7439,8 @@@ See `ebnf-style-database' documentation
  
  ;;;***
  \f
 -;;;### (autoloads nil "ebrowse" "progmodes/ebrowse.el" (22150 28228
 -;;;;;;  814072 702000))
 +;;;### (autoloads nil "ebrowse" "progmodes/ebrowse.el" (22086 11930
 +;;;;;;  170062 731000))
  ;;; Generated autoloads from progmodes/ebrowse.el
  
  (autoload 'ebrowse-tree-mode "ebrowse" "\
@@@ -7588,8 -7596,8 +7588,8 @@@ Display statistics for a class tree
  
  ;;;***
  \f
 -;;;### (autoloads nil "ebuff-menu" "ebuff-menu.el" (22150 28227 318072
 -;;;;;;  702000))
 +;;;### (autoloads nil "ebuff-menu" "ebuff-menu.el" (22086 11929 602062
 +;;;;;;  731000))
  ;;; Generated autoloads from ebuff-menu.el
  
  (autoload 'electric-buffer-list "ebuff-menu" "\
@@@ -7621,8 -7629,8 +7621,8 @@@ Run hooks in `electric-buffer-menu-mode
  
  ;;;***
  \f
 -;;;### (autoloads nil "echistory" "echistory.el" (22150 28227 318072
 -;;;;;;  702000))
 +;;;### (autoloads nil "echistory" "echistory.el" (22086 11929 602062
 +;;;;;;  731000))
  ;;; Generated autoloads from echistory.el
  
  (autoload 'Electric-command-history-redo-expression "echistory" "\
@@@ -7633,8 -7641,8 +7633,8 @@@ With prefix arg NOCONFIRM, execute curr
  
  ;;;***
  \f
 -;;;### (autoloads nil "ecomplete" "gnus/ecomplete.el" (22150 28227
 -;;;;;;  658072 702000))
 +;;;### (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" (22150 28227 202072 702000))
 +;;;### (autoloads nil "ede" "cedet/ede.el" (22092 27717 556268 464000))
  ;;; Generated autoloads from cedet/ede.el
  (push (purecopy '(ede 1 2)) package--builtin-versions)
  
@@@ -7670,8 -7678,8 +7670,8 @@@ an EDE controlled project
  
  ;;;***
  \f
 -;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (22150 28227
 -;;;;;;  406072 702000))
 +;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (22086 11929
 +;;;;;;  670062 731000))
  ;;; Generated autoloads from emacs-lisp/edebug.el
  
  (defvar edebug-all-defs nil "\
@@@ -7735,7 -7743,7 +7735,7 @@@ Toggle edebugging of all forms
  
  ;;;***
  \f
 -;;;### (autoloads nil "ediff" "vc/ediff.el" (22150 28229 274072 702000))
 +;;;### (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)
  
@@@ -8007,8 -8015,8 +8007,8 @@@ With optional NODE, goes to that node
  
  ;;;***
  \f
 -;;;### (autoloads nil "ediff-help" "vc/ediff-help.el" (22150 28229
 -;;;;;;  254072 702000))
 +;;;### (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" (22150 28229
 -;;;;;;  262072 702000))
 +;;;### (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" "\
@@@ -8031,8 -8039,8 +8031,8 @@@ Display Ediff's registry
  
  ;;;***
  \f
 -;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (22150 28229
 -;;;;;;  270072 702000))
 +;;;### (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" "\
@@@ -8051,8 -8059,8 +8051,8 @@@ To change the default, set the variabl
  
  ;;;***
  \f
 -;;;### (autoloads nil "edmacro" "edmacro.el" (22150 28227 318072
 -;;;;;;  702000))
 +;;;### (autoloads nil "edmacro" "edmacro.el" (22086 11929 602062
 +;;;;;;  731000))
  ;;; Generated autoloads from edmacro.el
  (push (purecopy '(edmacro 2 1)) package--builtin-versions)
  
@@@ -8101,8 -8109,8 +8101,8 @@@ or nil, use a compact 80-column format
  
  ;;;***
  \f
 -;;;### (autoloads nil "edt" "emulation/edt.el" (22150 28227 462072
 -;;;;;;  702000))
 +;;;### (autoloads nil "edt" "emulation/edt.el" (22086 11929 694062
 +;;;;;;  731000))
  ;;; Generated autoloads from emulation/edt.el
  
  (autoload 'edt-set-scroll-margins "edt" "\
@@@ -8119,7 -8127,7 +8119,7 @@@ Turn on EDT Emulation
  
  ;;;***
  \f
 -;;;### (autoloads nil "ehelp" "ehelp.el" (22150 28227 318072 702000))
 +;;;### (autoloads nil "ehelp" "ehelp.el" (22086 11929 602062 731000))
  ;;; Generated autoloads from ehelp.el
  
  (autoload 'with-electric-help "ehelp" "\
@@@ -8155,15 -8163,15 +8155,15 @@@ BUFFER is put back into its original ma
  
  ;;;***
  \f
 -;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (22150 28227
 -;;;;;;  422072 702000))
 +;;;### (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" (22150
 -;;;;;;  28227 418072 702000))
 +;;;### (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)
  
@@@ -8179,8 -8187,8 +8179,8 @@@ It creates an autoload function for CNA
  
  ;;;***
  \f
 -;;;### (autoloads nil "elec-pair" "elec-pair.el" (22150 28227 322072
 -;;;;;;  702000))
 +;;;### (autoloads nil "elec-pair" "elec-pair.el" (22086 11929 602062
 +;;;;;;  731000))
  ;;; Generated autoloads from elec-pair.el
  
  (defvar electric-pair-text-pairs '((34 . 34)) "\
@@@ -8221,8 -8229,8 +8221,8 @@@ Toggle `electric-pair-mode' only in thi
  
  ;;;***
  \f
 -;;;### (autoloads nil "elide-head" "elide-head.el" (22150 28227 322072
 -;;;;;;  702000))
 +;;;### (autoloads nil "elide-head" "elide-head.el" (22086 11929 602062
 +;;;;;;  731000))
  ;;; Generated autoloads from elide-head.el
  
  (autoload 'elide-head "elide-head" "\
@@@ -8237,8 -8245,8 +8237,8 @@@ This is suitable as an entry on `find-f
  
  ;;;***
  \f
 -;;;### (autoloads nil "elint" "emacs-lisp/elint.el" (22150 28227
 -;;;;;;  422072 702000))
 +;;;### (autoloads nil "elint" "emacs-lisp/elint.el" (22086 11929
 +;;;;;;  674062 731000))
  ;;; Generated autoloads from emacs-lisp/elint.el
  
  (autoload 'elint-file "elint" "\
@@@ -8273,8 -8281,8 +8273,8 @@@ optional prefix argument REINIT is non-
  
  ;;;***
  \f
 -;;;### (autoloads nil "elp" "emacs-lisp/elp.el" (22150 28227 422072
 -;;;;;;  702000))
 +;;;### (autoloads nil "elp" "emacs-lisp/elp.el" (22086 11929 674062
 +;;;;;;  731000))
  ;;; Generated autoloads from emacs-lisp/elp.el
  
  (autoload 'elp-instrument-function "elp" "\
@@@ -8308,8 -8316,8 +8308,8 @@@ displayed
  
  ;;;***
  \f
 -;;;### (autoloads nil "emacs-lock" "emacs-lock.el" (22150 28227 458072
 -;;;;;;  702000))
 +;;;### (autoloads nil "emacs-lock" "emacs-lock.el" (22086 11929 690062
 +;;;;;;  731000))
  ;;; Generated autoloads from emacs-lock.el
  
  (autoload 'emacs-lock-mode "emacs-lock" "\
@@@ -8336,8 -8344,8 +8336,8 @@@ Other values are interpreted as usual
  
  ;;;***
  \f
 -;;;### (autoloads nil "emacsbug" "mail/emacsbug.el" (22150 28228
 -;;;;;;  226072 702000))
 +;;;### (autoloads nil "emacsbug" "mail/emacsbug.el" (22086 11929
 +;;;;;;  934062 731000))
  ;;; Generated autoloads from mail/emacsbug.el
  
  (autoload 'report-emacs-bug "emacsbug" "\
@@@ -8411,8 -8419,8 +8411,8 @@@ Emerge two RCS revisions of a file, wit
  
  ;;;***
  \f
 -;;;### (autoloads nil "enriched" "textmodes/enriched.el" (22150 28229
 -;;;;;;  98072 702000))
 +;;;### (autoloads nil "enriched" "textmodes/enriched.el" (22086 11930
 +;;;;;;  314062 731000))
  ;;; Generated autoloads from textmodes/enriched.el
  
  (autoload 'enriched-mode "enriched" "\
@@@ -8447,7 -8455,7 +8447,7 @@@ Commands
  
  ;;;***
  \f
 -;;;### (autoloads nil "epa" "epa.el" (22150 28227 482072 702000))
 +;;;### (autoloads nil "epa" "epa.el" (22086 11929 698062 731000))
  ;;; Generated autoloads from epa.el
  
  (autoload 'epa-list-keys "epa" "\
@@@ -8635,8 -8643,8 +8635,8 @@@ Insert selected KEYS after the point
  
  ;;;***
  \f
 -;;;### (autoloads nil "epa-dired" "epa-dired.el" (22150 28227 478072
 -;;;;;;  702000))
 +;;;### (autoloads nil "epa-dired" "epa-dired.el" (22086 11929 698062
 +;;;;;;  731000))
  ;;; Generated autoloads from epa-dired.el
  
  (autoload 'epa-dired-do-decrypt "epa-dired" "\
@@@ -8661,8 -8669,8 +8661,8 @@@ Encrypt marked files
  
  ;;;***
  \f
 -;;;### (autoloads nil "epa-file" "epa-file.el" (22150 28227 482072
 -;;;;;;  702000))
 +;;;### (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" (22150 28227 482072
 -;;;;;;  702000))
 +;;;### (autoloads nil "epa-mail" "epa-mail.el" (22086 11929 698062
 +;;;;;;  731000))
  ;;; Generated autoloads from epa-mail.el
  
  (autoload 'epa-mail-mode "epa-mail" "\
@@@ -8760,7 -8768,7 +8760,7 @@@ if ARG is omitted or nil
  
  ;;;***
  \f
 -;;;### (autoloads nil "epg" "epg.el" (22150 28227 482072 702000))
 +;;;### (autoloads nil "epg" "epg.el" (22092 27717 648268 464000))
  ;;; Generated autoloads from epg.el
  (push (purecopy '(epg 1 0 0)) package--builtin-versions)
  
@@@ -8771,8 -8779,8 +8771,8 @@@ Return a context object
  
  ;;;***
  \f
 -;;;### (autoloads nil "epg-config" "epg-config.el" (22150 28227 482072
 -;;;;;;  702000))
 +;;;### (autoloads nil "epg-config" "epg-config.el" (22086 11929 698062
 +;;;;;;  731000))
  ;;; Generated autoloads from epg-config.el
  
  (autoload 'epg-configuration "epg-config" "\
@@@ -8792,7 -8800,7 +8792,7 @@@ Look at CONFIG and try to expand GROUP
  
  ;;;***
  \f
 -;;;### (autoloads nil "erc" "erc/erc.el" (22150 28227 526072 702000))
 +;;;### (autoloads nil "erc" "erc/erc.el" (22093 48588 540393 539000))
  ;;; Generated autoloads from erc/erc.el
  (push (purecopy '(erc 5 3)) package--builtin-versions)
  
@@@ -8841,36 -8849,36 +8841,36 @@@ Otherwise, connect to HOST:PORT as USE
  
  ;;;***
  \f
 -;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (22150
 -;;;;;;  28227 506072 702000))
 +;;;### (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" (22150 28227
 -;;;;;;  506072 702000))
 +;;;### (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" (22150 28227
 -;;;;;;  510072 702000))
 +;;;### (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" (22150 28227
 -;;;;;;  510072 702000))
 +;;;### (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" (22150 28227 510072
 -;;;;;;  702000))
 +;;;### (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")
  
@@@ -8900,14 -8908,14 +8900,14 @@@ that subcommand
  ;;;***
  \f
  ;;;### (autoloads nil "erc-desktop-notifications" "erc/erc-desktop-notifications.el"
 -;;;;;;  (22150 28227 510072 702000))
 +;;;;;;  (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" (22150
 -;;;;;;  28227 510072 702000))
 +;;;### (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" "\
@@@ -8969,8 -8977,8 +8969,8 @@@ Add EZBouncer convenience functions to 
  
  ;;;***
  \f
 -;;;### (autoloads nil "erc-fill" "erc/erc-fill.el" (22150 28227 510072
 -;;;;;;  702000))
 +;;;### (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)
  
@@@ -8982,8 -8990,8 +8982,8 @@@ You can put this on `erc-insert-modify-
  
  ;;;***
  \f
 -;;;### (autoloads nil "erc-identd" "erc/erc-identd.el" (22150 28227
 -;;;;;;  510072 702000))
 +;;;### (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")
  
@@@ -9004,8 -9012,8 +9004,8 @@@ system
  
  ;;;***
  \f
 -;;;### (autoloads nil "erc-imenu" "erc/erc-imenu.el" (22150 28227
 -;;;;;;  514072 702000))
 +;;;### (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" (22150 28227 514072
 -;;;;;;  702000))
 +;;;### (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" (22150 28227 514072
 -;;;;;;  702000))
 +;;;### (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" (22150 28227 514072
 -;;;;;;  702000))
 +;;;### (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)
  
@@@ -9059,8 -9067,8 +9059,8 @@@ You can save every individual message b
  
  ;;;***
  \f
 -;;;### (autoloads nil "erc-match" "erc/erc-match.el" (22150 28227
 -;;;;;;  514072 702000))
 +;;;### (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")
  
@@@ -9106,15 -9114,15 +9106,15 @@@ Delete dangerous-host interactively to 
  
  ;;;***
  \f
 -;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (22150 28227 514072
 -;;;;;;  702000))
 +;;;### (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" (22150
 -;;;;;;  28227 514072 702000))
 +;;;### (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")
  
@@@ -9125,8 -9133,8 +9125,8 @@@ Show who's gone
  
  ;;;***
  \f
 -;;;### (autoloads nil "erc-networks" "erc/erc-networks.el" (22150
 -;;;;;;  28227 518072 702000))
 +;;;### (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" "\
@@@ -9143,8 -9151,8 +9143,8 @@@ Interactively select a server to connec
  
  ;;;***
  \f
 -;;;### (autoloads nil "erc-notify" "erc/erc-notify.el" (22150 28227
 -;;;;;;  518072 702000))
 +;;;### (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)
  
@@@ -9162,36 -9170,36 +9162,36 @@@ with args, toggle notify status of peop
  
  ;;;***
  \f
 -;;;### (autoloads nil "erc-page" "erc/erc-page.el" (22150 28227 518072
 -;;;;;;  702000))
 +;;;### (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" (22150
 -;;;;;;  28227 518072 702000))
 +;;;### (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" (22150 28227
 -;;;;;;  518072 702000))
 +;;;### (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" (22150 28227 518072
 -;;;;;;  702000))
 +;;;### (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" (22150
 -;;;;;;  28227 518072 702000))
 +;;;### (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)
  
@@@ -9208,15 -9216,15 +9208,15 @@@ When called interactively, read the pas
  
  ;;;***
  \f
 -;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (22150 28227
 -;;;;;;  518072 702000))
 +;;;### (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" (22150
 -;;;;;;  28227 518072 702000))
 +;;;### (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" "\
@@@ -9227,22 -9235,22 +9227,22 @@@ This will add a speedbar major display 
  
  ;;;***
  \f
 -;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (22150
 -;;;;;;  28227 518072 702000))
 +;;;### (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" (22150 28227
 -;;;;;;  518072 702000))
 +;;;### (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" (22150 28227
 -;;;;;;  522072 702000))
 +;;;### (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 "\
@@@ -9267,8 -9275,8 +9267,8 @@@ keybindings will not do anything useful
  
  ;;;***
  \f
 -;;;### (autoloads nil "erc-truncate" "erc/erc-truncate.el" (22150
 -;;;;;;  28227 522072 702000))
 +;;;### (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)
  
@@@ -9287,8 -9295,8 +9287,8 @@@ Meant to be used in hooks, like `erc-in
  
  ;;;***
  \f
 -;;;### (autoloads nil "erc-xdcc" "erc/erc-xdcc.el" (22150 28227 522072
 -;;;;;;  702000))
 +;;;### (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")
  
@@@ -9299,8 -9307,8 +9299,8 @@@ Add a file to `erc-xdcc-files'
  
  ;;;***
  \f
 -;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (22150 28227 426072
 -;;;;;;  702000))
 +;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (22092 27717 632268
 +;;;;;;  464000))
  ;;; Generated autoloads from emacs-lisp/ert.el
  
  (autoload 'ert-deftest "ert" "\
@@@ -9369,8 -9377,8 +9369,8 @@@ Display the documentation for TEST-OR-T
  
  ;;;***
  \f
 -;;;### (autoloads nil "ert-x" "emacs-lisp/ert-x.el" (22150 28227
 -;;;;;;  426072 702000))
 +;;;### (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)
@@@ -9382,8 -9390,8 +9382,8 @@@ Kill all test buffers that are still li
  
  ;;;***
  \f
 -;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (22150 28227
 -;;;;;;  542072 702000))
 +;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (22086 11929
 +;;;;;;  722062 731000))
  ;;; Generated autoloads from eshell/esh-mode.el
  
  (autoload 'eshell-mode "esh-mode" "\
@@@ -9393,8 -9401,8 +9393,8 @@@ Emacs shell interactive mode
  
  ;;;***
  \f
 -;;;### (autoloads nil "eshell" "eshell/eshell.el" (22150 28227 542072
 -;;;;;;  702000))
 +;;;### (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)
  
@@@ -9429,8 -9437,8 +9429,8 @@@ corresponding to a successful execution
  
  ;;;***
  \f
 -;;;### (autoloads nil "etags" "progmodes/etags.el" (22150 28228 818072
 -;;;;;;  702000))
 +;;;### (autoloads nil "etags" "progmodes/etags.el" (22105 39773 947886
 +;;;;;;  896000))
  ;;; Generated autoloads from progmodes/etags.el
  
  (defvar tags-file-name nil "\
@@@ -9747,8 -9755,8 +9747,8 @@@ for \\[find-tag] (which see)
  
  ;;;***
  \f
 -;;;### (autoloads nil "ethio-util" "language/ethio-util.el" (22150
 -;;;;;;  28228 166072 702000))
 +;;;### (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" "\
@@@ -9916,7 -9924,7 +9916,7 @@@ With ARG, insert that many delimiters
  
  ;;;***
  \f
 -;;;### (autoloads nil "eudc" "net/eudc.el" (22150 28228 354072 702000))
 +;;;### (autoloads nil "eudc" "net/eudc.el" (22099 965 90725 479000))
  ;;; Generated autoloads from net/eudc.el
  
  (autoload 'eudc-set-server "eudc" "\
@@@ -9970,8 -9978,8 +9970,8 @@@ This does nothing except loading eudc b
  
  ;;;***
  \f
 -;;;### (autoloads nil "eudc-bob" "net/eudc-bob.el" (22150 28228 354072
 -;;;;;;  702000))
 +;;;### (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" "\
@@@ -10006,8 -10014,8 +10006,8 @@@ Display a button for the JPEG DATA
  
  ;;;***
  \f
 -;;;### (autoloads nil "eudc-export" "net/eudc-export.el" (22150 28228
 -;;;;;;  354072 702000))
 +;;;### (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" "\
@@@ -10023,8 -10031,8 +10023,8 @@@ Call `eudc-insert-record-at-point-into-
  
  ;;;***
  \f
 -;;;### (autoloads nil "eudc-hotlist" "net/eudc-hotlist.el" (22150
 -;;;;;;  28228 354072 702000))
 +;;;### (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" "\
@@@ -10034,8 -10042,8 +10034,8 @@@ Edit the hotlist of directory servers i
  
  ;;;***
  \f
 -;;;### (autoloads nil "ewoc" "emacs-lisp/ewoc.el" (22150 28227 430072
 -;;;;;;  702000))
 +;;;### (autoloads nil "ewoc" "emacs-lisp/ewoc.el" (22086 11929 674062
 +;;;;;;  731000))
  ;;; Generated autoloads from emacs-lisp/ewoc.el
  
  (autoload 'ewoc-create "ewoc" "\
@@@ -10061,7 -10069,7 +10061,7 @@@ fourth arg NOSEP non-nil inhibits this
  
  ;;;***
  \f
 -;;;### (autoloads nil "eww" "net/eww.el" (22150 28228 358072 702000))
 +;;;### (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) "\
@@@ -10108,8 -10116,8 +10108,8 @@@ Display the bookmarks
  
  ;;;***
  \f
 -;;;### (autoloads nil "executable" "progmodes/executable.el" (22150
 -;;;;;;  28228 818072 702000))
 +;;;### (autoloads nil "executable" "progmodes/executable.el" (22086
 +;;;;;;  11930 170062 731000))
  ;;; Generated autoloads from progmodes/executable.el
  
  (autoload 'executable-command-find-posix-p "executable" "\
@@@ -10144,7 -10152,7 +10144,7 @@@ file modes
  
  ;;;***
  \f
 -;;;### (autoloads nil "expand" "expand.el" (22150 28227 542072 702000))
 +;;;### (autoloads nil "expand" "expand.el" (22086 11929 726062 731000))
  ;;; Generated autoloads from expand.el
  
  (autoload 'expand-add-abbrevs "expand" "\
@@@ -10193,8 -10201,8 +10193,8 @@@ This is used only in conjunction with `
  
  ;;;***
  \f
 -;;;### (autoloads nil "f90" "progmodes/f90.el" (22150 28228 818072
 -;;;;;;  702000))
 +;;;### (autoloads nil "f90" "progmodes/f90.el" (22092 27718 152268
 +;;;;;;  464000))
  ;;; Generated autoloads from progmodes/f90.el
  
  (autoload 'f90-mode "f90" "\
@@@ -10261,8 -10269,8 +10261,8 @@@ with no args, if that value is non-nil
  
  ;;;***
  \f
 -;;;### (autoloads nil "face-remap" "face-remap.el" (22150 28227 542072
 -;;;;;;  702000))
 +;;;### (autoloads nil "face-remap" "face-remap.el" (22086 11929 726062
 +;;;;;;  731000))
  ;;; Generated autoloads from face-remap.el
  
  (autoload 'face-remap-add-relative "face-remap" "\
@@@ -10476,7 -10484,7 +10476,7 @@@ you can set `feedmail-queue-reminder-al
  
  ;;;***
  \f
 -;;;### (autoloads nil "ffap" "ffap.el" (22150 28227 554072 702000))
 +;;;### (autoloads nil "ffap" "ffap.el" (22086 11929 730062 731000))
  ;;; Generated autoloads from ffap.el
  
  (autoload 'ffap-next "ffap" "\
@@@ -10539,8 -10547,8 +10539,8 @@@ Evaluate the forms in variable `ffap-bi
  
  ;;;***
  \f
 -;;;### (autoloads nil "filecache" "filecache.el" (22150 28227 554072
 -;;;;;;  702000))
 +;;;### (autoloads nil "filecache" "filecache.el" (22086 11929 734062
 +;;;;;;  731000))
  ;;; Generated autoloads from filecache.el
  
  (autoload 'file-cache-add-directory "filecache" "\
@@@ -10597,8 -10605,8 +10597,8 @@@ the name is considered already unique; 
  
  ;;;***
  \f
 -;;;### (autoloads nil "filenotify" "filenotify.el" (22150 28227 554072
 -;;;;;;  702000))
 +;;;### (autoloads nil "filenotify" "filenotify.el" (22086 11929 734062
 +;;;;;;  731000))
  ;;; Generated autoloads from filenotify.el
  
  (autoload 'file-notify-handle-event "filenotify" "\
@@@ -10613,8 -10621,8 +10613,8 @@@ Otherwise, signal a `file-notify-error'
  
  ;;;***
  \f
 -;;;### (autoloads nil "files-x" "files-x.el" (22150 28227 554072
 -;;;;;;  702000))
 +;;;### (autoloads nil "files-x" "files-x.el" (22086 11929 734062
 +;;;;;;  731000))
  ;;; Generated autoloads from files-x.el
  
  (autoload 'add-file-local-variable "files-x" "\
@@@ -10679,8 -10687,8 +10679,8 @@@ Copy directory-local variables to the -
  
  ;;;***
  \f
 -;;;### (autoloads nil "filesets" "filesets.el" (22150 28227 578072
 -;;;;;;  702000))
 +;;;### (autoloads nil "filesets" "filesets.el" (22092 27717 792268
 +;;;;;;  464000))
  ;;; Generated autoloads from filesets.el
  
  (autoload 'filesets-init "filesets" "\
@@@ -10691,8 -10699,8 +10691,8 @@@ Set up hooks, load the cache file -- i
  
  ;;;***
  \f
 -;;;### (autoloads nil "find-cmd" "find-cmd.el" (22150 28227 578072
 -;;;;;;  702000))
 +;;;### (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)
  
@@@ -10712,8 -10720,8 +10712,8 @@@ result is a string that should be read
  
  ;;;***
  \f
 -;;;### (autoloads nil "find-dired" "find-dired.el" (22150 28227 578072
 -;;;;;;  702000))
 +;;;### (autoloads nil "find-dired" "find-dired.el" (22086 11929 746062
 +;;;;;;  731000))
  ;;; Generated autoloads from find-dired.el
  
  (autoload 'find-dired "find-dired" "\
@@@ -10753,8 -10761,8 +10753,8 @@@ use in place of \"-ls\" as the final ar
  
  ;;;***
  \f
 -;;;### (autoloads nil "find-file" "find-file.el" (22150 28227 578072
 -;;;;;;  702000))
 +;;;### (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)))) "\
@@@ -10844,8 -10852,8 +10844,8 @@@ Visit the file you click on in another 
  
  ;;;***
  \f
 -;;;### (autoloads nil "find-func" "emacs-lisp/find-func.el" (22150
 -;;;;;;  28227 430072 702000))
 +;;;### (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" "\
@@@ -11015,8 -11023,8 +11015,8 @@@ Define some key bindings for the find-f
  
  ;;;***
  \f
 -;;;### (autoloads nil "find-lisp" "find-lisp.el" (22150 28227 578072
 -;;;;;;  702000))
 +;;;### (autoloads nil "find-lisp" "find-lisp.el" (22086 11929 746062
 +;;;;;;  731000))
  ;;; Generated autoloads from find-lisp.el
  
  (autoload 'find-lisp-find-dired "find-lisp" "\
@@@ -11036,7 -11044,7 +11036,7 @@@ Change the filter on a `find-lisp-find-
  
  ;;;***
  \f
 -;;;### (autoloads nil "finder" "finder.el" (22150 28227 578072 702000))
 +;;;### (autoloads nil "finder" "finder.el" (22086 11929 750062 731000))
  ;;; Generated autoloads from finder.el
  (push (purecopy '(finder 1 0)) package--builtin-versions)
  
@@@ -11058,8 -11066,8 +11058,8 @@@ Find packages matching a given keyword
  
  ;;;***
  \f
 -;;;### (autoloads nil "flow-ctrl" "flow-ctrl.el" (22150 28227 578072
 -;;;;;;  702000))
 +;;;### (autoloads nil "flow-ctrl" "flow-ctrl.el" (22086 11929 750062
 +;;;;;;  731000))
  ;;; Generated autoloads from flow-ctrl.el
  
  (autoload 'enable-flow-control "flow-ctrl" "\
@@@ -11080,8 -11088,8 +11080,8 @@@ to get the effect of a C-q
  
  ;;;***
  \f
 -;;;### (autoloads nil "flow-fill" "gnus/flow-fill.el" (22150 28227
 -;;;;;;  658072 702000))
 +;;;### (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" (22150 28228
 -;;;;;;  818072 702000))
 +;;;### (autoloads nil "flymake" "progmodes/flymake.el" (22092 27718
 +;;;;;;  156268 464000))
  ;;; Generated autoloads from progmodes/flymake.el
  (push (purecopy '(flymake 0 3)) package--builtin-versions)
  
@@@ -11127,8 -11135,8 +11127,8 @@@ Turn flymake mode off
  
  ;;;***
  \f
 -;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (22150 28229
 -;;;;;;  102072 702000))
 +;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (22086 11930
 +;;;;;;  314062 731000))
  ;;; Generated autoloads from textmodes/flyspell.el
  
  (autoload 'flyspell-prog-mode "flyspell" "\
@@@ -11198,14 -11206,14 +11198,14 @@@ Flyspell whole buffer
  
  ;;;***
  \f
 -;;;### (autoloads nil "foldout" "foldout.el" (22150 28227 582072
 -;;;;;;  702000))
 +;;;### (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" (22150 28227 582072 702000))
 +;;;### (autoloads nil "follow" "follow.el" (22096 24780 228094 47000))
  ;;; Generated autoloads from follow.el
  
  (autoload 'turn-on-follow-mode "follow" "\
@@@ -11299,8 -11307,8 +11299,8 @@@ selected if the original window is the 
  
  ;;;***
  \f
 -;;;### (autoloads nil "footnote" "mail/footnote.el" (22150 28228
 -;;;;;;  226072 702000))
 +;;;### (autoloads nil "footnote" "mail/footnote.el" (22086 11929
 +;;;;;;  934062 731000))
  ;;; Generated autoloads from mail/footnote.el
  (push (purecopy '(footnote 0 19)) package--builtin-versions)
  
@@@ -11319,7 -11327,7 +11319,7 @@@ play around with the following keys
  
  ;;;***
  \f
 -;;;### (autoloads nil "forms" "forms.el" (22150 28227 586072 702000))
 +;;;### (autoloads nil "forms" "forms.el" (22086 11929 754062 731000))
  ;;; Generated autoloads from forms.el
  
  (autoload 'forms-mode "forms" "\
@@@ -11355,8 -11363,8 +11355,8 @@@ Visit a file in Forms mode in other win
  
  ;;;***
  \f
 -;;;### (autoloads nil "fortran" "progmodes/fortran.el" (22150 28228
 -;;;;;;  822072 702000))
 +;;;### (autoloads nil "fortran" "progmodes/fortran.el" (22092 27718
 +;;;;;;  156268 464000))
  ;;; Generated autoloads from progmodes/fortran.el
  
  (autoload 'fortran-mode "fortran" "\
@@@ -11433,8 -11441,8 +11433,8 @@@ with no args, if that value is non-nil
  
  ;;;***
  \f
 -;;;### (autoloads nil "fortune" "play/fortune.el" (22150 28228 678072
 -;;;;;;  702000))
 +;;;### (autoloads nil "fortune" "play/fortune.el" (22086 11930 126062
 +;;;;;;  731000))
  ;;; Generated autoloads from play/fortune.el
  
  (autoload 'fortune-add-fortune "fortune" "\
@@@ -11482,8 -11490,8 +11482,8 @@@ and choose the directory as the fortune
  
  ;;;***
  \f
 -;;;### (autoloads nil "frameset" "frameset.el" (22150 28227 622072
 -;;;;;;  702000))
 +;;;### (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)) "\
@@@ -11624,7 -11632,7 +11624,7 @@@ FORCE-ONSCREEN can be
           - a list (LEFT TOP WIDTH HEIGHT), describing the workarea.
           It must return non-nil to force the frame onscreen, nil otherwise.
  
- CLEANUP-FRAMES allows to \"clean up\" the frame list after restoring a frameset:
+ CLEANUP-FRAMES allows \"cleaning up\" the frame list after restoring a frameset:
    t        Delete all frames that were not created or restored upon.
    nil      Keep all frames.
    FUNC     A function called with two arguments:
@@@ -11669,15 -11677,15 +11669,15 @@@ Interactively, reads the register usin
  
  ;;;***
  \f
 -;;;### (autoloads nil "gamegrid" "play/gamegrid.el" (22150 28228
 -;;;;;;  678072 702000))
 +;;;### (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" (22150 28228
 -;;;;;;  822072 702000))
 +;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (22092 27718
 +;;;;;;  172268 464000))
  ;;; Generated autoloads from progmodes/gdb-mi.el
  
  (defvar gdb-enable-debug nil "\
@@@ -11754,8 -11762,8 +11754,8 @@@ detailed description of this mode
  
  ;;;***
  \f
 -;;;### (autoloads nil "generic" "emacs-lisp/generic.el" (22150 28227
 -;;;;;;  430072 702000))
 +;;;### (autoloads nil "generic" "emacs-lisp/generic.el" (22086 11929
 +;;;;;;  678062 731000))
  ;;; Generated autoloads from emacs-lisp/generic.el
  
  (defvar generic-mode-list nil "\
@@@ -11835,8 -11843,8 +11835,8 @@@ regular expression that can be used as 
  
  ;;;***
  \f
 -;;;### (autoloads nil "glasses" "progmodes/glasses.el" (22150 28228
 -;;;;;;  822072 702000))
 +;;;### (autoloads nil "glasses" "progmodes/glasses.el" (22086 11930
 +;;;;;;  178062 731000))
  ;;; Generated autoloads from progmodes/glasses.el
  
  (autoload 'glasses-mode "glasses" "\
@@@ -11850,8 -11858,8 +11850,8 @@@ add virtual separators (like underscore
  
  ;;;***
  \f
 -;;;### (autoloads nil "gmm-utils" "gnus/gmm-utils.el" (22150 28227
 -;;;;;;  662072 702000))
 +;;;### (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" "\
@@@ -11905,7 -11913,7 +11905,7 @@@ DEFAULT-MAP specifies the default key m
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus" "gnus/gnus.el" (22150 28227 942072 702000))
 +;;;### (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)
@@@ -11955,8 -11963,8 +11955,8 @@@ prompt the user for the name of an NNT
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-agent" "gnus/gnus-agent.el" (22150 28227
 -;;;;;;  666072 702000))
 +;;;### (autoloads nil "gnus-agent" "gnus/gnus-agent.el" (22086 11929
 +;;;;;;  778062 731000))
  ;;; Generated autoloads from gnus/gnus-agent.el
  
  (autoload 'gnus-unplugged "gnus-agent" "\
@@@ -12046,8 -12054,8 +12046,8 @@@ CLEAN is obsolete and ignored
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (22150 28227
 -;;;;;;  674072 702000))
 +;;;### (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" "\
@@@ -12057,8 -12065,8 +12057,8 @@@ Make the current buffer look like a nic
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-bookmark" "gnus/gnus-bookmark.el" (22150
 -;;;;;;  28227 674072 702000))
 +;;;### (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" "\
@@@ -12081,8 -12089,8 +12081,8 @@@ deletion, or > if it is flagged for dis
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-cache" "gnus/gnus-cache.el" (22150 28227
 -;;;;;;  678072 702000))
 +;;;### (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" "\
@@@ -12123,8 -12131,8 +12123,8 @@@ supported
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-delay" "gnus/gnus-delay.el" (22150 28227
 -;;;;;;  682072 702000))
 +;;;### (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" "\
@@@ -12159,8 -12167,8 +12159,8 @@@ Checking delayed messages is skipped i
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-diary" "gnus/gnus-diary.el" (22150 28227
 -;;;;;;  686072 702000))
 +;;;### (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" (22150 28227
 -;;;;;;  686072 702000))
 +;;;### (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" "\
@@@ -12186,8 -12194,8 +12186,8 @@@ Convenience method to turn on gnus-dire
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-draft" "gnus/gnus-draft.el" (22150 28227
 -;;;;;;  686072 702000))
 +;;;### (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" "\
@@@ -12197,8 -12205,8 +12197,8 @@@ Reminder user if there are unsent draft
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-fun" "gnus/gnus-fun.el" (22150 28227
 -;;;;;;  686072 702000))
 +;;;### (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" "\
@@@ -12263,8 -12271,8 +12263,8 @@@ Insert a random Face header from `gnus-
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-gravatar" "gnus/gnus-gravatar.el" (22150
 -;;;;;;  28227 686072 702000))
 +;;;### (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" "\
@@@ -12281,8 -12289,8 +12281,8 @@@ If gravatars are already displayed, rem
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (22150 28227
 -;;;;;;  694072 702000))
 +;;;### (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" "\
@@@ -12299,8 -12307,8 +12299,8 @@@ Pop up a frame and enter GROUP
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-html" "gnus/gnus-html.el" (22150 28227
 -;;;;;;  694072 702000))
 +;;;### (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" (22150 28227
 -;;;;;;  698072 702000))
 +;;;### (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)
@@@ -12329,8 -12337,8 +12329,8 @@@ Usage: emacs -batch -l ~/.emacs -l gnu
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-ml" "gnus/gnus-ml.el" (22150 28227 698072
 -;;;;;;  702000))
 +;;;### (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" "\
@@@ -12353,8 -12361,8 +12353,8 @@@ Minor mode for providing mailing-list c
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-mlspl" "gnus/gnus-mlspl.el" (22150 28227
 -;;;;;;  698072 702000))
 +;;;### (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" "\
@@@ -12454,8 -12462,8 +12454,8 @@@ Calling (gnus-group-split-fancy nil ni
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (22150 28227
 -;;;;;;  702072 702000))
 +;;;### (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" "\
@@@ -12482,7 -12490,7 +12482,7 @@@ Like `message-reply'
  ;;;***
  \f
  ;;;### (autoloads nil "gnus-notifications" "gnus/gnus-notifications.el"
 -;;;;;;  (22150 28227 702072 702000))
 +;;;;;;  (22086 11929 794062 731000))
  ;;; Generated autoloads from gnus/gnus-notifications.el
  
  (autoload 'gnus-notifications "gnus-notifications" "\
@@@ -12498,8 -12506,8 +12498,8 @@@ This is typically a function to add i
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (22150 28227
 -;;;;;;  702072 702000))
 +;;;### (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" "\
@@@ -12522,8 -12530,8 +12522,8 @@@ If picons are already displayed, remov
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-range" "gnus/gnus-range.el" (22150 28227
 -;;;;;;  702072 702000))
 +;;;### (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" "\
@@@ -12590,8 -12598,8 +12590,8 @@@ Add NUM into sorted LIST by side effect
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-registry" "gnus/gnus-registry.el" (22150
 -;;;;;;  28227 702072 702000))
 +;;;### (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" "\
@@@ -12606,8 -12614,8 +12606,8 @@@ Install the registry hooks
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-sieve" "gnus/gnus-sieve.el" (22150 28227
 -;;;;;;  806072 702000))
 +;;;### (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" "\
@@@ -12634,8 -12642,8 +12634,8 @@@ See the documentation for these variabl
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-spec" "gnus/gnus-spec.el" (22150 28227
 -;;;;;;  806072 702000))
 +;;;### (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" "\
@@@ -12645,8 -12653,8 +12645,8 @@@ Update the format specification near po
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-start" "gnus/gnus-start.el" (22150 28227
 -;;;;;;  846072 702000))
 +;;;### (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" "\
@@@ -12656,8 -12664,8 +12656,8 @@@ Declare back end NAME with ABILITIES a
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (22150 28227
 -;;;;;;  858072 702000))
 +;;;### (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" "\
@@@ -12668,8 -12676,8 +12668,8 @@@ BOOKMARK is a bookmark name or a bookma
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-sync" "gnus/gnus-sync.el" (22150 28227
 -;;;;;;  862072 702000))
 +;;;### (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" "\
@@@ -12684,8 -12692,8 +12684,8 @@@ Install the sync hooks
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnus-win" "gnus/gnus-win.el" (22150 28227
 -;;;;;;  938072 702000))
 +;;;### (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" "\
@@@ -12695,8 -12703,8 +12695,8 @@@ Add the window configuration CONF to `g
  
  ;;;***
  \f
 -;;;### (autoloads nil "gnutls" "net/gnutls.el" (22150 28228 358072
 -;;;;;;  702000))
 +;;;### (autoloads nil "gnutls" "net/gnutls.el" (22086 11929 994062
 +;;;;;;  731000))
  ;;; Generated autoloads from net/gnutls.el
  
  (defvar gnutls-min-prime-bits 256 "\
@@@ -12712,8 -12720,8 +12712,8 @@@ A value of nil says to use the default 
  
  ;;;***
  \f
 -;;;### (autoloads nil "gomoku" "play/gomoku.el" (22150 28228 678072
 -;;;;;;  702000))
 +;;;### (autoloads nil "gomoku" "play/gomoku.el" (22086 11930 126062
 +;;;;;;  731000))
  ;;; Generated autoloads from play/gomoku.el
  
  (autoload 'gomoku "gomoku" "\
@@@ -12739,8 -12747,8 +12739,8 @@@ Use \\[describe-mode] for more info
  
  ;;;***
  \f
 -;;;### (autoloads nil "goto-addr" "net/goto-addr.el" (22150 28228
 -;;;;;;  358072 702000))
 +;;;### (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")
@@@ -12781,8 -12789,8 +12781,8 @@@ Like `goto-address-mode', but only for 
  
  ;;;***
  \f
 -;;;### (autoloads nil "gravatar" "gnus/gravatar.el" (22150 28227
 -;;;;;;  942072 702000))
 +;;;### (autoloads nil "gravatar" "gnus/gravatar.el" (22086 11929
 +;;;;;;  810062 731000))
  ;;; Generated autoloads from gnus/gravatar.el
  
  (autoload 'gravatar-retrieve "gravatar" "\
@@@ -12798,8 -12806,8 +12798,8 @@@ Retrieve MAIL-ADDRESS gravatar and retu
  
  ;;;***
  \f
 -;;;### (autoloads nil "grep" "progmodes/grep.el" (22150 28228 826072
 -;;;;;;  702000))
 +;;;### (autoloads nil "grep" "progmodes/grep.el" (22086 11930 178062
 +;;;;;;  731000))
  ;;; Generated autoloads from progmodes/grep.el
  
  (defvar grep-window-height nil "\
@@@ -12966,7 -12974,7 +12966,7 @@@ file name to `*.gz', and sets `grep-hig
  
  ;;;***
  \f
 -;;;### (autoloads nil "gs" "gs.el" (22150 28228 26072 702000))
 +;;;### (autoloads nil "gs" "gs.el" (22086 11929 854062 731000))
  ;;; Generated autoloads from gs.el
  
  (autoload 'gs-load-image "gs" "\
@@@ -12979,8 -12987,8 +12979,8 @@@ the form \"WINDOW-ID PIXMAP-ID\".  Valu
  
  ;;;***
  \f
 -;;;### (autoloads nil "gud" "progmodes/gud.el" (22150 28228 826072
 -;;;;;;  702000))
 +;;;### (autoloads nil "gud" "progmodes/gud.el" (22092 27718 188268
 +;;;;;;  464000))
  ;;; Generated autoloads from progmodes/gud.el
  
  (autoload 'gud-gdb "gud" "\
@@@ -13075,8 -13083,8 +13075,8 @@@ it if ARG is omitted or nil
  
  ;;;***
  \f
 -;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (22150 28227 434072
 -;;;;;;  702000))
 +;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (22099 26170 382017
 +;;;;;;  16000))
  ;;; Generated autoloads from emacs-lisp/gv.el
  
  (autoload 'gv-get "gv" "\
@@@ -13178,8 -13186,8 +13178,8 @@@ binding mode
  
  ;;;***
  \f
 -;;;### (autoloads nil "handwrite" "play/handwrite.el" (22150 28228
 -;;;;;;  678072 702000))
 +;;;### (autoloads nil "handwrite" "play/handwrite.el" (22086 11930
 +;;;;;;  130062 731000))
  ;;; Generated autoloads from play/handwrite.el
  
  (autoload 'handwrite "handwrite" "\
@@@ -13224,8 -13232,8 +13224,8 @@@ to be updated
  
  ;;;***
  \f
 -;;;### (autoloads nil "hashcash" "mail/hashcash.el" (22150 28228
 -;;;;;;  230072 702000))
 +;;;### (autoloads nil "hashcash" "mail/hashcash.el" (22092 27717
 +;;;;;;  880268 464000))
  ;;; Generated autoloads from mail/hashcash.el
  
  (autoload 'hashcash-insert-payment "hashcash" "\
@@@ -13267,8 -13275,8 +13267,8 @@@ Prefix arg sets default accept amount t
  
  ;;;***
  \f
 -;;;### (autoloads nil "help-at-pt" "help-at-pt.el" (22150 28228 26072
 -;;;;;;  702000))
 +;;;### (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" "\
@@@ -13395,8 -13403,8 +13395,8 @@@ different regions.  With numeric argume
  
  ;;;***
  \f
 -;;;### (autoloads nil "help-fns" "help-fns.el" (22150 28228 26072
 -;;;;;;  702000))
 +;;;### (autoloads nil "help-fns" "help-fns.el" (22101 42694 89526
 +;;;;;;  804000))
  ;;; Generated autoloads from help-fns.el
  
  (autoload 'describe-function "help-fns" "\
@@@ -13483,8 -13491,8 +13483,8 @@@ Produce a texinfo buffer with sorted do
  
  ;;;***
  \f
 -;;;### (autoloads nil "help-macro" "help-macro.el" (22150 28228 26072
 -;;;;;;  702000))
 +;;;### (autoloads nil "help-macro" "help-macro.el" (22086 11929 854062
 +;;;;;;  731000))
  ;;; Generated autoloads from help-macro.el
  
  (defvar three-step-help nil "\
@@@ -13498,8 -13506,8 +13498,8 @@@ gives the window that lists the options
  
  ;;;***
  \f
 -;;;### (autoloads nil "help-mode" "help-mode.el" (22150 28228 26072
 -;;;;;;  702000))
 +;;;### (autoloads nil "help-mode" "help-mode.el" (22086 11929 854062
 +;;;;;;  731000))
  ;;; Generated autoloads from help-mode.el
  
  (autoload 'help-mode "help-mode" "\
@@@ -13600,8 -13608,8 +13600,8 @@@ BOOKMARK is a bookmark name or a bookma
  
  ;;;***
  \f
 -;;;### (autoloads nil "helper" "emacs-lisp/helper.el" (22150 28227
 -;;;;;;  434072 702000))
 +;;;### (autoloads nil "helper" "emacs-lisp/helper.el" (22086 11929
 +;;;;;;  678062 731000))
  ;;; Generated autoloads from emacs-lisp/helper.el
  
  (autoload 'Helper-describe-bindings "helper" "\
@@@ -13616,7 -13624,7 +13616,7 @@@ Provide help for current mode
  
  ;;;***
  \f
 -;;;### (autoloads nil "hexl" "hexl.el" (22150 28228 26072 702000))
 +;;;### (autoloads nil "hexl" "hexl.el" (22086 11929 858062 731000))
  ;;; Generated autoloads from hexl.el
  
  (autoload 'hexl-mode "hexl" "\
@@@ -13710,8 -13718,7 +13710,8 @@@ This discards the buffer's undo informa
  
  ;;;***
  \f
 -;;;### (autoloads nil "hi-lock" "hi-lock.el" (22150 28228 30072 702000))
 +;;;### (autoloads nil "hi-lock" "hi-lock.el" (22092 27717 860268
 +;;;;;;  464000))
  ;;; Generated autoloads from hi-lock.el
  
  (autoload 'hi-lock-mode "hi-lock" "\
@@@ -13878,8 -13885,8 +13878,8 @@@ be found in variable `hi-lock-interacti
  
  ;;;***
  \f
 -;;;### (autoloads nil "hideif" "progmodes/hideif.el" (22150 28228
 -;;;;;;  826072 702000))
 +;;;### (autoloads nil "hideif" "progmodes/hideif.el" (22092 27718
 +;;;;;;  188268 464000))
  ;;; Generated autoloads from progmodes/hideif.el
  
  (autoload 'hide-ifdef-mode "hideif" "\
@@@ -13926,8 -13933,8 +13926,8 @@@ Several variables affect how the hidin
  
  ;;;***
  \f
 -;;;### (autoloads nil "hideshow" "progmodes/hideshow.el" (22150 28228
 -;;;;;;  830072 702000))
 +;;;### (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))) "\
@@@ -13989,8 -13996,8 +13989,8 @@@ Unconditionally turn off `hs-minor-mode
  
  ;;;***
  \f
 -;;;### (autoloads nil "hilit-chg" "hilit-chg.el" (22150 28228 30072
 -;;;;;;  702000))
 +;;;### (autoloads nil "hilit-chg" "hilit-chg.el" (22086 11929 858062
 +;;;;;;  731000))
  ;;; Generated autoloads from hilit-chg.el
  
  (autoload 'highlight-changes-mode "hilit-chg" "\
@@@ -14121,8 -14128,8 +14121,8 @@@ See `highlight-changes-mode' for more i
  
  ;;;***
  \f
 -;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (22150 28228 30072
 -;;;;;;  702000))
 +;;;### (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)
  
@@@ -14154,8 -14161,7 +14154,8 @@@ argument VERBOSE non-nil makes the func
  
  ;;;***
  \f
 -;;;### (autoloads nil "hl-line" "hl-line.el" (22150 28228 30072 702000))
 +;;;### (autoloads nil "hl-line" "hl-line.el" (22086 11929 858062
 +;;;;;;  731000))
  ;;; Generated autoloads from hl-line.el
  
  (autoload 'hl-line-mode "hl-line" "\
@@@ -14204,8 -14210,8 +14204,8 @@@ Global-Hl-Line mode uses the functions 
  
  ;;;***
  \f
 -;;;### (autoloads nil "holidays" "calendar/holidays.el" (22150 28227
 -;;;;;;  78072 702000))
 +;;;### (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"))) "\
@@@ -14315,8 -14321,8 +14315,8 @@@ The optional LABEL is used to label th
  
  ;;;***
  \f
 -;;;### (autoloads nil "html2text" "gnus/html2text.el" (22150 28227
 -;;;;;;  946072 702000))
 +;;;### (autoloads nil "html2text" "gnus/html2text.el" (22086 11929
 +;;;;;;  810062 731000))
  ;;; Generated autoloads from gnus/html2text.el
  
  (autoload 'html2text "html2text" "\
@@@ -14326,8 -14332,8 +14326,8 @@@ Convert HTML to plain text in the curre
  
  ;;;***
  \f
 -;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (22150 28228
 -;;;;;;  34072 702000))
 +;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (22092 27717
 +;;;;;;  864268 464000))
  ;;; Generated autoloads from htmlfontify.el
  (push (purecopy '(htmlfontify 0 21)) package--builtin-versions)
  
@@@ -14360,8 -14366,8 +14360,8 @@@ You may also want to set `hfy-page-head
  
  ;;;***
  \f
 -;;;### (autoloads nil "ibuf-macs" "ibuf-macs.el" (22150 28228 50072
 -;;;;;;  702000))
 +;;;### (autoloads nil "ibuf-macs" "ibuf-macs.el" (22086 11929 862062
 +;;;;;;  731000))
  ;;; Generated autoloads from ibuf-macs.el
  
  (autoload 'define-ibuffer-column "ibuf-macs" "\
@@@ -14463,8 -14469,7 +14463,8 @@@ bound to the current value of the filte
  
  ;;;***
  \f
 -;;;### (autoloads nil "ibuffer" "ibuffer.el" (22150 28228 54072 702000))
 +;;;### (autoloads nil "ibuffer" "ibuffer.el" (22092 27717 868268
 +;;;;;;  464000))
  ;;; Generated autoloads from ibuffer.el
  
  (autoload 'ibuffer-list-buffers "ibuffer" "\
@@@ -14503,8 -14508,8 +14503,8 @@@ FORMATS is the value to use for `ibuffe
  
  ;;;***
  \f
 -;;;### (autoloads nil "icalendar" "calendar/icalendar.el" (22150
 -;;;;;;  28227 78072 702000))
 +;;;### (autoloads nil "icalendar" "calendar/icalendar.el" (22092
 +;;;;;;  27717 556268 464000))
  ;;; Generated autoloads from calendar/icalendar.el
  (push (purecopy '(icalendar 0 19)) package--builtin-versions)
  
@@@ -14557,8 -14562,8 +14557,8 @@@ buffer `*icalendar-errors*'
  
  ;;;***
  \f
 -;;;### (autoloads nil "icomplete" "icomplete.el" (22150 28228 54072
 -;;;;;;  702000))
 +;;;### (autoloads nil "icomplete" "icomplete.el" (22086 11929 862062
 +;;;;;;  731000))
  ;;; Generated autoloads from icomplete.el
  
  (defvar icomplete-mode nil "\
@@@ -14597,8 -14602,8 +14597,8 @@@ completions
  
  ;;;***
  \f
 -;;;### (autoloads nil "icon" "progmodes/icon.el" (22150 28228 830072
 -;;;;;;  702000))
 +;;;### (autoloads nil "icon" "progmodes/icon.el" (22086 11930 186062
 +;;;;;;  731000))
  ;;; Generated autoloads from progmodes/icon.el
  
  (autoload 'icon-mode "icon" "\
@@@ -14638,8 -14643,8 +14638,8 @@@ with no args, if that value is non-nil
  
  ;;;***
  \f
 -;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (22150
 -;;;;;;  28228 850072 702000))
 +;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (22086
 +;;;;;;  11930 194062 731000))
  ;;; Generated autoloads from progmodes/idlw-shell.el
  
  (autoload 'idlwave-shell "idlw-shell" "\
@@@ -14664,8 -14669,8 +14664,8 @@@ See also the variable `idlwave-shell-pr
  
  ;;;***
  \f
 -;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (22150 28228
 -;;;;;;  862072 702000))
 +;;;### (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)
  
@@@ -14794,7 -14799,7 +14794,7 @@@ The main features of this mode ar
  
  ;;;***
  \f
 -;;;### (autoloads nil "ido" "ido.el" (22150 28228 82072 702000))
 +;;;### (autoloads nil "ido" "ido.el" (22093 48588 548393 539000))
  ;;; Generated autoloads from ido.el
  
  (defvar ido-mode nil "\
@@@ -15056,7 -15061,7 +15056,7 @@@ DEF, if non-nil, is the default value
  
  ;;;***
  \f
 -;;;### (autoloads nil "ielm" "ielm.el" (22150 28228 82072 702000))
 +;;;### (autoloads nil "ielm" "ielm.el" (22086 11929 866062 731000))
  ;;; Generated autoloads from ielm.el
  
  (autoload 'ielm "ielm" "\
@@@ -15068,7 -15073,7 +15068,7 @@@ See `inferior-emacs-lisp-mode' for deta
  
  ;;;***
  \f
 -;;;### (autoloads nil "iimage" "iimage.el" (22150 28228 82072 702000))
 +;;;### (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")
@@@ -15084,7 -15089,7 +15084,7 @@@ the mode if ARG is omitted or nil, and 
  
  ;;;***
  \f
 -;;;### (autoloads nil "image" "image.el" (22150 28228 86072 702000))
 +;;;### (autoloads nil "image" "image.el" (22092 27717 872268 464000))
  ;;; Generated autoloads from image.el
  
  (autoload 'image-type-from-data "image" "\
@@@ -15277,8 -15282,8 +15277,8 @@@ If Emacs is compiled without ImageMagic
  
  ;;;***
  \f
 -;;;### (autoloads nil "image-dired" "image-dired.el" (22150 28228
 -;;;;;;  86072 702000))
 +;;;### (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)
  
@@@ -15415,8 -15420,8 +15415,8 @@@ easy-to-use form
  
  ;;;***
  \f
 -;;;### (autoloads nil "image-file" "image-file.el" (22150 28228 86072
 -;;;;;;  702000))
 +;;;### (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")) "\
@@@ -15478,8 -15483,8 +15478,8 @@@ An image file is one whose name has an 
  
  ;;;***
  \f
 -;;;### (autoloads nil "image-mode" "image-mode.el" (22150 28228 86072
 -;;;;;;  702000))
 +;;;### (autoloads nil "image-mode" "image-mode.el" (22091 6875 287217
 +;;;;;;  891000))
  ;;; Generated autoloads from image-mode.el
  
  (autoload 'image-mode "image-mode" "\
@@@ -15526,7 -15531,7 +15526,7 @@@ on these modes
  
  ;;;***
  \f
 -;;;### (autoloads nil "imenu" "imenu.el" (22150 28228 90072 702000))
 +;;;### (autoloads nil "imenu" "imenu.el" (22092 27717 872268 464000))
  ;;; Generated autoloads from imenu.el
  
  (defvar imenu-sort-function nil "\
@@@ -15664,8 -15669,8 +15664,8 @@@ for more information
  
  ;;;***
  \f
 -;;;### (autoloads nil "ind-util" "language/ind-util.el" (22150 28228
 -;;;;;;  190072 702000))
 +;;;### (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" "\
@@@ -15695,8 -15700,8 +15695,8 @@@ Convert old Emacs Devanagari character
  
  ;;;***
  \f
 -;;;### (autoloads nil "inf-lisp" "progmodes/inf-lisp.el" (22150 28228
 -;;;;;;  862072 702000))
 +;;;### (autoloads nil "inf-lisp" "progmodes/inf-lisp.el" (22086 11930
 +;;;;;;  206062 731000))
  ;;; Generated autoloads from progmodes/inf-lisp.el
  
  (autoload 'inferior-lisp "inf-lisp" "\
@@@ -15714,7 -15719,7 +15714,7 @@@ of `inferior-lisp-program').  Runs the 
  
  ;;;***
  \f
 -;;;### (autoloads nil "info" "info.el" (22150 28228 98072 702000))
 +;;;### (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))))) "\
@@@ -15926,8 -15931,8 +15926,8 @@@ completion alternatives to currently vi
  
  ;;;***
  \f
 -;;;### (autoloads nil "info-look" "info-look.el" (22150 28228 90072
 -;;;;;;  702000))
 +;;;### (autoloads nil "info-look" "info-look.el" (22086 11929 870062
 +;;;;;;  731000))
  ;;; Generated autoloads from info-look.el
  
  (autoload 'info-lookup-reset "info-look" "\
@@@ -15974,8 -15979,8 +15974,8 @@@ Perform completion on file preceding po
  
  ;;;***
  \f
 -;;;### (autoloads nil "info-xref" "info-xref.el" (22150 28228 94072
 -;;;;;;  702000))
 +;;;### (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)
  
@@@ -16058,8 -16063,8 +16058,8 @@@ the sources handy
  
  ;;;***
  \f
 -;;;### (autoloads nil "informat" "informat.el" (22150 28228 102072
 -;;;;;;  702000))
 +;;;### (autoloads nil "informat" "informat.el" (22086 11929 874062
 +;;;;;;  731000))
  ;;; Generated autoloads from informat.el
  
  (autoload 'Info-tagify "informat" "\
@@@ -16104,8 -16109,8 +16104,8 @@@ For example, invoke \"emacs -batch -f b
  
  ;;;***
  \f
 -;;;### (autoloads nil "inline" "emacs-lisp/inline.el" (22150 28227
 -;;;;;;  434072 702000))
 +;;;### (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" (22150 28227
 -;;;;;;  218072 702000))
 +;;;### (autoloads nil "inversion" "cedet/inversion.el" (22086 11929
 +;;;;;;  550062 731000))
  ;;; Generated autoloads from cedet/inversion.el
  (push (purecopy '(inversion 1 3)) package--builtin-versions)
  
@@@ -16132,8 -16137,8 +16132,8 @@@ Only checks one based on which kind of 
  
  ;;;***
  \f
 -;;;### (autoloads nil "isearch-x" "international/isearch-x.el" (22150
 -;;;;;;  28228 106072 702000))
 +;;;### (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" "\
@@@ -16153,8 -16158,8 +16153,8 @@@ Toggle input method in interactive sear
  
  ;;;***
  \f
 -;;;### (autoloads nil "isearchb" "isearchb.el" (22150 28228 154072
 -;;;;;;  702000))
 +;;;### (autoloads nil "isearchb" "isearchb.el" (22086 11929 886062
 +;;;;;;  731000))
  ;;; Generated autoloads from isearchb.el
  (push (purecopy '(isearchb 1 5)) package--builtin-versions)
  
@@@ -16168,8 -16173,8 +16168,8 @@@ accessed via isearchb
  
  ;;;***
  \f
 -;;;### (autoloads nil "iso-cvt" "international/iso-cvt.el" (22150
 -;;;;;;  28228 106072 702000))
 +;;;### (autoloads nil "iso-cvt" "international/iso-cvt.el" (22086
 +;;;;;;  11929 874062 731000))
  ;;; Generated autoloads from international/iso-cvt.el
  
  (autoload 'iso-spanish "iso-cvt" "\
@@@ -16260,15 -16265,15 +16260,15 @@@ Add submenus to the File menu, to conve
  ;;;***
  \f
  ;;;### (autoloads nil "iso-transl" "international/iso-transl.el"
 -;;;;;;  (22150 28228 106072 702000))
 +;;;;;;  (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" (22150 28229
 -;;;;;;  102072 702000))
 +;;;### (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))))
@@@ -16299,7 -16304,7 +16299,7 @@@ and added as a submenu of the \"Edit\" 
  
  (if ispell-menu-map-needed (progn (define-key ispell-menu-map [ispell-region] `(menu-item ,(purecopy "Spell-Check Region") ispell-region :enable mark-active :help ,(purecopy "Spell-check text in marked region"))) (define-key ispell-menu-map [ispell-message] `(menu-item ,(purecopy "Spell-Check Message") ispell-message :visible (eq major-mode 'mail-mode) :help ,(purecopy "Skip headers and included message text"))) (define-key ispell-menu-map [ispell-buffer] `(menu-item ,(purecopy "Spell-Check Buffer") ispell-buffer :help ,(purecopy "Check spelling of selected buffer"))) (fset 'ispell-menu-map (symbol-value 'ispell-menu-map))))
  
 -(defvar ispell-skip-region-alist `((ispell-words-keyword forward-line) (ispell-dictionary-keyword forward-line) (ispell-pdict-keyword forward-line) (ispell-parsing-keyword forward-line) (,(purecopy "^---*BEGIN PGP [A-Z ]*--*") \, (purecopy "^---*END PGP [A-Z ]*--*")) (,(purecopy "^begin [0-9][0-9][0-9] [^    ]+$") \, (purecopy "\nend\n")) (,(purecopy "^%!PS-Adobe-[123].0") \, (purecopy "\n%%EOF\n")) (,(purecopy "^---* \\(Start of \\)?[Ff]orwarded [Mm]essage") \, (purecopy "^---* End of [Ff]orwarded [Mm]essage"))) "\
 +(defvar ispell-skip-region-alist `((ispell-words-keyword forward-line) (ispell-dictionary-keyword forward-line) (ispell-pdict-keyword forward-line) (ispell-parsing-keyword forward-line) (,(purecopy "^---*BEGIN PGP [A-Z ]*--*") \, (purecopy "^---*END PGP [A-Z ]*--*")) (,(purecopy "^begin [0-9][0-9][0-9] [^    ]+$") \, (purecopy "\nend\n")) (,(purecopy "^%!PS-Adobe-[123].0") \, (purecopy "\n%%EOF\n")) (,(purecopy "^---* \\(Start of \\)?[Ff]orwarded [Mm]essage") \, (purecopy "^---* End of [Ff]orwarded [Mm]essage")) (,(purecopy "\\(--+\\|_+\\|\\(/\\w\\|\\(\\(\\w\\|[-_]\\)+[.:@]\\)\\)\\(\\w\\|[-_]\\)*\\([.:/@]+\\(\\w\\|[-_~=?&]\\)+\\)+\\)"))) "\
  Alist expressing beginning and end of regions not to spell check.
  The alist key must be a regular expression.
  Valid forms include:
@@@ -16501,8 -16506,8 +16501,8 @@@ You can bind this to the key C-c i in G
  
  ;;;***
  \f
 -;;;### (autoloads nil "japan-util" "language/japan-util.el" (22150
 -;;;;;;  28228 190072 702000))
 +;;;### (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" "\
@@@ -16579,8 -16584,8 +16579,8 @@@ If non-nil, second arg INITIAL-INPUT i
  
  ;;;***
  \f
 -;;;### (autoloads nil "jka-compr" "jka-compr.el" (22150 28228 158072
 -;;;;;;  702000))
 +;;;### (autoloads nil "jka-compr" "jka-compr.el" (22086 11929 890062
 +;;;;;;  731000))
  ;;; Generated autoloads from jka-compr.el
  
  (defvar jka-compr-inhibit nil "\
@@@ -16603,8 -16608,8 +16603,8 @@@ by `jka-compr-installed'
  
  ;;;***
  \f
 -;;;### (autoloads nil "js" "progmodes/js.el" (22150 28228 866072
 -;;;;;;  702000))
 +;;;### (autoloads nil "js" "progmodes/js.el" (22109 36809 299889
 +;;;;;;  179000))
  ;;; Generated autoloads from progmodes/js.el
  (push (purecopy '(js 9)) package--builtin-versions)
  
@@@ -16631,14 -16636,14 +16631,14 @@@ locally, like so
  
  ;;;***
  \f
 -;;;### (autoloads nil "json" "json.el" (22150 28228 158072 702000))
 +;;;### (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" (22150 28227
 -;;;;;;  462072 702000))
 +;;;### (autoloads nil "keypad" "emulation/keypad.el" (22092 27717
 +;;;;;;  636268 464000))
  ;;; Generated autoloads from emulation/keypad.el
  
  (defvar keypad-setup nil "\
@@@ -16693,8 -16698,8 +16693,8 @@@ the decimal key on the keypad is mappe
  
  ;;;***
  \f
 -;;;### (autoloads nil "kinsoku" "international/kinsoku.el" (22150
 -;;;;;;  28228 106072 702000))
 +;;;### (autoloads nil "kinsoku" "international/kinsoku.el" (22086
 +;;;;;;  11929 878062 731000))
  ;;; Generated autoloads from international/kinsoku.el
  
  (autoload 'kinsoku "kinsoku" "\
@@@ -16715,8 -16720,8 +16715,8 @@@ the context of text formatting
  
  ;;;***
  \f
 -;;;### (autoloads nil "kkc" "international/kkc.el" (22150 28228 106072
 -;;;;;;  702000))
 +;;;### (autoloads nil "kkc" "international/kkc.el" (22086 11929 878062
 +;;;;;;  731000))
  ;;; Generated autoloads from international/kkc.el
  
  (defvar kkc-after-update-conversion-functions nil "\
@@@ -16738,7 -16743,7 +16738,7 @@@ and the return value is the length of t
  
  ;;;***
  \f
 -;;;### (autoloads nil "kmacro" "kmacro.el" (22150 28228 162072 702000))
 +;;;### (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)
@@@ -16850,8 -16855,8 +16850,8 @@@ If kbd macro currently being defined en
  
  ;;;***
  \f
 -;;;### (autoloads nil "korea-util" "language/korea-util.el" (22150
 -;;;;;;  28228 194072 702000))
 +;;;### (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" "")) "\
@@@ -16865,8 -16870,8 +16865,8 @@@ The kind of Korean keyboard for Korean 
  
  ;;;***
  \f
 -;;;### (autoloads nil "lao-util" "language/lao-util.el" (22150 28228
 -;;;;;;  194072 702000))
 +;;;### (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" "\
@@@ -16903,8 -16908,8 +16903,8 @@@ Transcribe Romanized Lao string STR to 
  
  ;;;***
  \f
 -;;;### (autoloads nil "latexenc" "international/latexenc.el" (22150
 -;;;;;;  28228 106072 702000))
 +;;;### (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))) "\
@@@ -16936,7 -16941,7 +16936,7 @@@ coding system names is determined from 
  ;;;***
  \f
  ;;;### (autoloads nil "latin1-disp" "international/latin1-disp.el"
 -;;;;;;  (22150 28228 110072 702000))
 +;;;;;;  (22086 11929 878062 731000))
  ;;; Generated autoloads from international/latin1-disp.el
  
  (defvar latin1-display nil "\
@@@ -16977,8 -16982,8 +16977,8 @@@ use either \\[customize] or the functio
  
  ;;;***
  \f
 -;;;### (autoloads nil "ld-script" "progmodes/ld-script.el" (22150
 -;;;;;;  28228 866072 702000))
 +;;;### (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" "\
@@@ -16988,8 -16993,8 +16988,8 @@@ A major mode to edit GNU ld script file
  
  ;;;***
  \f
 -;;;### (autoloads nil "let-alist" "emacs-lisp/let-alist.el" (22150
 -;;;;;;  28227 434072 702000))
 +;;;### (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)
  
@@@ -17028,7 -17033,7 +17028,7 @@@ displayed in the example above
  
  ;;;***
  \f
 -;;;### (autoloads nil "life" "play/life.el" (22150 28228 678072 702000))
 +;;;### (autoloads nil "life" "play/life.el" (22086 11930 130062 731000))
  ;;; Generated autoloads from play/life.el
  
  (autoload 'life "life" "\
@@@ -17041,7 -17046,7 +17041,7 @@@ generations (this defaults to 1)
  
  ;;;***
  \f
 -;;;### (autoloads nil "linum" "linum.el" (22150 28228 210072 702000))
 +;;;### (autoloads nil "linum" "linum.el" (22086 11929 930062 731000))
  ;;; Generated autoloads from linum.el
  (push (purecopy '(linum 0 9 24)) package--builtin-versions)
  
@@@ -17078,8 -17083,8 +17078,8 @@@ See `linum-mode' for more information o
  
  ;;;***
  \f
 -;;;### (autoloads nil "loadhist" "loadhist.el" (22150 28228 210072
 -;;;;;;  702000))
 +;;;### (autoloads nil "loadhist" "loadhist.el" (22086 11929 930062
 +;;;;;;  731000))
  ;;; Generated autoloads from loadhist.el
  
  (autoload 'unload-feature "loadhist" "\
@@@ -17110,7 -17115,7 +17110,7 @@@ something strange, such as redefining a
  
  ;;;***
  \f
 -;;;### (autoloads nil "locate" "locate.el" (22150 28228 210072 702000))
 +;;;### (autoloads nil "locate" "locate.el" (22086 11929 930062 731000))
  ;;; Generated autoloads from locate.el
  
  (defvar locate-ls-subdir-switches (purecopy "-al") "\
@@@ -17162,8 -17167,8 +17162,8 @@@ except that FILTER is not optional
  
  ;;;***
  \f
 -;;;### (autoloads nil "log-edit" "vc/log-edit.el" (22150 28229 278072
 -;;;;;;  702000))
 +;;;### (autoloads nil "log-edit" "vc/log-edit.el" (22092 27718 544268
 +;;;;;;  464000))
  ;;; Generated autoloads from vc/log-edit.el
  
  (autoload 'log-edit "log-edit" "\
@@@ -17194,8 -17199,8 +17194,8 @@@ done.  Otherwise, it uses the current b
  
  ;;;***
  \f
 -;;;### (autoloads nil "log-view" "vc/log-view.el" (22150 28229 278072
 -;;;;;;  702000))
 +;;;### (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" "\
@@@ -17205,7 -17210,7 +17205,7 @@@ Major mode for browsing CVS log output
  
  ;;;***
  \f
 -;;;### (autoloads nil "lpr" "lpr.el" (22150 28228 210072 702000))
 +;;;### (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)) "\
@@@ -17300,8 -17305,8 +17300,8 @@@ for further customization of the printe
  
  ;;;***
  \f
 -;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (22150 28228 210072
 -;;;;;;  702000))
 +;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (22086 11929 930062
 +;;;;;;  731000))
  ;;; Generated autoloads from ls-lisp.el
  
  (defvar ls-lisp-support-shell-wildcards t "\
@@@ -17312,8 -17317,8 +17312,8 @@@ Otherwise they are treated as Emacs reg
  
  ;;;***
  \f
 -;;;### (autoloads nil "lunar" "calendar/lunar.el" (22150 28227 78072
 -;;;;;;  702000))
 +;;;### (autoloads nil "lunar" "calendar/lunar.el" (22086 11929 534062
 +;;;;;;  731000))
  ;;; Generated autoloads from calendar/lunar.el
  
  (autoload 'lunar-phases "lunar" "\
@@@ -17325,8 -17330,8 +17325,8 @@@ This function is suitable for executio
  
  ;;;***
  \f
 -;;;### (autoloads nil "m4-mode" "progmodes/m4-mode.el" (22150 28228
 -;;;;;;  866072 702000))
 +;;;### (autoloads nil "m4-mode" "progmodes/m4-mode.el" (22086 11930
 +;;;;;;  210062 731000))
  ;;; Generated autoloads from progmodes/m4-mode.el
  
  (autoload 'm4-mode "m4-mode" "\
@@@ -17336,7 -17341,7 +17336,7 @@@ A major mode to edit m4 macro files
  
  ;;;***
  \f
 -;;;### (autoloads nil "macros" "macros.el" (22150 28228 210072 702000))
 +;;;### (autoloads nil "macros" "macros.el" (22086 11929 930062 731000))
  ;;; Generated autoloads from macros.el
  
  (autoload 'name-last-kbd-macro "macros" "\
@@@ -17425,8 -17430,8 +17425,8 @@@ and then select the region of un-tablif
  
  ;;;***
  \f
 -;;;### (autoloads nil "mail-extr" "mail/mail-extr.el" (22150 28228
 -;;;;;;  230072 702000))
 +;;;### (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" "\
@@@ -17456,8 -17461,8 +17456,8 @@@ Convert mail domain DOMAIN to the count
  
  ;;;***
  \f
 -;;;### (autoloads nil "mail-hist" "mail/mail-hist.el" (22150 28228
 -;;;;;;  230072 702000))
 +;;;### (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" "\
@@@ -17486,8 -17491,8 +17486,8 @@@ This function normally would be called 
  
  ;;;***
  \f
 -;;;### (autoloads nil "mail-utils" "mail/mail-utils.el" (22150 28228
 -;;;;;;  230072 702000))
 +;;;### (autoloads nil "mail-utils" "mail/mail-utils.el" (22086 11929
 +;;;;;;  934062 731000))
  ;;; Generated autoloads from mail/mail-utils.el
  
  (defvar mail-use-rfc822 nil "\
@@@ -17561,8 -17566,8 +17561,8 @@@ matches may be returned from the messag
  
  ;;;***
  \f
 -;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (22150 28228
 -;;;;;;  230072 702000))
 +;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (22086 11929
 +;;;;;;  938062 731000))
  ;;; Generated autoloads from mail/mailabbrev.el
  
  (defvar mail-abbrevs-mode nil "\
@@@ -17611,8 -17616,8 +17611,8 @@@ double-quotes
  
  ;;;***
  \f
 -;;;### (autoloads nil "mailalias" "mail/mailalias.el" (22150 28228
 -;;;;;;  230072 702000))
 +;;;### (autoloads nil "mailalias" "mail/mailalias.el" (22086 11929
 +;;;;;;  938062 731000))
  ;;; Generated autoloads from mail/mailalias.el
  
  (defvar mail-complete-style 'angles "\
@@@ -17665,8 -17670,8 +17665,8 @@@ current header, calls `mail-complete-fu
  
  ;;;***
  \f
 -;;;### (autoloads nil "mailclient" "mail/mailclient.el" (22150 28228
 -;;;;;;  234072 702000))
 +;;;### (autoloads nil "mailclient" "mail/mailclient.el" (22086 11929
 +;;;;;;  938062 731000))
  ;;; Generated autoloads from mail/mailclient.el
  
  (autoload 'mailclient-send-it "mailclient" "\
@@@ -17678,8 -17683,8 +17678,8 @@@ The mail client is taken to be the hand
  
  ;;;***
  \f
 -;;;### (autoloads nil "make-mode" "progmodes/make-mode.el" (22150
 -;;;;;;  28228 870072 702000))
 +;;;### (autoloads nil "make-mode" "progmodes/make-mode.el" (22086
 +;;;;;;  11930 210062 731000))
  ;;; Generated autoloads from progmodes/make-mode.el
  
  (autoload 'makefile-mode "make-mode" "\
@@@ -17796,8 -17801,8 +17796,8 @@@ An adapted `makefile-mode' that knows a
  
  ;;;***
  \f
 -;;;### (autoloads nil "makesum" "makesum.el" (22150 28228 258072
 -;;;;;;  702000))
 +;;;### (autoloads nil "makesum" "makesum.el" (22086 11929 954062
 +;;;;;;  731000))
  ;;; Generated autoloads from makesum.el
  
  (autoload 'make-command-summary "makesum" "\
@@@ -17808,7 -17813,7 +17808,7 @@@ Previous contents of that buffer are ki
  
  ;;;***
  \f
 -;;;### (autoloads nil "man" "man.el" (22150 28228 262072 702000))
 +;;;### (autoloads nil "man" "man.el" (22086 11929 954062 731000))
  ;;; Generated autoloads from man.el
  
  (defalias 'manual-entry 'man)
@@@ -17864,14 -17869,14 +17864,14 @@@ Default bookmark handler for Man buffer
  
  ;;;***
  \f
 -;;;### (autoloads nil "map" "emacs-lisp/map.el" (22150 28227 438072
 -;;;;;;  702000))
 +;;;### (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" (22150 28228 262072 702000))
 +;;;### (autoloads nil "master" "master.el" (22086 11929 954062 731000))
  ;;; Generated autoloads from master.el
  (push (purecopy '(master 1 0 2)) package--builtin-versions)
  
@@@ -17894,8 -17899,8 +17894,8 @@@ yourself the value of `master-of' by ca
  
  ;;;***
  \f
 -;;;### (autoloads nil "mb-depth" "mb-depth.el" (22150 28228 262072
 -;;;;;;  702000))
 +;;;### (autoloads nil "mb-depth" "mb-depth.el" (22086 11929 958062
 +;;;;;;  731000))
  ;;; Generated autoloads from mb-depth.el
  
  (defvar minibuffer-depth-indicate-mode nil "\
@@@ -17922,14 -17927,14 +17922,14 @@@ recursion depth in the minibuffer promp
  
  ;;;***
  \f
 -;;;### (autoloads nil "md4" "md4.el" (22150 28228 262072 702000))
 +;;;### (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" (22150 28227 974072
 -;;;;;;  702000))
 +;;;### (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)
@@@ -18094,8 -18099,8 +18094,8 @@@ which specify the range to operate on
  
  ;;;***
  \f
 -;;;### (autoloads nil "meta-mode" "progmodes/meta-mode.el" (22150
 -;;;;;;  28228 870072 702000))
 +;;;### (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)
  
@@@ -18111,8 -18116,8 +18111,8 @@@ Major mode for editing MetaPost sources
  
  ;;;***
  \f
 -;;;### (autoloads nil "metamail" "mail/metamail.el" (22150 28228
 -;;;;;;  234072 702000))
 +;;;### (autoloads nil "metamail" "mail/metamail.el" (22086 11929
 +;;;;;;  938062 731000))
  ;;; Generated autoloads from mail/metamail.el
  
  (autoload 'metamail-interpret-header "metamail" "\
@@@ -18155,8 -18160,8 +18155,8 @@@ redisplayed as output is inserted
  
  ;;;***
  \f
 -;;;### (autoloads nil "mh-comp" "mh-e/mh-comp.el" (22150 28228 294072
 -;;;;;;  702000))
 +;;;### (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" "\
@@@ -18246,7 -18251,7 +18246,7 @@@ delete the draft message
  
  ;;;***
  \f
 -;;;### (autoloads nil "mh-e" "mh-e/mh-e.el" (22150 28228 298072 702000))
 +;;;### (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)
  
@@@ -18263,8 -18268,8 +18263,8 @@@ Display version information about MH-E 
  
  ;;;***
  \f
 -;;;### (autoloads nil "mh-folder" "mh-e/mh-folder.el" (22150 28228
 -;;;;;;  302072 702000))
 +;;;### (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" "\
@@@ -18345,8 -18350,8 +18345,8 @@@ perform the operation on all messages i
  
  ;;;***
  \f
 -;;;### (autoloads nil "midnight" "midnight.el" (22150 28228 322072
 -;;;;;;  702000))
 +;;;### (autoloads nil "midnight" "midnight.el" (22086 11929 978062
 +;;;;;;  731000))
  ;;; Generated autoloads from midnight.el
  
  (defvar midnight-mode nil "\
@@@ -18386,8 -18391,8 +18386,8 @@@ to its second argument TM
  
  ;;;***
  \f
 -;;;### (autoloads nil "minibuf-eldef" "minibuf-eldef.el" (22150 28228
 -;;;;;;  322072 702000))
 +;;;### (autoloads nil "minibuf-eldef" "minibuf-eldef.el" (22086 11929
 +;;;;;;  978062 731000))
  ;;; Generated autoloads from minibuf-eldef.el
  
  (defvar minibuffer-electric-default-mode nil "\
@@@ -18416,7 -18421,7 +18416,7 @@@ is modified to remove the default indic
  
  ;;;***
  \f
 -;;;### (autoloads nil "misc" "misc.el" (22150 28228 326072 702000))
 +;;;### (autoloads nil "misc" "misc.el" (22086 11929 982062 731000))
  ;;; Generated autoloads from misc.el
  
  (autoload 'butterfly "misc" "\
@@@ -18444,8 -18449,8 +18444,8 @@@ The return value is always nil
  
  ;;;***
  \f
 -;;;### (autoloads nil "misearch" "misearch.el" (22150 28228 326072
 -;;;;;;  702000))
 +;;;### (autoloads nil "misearch" "misearch.el" (22086 11929 982062
 +;;;;;;  731000))
  ;;; Generated autoloads from misearch.el
   (add-hook 'isearch-mode-hook 'multi-isearch-setup)
  
@@@ -18533,8 -18538,8 +18533,8 @@@ whose file names match the specified wi
  
  ;;;***
  \f
 -;;;### (autoloads nil "mixal-mode" "progmodes/mixal-mode.el" (22150
 -;;;;;;  28228 874072 702000))
 +;;;### (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)
  
@@@ -18545,8 -18550,8 +18545,8 @@@ Major mode for the mixal asm language
  
  ;;;***
  \f
 -;;;### (autoloads nil "mm-encode" "gnus/mm-encode.el" (22150 28227
 -;;;;;;  978072 702000))
 +;;;### (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" "\
@@@ -18556,8 -18561,8 +18556,8 @@@ Return a default encoding for FILE
  
  ;;;***
  \f
 -;;;### (autoloads nil "mm-extern" "gnus/mm-extern.el" (22150 28227
 -;;;;;;  978072 702000))
 +;;;### (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" "\
@@@ -18575,8 -18580,8 +18575,8 @@@ If NO-DISPLAY is nil, display it. Other
  
  ;;;***
  \f
 -;;;### (autoloads nil "mm-partial" "gnus/mm-partial.el" (22150 28227
 -;;;;;;  978072 702000))
 +;;;### (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" "\
@@@ -18589,8 -18594,8 +18589,8 @@@ If NO-DISPLAY is nil, display it. Other
  
  ;;;***
  \f
 -;;;### (autoloads nil "mm-url" "gnus/mm-url.el" (22150 28227 978072
 -;;;;;;  702000))
 +;;;### (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" "\
@@@ -18606,8 -18611,8 +18606,8 @@@ Insert file contents of URL using `mm-u
  
  ;;;***
  \f
 -;;;### (autoloads nil "mm-uu" "gnus/mm-uu.el" (22150 28227 982072
 -;;;;;;  702000))
 +;;;### (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" "\
@@@ -18626,7 -18631,7 +18626,7 @@@ Assume text has been decoded if DECODE
  
  ;;;***
  \f
 -;;;### (autoloads nil "mml" "gnus/mml.el" (22150 28227 986072 702000))
 +;;;### (autoloads nil "mml" "gnus/mml.el" (22086 11929 822062 731000))
  ;;; Generated autoloads from gnus/mml.el
  
  (autoload 'mml-to-mime "mml" "\
@@@ -18651,8 -18656,8 +18651,8 @@@ body) or \"attachment\" (separate from 
  
  ;;;***
  \f
 -;;;### (autoloads nil "mml1991" "gnus/mml1991.el" (22150 28227 986072
 -;;;;;;  702000))
 +;;;### (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" (22150 28227 990072
 -;;;;;;  702000))
 +;;;### (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" (22150 28227
 -;;;;;;  222072 702000))
 +;;;### (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)
@@@ -18750,8 -18755,8 +18750,8 @@@ followed by the first character of the 
  
  ;;;***
  \f
 -;;;### (autoloads nil "morse" "play/morse.el" (22150 28228 682072
 -;;;;;;  702000))
 +;;;### (autoloads nil "morse" "play/morse.el" (22086 11930 130062
 +;;;;;;  731000))
  ;;; Generated autoloads from play/morse.el
  
  (autoload 'morse-region "morse" "\
@@@ -18776,8 -18781,8 +18776,8 @@@ Convert NATO phonetic alphabet in regio
  
  ;;;***
  \f
 -;;;### (autoloads nil "mouse-drag" "mouse-drag.el" (22150 28228 326072
 -;;;;;;  702000))
 +;;;### (autoloads nil "mouse-drag" "mouse-drag.el" (22086 11929 982062
 +;;;;;;  731000))
  ;;; Generated autoloads from mouse-drag.el
  
  (autoload 'mouse-drag-throw "mouse-drag" "\
@@@ -18824,7 -18829,7 +18824,7 @@@ To test this function, evaluate
  
  ;;;***
  \f
 -;;;### (autoloads nil "mpc" "mpc.el" (22150 28228 326072 702000))
 +;;;### (autoloads nil "mpc" "mpc.el" (22105 39773 859886 896000))
  ;;; Generated autoloads from mpc.el
  
  (autoload 'mpc "mpc" "\
@@@ -18834,7 -18839,7 +18834,7 @@@ Main entry point for MPC
  
  ;;;***
  \f
 -;;;### (autoloads nil "mpuz" "play/mpuz.el" (22150 28228 682072 702000))
 +;;;### (autoloads nil "mpuz" "play/mpuz.el" (22086 11930 130062 731000))
  ;;; Generated autoloads from play/mpuz.el
  
  (autoload 'mpuz "mpuz" "\
@@@ -18844,7 -18849,7 +18844,7 @@@ Multiplication puzzle with GNU Emacs
  
  ;;;***
  \f
 -;;;### (autoloads nil "msb" "msb.el" (22150 28228 338072 702000))
 +;;;### (autoloads nil "msb" "msb.el" (22086 11929 986062 731000))
  ;;; Generated autoloads from msb.el
  
  (defvar msb-mode nil "\
@@@ -18869,8 -18874,8 +18869,8 @@@ different buffer menu using the functio
  
  ;;;***
  \f
 -;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (22150
 -;;;;;;  28228 114072 702000))
 +;;;### (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" "\
@@@ -19002,8 -19007,8 +19002,8 @@@ The default is 20.  If LIMIT is negativ
  
  ;;;***
  \f
 -;;;### (autoloads nil "mule-util" "international/mule-util.el" (22150
 -;;;;;;  28228 114072 702000))
 +;;;### (autoloads nil "mule-util" "international/mule-util.el" (22108
 +;;;;;;  15942 546032 987000))
  ;;; Generated autoloads from international/mule-util.el
  
  (defsubst string-to-list (string) "\
@@@ -19162,8 -19167,8 +19162,8 @@@ QUALITY can be
  
  ;;;***
  \f
 -;;;### (autoloads nil "net-utils" "net/net-utils.el" (22150 28228
 -;;;;;;  378072 702000))
 +;;;### (autoloads nil "net-utils" "net/net-utils.el" (22086 11929
 +;;;;;;  998062 731000))
  ;;; Generated autoloads from net/net-utils.el
  
  (autoload 'ifconfig "net-utils" "\
@@@ -19257,8 -19262,8 +19257,8 @@@ Open a network connection to HOST on PO
  
  ;;;***
  \f
 -;;;### (autoloads nil "netrc" "net/netrc.el" (22150 28228 378072
 -;;;;;;  702000))
 +;;;### (autoloads nil "netrc" "net/netrc.el" (22086 11929 998062
 +;;;;;;  731000))
  ;;; Generated autoloads from net/netrc.el
  
  (autoload 'netrc-credentials "netrc" "\
@@@ -19270,8 -19275,8 +19270,8 @@@ listed in the PORTS list
  
  ;;;***
  \f
 -;;;### (autoloads nil "network-stream" "net/network-stream.el" (22150
 -;;;;;;  28228 378072 702000))
 +;;;### (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" "\
@@@ -19367,8 -19372,8 +19367,8 @@@ asynchronously, if possible
  
  ;;;***
  \f
 -;;;### (autoloads nil "newst-backend" "net/newst-backend.el" (22150
 -;;;;;;  28228 378072 702000))
 +;;;### (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" "\
@@@ -19390,7 -19395,7 +19390,7 @@@ Run `newsticker-start-hook' if newstick
  ;;;***
  \f
  ;;;### (autoloads nil "newst-plainview" "net/newst-plainview.el"
 -;;;;;;  (22150 28228 382072 702000))
 +;;;;;;  (22092 27717 980268 464000))
  ;;; Generated autoloads from net/newst-plainview.el
  
  (autoload 'newsticker-plainview "newst-plainview" "\
@@@ -19400,8 -19405,8 +19400,8 @@@ Start newsticker plainview
  
  ;;;***
  \f
 -;;;### (autoloads nil "newst-reader" "net/newst-reader.el" (22150
 -;;;;;;  28228 382072 702000))
 +;;;### (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" "\
@@@ -19411,8 -19416,8 +19411,8 @@@ Start reading news.  You may want to bi
  
  ;;;***
  \f
 -;;;### (autoloads nil "newst-ticker" "net/newst-ticker.el" (22150
 -;;;;;;  28228 382072 702000))
 +;;;### (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" "\
@@@ -19432,8 -19437,8 +19432,8 @@@ running already
  
  ;;;***
  \f
 -;;;### (autoloads nil "newst-treeview" "net/newst-treeview.el" (22150
 -;;;;;;  28228 382072 702000))
 +;;;### (autoloads nil "newst-treeview" "net/newst-treeview.el" (22109
 +;;;;;;  36809 263889 179000))
  ;;; Generated autoloads from net/newst-treeview.el
  
  (autoload 'newsticker-treeview "newst-treeview" "\
@@@ -19443,8 -19448,8 +19443,8 @@@ Start newsticker treeview
  
  ;;;***
  \f
 -;;;### (autoloads nil "nndiary" "gnus/nndiary.el" (22150 28227 990072
 -;;;;;;  702000))
 +;;;### (autoloads nil "nndiary" "gnus/nndiary.el" (22086 11929 822062
 +;;;;;;  731000))
  ;;; Generated autoloads from gnus/nndiary.el
  
  (autoload 'nndiary-generate-nov-databases "nndiary" "\
@@@ -19454,8 -19459,8 +19454,8 @@@ Generate NOV databases in all nndiary d
  
  ;;;***
  \f
 -;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (22150 28227 990072
 -;;;;;;  702000))
 +;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (22086 11929 822062
 +;;;;;;  731000))
  ;;; Generated autoloads from gnus/nndoc.el
  
  (autoload 'nndoc-add-type "nndoc" "\
@@@ -19469,8 -19474,8 +19469,8 @@@ symbol in the alist
  
  ;;;***
  \f
 -;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (22150 28227
 -;;;;;;  994072 702000))
 +;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (22086 11929
 +;;;;;;  826062 731000))
  ;;; Generated autoloads from gnus/nnfolder.el
  
  (autoload 'nnfolder-generate-active-file "nnfolder" "\
@@@ -19481,7 -19486,7 +19481,7 @@@ This command does not work if you use s
  
  ;;;***
  \f
 -;;;### (autoloads nil "nnml" "gnus/nnml.el" (22150 28228 2072 702000))
 +;;;### (autoloads nil "nnml" "gnus/nnml.el" (22102 63557 304509 103000))
  ;;; Generated autoloads from gnus/nnml.el
  
  (autoload 'nnml-generate-nov-databases "nnml" "\
@@@ -19491,7 -19496,7 +19491,7 @@@ Generate NOV databases in all nnml dire
  
  ;;;***
  \f
 -;;;### (autoloads nil "novice" "novice.el" (22150 28228 446072 702000))
 +;;;### (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")
@@@ -19523,8 -19528,8 +19523,8 @@@ future sessions
  
  ;;;***
  \f
 -;;;### (autoloads nil "nroff-mode" "textmodes/nroff-mode.el" (22150
 -;;;;;;  28229 102072 702000))
 +;;;### (autoloads nil "nroff-mode" "textmodes/nroff-mode.el" (22086
 +;;;;;;  11930 318062 731000))
  ;;; Generated autoloads from textmodes/nroff-mode.el
  
  (autoload 'nroff-mode "nroff-mode" "\
@@@ -19538,14 -19543,14 +19538,14 @@@ closing requests for requests that are 
  
  ;;;***
  \f
 -;;;### (autoloads nil "ntlm" "net/ntlm.el" (22150 28228 386072 702000))
 +;;;### (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" (22150 28228
 -;;;;;;  450072 702000))
 +;;;### (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" "\
@@@ -19557,8 -19562,8 +19557,8 @@@ Return nil if the face cannot display 
  
  ;;;***
  \f
 -;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (22150 28228
 -;;;;;;  450072 702000))
 +;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (22086 11930
 +;;;;;;  26062 731000))
  ;;; Generated autoloads from nxml/nxml-mode.el
  
  (autoload 'nxml-mode "nxml-mode" "\
@@@ -19618,8 -19623,8 +19618,8 @@@ Many aspects this mode can be customize
  
  ;;;***
  \f
 -;;;### (autoloads nil "nxml-uchnm" "nxml/nxml-uchnm.el" (22150 28228
 -;;;;;;  454072 702000))
 +;;;### (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" "\
@@@ -19631,8 -19636,8 +19631,8 @@@ the variable `nxml-enabled-unicode-bloc
  
  ;;;***
  \f
 -;;;### (autoloads nil "octave" "progmodes/octave.el" (22150 28228
 -;;;;;;  874072 702000))
 +;;;### (autoloads nil "octave" "progmodes/octave.el" (22086 11930
 +;;;;;;  214062 731000))
  ;;; Generated autoloads from progmodes/octave.el
  
  (autoload 'octave-mode "octave" "\
@@@ -19669,8 -19674,8 +19669,8 @@@ startup file, `~/.emacs-octave'
  
  ;;;***
  \f
 -;;;### (autoloads nil "opascal" "progmodes/opascal.el" (22150 28228
 -;;;;;;  878072 702000))
 +;;;### (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")
@@@ -19705,7 -19710,7 +19705,7 @@@ Coloring
  
  ;;;***
  \f
 -;;;### (autoloads nil "org" "org/org.el" (22150 28228 642072 702000))
 +;;;### (autoloads nil "org" "org/org.el" (22092 27718 88268 464000))
  ;;; Generated autoloads from org/org.el
  
  (autoload 'org-babel-do-load-languages "org" "\
@@@ -19926,8 -19931,8 +19926,8 @@@ Call the customize function with org a
  
  ;;;***
  \f
 -;;;### (autoloads nil "org-agenda" "org/org-agenda.el" (22150 28228
 -;;;;;;  558072 702000))
 +;;;### (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" "\
@@@ -20200,8 -20205,8 +20200,8 @@@ to override `appt-message-warning-time'
  
  ;;;***
  \f
 -;;;### (autoloads nil "org-capture" "org/org-capture.el" (22150 28228
 -;;;;;;  558072 702000))
 +;;;### (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" "\
@@@ -20243,8 -20248,8 +20243,8 @@@ Set `org-capture-templates' to be simil
  
  ;;;***
  \f
 -;;;### (autoloads nil "org-colview" "org/org-colview.el" (22150 28228
 -;;;;;;  582072 702000))
 +;;;### (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" "\
@@@ -20307,8 -20312,8 +20307,8 @@@ Turn on or update column view in the ag
  
  ;;;***
  \f
 -;;;### (autoloads nil "org-compat" "org/org-compat.el" (22150 28228
 -;;;;;;  582072 702000))
 +;;;### (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" "\
@@@ -20318,8 -20323,8 +20318,8 @@@ Try very hard to provide sensible versi
  
  ;;;***
  \f
 -;;;### (autoloads nil "org-macs" "org/org-macs.el" (22150 28228 602072
 -;;;;;;  702000))
 +;;;### (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" "\
@@@ -20347,8 -20352,8 +20347,8 @@@ The Git version of org-mode
  
  ;;;***
  \f
 -;;;### (autoloads nil "outline" "outline.el" (22150 28228 666072
 -;;;;;;  702000))
 +;;;### (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)
@@@ -20391,10 -20396,10 +20391,10 @@@ See the command `outline-mode' for mor
  
  ;;;***
  \f
 -;;;### (autoloads nil "package" "emacs-lisp/package.el" (22150 28227
 -;;;;;;  450072 702000))
 +;;;### (autoloads nil "package" "emacs-lisp/package.el" (22092 27717
 +;;;;;;  636268 464000))
  ;;; Generated autoloads from emacs-lisp/package.el
 -(push (purecopy '(package 1 1 0)) package--builtin-versions)
 +(push (purecopy '(package 1 0 1)) package--builtin-versions)
  
  (defvar package-enable-at-startup t "\
  Whether to activate installed packages when Emacs starts.
@@@ -20507,7 -20512,7 +20507,7 @@@ The list is displayed in a buffer name
  
  ;;;***
  \f
 -;;;### (autoloads nil "paren" "paren.el" (22150 28228 666072 702000))
 +;;;### (autoloads nil "paren" "paren.el" (22086 11930 122062 731000))
  ;;; Generated autoloads from paren.el
  
  (defvar show-paren-mode nil "\
@@@ -20533,8 -20538,8 +20533,8 @@@ matching parenthesis is highlighted in 
  
  ;;;***
  \f
 -;;;### (autoloads nil "parse-time" "calendar/parse-time.el" (22150
 -;;;;;;  28227 78072 702000))
 +;;;### (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)
  
@@@ -20547,8 -20552,8 +20547,8 @@@ unknown are returned as nil
  
  ;;;***
  \f
 -;;;### (autoloads nil "pascal" "progmodes/pascal.el" (22150 28228
 -;;;;;;  890072 702000))
 +;;;### (autoloads nil "pascal" "progmodes/pascal.el" (22092 27718
 +;;;;;;  228268 464000))
  ;;; Generated autoloads from progmodes/pascal.el
  
  (autoload 'pascal-mode "pascal" "\
@@@ -20597,8 -20602,8 +20597,8 @@@ See also the user variables `pascal-typ
  
  ;;;***
  \f
 -;;;### (autoloads nil "password-cache" "password-cache.el" (22150
 -;;;;;;  28228 666072 702000))
 +;;;### (autoloads nil "password-cache" "password-cache.el" (22086
 +;;;;;;  11930 122062 731000))
  ;;; Generated autoloads from password-cache.el
  
  (defvar password-cache t "\
@@@ -20619,8 -20624,8 +20619,8 @@@ Check if KEY is in the cache
  
  ;;;***
  \f
 -;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (22150 28227
 -;;;;;;  454072 702000))
 +;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (22091 6875 247217
 +;;;;;;  891000))
  ;;; Generated autoloads from emacs-lisp/pcase.el
  
  (autoload 'pcase "pcase" "\
@@@ -20721,8 -20726,8 +20721,8 @@@ to this macro
  
  ;;;***
  \f
 -;;;### (autoloads nil "pcmpl-cvs" "pcmpl-cvs.el" (22150 28228 666072
 -;;;;;;  702000))
 +;;;### (autoloads nil "pcmpl-cvs" "pcmpl-cvs.el" (22086 11930 122062
 +;;;;;;  731000))
  ;;; Generated autoloads from pcmpl-cvs.el
  
  (autoload 'pcomplete/cvs "pcmpl-cvs" "\
@@@ -20732,8 -20737,8 +20732,8 @@@ Completion rules for the `cvs' command
  
  ;;;***
  \f
 -;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (22150 28228 666072
 -;;;;;;  702000))
 +;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (22086 11930 122062
 +;;;;;;  731000))
  ;;; Generated autoloads from pcmpl-gnu.el
  
  (autoload 'pcomplete/gzip "pcmpl-gnu" "\
@@@ -20760,8 -20765,8 +20760,8 @@@ Completion for the GNU tar utility
  
  ;;;***
  \f
 -;;;### (autoloads nil "pcmpl-linux" "pcmpl-linux.el" (22150 28228
 -;;;;;;  670072 702000))
 +;;;### (autoloads nil "pcmpl-linux" "pcmpl-linux.el" (22086 11930
 +;;;;;;  122062 731000))
  ;;; Generated autoloads from pcmpl-linux.el
  
  (autoload 'pcomplete/kill "pcmpl-linux" "\
@@@ -20781,8 -20786,8 +20781,8 @@@ Completion for GNU/Linux `mount'
  
  ;;;***
  \f
 -;;;### (autoloads nil "pcmpl-rpm" "pcmpl-rpm.el" (22150 28228 670072
 -;;;;;;  702000))
 +;;;### (autoloads nil "pcmpl-rpm" "pcmpl-rpm.el" (22086 11930 122062
 +;;;;;;  731000))
  ;;; Generated autoloads from pcmpl-rpm.el
  
  (autoload 'pcomplete/rpm "pcmpl-rpm" "\
@@@ -20792,8 -20797,8 +20792,8 @@@ Completion for the `rpm' command
  
  ;;;***
  \f
 -;;;### (autoloads nil "pcmpl-unix" "pcmpl-unix.el" (22150 28228 670072
 -;;;;;;  702000))
 +;;;### (autoloads nil "pcmpl-unix" "pcmpl-unix.el" (22086 11930 122062
 +;;;;;;  731000))
  ;;; Generated autoloads from pcmpl-unix.el
  
  (autoload 'pcomplete/cd "pcmpl-unix" "\
@@@ -20848,8 -20853,8 +20848,8 @@@ Includes files as well as host names fo
  
  ;;;***
  \f
 -;;;### (autoloads nil "pcmpl-x" "pcmpl-x.el" (22150 28228 670072
 -;;;;;;  702000))
 +;;;### (autoloads nil "pcmpl-x" "pcmpl-x.el" (22086 11930 122062
 +;;;;;;  731000))
  ;;; Generated autoloads from pcmpl-x.el
  
  (autoload 'pcomplete/tlmgr "pcmpl-x" "\
@@@ -20873,8 -20878,8 +20873,8 @@@ Completion for the `ag' command
  
  ;;;***
  \f
 -;;;### (autoloads nil "pcomplete" "pcomplete.el" (22150 28228 674072
 -;;;;;;  702000))
 +;;;### (autoloads nil "pcomplete" "pcomplete.el" (22086 11930 122062
 +;;;;;;  731000))
  ;;; Generated autoloads from pcomplete.el
  
  (autoload 'pcomplete "pcomplete" "\
@@@ -20931,7 -20936,7 +20931,7 @@@ Setup `shell-mode' to use pcomplete
  
  ;;;***
  \f
 -;;;### (autoloads nil "pcvs" "vc/pcvs.el" (22150 28229 282072 702000))
 +;;;### (autoloads nil "pcvs" "vc/pcvs.el" (22092 27718 548268 464000))
  ;;; Generated autoloads from vc/pcvs.el
  
  (autoload 'cvs-checkout "pcvs" "\
@@@ -21006,8 -21011,8 +21006,8 @@@ The exact behavior is determined also b
  
  ;;;***
  \f
 -;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (22150 28229
 -;;;;;;  278072 702000))
 +;;;### (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)) "\
@@@ -21015,8 -21020,8 +21015,8 @@@ Global menu used by PCL-CVS."
  
  ;;;***
  \f
 -;;;### (autoloads nil "perl-mode" "progmodes/perl-mode.el" (22150
 -;;;;;;  28228 890072 702000))
 +;;;### (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)
@@@ -21077,8 -21082,8 +21077,8 @@@ Turning on Perl mode runs the normal ho
  
  ;;;***
  \f
 -;;;### (autoloads nil "picture" "textmodes/picture.el" (22150 28229
 -;;;;;;  106072 702000))
 +;;;### (autoloads nil "picture" "textmodes/picture.el" (22086 11930
 +;;;;;;  318062 731000))
  ;;; Generated autoloads from textmodes/picture.el
  
  (autoload 'picture-mode "picture" "\
@@@ -21158,8 -21163,8 +21158,8 @@@ they are not by default assigned to key
  
  ;;;***
  \f
 -;;;### (autoloads nil "pinentry" "net/pinentry.el" (22150 28228 386072
 -;;;;;;  702000))
 +;;;### (autoloads nil "pinentry" "net/pinentry.el" (22086 11930 2062
 +;;;;;;  731000))
  ;;; Generated autoloads from net/pinentry.el
  (push (purecopy '(pinentry 0 1)) package--builtin-versions)
  
@@@ -21176,8 -21181,8 +21176,8 @@@ will not be shown
  
  ;;;***
  \f
 -;;;### (autoloads nil "plstore" "gnus/plstore.el" (22150 28228 10072
 -;;;;;;  702000))
 +;;;### (autoloads nil "plstore" "gnus/plstore.el" (22086 11929 842062
 +;;;;;;  731000))
  ;;; Generated autoloads from gnus/plstore.el
  
  (autoload 'plstore-open "plstore" "\
@@@ -21192,8 -21197,8 +21192,8 @@@ Major mode for editing PLSTORE files
  
  ;;;***
  \f
 -;;;### (autoloads nil "po" "textmodes/po.el" (22150 28229 106072
 -;;;;;;  702000))
 +;;;### (autoloads nil "po" "textmodes/po.el" (22086 11930 322062
 +;;;;;;  731000))
  ;;; Generated autoloads from textmodes/po.el
  
  (autoload 'po-find-file-coding-system "po" "\
@@@ -21204,7 -21209,7 +21204,7 @@@ Called through `file-coding-system-alis
  
  ;;;***
  \f
 -;;;### (autoloads nil "pong" "play/pong.el" (22150 28228 682072 702000))
 +;;;### (autoloads nil "pong" "play/pong.el" (22086 11930 130062 731000))
  ;;; Generated autoloads from play/pong.el
  
  (autoload 'pong "pong" "\
@@@ -21220,7 -21225,7 +21220,7 @@@ pong-mode keybindings:\\<pong-mode-map
  
  ;;;***
  \f
 -;;;### (autoloads nil "pop3" "gnus/pop3.el" (22150 28228 14072 702000))
 +;;;### (autoloads nil "pop3" "gnus/pop3.el" (22086 11929 846062 731000))
  ;;; Generated autoloads from gnus/pop3.el
  
  (autoload 'pop3-movemail "pop3" "\
@@@ -21231,8 -21236,8 +21231,8 @@@ Use streaming commands
  
  ;;;***
  \f
 -;;;### (autoloads nil "pp" "emacs-lisp/pp.el" (22150 28227 454072
 -;;;;;;  702000))
 +;;;### (autoloads nil "pp" "emacs-lisp/pp.el" (22086 11929 682062
 +;;;;;;  731000))
  ;;; Generated autoloads from emacs-lisp/pp.el
  
  (autoload 'pp-to-string "pp" "\
@@@ -21282,8 -21287,8 +21282,8 @@@ Ignores leading comment characters
  
  ;;;***
  \f
 -;;;### (autoloads nil "printing" "printing.el" (22150 28228 698072
 -;;;;;;  702000))
 +;;;### (autoloads nil "printing" "printing.el" (22092 27718 128268
 +;;;;;;  464000))
  ;;; Generated autoloads from printing.el
  (push (purecopy '(printing 6 9 3)) package--builtin-versions)
  
@@@ -21871,7 -21876,7 +21871,7 @@@ are both set to t
  
  ;;;***
  \f
 -;;;### (autoloads nil "proced" "proced.el" (22150 28228 702072 702000))
 +;;;### (autoloads nil "proced" "proced.el" (22092 27718 128268 464000))
  ;;; Generated autoloads from proced.el
  
  (autoload 'proced "proced" "\
@@@ -21889,8 -21894,8 +21889,8 @@@ Proced buffers
  
  ;;;***
  \f
 -;;;### (autoloads nil "profiler" "profiler.el" (22150 28228 702072
 -;;;;;;  702000))
 +;;;### (autoloads nil "profiler" "profiler.el" (22086 11930 134062
 +;;;;;;  731000))
  ;;; Generated autoloads from profiler.el
  
  (autoload 'profiler-start "profiler" "\
@@@ -21918,8 -21923,8 +21918,8 @@@ Open profile FILENAME
  
  ;;;***
  \f
 -;;;### (autoloads nil "project" "progmodes/project.el" (22150 28228
 -;;;;;;  890072 702000))
 +;;;### (autoloads nil "project" "progmodes/project.el" (22088 30660
 +;;;;;;  79412 927000))
  ;;; Generated autoloads from progmodes/project.el
  
  (autoload 'project-current "project" "\
@@@ -21930,14 -21935,14 +21930,14 @@@ the user for a different directory to l
  \(fn &optional MAYBE-PROMPT DIR)" nil nil)
  
  (autoload 'project-find-regexp "project" "\
 -Find all matches for REGEXP in the current project's roots.
 +Find all matches for REGEXP in the current project.
  With \\[universal-argument] prefix, you can specify the directory
  to search in, and the file name pattern to search for.
  
  \(fn REGEXP)" t nil)
  
 -(autoload 'project-or-external-find-regexp "project" "\
 -Find all matches for REGEXP in the project roots or external roots.
 +(autoload 'project-or-libraries-find-regexp "project" "\
 +Find all matches for REGEXP in the current project or libraries.
  With \\[universal-argument] prefix, you can specify the file name
  pattern to search for.
  
  
  ;;;***
  \f
 -;;;### (autoloads nil "prolog" "progmodes/prolog.el" (22150 28228
 -;;;;;;  894072 702000))
 +;;;### (autoloads nil "prolog" "progmodes/prolog.el" (22086 11930
 +;;;;;;  218062 731000))
  ;;; Generated autoloads from progmodes/prolog.el
  
  (autoload 'prolog-mode "prolog" "\
@@@ -21979,7 -21984,7 +21979,7 @@@ With prefix argument ARG, restart the P
  
  ;;;***
  \f
 -;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (22150 28228 986072 702000))
 +;;;### (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")) "\
@@@ -21990,8 -21995,8 +21990,8 @@@ The default value is (\"/usr/local/shar
  
  ;;;***
  \f
 -;;;### (autoloads nil "ps-mode" "progmodes/ps-mode.el" (22150 28228
 -;;;;;;  894072 702000))
 +;;;### (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)
  
@@@ -22037,8 -22042,8 +22037,8 @@@ Typing \\<ps-run-mode-map>\\[ps-run-got
  
  ;;;***
  \f
 -;;;### (autoloads nil "ps-print" "ps-print.el" (22150 28228 990072
 -;;;;;;  702000))
 +;;;### (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)
  
@@@ -22235,8 -22240,8 +22235,8 @@@ If EXTENSION is any other symbol, it i
  
  ;;;***
  \f
 -;;;### (autoloads nil "pulse" "cedet/pulse.el" (22150 28227 222072
 -;;;;;;  702000))
 +;;;### (autoloads nil "pulse" "cedet/pulse.el" (22086 11929 550062
 +;;;;;;  731000))
  ;;; Generated autoloads from cedet/pulse.el
  (push (purecopy '(pulse 1 0)) package--builtin-versions)
  
@@@ -22254,8 -22259,8 +22254,8 @@@ Optional argument FACE specifies the fa
  
  ;;;***
  \f
 -;;;### (autoloads nil "python" "progmodes/python.el" (22150 28228
 -;;;;;;  906072 702000))
 +;;;### (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)
  
@@@ -22292,7 -22297,7 +22292,7 @@@ Major mode for editing Python files
  
  ;;;***
  \f
 -;;;### (autoloads nil "qp" "gnus/qp.el" (22150 28228 14072 702000))
 +;;;### (autoloads nil "qp" "gnus/qp.el" (22086 11929 846062 731000))
  ;;; Generated autoloads from gnus/qp.el
  
  (autoload 'quoted-printable-decode-region "qp" "\
@@@ -22311,8 -22316,8 +22311,8 @@@ them into characters should be done sep
  
  ;;;***
  \f
 -;;;### (autoloads nil "quail" "international/quail.el" (22150 28228
 -;;;;;;  122072 702000))
 +;;;### (autoloads nil "quail" "international/quail.el" (22086 11929
 +;;;;;;  882062 731000))
  ;;; Generated autoloads from international/quail.el
  
  (autoload 'quail-title "quail" "\
@@@ -22542,8 -22547,8 +22542,8 @@@ of each directory
  
  ;;;***
  \f
 -;;;### (autoloads nil "quail/hangul" "leim/quail/hangul.el" (22150
 -;;;;;;  28228 202072 702000))
 +;;;### (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" "\
@@@ -22556,7 -22561,7 +22556,7 @@@ HELP-TEXT is a text set in `hangul-inpu
  ;;;***
  \f
  ;;;### (autoloads nil "quail/uni-input" "leim/quail/uni-input.el"
 -;;;;;;  (22150 28228 210072 702000))
 +;;;;;;  (22086 11929 930062 731000))
  ;;; Generated autoloads from leim/quail/uni-input.el
  
  (autoload 'ucs-input-activate "quail/uni-input" "\
@@@ -22570,8 -22575,8 +22570,8 @@@ While this input method is active, the 
  
  ;;;***
  \f
 -;;;### (autoloads nil "quickurl" "net/quickurl.el" (22150 28228 390072
 -;;;;;;  702000))
 +;;;### (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" "\
@@@ -22642,8 -22647,8 +22642,8 @@@ Display `quickurl-list' as a formatted 
  
  ;;;***
  \f
 -;;;### (autoloads nil "rcirc" "net/rcirc.el" (22150 28228 390072
 -;;;;;;  702000))
 +;;;### (autoloads nil "rcirc" "net/rcirc.el" (22092 27717 984268
 +;;;;;;  464000))
  ;;; Generated autoloads from net/rcirc.el
  
  (autoload 'rcirc "rcirc" "\
@@@ -22681,8 -22686,8 +22681,8 @@@ if ARG is omitted or nil
  
  ;;;***
  \f
 -;;;### (autoloads nil "re-builder" "emacs-lisp/re-builder.el" (22150
 -;;;;;;  28227 454072 702000))
 +;;;### (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)
@@@ -22700,8 -22705,8 +22700,8 @@@ matching parts of the target buffer wil
  
  ;;;***
  \f
 -;;;### (autoloads nil "recentf" "recentf.el" (22150 28228 990072
 -;;;;;;  702000))
 +;;;### (autoloads nil "recentf" "recentf.el" (22086 11930 254062
 +;;;;;;  731000))
  ;;; Generated autoloads from recentf.el
  
  (defvar recentf-mode nil "\
@@@ -22727,7 -22732,7 +22727,7 @@@ were operated on recently
  
  ;;;***
  \f
 -;;;### (autoloads nil "rect" "rect.el" (22150 28228 990072 702000))
 +;;;### (autoloads nil "rect" "rect.el" (22087 9807 394279 951000))
  ;;; Generated autoloads from rect.el
  
  (autoload 'delete-rectangle "rect" "\
@@@ -22867,8 -22872,8 +22867,8 @@@ Activates the region if needed.  Only l
  
  ;;;***
  \f
 -;;;### (autoloads nil "refill" "textmodes/refill.el" (22150 28229
 -;;;;;;  106072 702000))
 +;;;### (autoloads nil "refill" "textmodes/refill.el" (22086 11930
 +;;;;;;  322062 731000))
  ;;; Generated autoloads from textmodes/refill.el
  
  (autoload 'refill-mode "refill" "\
@@@ -22888,8 -22893,8 +22888,8 @@@ For true \"word wrap\" behavior, use `v
  
  ;;;***
  \f
 -;;;### (autoloads nil "reftex" "textmodes/reftex.el" (22150 28229
 -;;;;;;  130072 702000))
 +;;;### (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")
@@@ -22942,8 -22947,8 +22942,8 @@@ This enforces rescanning the buffer on 
  
  ;;;***
  \f
 -;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (22150
 -;;;;;;  28229 114072 702000))
 +;;;### (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" (22150
 -;;;;;;  28227 454072 702000))
 +;;;### (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" "\
@@@ -22982,15 -22987,15 +22982,15 @@@ This means the number of non-shy regex
  
  ;;;***
  \f
 -;;;### (autoloads nil "regi" "emacs-lisp/regi.el" (22150 28227 454072
 -;;;;;;  702000))
 +;;;### (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" (22150 28229
 -;;;;;;  130072 702000))
 +;;;### (autoloads nil "remember" "textmodes/remember.el" (22086 11930
 +;;;;;;  334062 731000))
  ;;; Generated autoloads from textmodes/remember.el
  (push (purecopy '(remember 2 0)) package--builtin-versions)
  
@@@ -23044,7 -23049,7 +23044,7 @@@ to turn the *scratch* buffer into your 
  
  ;;;***
  \f
 -;;;### (autoloads nil "repeat" "repeat.el" (22150 28228 994072 702000))
 +;;;### (autoloads nil "repeat" "repeat.el" (22086 11930 258062 731000))
  ;;; Generated autoloads from repeat.el
  (push (purecopy '(repeat 0 51)) package--builtin-versions)
  
@@@ -23067,8 -23072,8 +23067,8 @@@ recently executed command not bound to 
  
  ;;;***
  \f
 -;;;### (autoloads nil "reporter" "mail/reporter.el" (22150 28228
 -;;;;;;  234072 702000))
 +;;;### (autoloads nil "reporter" "mail/reporter.el" (22086 11929
 +;;;;;;  938062 731000))
  ;;; Generated autoloads from mail/reporter.el
  
  (autoload 'reporter-submit-bug-report "reporter" "\
@@@ -23099,8 -23104,8 +23099,8 @@@ mail-sending package is used for editin
  
  ;;;***
  \f
 -;;;### (autoloads nil "reposition" "reposition.el" (22150 28228 994072
 -;;;;;;  702000))
 +;;;### (autoloads nil "reposition" "reposition.el" (22086 11930 262062
 +;;;;;;  731000))
  ;;; Generated autoloads from reposition.el
  
  (autoload 'reposition-window "reposition" "\
@@@ -23126,7 -23131,7 +23126,7 @@@ first comment line visible (if point i
  
  ;;;***
  \f
 -;;;### (autoloads nil "reveal" "reveal.el" (22150 28228 994072 702000))
 +;;;### (autoloads nil "reveal" "reveal.el" (22086 11930 262062 731000))
  ;;; Generated autoloads from reveal.el
  
  (autoload 'reveal-mode "reveal" "\
@@@ -23161,8 -23166,8 +23161,8 @@@ the mode if ARG is omitted or nil
  
  ;;;***
  \f
 -;;;### (autoloads nil "ring" "emacs-lisp/ring.el" (22150 28227 454072
 -;;;;;;  702000))
 +;;;### (autoloads nil "ring" "emacs-lisp/ring.el" (22086 11929 682062
 +;;;;;;  731000))
  ;;; Generated autoloads from emacs-lisp/ring.el
  
  (autoload 'ring-p "ring" "\
@@@ -23177,8 -23182,8 +23177,8 @@@ Make a ring that can contain SIZE eleme
  
  ;;;***
  \f
 -;;;### (autoloads nil "rlogin" "net/rlogin.el" (22150 28228 394072
 -;;;;;;  702000))
 +;;;### (autoloads nil "rlogin" "net/rlogin.el" (22086 11930 6062
 +;;;;;;  731000))
  ;;; Generated autoloads from net/rlogin.el
  
  (autoload 'rlogin "rlogin" "\
@@@ -23222,8 -23227,8 +23222,8 @@@ variable
  
  ;;;***
  \f
 -;;;### (autoloads nil "rmail" "mail/rmail.el" (22150 28228 242072
 -;;;;;;  702000))
 +;;;### (autoloads nil "rmail" "mail/rmail.el" (22092 27717 884268
 +;;;;;;  464000))
  ;;; Generated autoloads from mail/rmail.el
  
  (defvar rmail-file-name (purecopy "~/RMAIL") "\
@@@ -23420,8 -23425,8 +23420,8 @@@ Set PASSWORD to be used for retrieving 
  
  ;;;***
  \f
 -;;;### (autoloads nil "rmailout" "mail/rmailout.el" (22150 28228
 -;;;;;;  246072 702000))
 +;;;### (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)
  
@@@ -23485,8 -23490,8 +23485,8 @@@ than appending to it.  Deletes the mess
  
  ;;;***
  \f
 -;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (22150 28228
 -;;;;;;  454072 702000))
 +;;;### (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" "\
@@@ -23497,8 -23502,8 +23497,8 @@@ Return a pattern
  
  ;;;***
  \f
 -;;;### (autoloads nil "rng-nxml" "nxml/rng-nxml.el" (22150 28228
 -;;;;;;  458072 702000))
 +;;;### (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" "\
@@@ -23510,8 -23515,8 +23510,8 @@@ Validation will be enabled if `rng-nxml
  
  ;;;***
  \f
 -;;;### (autoloads nil "rng-valid" "nxml/rng-valid.el" (22150 28228
 -;;;;;;  462072 702000))
 +;;;### (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" "\
@@@ -23541,8 -23546,8 +23541,8 @@@ to use for finding the schema
  
  ;;;***
  \f
 -;;;### (autoloads nil "rng-xsd" "nxml/rng-xsd.el" (22150 28228 462072
 -;;;;;;  702000))
 +;;;### (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)
@@@ -23602,7 -23607,7 +23602,7 @@@ Start using robin package NAME, which i
  
  ;;;***
  \f
 -;;;### (autoloads nil "rot13" "rot13.el" (22150 28228 994072 702000))
 +;;;### (autoloads nil "rot13" "rot13.el" (22086 11930 266062 731000))
  ;;; Generated autoloads from rot13.el
  
  (autoload 'rot13 "rot13" "\
@@@ -23639,8 -23644,8 +23639,8 @@@ Toggle the use of ROT13 encoding for th
  
  ;;;***
  \f
 -;;;### (autoloads nil "rst" "textmodes/rst.el" (22150 28229 146072
 -;;;;;;  702000))
 +;;;### (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)))
  
@@@ -23670,8 -23675,8 +23670,8 @@@ for modes derived from Text mode, like 
  
  ;;;***
  \f
 -;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (22150
 -;;;;;;  28228 910072 702000))
 +;;;### (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)
  
@@@ -23688,8 -23693,8 +23688,8 @@@ Major mode for editing Ruby code
  
  ;;;***
  \f
 -;;;### (autoloads nil "ruler-mode" "ruler-mode.el" (22150 28228 994072
 -;;;;;;  702000))
 +;;;### (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)
  
@@@ -23707,8 -23712,8 +23707,8 @@@ if ARG is omitted or nil
  
  ;;;***
  \f
 -;;;### (autoloads nil "rx" "emacs-lisp/rx.el" (22150 28227 454072
 -;;;;;;  702000))
 +;;;### (autoloads nil "rx" "emacs-lisp/rx.el" (22086 11929 686062
 +;;;;;;  731000))
  ;;; Generated autoloads from emacs-lisp/rx.el
  
  (autoload 'rx-to-string "rx" "\
@@@ -24019,15 -24024,15 +24019,15 @@@ enclosed in `(and ...)'
  
  ;;;***
  \f
 -;;;### (autoloads nil "sasl-ntlm" "net/sasl-ntlm.el" (22150 28228
 -;;;;;;  394072 702000))
 +;;;### (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" (22150 28228 994072
 -;;;;;;  702000))
 +;;;### (autoloads nil "savehist" "savehist.el" (22086 11930 266062
 +;;;;;;  731000))
  ;;; Generated autoloads from savehist.el
  (push (purecopy '(savehist 24)) package--builtin-versions)
  
@@@ -24059,8 -24064,8 +24059,8 @@@ histories, which is probably undesirabl
  
  ;;;***
  \f
 -;;;### (autoloads nil "saveplace" "saveplace.el" (22150 28228 994072
 -;;;;;;  702000))
 +;;;### (autoloads nil "saveplace" "saveplace.el" (22086 11930 266062
 +;;;;;;  731000))
  ;;; Generated autoloads from saveplace.el
  
  (defvar save-place-mode nil "\
@@@ -24081,8 -24086,8 +24081,8 @@@ where it was when you previously visite
  
  ;;;***
  \f
 -;;;### (autoloads nil "scheme" "progmodes/scheme.el" (22150 28228
 -;;;;;;  910072 702000))
 +;;;### (autoloads nil "scheme" "progmodes/scheme.el" (22086 11930
 +;;;;;;  222062 731000))
  ;;; Generated autoloads from progmodes/scheme.el
  
  (autoload 'scheme-mode "scheme" "\
@@@ -24121,8 -24126,8 +24121,8 @@@ that variable's value is a string
  
  ;;;***
  \f
 -;;;### (autoloads nil "score-mode" "gnus/score-mode.el" (22150 28228
 -;;;;;;  18072 702000))
 +;;;### (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" "\
@@@ -24135,8 -24140,8 +24135,8 @@@ This mode is an extended emacs-lisp mod
  
  ;;;***
  \f
 -;;;### (autoloads nil "scroll-all" "scroll-all.el" (22150 28228 994072
 -;;;;;;  702000))
 +;;;### (autoloads nil "scroll-all" "scroll-all.el" (22089 51528 372929
 +;;;;;;  316000))
  ;;; Generated autoloads from scroll-all.el
  
  (defvar scroll-all-mode nil "\
@@@ -24161,8 -24166,8 +24161,8 @@@ one window apply to all visible window
  
  ;;;***
  \f
 -;;;### (autoloads nil "scroll-lock" "scroll-lock.el" (22150 28228
 -;;;;;;  994072 702000))
 +;;;### (autoloads nil "scroll-lock" "scroll-lock.el" (22086 11930
 +;;;;;;  270062 731000))
  ;;; Generated autoloads from scroll-lock.el
  
  (autoload 'scroll-lock-mode "scroll-lock" "\
@@@ -24178,16 -24183,16 +24178,16 @@@ vertically fixed relative to window bou
  
  ;;;***
  \f
 -;;;### (autoloads nil "secrets" "net/secrets.el" (22150 28228 394072
 -;;;;;;  702000))
 +;;;### (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" (22150 28227
 -;;;;;;  222072 702000))
 +;;;### (autoloads nil "semantic" "cedet/semantic.el" (22092 27717
 +;;;;;;  568268 464000))
  ;;; Generated autoloads from cedet/semantic.el
  (push (purecopy '(semantic 2 2)) package--builtin-versions)
  
@@@ -24245,7 -24250,7 +24245,7 @@@ Semantic mode
  ;;;***
  \f
  ;;;### (autoloads nil "semantic/bovine/grammar" "cedet/semantic/bovine/grammar.el"
 -;;;;;;  (22150 28227 234072 702000))
 +;;;;;;  (22086 11929 554062 731000))
  ;;; Generated autoloads from cedet/semantic/bovine/grammar.el
  
  (autoload 'bovine-grammar-mode "semantic/bovine/grammar" "\
@@@ -24256,7 -24261,7 +24256,7 @@@ Major mode for editing Bovine grammars
  ;;;***
  \f
  ;;;### (autoloads nil "semantic/wisent/grammar" "cedet/semantic/wisent/grammar.el"
 -;;;;;;  (22150 28227 266072 702000))
 +;;;;;;  (22086 11929 578062 731000))
  ;;; Generated autoloads from cedet/semantic/wisent/grammar.el
  
  (autoload 'wisent-grammar-mode "semantic/wisent/grammar" "\
@@@ -24266,8 -24271,8 +24266,8 @@@ Major mode for editing Wisent grammars
  
  ;;;***
  \f
 -;;;### (autoloads nil "sendmail" "mail/sendmail.el" (22150 28228
 -;;;;;;  254072 702000))
 +;;;### (autoloads nil "sendmail" "mail/sendmail.el" (22086 11929
 +;;;;;;  946062 731000))
  ;;; Generated autoloads from mail/sendmail.el
  
  (defvar mail-from-style 'default "\
@@@ -24548,14 -24553,14 +24548,14 @@@ Like `mail' command, but display mail b
  
  ;;;***
  \f
 -;;;### (autoloads nil "seq" "emacs-lisp/seq.el" (22150 28227 454072
 -;;;;;;  702000))
 +;;;### (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" (22150 28228 998072 702000))
 +;;;### (autoloads nil "server" "server.el" (22093 48588 588393 539000))
  ;;; Generated autoloads from server.el
  
  (put 'server-host 'risky-local-variable t)
@@@ -24622,7 -24627,7 +24622,7 @@@ only these files will be asked to be sa
  
  ;;;***
  \f
 -;;;### (autoloads nil "ses" "ses.el" (22150 28229 14072 702000))
 +;;;### (autoloads nil "ses" "ses.el" (22092 27718 416268 464000))
  ;;; Generated autoloads from ses.el
  
  (autoload 'ses-mode "ses" "\
@@@ -24666,8 -24671,8 +24666,8 @@@ formula
  
  ;;;***
  \f
 -;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (22150
 -;;;;;;  28229 150072 702000))
 +;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (22092
 +;;;;;;  27718 512268 464000))
  ;;; Generated autoloads from textmodes/sgml-mode.el
  
  (autoload 'sgml-mode "sgml-mode" "\
@@@ -24732,8 -24737,8 +24732,8 @@@ To work around that, do
  
  ;;;***
  \f
 -;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (22150
 -;;;;;;  28228 918072 702000))
 +;;;### (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)
@@@ -24748,7 -24753,8 +24748,7 @@@ assumed.  Since filenames rarely give 
  This mode adapts to the variations between shells (see `sh-set-shell') by
  means of an inheritance based feature lookup (see `sh-feature').  This
  mechanism applies to all variables (including skeletons) that pertain to
 -shell-specific features.  Shell script files can use the `sh-shell' local
 -variable to indicate the shell variant to be used for the file.
 +shell-specific features.
  
  The default style of this mode is that of Rosenblatt's Korn shell book.
  The syntax of the statements varies with the shell being used.  The
@@@ -24796,8 -24802,8 +24796,8 @@@ with your script for an edit-interpret-
  
  ;;;***
  \f
 -;;;### (autoloads nil "shadow" "emacs-lisp/shadow.el" (22150 28227
 -;;;;;;  454072 702000))
 +;;;### (autoloads nil "shadow" "emacs-lisp/shadow.el" (22086 11929
 +;;;;;;  686062 731000))
  ;;; Generated autoloads from emacs-lisp/shadow.el
  
  (autoload 'list-load-path-shadows "shadow" "\
@@@ -24846,8 -24852,8 +24846,8 @@@ function, `load-path-shadows-find'
  
  ;;;***
  \f
 -;;;### (autoloads nil "shadowfile" "shadowfile.el" (22150 28229 14072
 -;;;;;;  702000))
 +;;;### (autoloads nil "shadowfile" "shadowfile.el" (22086 11930 278062
 +;;;;;;  731000))
  ;;; Generated autoloads from shadowfile.el
  
  (autoload 'shadow-define-cluster "shadowfile" "\
@@@ -24885,7 -24891,7 +24885,7 @@@ Set up file shadowing
  
  ;;;***
  \f
 -;;;### (autoloads nil "shell" "shell.el" (22150 28229 14072 702000))
 +;;;### (autoloads nil "shell" "shell.el" (22086 11930 278062 731000))
  ;;; Generated autoloads from shell.el
  
  (defvar shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe") "\
@@@ -24933,7 -24939,7 +24933,7 @@@ Otherwise, one argument `-i' is passed 
  
  ;;;***
  \f
 -;;;### (autoloads nil "shr" "net/shr.el" (22150 28228 398072 702000))
 +;;;### (autoloads nil "shr" "net/shr.el" (22087 9807 382279 951000))
  ;;; Generated autoloads from net/shr.el
  
  (autoload 'shr-render-region "shr" "\
@@@ -24950,8 -24956,8 +24950,8 @@@ DOM should be a parse tree as generate
  
  ;;;***
  \f
 -;;;### (autoloads nil "sieve" "gnus/sieve.el" (22150 28228 18072
 -;;;;;;  702000))
 +;;;### (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" (22150 28228
 -;;;;;;  18072 702000))
 +;;;### (autoloads nil "sieve-mode" "gnus/sieve-mode.el" (22086 11929
 +;;;;;;  850062 731000))
  ;;; Generated autoloads from gnus/sieve-mode.el
  
  (autoload 'sieve-mode "sieve-mode" "\
@@@ -24992,8 -24998,8 +24992,8 @@@ Turning on Sieve mode runs `sieve-mode-
  
  ;;;***
  \f
 -;;;### (autoloads nil "simula" "progmodes/simula.el" (22150 28228
 -;;;;;;  922072 702000))
 +;;;### (autoloads nil "simula" "progmodes/simula.el" (22092 27718
 +;;;;;;  288268 464000))
  ;;; Generated autoloads from progmodes/simula.el
  
  (autoload 'simula-mode "simula" "\
@@@ -25041,8 -25047,8 +25041,8 @@@ with no arguments, if that value is non
  
  ;;;***
  \f
 -;;;### (autoloads nil "skeleton" "skeleton.el" (22150 28229 18072
 -;;;;;;  702000))
 +;;;### (autoloads nil "skeleton" "skeleton.el" (22086 11930 290062
 +;;;;;;  731000))
  ;;; Generated autoloads from skeleton.el
  
  (defvar skeleton-filter-function 'identity "\
@@@ -25161,8 -25167,8 +25161,8 @@@ twice for the others
  
  ;;;***
  \f
 -;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (22150 28229
 -;;;;;;  286072 702000))
 +;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (22092 27718
 +;;;;;;  548268 464000))
  ;;; Generated autoloads from vc/smerge-mode.el
  
  (autoload 'smerge-ediff "smerge-mode" "\
@@@ -25189,8 -25195,8 +25189,8 @@@ If no conflict maker is found, turn of
  
  ;;;***
  \f
 -;;;### (autoloads nil "smiley" "gnus/smiley.el" (22150 28228 18072
 -;;;;;;  702000))
 +;;;### (autoloads nil "smiley" "gnus/smiley.el" (22086 11929 850062
 +;;;;;;  731000))
  ;;; Generated autoloads from gnus/smiley.el
  
  (autoload 'smiley-region "smiley" "\
@@@ -25207,8 -25213,8 +25207,8 @@@ interactively.  If there's no argument
  
  ;;;***
  \f
 -;;;### (autoloads nil "smtpmail" "mail/smtpmail.el" (22150 28228
 -;;;;;;  254072 702000))
 +;;;### (autoloads nil "smtpmail" "mail/smtpmail.el" (22086 11929
 +;;;;;;  950062 731000))
  ;;; Generated autoloads from mail/smtpmail.el
  
  (autoload 'smtpmail-send-it "smtpmail" "\
@@@ -25223,8 -25229,8 +25223,8 @@@ Send mail that was queued as a result o
  
  ;;;***
  \f
 -;;;### (autoloads nil "snake" "play/snake.el" (22150 28228 682072
 -;;;;;;  702000))
 +;;;### (autoloads nil "snake" "play/snake.el" (22086 11930 130062
 +;;;;;;  731000))
  ;;; Generated autoloads from play/snake.el
  
  (autoload 'snake "snake" "\
@@@ -25247,8 -25253,8 +25247,8 @@@ Snake mode keybindings
  
  ;;;***
  \f
 -;;;### (autoloads nil "snmp-mode" "net/snmp-mode.el" (22150 28228
 -;;;;;;  402072 702000))
 +;;;### (autoloads nil "snmp-mode" "net/snmp-mode.el" (22086 11930
 +;;;;;;  10062 731000))
  ;;; Generated autoloads from net/snmp-mode.el
  
  (autoload 'snmp-mode "snmp-mode" "\
@@@ -25277,15 -25283,15 +25277,15 @@@ then `snmpv2-mode-hook'
  
  ;;;***
  \f
 -;;;### (autoloads nil "soap-client" "net/soap-client.el" (22150 28228
 -;;;;;;  406072 702000))
 +;;;### (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" (22150 28227 82072
 -;;;;;;  702000))
 +;;;### (autoloads nil "solar" "calendar/solar.el" (22086 11929 534062
 +;;;;;;  731000))
  ;;; Generated autoloads from calendar/solar.el
  
  (autoload 'sunrise-sunset "solar" "\
@@@ -25300,8 -25306,8 +25300,8 @@@ This function is suitable for executio
  
  ;;;***
  \f
 -;;;### (autoloads nil "solitaire" "play/solitaire.el" (22150 28228
 -;;;;;;  682072 702000))
 +;;;### (autoloads nil "solitaire" "play/solitaire.el" (22086 11930
 +;;;;;;  130062 731000))
  ;;; Generated autoloads from play/solitaire.el
  
  (autoload 'solitaire "solitaire" "\
@@@ -25376,7 -25382,7 +25376,7 @@@ Pick your favorite shortcuts
  
  ;;;***
  \f
 -;;;### (autoloads nil "sort" "sort.el" (22150 28229 18072 702000))
 +;;;### (autoloads nil "sort" "sort.el" (22086 11930 290062 731000))
  ;;; Generated autoloads from sort.el
  (put 'sort-fold-case 'safe-local-variable 'booleanp)
  
@@@ -25551,7 -25557,7 +25551,7 @@@ is non-nil, it also prints a message de
  
  ;;;***
  \f
 -;;;### (autoloads nil "spam" "gnus/spam.el" (22150 28228 22072 702000))
 +;;;### (autoloads nil "spam" "gnus/spam.el" (22086 11929 854062 731000))
  ;;; Generated autoloads from gnus/spam.el
  
  (autoload 'spam-initialize "spam" "\
@@@ -25565,8 -25571,8 +25565,8 @@@ installed through `spam-necessary-extra
  
  ;;;***
  \f
 -;;;### (autoloads nil "spam-report" "gnus/spam-report.el" (22150
 -;;;;;;  28228 22072 702000))
 +;;;### (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" "\
@@@ -25608,8 -25614,8 +25608,8 @@@ Spam reports will be queued with the me
  
  ;;;***
  \f
 -;;;### (autoloads nil "speedbar" "speedbar.el" (22150 28229 22072
 -;;;;;;  702000))
 +;;;### (autoloads nil "speedbar" "speedbar.el" (22092 27718 452268
 +;;;;;;  464000))
  ;;; Generated autoloads from speedbar.el
  
  (defalias 'speedbar 'speedbar-frame-mode)
@@@ -25633,8 -25639,8 +25633,8 @@@ selected.  If the speedbar frame is act
  
  ;;;***
  \f
 -;;;### (autoloads nil "spook" "play/spook.el" (22150 28228 682072
 -;;;;;;  702000))
 +;;;### (autoloads nil "spook" "play/spook.el" (22086 11930 130062
 +;;;;;;  731000))
  ;;; Generated autoloads from play/spook.el
  
  (autoload 'spook "spook" "\
@@@ -25649,8 -25655,8 +25649,8 @@@ Return a vector containing the lines fr
  
  ;;;***
  \f
 -;;;### (autoloads nil "sql" "progmodes/sql.el" (22150 28228 926072
 -;;;;;;  702000))
 +;;;### (autoloads nil "sql" "progmodes/sql.el" (22092 27718 320268
 +;;;;;;  464000))
  ;;; Generated autoloads from progmodes/sql.el
  (push (purecopy '(sql 3 5)) package--builtin-versions)
  
@@@ -26116,15 -26122,15 +26116,15 @@@ Run vsql as an inferior process
  
  ;;;***
  \f
 -;;;### (autoloads nil "srecode" "cedet/srecode.el" (22150 28227 270072
 -;;;;;;  702000))
 +;;;### (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"
 -;;;;;;  (22150 28227 274072 702000))
 +;;;;;;  (22086 11929 582062 731000))
  ;;; Generated autoloads from cedet/srecode/srt-mode.el
  
  (autoload 'srecode-template-mode "srecode/srt-mode" "\
@@@ -26136,8 -26142,8 +26136,8 @@@ Major-mode for writing SRecode macros
  
  ;;;***
  \f
 -;;;### (autoloads nil "starttls" "gnus/starttls.el" (22150 28228
 -;;;;;;  22072 702000))
 +;;;### (autoloads nil "starttls" "gnus/starttls.el" (22086 11929
 +;;;;;;  854062 731000))
  ;;; Generated autoloads from gnus/starttls.el
  
  (autoload 'starttls-open-stream "starttls" "\
@@@ -26160,8 -26166,7 +26160,8 @@@ GnuTLS requires a port number
  
  ;;;***
  \f
 -;;;### (autoloads nil "strokes" "strokes.el" (22150 28229 22072 702000))
 +;;;### (autoloads nil "strokes" "strokes.el" (22086 11930 294062
 +;;;;;;  731000))
  ;;; Generated autoloads from strokes.el
  
  (autoload 'strokes-global-set-stroke "strokes" "\
@@@ -26295,8 -26300,8 +26295,8 @@@ Studlify-case the current buffer
  
  ;;;***
  \f
 -;;;### (autoloads nil "subword" "progmodes/subword.el" (22150 28228
 -;;;;;;  930072 702000))
 +;;;### (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")
@@@ -26388,8 -26393,8 +26388,8 @@@ See `superword-mode' for more informati
  
  ;;;***
  \f
 -;;;### (autoloads nil "supercite" "mail/supercite.el" (22150 28228
 -;;;;;;  254072 702000))
 +;;;### (autoloads nil "supercite" "mail/supercite.el" (22086 11929
 +;;;;;;  950062 731000))
  ;;; Generated autoloads from mail/supercite.el
  
  (autoload 'sc-cite-original "supercite" "\
@@@ -26421,8 -26426,7 +26421,8 @@@ and `sc-post-hook' is run after the gut
  
  ;;;***
  \f
 -;;;### (autoloads nil "t-mouse" "t-mouse.el" (22150 28229 26072 702000))
 +;;;### (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")
@@@ -26450,7 -26454,7 +26450,7 @@@ It relies on the `gpm' daemon being act
  
  ;;;***
  \f
 -;;;### (autoloads nil "tabify" "tabify.el" (22150 28229 26072 702000))
 +;;;### (autoloads nil "tabify" "tabify.el" (22086 11930 298062 731000))
  ;;; Generated autoloads from tabify.el
  
  (autoload 'untabify "tabify" "\
@@@ -26479,8 -26483,8 +26479,8 @@@ The variable `tab-width' controls the s
  
  ;;;***
  \f
 -;;;### (autoloads nil "table" "textmodes/table.el" (22150 28229 166072
 -;;;;;;  702000))
 +;;;### (autoloads nil "table" "textmodes/table.el" (22092 27718 520268
 +;;;;;;  464000))
  ;;; Generated autoloads from textmodes/table.el
  
  (autoload 'table-insert "table" "\
@@@ -27051,7 -27055,7 +27051,7 @@@ converts a table into plain text withou
  
  ;;;***
  \f
 -;;;### (autoloads nil "talk" "talk.el" (22150 28229 26072 702000))
 +;;;### (autoloads nil "talk" "talk.el" (22086 11930 298062 731000))
  ;;; Generated autoloads from talk.el
  
  (autoload 'talk-connect "talk" "\
@@@ -27066,8 -27070,8 +27066,8 @@@ Connect to the Emacs talk group from th
  
  ;;;***
  \f
 -;;;### (autoloads nil "tar-mode" "tar-mode.el" (22150 28229 26072
 -;;;;;;  702000))
 +;;;### (autoloads nil "tar-mode" "tar-mode.el" (22086 11930 298062
 +;;;;;;  731000))
  ;;; Generated autoloads from tar-mode.el
  
  (autoload 'tar-mode "tar-mode" "\
@@@ -27090,8 -27094,8 +27090,8 @@@ See also: variables `tar-update-datesta
  
  ;;;***
  \f
 -;;;### (autoloads nil "tcl" "progmodes/tcl.el" (22150 28228 934072
 -;;;;;;  702000))
 +;;;### (autoloads nil "tcl" "progmodes/tcl.el" (22086 11930 230062
 +;;;;;;  731000))
  ;;; Generated autoloads from progmodes/tcl.el
  
  (autoload 'tcl-mode "tcl" "\
@@@ -27139,8 -27143,8 +27139,8 @@@ Prefix argument means invert sense of `
  
  ;;;***
  \f
 -;;;### (autoloads nil "telnet" "net/telnet.el" (22150 28228 406072
 -;;;;;;  702000))
 +;;;### (autoloads nil "telnet" "net/telnet.el" (22086 11930 14062
 +;;;;;;  731000))
  ;;; Generated autoloads from net/telnet.el
  
  (autoload 'telnet "telnet" "\
@@@ -27165,7 -27169,7 +27165,7 @@@ Normally input is edited in Emacs and s
  
  ;;;***
  \f
 -;;;### (autoloads nil "term" "term.el" (22150 28229 58072 702000))
 +;;;### (autoloads nil "term" "term.el" (22102 63557 312509 103000))
  ;;; Generated autoloads from term.el
  
  (autoload 'make-term "term" "\
@@@ -27207,8 -27211,8 +27207,8 @@@ use in that buffer
  
  ;;;***
  \f
 -;;;### (autoloads nil "testcover" "emacs-lisp/testcover.el" (22150
 -;;;;;;  28227 458072 702000))
 +;;;### (autoloads nil "testcover" "emacs-lisp/testcover.el" (22086
 +;;;;;;  11929 686062 731000))
  ;;; Generated autoloads from emacs-lisp/testcover.el
  
  (autoload 'testcover-this-defun "testcover" "\
@@@ -27218,8 -27222,8 +27218,8 @@@ Start coverage on function under point
  
  ;;;***
  \f
 -;;;### (autoloads nil "tetris" "play/tetris.el" (22150 28228 682072
 -;;;;;;  702000))
 +;;;### (autoloads nil "tetris" "play/tetris.el" (22086 11930 130062
 +;;;;;;  731000))
  ;;; Generated autoloads from play/tetris.el
  (push (purecopy '(tetris 2 1)) package--builtin-versions)
  
@@@ -27244,8 -27248,8 +27244,8 @@@ tetris-mode keybindings
  
  ;;;***
  \f
 -;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (22150 28229
 -;;;;;;  186072 702000))
 +;;;### (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 "\
@@@ -27546,8 -27550,8 +27546,8 @@@ Major mode to edit DocTeX files
  
  ;;;***
  \f
 -;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (22150 28229
 -;;;;;;  190072 702000))
 +;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (22086 11930
 +;;;;;;  350062 731000))
  ;;; Generated autoloads from textmodes/texinfmt.el
  
  (autoload 'texinfo-format-buffer "texinfmt" "\
@@@ -27586,8 -27590,8 +27586,8 @@@ if large.  You can use `Info-split' to 
  
  ;;;***
  \f
 -;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (22150 28229
 -;;;;;;  194072 702000))
 +;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (22086 11930
 +;;;;;;  350062 731000))
  ;;; Generated autoloads from textmodes/texinfo.el
  
  (defvar texinfo-open-quote (purecopy "``") "\
@@@ -27671,8 -27675,8 +27671,8 @@@ value of `texinfo-mode-hook'
  
  ;;;***
  \f
 -;;;### (autoloads nil "thai-util" "language/thai-util.el" (22150
 -;;;;;;  28228 198072 702000))
 +;;;### (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" "\
@@@ -27699,8 -27703,8 +27699,8 @@@ Compose Thai characters in the current 
  
  ;;;***
  \f
 -;;;### (autoloads nil "thingatpt" "thingatpt.el" (22150 28229 198072
 -;;;;;;  702000))
 +;;;### (autoloads nil "thingatpt" "thingatpt.el" (22086 11930 354062
 +;;;;;;  731000))
  ;;; Generated autoloads from thingatpt.el
  
  (autoload 'forward-thing "thingatpt" "\
@@@ -27764,7 -27768,7 +27764,7 @@@ Return the Lisp list at point, or nil i
  
  ;;;***
  \f
 -;;;### (autoloads nil "thumbs" "thumbs.el" (22150 28229 198072 702000))
 +;;;### (autoloads nil "thumbs" "thumbs.el" (22086 11930 354062 731000))
  ;;; Generated autoloads from thumbs.el
  
  (autoload 'thumbs-find-thumb "thumbs" "\
@@@ -27798,15 -27802,15 +27798,15 @@@ In dired, call the setroot program on t
  
  ;;;***
  \f
 -;;;### (autoloads nil "thunk" "emacs-lisp/thunk.el" (22150 28227
 -;;;;;;  458072 702000))
 +;;;### (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" (22150
 -;;;;;;  28228 198072 702000))
 +;;;### (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" "\
@@@ -27879,8 -27883,8 +27879,8 @@@ See also docstring of the function tibe
  
  ;;;***
  \f
 -;;;### (autoloads nil "tildify" "textmodes/tildify.el" (22150 28229
 -;;;;;;  198072 702000))
 +;;;### (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)
  
@@@ -27946,7 -27950,7 +27946,7 @@@ variable will be set to the representat
  
  ;;;***
  \f
 -;;;### (autoloads nil "time" "time.el" (22150 28229 202072 702000))
 +;;;### (autoloads nil "time" "time.el" (22086 11930 354062 731000))
  ;;; Generated autoloads from time.el
  
  (defvar display-time-day-and-date nil "\
@@@ -28008,8 -28012,8 +28008,8 @@@ Return a string giving the duration of 
  
  ;;;***
  \f
 -;;;### (autoloads nil "time-date" "calendar/time-date.el" (22150
 -;;;;;;  28227 82072 702000))
 +;;;### (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" "\
@@@ -28112,8 -28116,8 +28112,8 @@@ Convert the time interval in seconds t
  
  ;;;***
  \f
 -;;;### (autoloads nil "time-stamp" "time-stamp.el" (22150 28229 202072
 -;;;;;;  702000))
 +;;;### (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)
@@@ -28153,8 -28157,8 +28153,8 @@@ With ARG, turn time stamping on if and 
  
  ;;;***
  \f
 -;;;### (autoloads nil "timeclock" "calendar/timeclock.el" (22150
 -;;;;;;  28227 82072 702000))
 +;;;### (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)
  
@@@ -28264,7 -28268,7 +28264,7 @@@ relative only to the time worked today
  ;;;***
  \f
  ;;;### (autoloads nil "titdic-cnv" "international/titdic-cnv.el"
 -;;;;;;  (22150 28228 134072 702000))
 +;;;;;;  (22086 11929 886062 731000))
  ;;; Generated autoloads from international/titdic-cnv.el
  
  (autoload 'titdic-convert "titdic-cnv" "\
@@@ -28286,7 -28290,7 +28286,7 @@@ To get complete usage, invoke \"emacs -
  
  ;;;***
  \f
 -;;;### (autoloads nil "tmm" "tmm.el" (22150 28229 202072 702000))
 +;;;### (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)
@@@ -28328,8 -28332,8 +28328,8 @@@ Its value should be an event that has 
  
  ;;;***
  \f
 -;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (22150
 -;;;;;;  28227 138072 702000))
 +;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (22086
 +;;;;;;  11929 538062 731000))
  ;;; Generated autoloads from calendar/todo-mode.el
  
  (autoload 'todo-show "todo-mode" "\
@@@ -28396,8 -28400,8 +28396,8 @@@ Mode for displaying and reprioritizing 
  
  ;;;***
  \f
 -;;;### (autoloads nil "tool-bar" "tool-bar.el" (22150 28229 202072
 -;;;;;;  702000))
 +;;;### (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" "\
@@@ -28467,8 -28471,8 +28467,8 @@@ holds a keymap
  
  ;;;***
  \f
 -;;;### (autoloads nil "tq" "emacs-lisp/tq.el" (22150 28227 458072
 -;;;;;;  702000))
 +;;;### (autoloads nil "tq" "emacs-lisp/tq.el" (22086 11929 690062
 +;;;;;;  731000))
  ;;; Generated autoloads from emacs-lisp/tq.el
  
  (autoload 'tq-create "tq" "\
@@@ -28481,8 -28485,8 +28481,8 @@@ to a tcp server on another machine
  
  ;;;***
  \f
 -;;;### (autoloads nil "trace" "emacs-lisp/trace.el" (22150 28227
 -;;;;;;  458072 702000))
 +;;;### (autoloads nil "trace" "emacs-lisp/trace.el" (22086 11929
 +;;;;;;  690062 731000))
  ;;; Generated autoloads from emacs-lisp/trace.el
  
  (defvar trace-buffer "*trace-output*" "\
@@@ -28527,7 -28531,8 +28527,7 @@@ the output buffer or changing the windo
  
  ;;;***
  \f
 -;;;### (autoloads nil "tramp" "net/tramp.el" (22150 28228 442072
 -;;;;;;  702000))
 +;;;### (autoloads nil "tramp" "net/tramp.el" (22092 27718 8268 464000))
  ;;; Generated autoloads from net/tramp.el
  
  (defvar tramp-mode t "\
@@@ -28642,8 -28647,8 +28642,8 @@@ Discard Tramp from loading remote files
  
  ;;;***
  \f
 -;;;### (autoloads nil "tramp-ftp" "net/tramp-ftp.el" (22150 28228
 -;;;;;;  410072 702000))
 +;;;### (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 "trampver" "net/trampver.el" (22150 28228 442072
 -;;;;;;  702000))
 -;;; Generated autoloads from net/trampver.el
 -(push (purecopy '(tramp 2 2 13 25 1)) package--builtin-versions)
 -
 -;;;***
 -\f
 -;;;### (autoloads nil "tutorial" "tutorial.el" (22150 28229 206072
 -;;;;;;  702000))
 +;;;### (autoloads nil "tutorial" "tutorial.el" (22086 11930 358062
 +;;;;;;  731000))
  ;;; Generated autoloads from tutorial.el
  
  (autoload 'help-with-tutorial "tutorial" "\
@@@ -28689,8 -28701,8 +28689,8 @@@ resumed later
  
  ;;;***
  \f
 -;;;### (autoloads nil "two-column" "textmodes/two-column.el" (22150
 -;;;;;;  28229 198072 702000))
 +;;;### (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)
@@@ -28737,8 -28749,8 +28737,8 @@@ First column's text    sSs  Second colu
  
  ;;;***
  \f
 -;;;### (autoloads nil "type-break" "type-break.el" (22150 28229 206072
 -;;;;;;  702000))
 +;;;### (autoloads nil "type-break" "type-break.el" (22086 11930 358062
 +;;;;;;  731000))
  ;;; Generated autoloads from type-break.el
  
  (defvar type-break-mode nil "\
@@@ -28870,7 -28882,7 +28870,7 @@@ FRAC should be the inverse of the fract
  
  ;;;***
  \f
 -;;;### (autoloads nil "uce" "mail/uce.el" (22150 28228 258072 702000))
 +;;;### (autoloads nil "uce" "mail/uce.el" (22086 11929 950062 731000))
  ;;; Generated autoloads from mail/uce.el
  
  (autoload 'uce-reply-to-uce "uce" "\
@@@ -28884,7 -28896,7 +28884,7 @@@ You might need to set `uce-mail-reader
  ;;;***
  \f
  ;;;### (autoloads nil "ucs-normalize" "international/ucs-normalize.el"
 -;;;;;;  (22150 28228 134072 702000))
 +;;;;;;  (22086 11929 886062 731000))
  ;;; Generated autoloads from international/ucs-normalize.el
  
  (autoload 'ucs-normalize-NFD-region "ucs-normalize" "\
@@@ -28949,8 -28961,8 +28949,8 @@@ Normalize the string STR by the Unicod
  
  ;;;***
  \f
 -;;;### (autoloads nil "underline" "textmodes/underline.el" (22150
 -;;;;;;  28229 198072 702000))
 +;;;### (autoloads nil "underline" "textmodes/underline.el" (22086
 +;;;;;;  11930 354062 731000))
  ;;; Generated autoloads from textmodes/underline.el
  
  (autoload 'underline-region "underline" "\
@@@ -28970,8 -28982,8 +28970,8 @@@ which specify the range to operate on
  
  ;;;***
  \f
 -;;;### (autoloads nil "unrmail" "mail/unrmail.el" (22150 28228 258072
 -;;;;;;  702000))
 +;;;### (autoloads nil "unrmail" "mail/unrmail.el" (22086 11929 950062
 +;;;;;;  731000))
  ;;; Generated autoloads from mail/unrmail.el
  
  (autoload 'batch-unrmail "unrmail" "\
@@@ -28991,8 -29003,8 +28991,8 @@@ The variable `unrmail-mbox-format' cont
  
  ;;;***
  \f
 -;;;### (autoloads nil "unsafep" "emacs-lisp/unsafep.el" (22150 28227
 -;;;;;;  458072 702000))
 +;;;### (autoloads nil "unsafep" "emacs-lisp/unsafep.el" (22086 11929
 +;;;;;;  690062 731000))
  ;;; Generated autoloads from emacs-lisp/unsafep.el
  
  (autoload 'unsafep "unsafep" "\
@@@ -29004,7 -29016,7 +29004,7 @@@ UNSAFEP-VARS is a list of symbols with 
  
  ;;;***
  \f
 -;;;### (autoloads nil "url" "url/url.el" (22150 28229 234072 702000))
 +;;;### (autoloads nil "url" "url/url.el" (22086 11930 366062 731000))
  ;;; Generated autoloads from url/url.el
  
  (autoload 'url-retrieve "url" "\
@@@ -29051,8 -29063,8 +29051,8 @@@ no further processing).  URL is either 
  
  ;;;***
  \f
 -;;;### (autoloads nil "url-auth" "url/url-auth.el" (22150 28229 210072
 -;;;;;;  702000))
 +;;;### (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" "\
@@@ -29093,8 -29105,8 +29093,8 @@@ RATING   a rating between 1 and 10 of t
  
  ;;;***
  \f
 -;;;### (autoloads nil "url-cache" "url/url-cache.el" (22150 28229
 -;;;;;;  210072 702000))
 +;;;### (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" "\
@@@ -29115,8 -29127,8 +29115,8 @@@ Extract FNAM from the local disk cache
  
  ;;;***
  \f
 -;;;### (autoloads nil "url-cid" "url/url-cid.el" (22150 28229 210072
 -;;;;;;  702000))
 +;;;### (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" (22150 28229 214072
 -;;;;;;  702000))
 +;;;### (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" "\
@@@ -29161,8 -29173,8 +29161,8 @@@ added to this list, so most requests ca
  
  ;;;***
  \f
 -;;;### (autoloads nil "url-file" "url/url-file.el" (22150 28229 214072
 -;;;;;;  702000))
 +;;;### (autoloads nil "url-file" "url/url-file.el" (22086 11930 362062
 +;;;;;;  731000))
  ;;; Generated autoloads from url/url-file.el
  
  (autoload 'url-file "url-file" "\
@@@ -29172,8 -29184,8 +29172,8 @@@ Handle file: and ftp: URLs
  
  ;;;***
  \f
 -;;;### (autoloads nil "url-gw" "url/url-gw.el" (22150 28229 218072
 -;;;;;;  702000))
 +;;;### (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" "\
@@@ -29194,8 -29206,8 +29194,8 @@@ overriding the value of `url-gateway-me
  
  ;;;***
  \f
 -;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (22150
 -;;;;;;  28229 218072 702000))
 +;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (22089
 +;;;;;;  51528 372929 316000))
  ;;; Generated autoloads from url/url-handlers.el
  
  (defvar url-handler-mode nil "\
@@@ -29256,8 -29268,8 +29256,8 @@@ if it had been inserted from a file nam
  
  ;;;***
  \f
 -;;;### (autoloads nil "url-http" "url/url-http.el" (22150 28229 218072
 -;;;;;;  702000))
 +;;;### (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" (22150 28229 222072
 -;;;;;;  702000))
 +;;;### (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" (22150 28229 222072
 -;;;;;;  702000))
 +;;;### (autoloads nil "url-ldap" "url/url-ldap.el" (22086 11930 366062
 +;;;;;;  731000))
  ;;; Generated autoloads from url/url-ldap.el
  
  (autoload 'url-ldap "url-ldap" "\
@@@ -29294,8 -29306,8 +29294,8 @@@ URL can be a URL string, or a URL vecto
  
  ;;;***
  \f
 -;;;### (autoloads nil "url-mailto" "url/url-mailto.el" (22150 28229
 -;;;;;;  222072 702000))
 +;;;### (autoloads nil "url-mailto" "url/url-mailto.el" (22086 11930
 +;;;;;;  366062 731000))
  ;;; Generated autoloads from url/url-mailto.el
  
  (autoload 'url-mail "url-mailto" "\
@@@ -29310,8 -29322,8 +29310,8 @@@ Handle the mailto: URL syntax
  
  ;;;***
  \f
 -;;;### (autoloads nil "url-misc" "url/url-misc.el" (22150 28229 222072
 -;;;;;;  702000))
 +;;;### (autoloads nil "url-misc" "url/url-misc.el" (22086 11930 366062
 +;;;;;;  731000))
  ;;; Generated autoloads from url/url-misc.el
  
  (autoload 'url-man "url-misc" "\
@@@ -29342,8 -29354,8 +29342,8 @@@ Fetch a data URL (RFC 2397)
  
  ;;;***
  \f
 -;;;### (autoloads nil "url-news" "url/url-news.el" (22150 28229 222072
 -;;;;;;  702000))
 +;;;### (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" (22150 28229 222072
 -;;;;;;  702000))
 +;;;### (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" (22150 28229
 -;;;;;;  222072 702000))
 +;;;### (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" "\
@@@ -29451,8 -29463,8 +29451,8 @@@ parses t
  
  ;;;***
  \f
 -;;;### (autoloads nil "url-privacy" "url/url-privacy.el" (22150 28229
 -;;;;;;  222072 702000))
 +;;;### (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" "\
@@@ -29462,8 -29474,8 +29462,8 @@@ Setup variables that expose info about 
  
  ;;;***
  \f
 -;;;### (autoloads nil "url-queue" "url/url-queue.el" (22150 28229
 -;;;;;;  226072 702000))
 +;;;### (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" "\
@@@ -29477,8 -29489,8 +29477,8 @@@ The variable `url-queue-timeout' sets 
  
  ;;;***
  \f
 -;;;### (autoloads nil "url-tramp" "url/url-tramp.el" (22150 28229
 -;;;;;;  226072 702000))
 +;;;### (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") "\
@@@ -29496,8 -29508,8 +29496,8 @@@ would have been passed to OPERATION
  
  ;;;***
  \f
 -;;;### (autoloads nil "url-util" "url/url-util.el" (22150 28229 234072
 -;;;;;;  702000))
 +;;;### (autoloads nil "url-util" "url/url-util.el" (22092 27718 532268
 +;;;;;;  464000))
  ;;; Generated autoloads from url/url-util.el
  
  (defvar url-debug nil "\
@@@ -29665,8 -29677,8 +29665,8 @@@ This uses `url-current-object', set loc
  
  ;;;***
  \f
 -;;;### (autoloads nil "userlock" "userlock.el" (22150 28229 234072
 -;;;;;;  702000))
 +;;;### (autoloads nil "userlock" "userlock.el" (22092 27718 532268
 +;;;;;;  464000))
  ;;; Generated autoloads from userlock.el
  
  (autoload 'ask-user-about-lock "userlock" "\
@@@ -29694,8 -29706,8 +29694,8 @@@ The buffer in question is current when 
  
  ;;;***
  \f
 -;;;### (autoloads nil "utf-7" "international/utf-7.el" (22150 28228
 -;;;;;;  134072 702000))
 +;;;### (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" (22150 28228 26072 702000))
 +;;;### (autoloads nil "utf7" "gnus/utf7.el" (22086 11929 854062 731000))
  ;;; Generated autoloads from gnus/utf7.el
  
  (autoload 'utf7-encode "utf7" "\
@@@ -29730,8 -29742,8 +29730,8 @@@ Encode UTF-7 STRING.  Use IMAP modifica
  
  ;;;***
  \f
 -;;;### (autoloads nil "uudecode" "mail/uudecode.el" (22150 28228
 -;;;;;;  258072 702000))
 +;;;### (autoloads nil "uudecode" "mail/uudecode.el" (22086 11929
 +;;;;;;  954062 731000))
  ;;; Generated autoloads from mail/uudecode.el
  
  (autoload 'uudecode-decode-region-external "uudecode" "\
@@@ -29755,7 -29767,7 +29755,7 @@@ If FILE-NAME is non-nil, save the resul
  
  ;;;***
  \f
 -;;;### (autoloads nil "vc" "vc/vc.el" (22150 28229 306072 702000))
 +;;;### (autoloads nil "vc" "vc/vc.el" (22093 48588 592393 539000))
  ;;; Generated autoloads from vc/vc.el
  
  (defvar vc-checkout-hook nil "\
@@@ -29986,7 -29998,8 +29986,7 @@@ Update the current fileset or branch
  You must be visiting a version controlled file, or in a `vc-dir' buffer.
  On a distributed version control system, this runs a \"pull\"
  operation to update the current branch, prompting for an argument
 -list if required.  Optional prefix ARG forces a prompt for the VCS
 -command to run.
 +list if required.  Optional prefix ARG forces a prompt.
  
  On a non-distributed version control system, update the current
  fileset to the tip revisions.  For each unchanged and unlocked
@@@ -30003,8 -30016,11 +30003,8 @@@ Push the current branch
  You must be visiting a version controlled file, or in a `vc-dir' buffer.
  On a distributed version control system, this runs a \"push\"
  operation on the current branch, prompting for the precise command
 -if required.  Optional prefix ARG non-nil forces a prompt for the
 -VCS command to run.
 -
 +if required.  Optional prefix ARG non-nil forces a prompt.
  On a non-distributed version control system, this signals an error.
 -It also signals an error in a Bazaar bound branch.
  
  \(fn &optional ARG)" t nil)
  
@@@ -30067,8 -30083,8 +30067,8 @@@ Return the branch part of a revision nu
  
  ;;;***
  \f
 -;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (22150 28229
 -;;;;;;  286072 702000))
 +;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (22086 11930
 +;;;;;;  382062 731000))
  ;;; Generated autoloads from vc/vc-annotate.el
  
  (autoload 'vc-annotate "vc-annotate" "\
@@@ -30107,8 -30123,8 +30107,8 @@@ should be applied to the background or 
  
  ;;;***
  \f
 -;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (22150 28229 290072
 -;;;;;;  702000))
 +;;;### (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" "\
@@@ -30124,8 -30140,8 +30124,8 @@@ Name of the format file in a .bzr direc
  
  ;;;***
  \f
 -;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (22150 28229 290072
 -;;;;;;  702000))
 +;;;### (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" (22150 28229 294072
 -;;;;;;  702000))
 +;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (22086 11930 386062
 +;;;;;;  731000))
  ;;; Generated autoloads from vc/vc-dir.el
  
  (autoload 'vc-dir "vc-dir" "\
@@@ -30161,8 -30177,8 +30161,8 @@@ These are the commands available for us
  
  ;;;***
  \f
 -;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (22150
 -;;;;;;  28229 294072 702000))
 +;;;### (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" "\
@@@ -30185,8 -30201,8 +30185,8 @@@ case, and the process object in the asy
  
  ;;;***
  \f
 -;;;### (autoloads nil "vc-git" "vc/vc-git.el" (22150 28229 294072
 -;;;;;;  702000))
 +;;;### (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" (22150 28229 298072 702000))
 +;;;### (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" (22150 28229 298072
 -;;;;;;  702000))
 +;;;### (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" "\
@@@ -30225,8 -30241,8 +30225,8 @@@ Name of the monotone directory's forma
  
  ;;;***
  \f
 -;;;### (autoloads nil "vc-rcs" "vc/vc-rcs.el" (22150 28229 302072
 -;;;;;;  702000))
 +;;;### (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")) "\
@@@ -30239,8 -30255,8 +30239,8 @@@ For a description of possible values, s
  
  ;;;***
  \f
 -;;;### (autoloads nil "vc-sccs" "vc/vc-sccs.el" (22150 28229 302072
 -;;;;;;  702000))
 +;;;### (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)) "\
@@@ -30258,8 -30274,8 +30258,8 @@@ find any project directory." (let ((pro
  
  ;;;***
  \f
 -;;;### (autoloads nil "vc-src" "vc/vc-src.el" (22150 28229 302072
 -;;;;;;  702000))
 +;;;### (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")) "\
@@@ -30272,8 -30288,8 +30272,8 @@@ For a description of possible values, s
  
  ;;;***
  \f
 -;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (22150 28229 302072
 -;;;;;;  702000))
 +;;;### (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" (22150
 -;;;;;;  28228 938072 702000))
 +;;;### (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))
@@@ -30346,7 -30362,7 +30346,7 @@@ Key bindings
  ;;;***
  \f
  ;;;### (autoloads nil "verilog-mode" "progmodes/verilog-mode.el"
 -;;;;;;  (22150 28228 970072 702000))
 +;;;;;;  (22092 27718 348268 464000))
  ;;; Generated autoloads from progmodes/verilog-mode.el
  
  (autoload 'verilog-mode "verilog-mode" "\
@@@ -30485,8 -30501,8 +30485,8 @@@ Key bindings specific to `verilog-mode-
  
  ;;;***
  \f
 -;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (22150
 -;;;;;;  28228 986072 702000))
 +;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (22092
 +;;;;;;  27718 400268 464000))
  ;;; Generated autoloads from progmodes/vhdl-mode.el
  
  (autoload 'vhdl-mode "vhdl-mode" "\
@@@ -30597,8 -30613,8 +30597,8 @@@ Usage
      according to option `vhdl-argument-list-indent'.
  
        If option `vhdl-indent-tabs-mode' is nil, spaces are used instead of
-     tabs.  `\\[tabify]' and `\\[untabify]' allow to convert spaces to tabs
-     and vice versa.
+     tabs.  `\\[tabify]' and `\\[untabify]' allow the conversion of spaces to
+     tabs and vice versa.
  
        Syntax-based indentation can be very slow in large files.  Option
      `vhdl-indent-syntax-based' allows you to use faster but simpler indentation.
@@@ -31040,8 -31056,8 +31040,8 @@@ Key bindings
  
  ;;;***
  \f
 -;;;### (autoloads nil "viet-util" "language/viet-util.el" (22150
 -;;;;;;  28228 198072 702000))
 +;;;### (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" "\
@@@ -31085,7 -31101,7 +31085,7 @@@ Convert Vietnamese characters of the cu
  
  ;;;***
  \f
 -;;;### (autoloads nil "view" "view.el" (22150 28229 322072 702000))
 +;;;### (autoloads nil "view" "view.el" (22086 11930 390062 731000))
  ;;; Generated autoloads from view.el
  
  (defvar view-remove-frame-by-deleting t "\
@@@ -31341,8 -31357,8 +31341,8 @@@ Exit View mode and make the current buf
  
  ;;;***
  \f
 -;;;### (autoloads nil "viper" "emulation/viper.el" (22150 28227 478072
 -;;;;;;  702000))
 +;;;### (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)
  
@@@ -31359,8 -31375,8 +31359,8 @@@ Turn on Viper emulation of Vi in Emacs
  
  ;;;***
  \f
 -;;;### (autoloads nil "warnings" "emacs-lisp/warnings.el" (22150
 -;;;;;;  28227 458072 702000))
 +;;;### (autoloads nil "warnings" "emacs-lisp/warnings.el" (22086
 +;;;;;;  11929 690062 731000))
  ;;; Generated autoloads from emacs-lisp/warnings.el
  
  (defvar warning-prefix-function nil "\
@@@ -31450,7 -31466,7 +31450,7 @@@ this is equivalent to `display-warning'
  
  ;;;***
  \f
 -;;;### (autoloads nil "wdired" "wdired.el" (22150 28229 322072 702000))
 +;;;### (autoloads nil "wdired" "wdired.el" (22086 11930 394062 731000))
  ;;; Generated autoloads from wdired.el
  (push (purecopy '(wdired 2 0)) package--builtin-versions)
  
@@@ -31468,8 -31484,8 +31468,8 @@@ See `wdired-mode'
  
  ;;;***
  \f
 -;;;### (autoloads nil "webjump" "net/webjump.el" (22150 28228 442072
 -;;;;;;  702000))
 +;;;### (autoloads nil "webjump" "net/webjump.el" (22086 11930 22062
 +;;;;;;  731000))
  ;;; Generated autoloads from net/webjump.el
  
  (autoload 'webjump "webjump" "\
@@@ -31485,8 -31501,8 +31485,8 @@@ Please submit bug reports and other fee
  
  ;;;***
  \f
 -;;;### (autoloads nil "which-func" "progmodes/which-func.el" (22150
 -;;;;;;  28228 986072 702000))
 +;;;### (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)
@@@ -31516,8 -31532,8 +31516,8 @@@ in certain major modes
  
  ;;;***
  \f
 -;;;### (autoloads nil "whitespace" "whitespace.el" (22150 28229 326072
 -;;;;;;  702000))
 +;;;### (autoloads nil "whitespace" "whitespace.el" (22086 11930 394062
 +;;;;;;  731000))
  ;;; Generated autoloads from whitespace.el
  (push (purecopy '(whitespace 13 2 2)) package--builtin-versions)
  
@@@ -31885,8 -31901,8 +31885,8 @@@ cleaning up these problems
  
  ;;;***
  \f
 -;;;### (autoloads nil "wid-browse" "wid-browse.el" (22150 28229 326072
 -;;;;;;  702000))
 +;;;### (autoloads nil "wid-browse" "wid-browse.el" (22086 11930 394062
 +;;;;;;  731000))
  ;;; Generated autoloads from wid-browse.el
  
  (autoload 'widget-browse-at "wid-browse" "\
@@@ -31914,8 -31930,8 +31914,8 @@@ if ARG is omitted or nil
  
  ;;;***
  \f
 -;;;### (autoloads nil "wid-edit" "wid-edit.el" (22150 28229 330072
 -;;;;;;  702000))
 +;;;### (autoloads nil "wid-edit" "wid-edit.el" (22092 27718 580268
 +;;;;;;  464000))
  ;;; Generated autoloads from wid-edit.el
  
  (autoload 'widgetp "wid-edit" "\
@@@ -31957,8 -31973,8 +31957,8 @@@ Setup current buffer so editing string 
  
  ;;;***
  \f
 -;;;### (autoloads nil "windmove" "windmove.el" (22150 28229 330072
 -;;;;;;  702000))
 +;;;### (autoloads nil "windmove" "windmove.el" (22092 27718 580268
 +;;;;;;  464000))
  ;;; Generated autoloads from windmove.el
  
  (autoload 'windmove-left "windmove" "\
@@@ -32010,7 -32026,7 +32010,7 @@@ Default MODIFIER is `shift'
  
  ;;;***
  \f
 -;;;### (autoloads nil "winner" "winner.el" (22150 28229 354072 702000))
 +;;;### (autoloads nil "winner" "winner.el" (22086 11930 398062 731000))
  ;;; Generated autoloads from winner.el
  
  (defvar winner-mode nil "\
@@@ -32033,7 -32049,7 +32033,7 @@@ the mode if ARG is omitted or nil, and 
  
  ;;;***
  \f
 -;;;### (autoloads nil "woman" "woman.el" (22150 28229 374072 702000))
 +;;;### (autoloads nil "woman" "woman.el" (22092 27718 620268 464000))
  ;;; Generated autoloads from woman.el
  (push (purecopy '(woman 0 551)) package--builtin-versions)
  
@@@ -32082,7 -32098,7 +32082,7 @@@ Default bookmark handler for Woman buff
  
  ;;;***
  \f
 -;;;### (autoloads nil "xml" "xml.el" (22150 28229 378072 702000))
 +;;;### (autoloads nil "xml" "xml.el" (22092 27718 620268 464000))
  ;;; Generated autoloads from xml.el
  
  (autoload 'xml-parse-file "xml" "\
@@@ -32138,8 -32154,8 +32138,8 @@@ Both features can be combined by provid
  
  ;;;***
  \f
 -;;;### (autoloads nil "xmltok" "nxml/xmltok.el" (22150 28228 462072
 -;;;;;;  702000))
 +;;;### (autoloads nil "xmltok" "nxml/xmltok.el" (22086 11930 30062
 +;;;;;;  731000))
  ;;; Generated autoloads from nxml/xmltok.el
  
  (autoload 'xmltok-get-declared-encoding-position "xmltok" "\
@@@ -32157,8 -32173,8 +32157,8 @@@ If LIMIT is non-nil, then do not consid
  
  ;;;***
  \f
 -;;;### (autoloads nil "xref" "progmodes/xref.el" (22150 28228 986072
 -;;;;;;  702000))
 +;;;### (autoloads nil "xref" "progmodes/xref.el" (22105 39773 959886
 +;;;;;;  896000))
  ;;; Generated autoloads from progmodes/xref.el
  
  (autoload 'xref-find-backend "xref" "\
@@@ -32220,8 -32236,8 +32220,8 @@@ The argument has the same meaning as i
  
  ;;;***
  \f
 -;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (22150 28229 378072
 -;;;;;;  702000))
 +;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (22086 11930 402062
 +;;;;;;  731000))
  ;;; Generated autoloads from xt-mouse.el
  
  (defvar xterm-mouse-mode nil "\
@@@ -32250,7 -32266,7 +32250,7 @@@ down the SHIFT key while pressing the m
  
  ;;;***
  \f
 -;;;### (autoloads nil "yenc" "gnus/yenc.el" (22150 28228 26072 702000))
 +;;;### (autoloads nil "yenc" "gnus/yenc.el" (22086 11929 854062 731000))
  ;;; Generated autoloads from gnus/yenc.el
  
  (autoload 'yenc-decode-region "yenc" "\
@@@ -32265,7 -32281,7 +32265,7 @@@ Extract file name from an yenc header
  
  ;;;***
  \f
 -;;;### (autoloads nil "zone" "play/zone.el" (22150 28228 682072 702000))
 +;;;### (autoloads nil "zone" "play/zone.el" (22086 11930 130062 731000))
  ;;; Generated autoloads from play/zone.el
  
  (autoload 'zone "zone" "\
@@@ -32345,13 -32361,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"
  ;;;;;;  "leim/quail/indian.el" "leim/quail/ipa-praat.el" "leim/quail/ipa.el"
  ;;;;;;  "leim/quail/japanese.el" "leim/quail/lao.el" "leim/quail/latin-alt.el"
  ;;;;;;  "leim/quail/latin-ltx.el" "leim/quail/latin-post.el" "leim/quail/latin-pre.el"
 -;;;;;;  "leim/quail/lrt.el" "leim/quail/persian.el" "leim/quail/programmer-dvorak.el"
 -;;;;;;  "leim/quail/py-punct.el" "leim/quail/pypunct-b5.el" "leim/quail/rfc1345.el"
 -;;;;;;  "leim/quail/sgml-input.el" "leim/quail/sisheng.el" "leim/quail/slovak.el"
 -;;;;;;  "leim/quail/symbol-ksc.el" "leim/quail/tamil-dvorak.el" "leim/quail/thai.el"
 -;;;;;;  "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"
 +;;;;;;  "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-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-speed.el" "mh-e/mh-thread.el" "mh-e/mh-tool-bar.el"
  ;;;;;;  "mh-e/mh-utils.el" "mh-e/mh-xface.el" "mouse-copy.el" "mwheel.el"
  ;;;;;;  "net/dns.el" "net/eudc-vars.el" "net/eudcb-bbdb.el" "net/eudcb-ldap.el"
 -;;;;;;  "net/eudcb-mab.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/rfc2104.el" "net/sasl-cram.el" "net/sasl-digest.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/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/zeroconf.el"
 -;;;;;;  "notifications.el" "nxml/nxml-enc.el" "nxml/nxml-maint.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"
  ;;;;;;  "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") (22150 28575 326072 702000))
 +;;;;;;  "x-dnd.el") (22108 15942 558032 987000))
  
  ;;;***
  \f
diff --combined lisp/net/tramp-cmds.el
index 5e9af0b18ebbe71ffca4b176ed44e6ef1c9ebef5,e7901bb7861a5e038e42cb3eaf47df6d00b3dbf2..856011fc0ee9844af639b2548d144bc87410e853
@@@ -31,9 -31,6 +31,9 @@@
  (require 'tramp)
  
  ;; Pacify byte-compiler.
 +(declare-function mml-mode "mml")
 +(declare-function mml-insert-empty-tag "mml")
 +(declare-function reporter-dump-variable "reporter")
  (defvar reporter-eval-buffer)
  (defvar reporter-prompt-for-summary-p)
  
@@@ -131,7 -128,7 +131,7 @@@ This includes password cache, file cach
    (setq tramp-locked nil)
  
    ;; Flush password cache.
 -  (tramp-compat-funcall 'password-reset)
 +  (password-reset)
  
    ;; Flush file and connection cache.
    (clrhash tramp-cache-data)
    "Kill all remote buffers."
    (interactive)
  
 -  ;; Remove all Tramp related buffers.
 +  ;; Remove all Tramp related connections.
    (tramp-cleanup-all-connections)
  
    ;; Remove all buffers with a remote default-directory.
  (defun tramp-bug ()
    "Submit a bug report to the Tramp developers."
    (interactive)
 -  (require 'reporter)
    (catch 'dont-send
      (let ((reporter-prompt-for-summary-p t))
        (reporter-submit-bug-report
             backup-by-copying-when-mismatch
             backup-by-copying-when-privileged-mismatch
             backup-directory-alist
 -           bkup-backup-directory-info
             password-cache
             password-cache-expiry
             remote-file-name-inhibit-cache
  
         'tramp-load-report-modules     ; pre-hook
         'tramp-append-tramp-buffers    ; post-hook
 -       (tramp-compat-funcall
 -      (if (functionp 'propertize) 'propertize 'progn)
 +       (propertize
        "\n" 'display "\
  Enter your bug report in this message, including as much detail
  as you possibly can about the problem, what you did to cause it
@@@ -209,7 -209,7 +209,7 @@@ Before reproducing the bug, you might a
  
    M-x tramp-cleanup-all-connections
  
- This allows to investigate from a clean environment.  Another
+ This allows us to investigate from a clean environment.  Another
  useful thing to do is to put
  
    (setq tramp-verbose 9)
@@@ -243,7 -243,7 +243,7 @@@ buffer in your bug report
            (base64-encode-string (encode-coding-string val 'raw-text)))))))
  
      ;; Dump variable.
 -    (tramp-compat-funcall 'reporter-dump-variable varsym mailbuf)
 +    (reporter-dump-variable varsym mailbuf)
  
      (unless (hash-table-p val)
        ;; Remove string quotation.
  
  (defun tramp-load-report-modules ()
    "Load needed modules for reporting."
 -  ;; We load message.el and mml.el from Gnus.
 -  (if (featurep 'xemacs)
 -      (progn
 -      (load "message" 'noerror)
 -      (load "mml" 'noerror))
 -    (require 'message nil 'noerror)
 -    (require 'mml nil 'noerror))
 -  (tramp-compat-funcall 'message-mode)
 -  (tramp-compat-funcall 'mml-mode t))
 +  (message-mode)
 +  (mml-mode t))
  
  (defun tramp-append-tramp-buffers ()
    "Append Tramp buffers and buffer local variables into the bug report."
               ;; Non-tramp variables of interest.
               '(default-directory))
              'string<))
 -          (tramp-compat-funcall 'reporter-dump-variable varsym elbuf))
 +          (reporter-dump-variable varsym elbuf))
        (lisp-indent-line)
        (insert ")\n"))
        (insert-buffer-substring elbuf)))
    (ignore-errors
      (mapc
       (lambda (x) (when (string-match "tramp" x) (insert x "\n")))
 -     (split-string (tramp-compat-funcall 'list-load-path-shadows t) "\n")))
 +     (split-string (list-load-path-shadows t) "\n")))
  
    ;; Append buffers only when we are in message mode.
    (when (and
         (symbol-value 'mml-mode))
  
      (let ((tramp-buf-regexp "\\*\\(debug \\)?tramp/")
 -        (buffer-list (tramp-compat-funcall 'tramp-list-tramp-buffers))
 +        (buffer-list (tramp-list-tramp-buffers))
          (curbuf (current-buffer)))
  
        ;; There is at least one Tramp buffer.
@@@ -357,13 -364,13 +357,13 @@@ the debug buffer(s)."
              (kill-buffer nil)
              (switch-to-buffer curbuf)
              (goto-char (point-max))
 -            (insert (tramp-compat-funcall 'propertize "\n" 'display "\n\
 +            (insert (propertize "\n" 'display "\n\
  This is a special notion of the `gnus/message' package.  If you
  use another mail agent (by copying the contents of this buffer)
  please ensure that the buffers are attached to your email.\n\n"))
              (dolist (buffer buffer-list)
 -              (tramp-compat-funcall
 -               'mml-insert-empty-tag 'part 'type "text/plain"
 +              (mml-insert-empty-tag
 +               'part 'type "text/plain"
                 'encoding "base64" 'disposition "attachment" 'buffer buffer
                 'description buffer))
              (set-buffer-modified-p nil))
diff --combined lisp/net/tramp-gvfs.el
index 46bf3de098dd314b1ebe3bf97ee9e2159c1721d7,e19ceae89da59688b24091f75fa33b001e1b654c..796a5d3d0dd40af31592af608d3a5444cf559ecb
@@@ -86,7 -86,7 +86,7 @@@
  
  ;; Restrictions:
  
- ;; * The current GVFS implementation does not allow to write on the
+ ;; * The current GVFS implementation does not allow writing on the
  ;;   remote bluetooth device via OBEX.
  ;;
  ;; * Two shares of the same SMB server cannot be mounted in parallel.
@@@ -422,6 -422,7 +422,6 @@@ Every entry is a list (NAME ADDRESS)."
      (directory-files . tramp-handle-directory-files)
      (directory-files-and-attributes
       . tramp-handle-directory-files-and-attributes)
 -    (dired-call-process . ignore)
      (dired-compress-file . ignore)
      (dired-uncache . tramp-handle-dired-uncache)
      (expand-file-name . tramp-gvfs-handle-expand-file-name)
      (shell-command . ignore)
      (start-file-process . ignore)
      (substitute-in-file-name . tramp-handle-substitute-in-file-name)
 -    (unhandled-file-name-directory . tramp-handle-unhandled-file-name-directory)
 +    (unhandled-file-name-directory . ignore)
      (vc-registered . ignore)
      (verify-visited-file-modtime . tramp-handle-verify-visited-file-modtime)
      (write-region . tramp-gvfs-handle-write-region))
@@@ -561,7 -562,8 +561,7 @@@ will be traced by Tramp with trace leve
  
  (put 'with-tramp-dbus-call-method 'lisp-indent-function 2)
  (put 'with-tramp-dbus-call-method 'edebug-form-spec '(form symbolp body))
 -(tramp-compat-font-lock-add-keywords
 - 'emacs-lisp-mode '("\\<with-tramp-dbus-call-method\\>"))
 +(font-lock-add-keywords 'emacs-lisp-mode '("\\<with-tramp-dbus-call-method\\>"))
  
  (defvar tramp-gvfs-dbus-event-vector nil
    "Current Tramp file name to be used, as vector.
@@@ -621,19 -623,19 +621,19 @@@ file names.
                (and t2 (not (tramp-gvfs-file-name-p newname))))
  
            ;; We cannot copy or rename directly.
 +          ;; PRESERVE-EXTENDED-ATTRIBUTES has been introduced with
 +          ;; Emacs 24.1 (as PRESERVE-SELINUX-CONTEXT), and renamed
 +          ;; in Emacs 24.3.
            (let ((tmpfile (tramp-compat-make-temp-file filename)))
              (cond
               (preserve-extended-attributes
 -              (tramp-compat-funcall
 +              (funcall
                 file-operation
                 filename tmpfile t keep-date preserve-uid-gid
                 preserve-extended-attributes))
 -             (preserve-uid-gid
 -              (tramp-compat-funcall
 -               file-operation filename tmpfile t keep-date preserve-uid-gid))
               (t
 -              (tramp-compat-funcall
 -               file-operation filename tmpfile t keep-date)))
 +              (funcall
 +               file-operation filename tmpfile t keep-date preserve-uid-gid)))
              (rename-file tmpfile newname ok-if-already-exists))
  
          ;; Direct action.
      (tramp-gvfs-do-copy-or-rename-file
       'copy filename newname ok-if-already-exists keep-date
       preserve-uid-gid preserve-extended-attributes))
 -   ;; Compat section.
 +   ;; Compat section.  PRESERVE-EXTENDED-ATTRIBUTES has been
 +   ;; introduced with Emacs 24.1 (as PRESERVE-SELINUX-CONTEXT), and
 +   ;; renamed in Emacs 24.3.
     (preserve-extended-attributes
      (tramp-run-real-handler
       'copy-file
       (list filename newname ok-if-already-exists keep-date
           preserve-uid-gid preserve-extended-attributes)))
 -   (preserve-uid-gid
 -    (tramp-run-real-handler
 -     'copy-file
 -     (list filename newname ok-if-already-exists keep-date preserve-uid-gid)))
     (t
      (tramp-run-real-handler
 -     'copy-file (list filename newname ok-if-already-exists keep-date)))))
 +     'copy-file
 +     (list filename newname ok-if-already-exists keep-date preserve-uid-gid)))))
  
  (defun tramp-gvfs-handle-delete-directory (directory &optional recursive trash)
    "Like `delete-directory' for Tramp files."
        (tramp-error
         v 'file-error
         "Cannot make local copy of non-existing file `%s'" filename))
 -      (copy-file filename tmpfile t t)
 +      (copy-file filename tmpfile 'ok-if-already-exists 'keep-time)
        tmpfile)))
  
  (defun tramp-gvfs-handle-file-name-all-completions (filename directory)
                  (when cache-hit (list cache-hit))))
              ;; We cannot use a length of 0, because file properties
              ;; for "foo" and "foo/" are identical.
 -            (tramp-compat-number-sequence (length filename) 1 -1)))))
 +            (number-sequence (length filename) 1 -1)))))
  
           ;; Cache expired or no matching cache entry found so we need
           ;; to perform a remote operation.
        (tramp-message
         v 6 "Run `%s', %S" (mapconcat 'identity (process-command p) " ") p)
        (tramp-set-connection-property p "vector" v)
 -      (tramp-compat-process-put p 'events events)
 -      (tramp-compat-process-put p 'watch-name localname)
 -      (tramp-compat-set-process-query-on-exit-flag p nil)
 +      (process-put p 'events events)
 +      (process-put p 'watch-name localname)
 +      (set-process-query-on-exit-flag p nil)
        (set-process-filter p 'tramp-gvfs-monitor-file-process-filter)
        ;; There might be an error if the monitor is not supported.
        ;; Give the filter a chance to read the output.
  (defun tramp-gvfs-monitor-file-process-filter (proc string)
    "Read output from \"gvfs-monitor-file\" and add corresponding \
  file-notify events."
 -  (let* ((rest-string (tramp-compat-process-get proc 'rest-string))
 +  (let* ((rest-string (process-get proc 'rest-string))
         (dd (with-current-buffer (process-buffer proc) default-directory))
         (ddu (regexp-quote (tramp-gvfs-url-file-name dd))))
      (when rest-string
      (tramp-message proc 6 "%S\n%s" proc string)
      (setq string (concat rest-string string)
          ;; Attribute change is returned in unused wording.
 -        string (tramp-compat-replace-regexp-in-string
 +        string (replace-regexp-in-string
                  "ATTRIB CHANGED" "ATTRIBUTE_CHANGED" string))
      (when (string-match "Monitoring not supported" string)
        (delete-process proc))
            string)
        (let ((file (match-string 1 string))
            (action (intern-soft
 -                   (tramp-compat-replace-regexp-in-string
 +                   (replace-regexp-in-string
                      "_" "-" (downcase (match-string 2 string))))))
        (setq string (replace-match "" nil nil string))
        ;; File names are returned as URL paths.  We must convert them.
      ;; Save rest of the string.
      (when (zerop (length string)) (setq string nil))
      (when string (tramp-message proc 10 "Rest string:\n%s" string))
 -    (tramp-compat-process-put proc 'rest-string string)))
 +    (process-put proc 'rest-string string)))
  
  (defun tramp-gvfs-handle-file-readable-p (filename)
    "Like `file-readable-p' for Tramp files."
    (with-parsed-tramp-file-name filename nil
 -    (with-tramp-file-property v localname "file-executable-p"
 +    (with-tramp-file-property v localname "file-readable-p"
        (tramp-check-cached-permissions v ?r))))
  
  (defun tramp-gvfs-handle-file-writable-p (filename)
    (if (or (tramp-tramp-file-p filename)
            (tramp-tramp-file-p newname))
        (tramp-gvfs-do-copy-or-rename-file
 -       'rename filename newname ok-if-already-exists t t)
 +       'rename filename newname ok-if-already-exists
 +       'keep-date 'preserve-uid-gid)
      (tramp-run-real-handler
       'rename-file (list filename newname ok-if-already-exists))))
  
    (start end filename &optional append visit lockname confirm)
    "Like `write-region' for Tramp files."
    (with-parsed-tramp-file-name filename nil
 -    ;; XEmacs takes a coding system as the seventh argument, not `confirm'.
 -    (when (and (not (featurep 'xemacs)) confirm (file-exists-p filename))
 +    (when (and confirm (file-exists-p filename))
        (unless (y-or-n-p (format "File %s exists; overwrite anyway? " filename))
        (tramp-error v 'file-error "File not overwritten")))
  
  (defun tramp-gvfs-file-name (object-path)
    "Retrieve file name from D-Bus OBJECT-PATH."
    (dbus-unescape-from-identifier
 -   (tramp-compat-replace-regexp-in-string
 -    "^.*/\\([^/]+\\)$" "\\1" object-path)))
 +   (replace-regexp-in-string "^.*/\\([^/]+\\)$" "\\1" object-path)))
  
  (defun tramp-bluez-address (device)
    "Return bluetooth device address from a given bluetooth DEVICE name."
@@@ -1289,7 -1293,7 +1289,7 @@@ ADDRESS can have the form \"xx:xx:xx:xx
            ;; host signature.
            (with-temp-buffer
              ;; Preserve message for `progress-reporter'.
 -            (tramp-compat-with-temp-message ""
 +            (with-temp-message ""
                (insert message)
                (pop-to-buffer (current-buffer))
                (setq choice (if (yes-or-no-p (concat (car choices) " ")) 0 1))
@@@ -1529,7 -1533,7 +1529,7 @@@ connection if a previous connection ha
              :name (tramp-buffer-name vec)
              :buffer (tramp-get-connection-buffer vec)
              :server t :host 'local :service t)))
 -      (tramp-compat-set-process-query-on-exit-flag p nil)))
 +      (set-process-query-on-exit-flag p nil)))
  
    (unless (tramp-gvfs-connection-mounted-p vec)
      (let* ((method (tramp-file-name-method vec))
@@@ -1747,7 -1751,7 +1747,7 @@@ This uses \"avahi-browse\" in case D-Bu
            'split-string
            (shell-command-to-string (format "avahi-browse -trkp %s" service))
            "[\n\r]+" 'omit "^\\+;.*$"))))
 -    (tramp-compat-delete-dups
 +    (delete-dups
       (mapcar
        (lambda (x)
        (let* ((list (split-string x ";"))
diff --combined lisp/org/ChangeLog.1
index 57a427c30d40da2995f081e02dc07d482124463d,8c118ec7dd0bb9e10a961e3e46eb40a55ad75e7a..ccc849d226a68001289bbcfb2f2d206fcca1eb7d
        * ox-html.el (org-html-link): Don't skip the link description when
        it matches the name of the headline it targets.
  
 -      * ox-ascii.el (ascii): Remove inexistant function.
 +      * ox-ascii.el (ascii): Remove nonexistent function.
  
        * ox-icalendar.el (icalendar): Ignore footnotes.
        (org-icalendar--combine-files): Small refactoring.
        (org-export-normalize-links)
        (org-export-concatenate-multiline-links)
        (org-export-concatenate-multiline-emphasis): New functions,
-       obtained from spliting the export preprocessor.
+       obtained from splitting the export preprocessor.
  
        * org-table.el (org-table-recalculate): Improve error message if
        the row number is invalid.
index 018805d679f0b57250b4776f9d863b5d93a7f2e3,b75d667d31831e86bc394543ceca9a07d13f5440..dc2480961d15fd9b365495a2294c77fe612cb58e
@@@ -6739,6 -6739,9 +6739,6 @@@ comment at the start of cc-engine.el fo
                      (c-backward-syntactic-ws))
                    (c-back-over-list-of-member-inits)
                    (and (eq (char-before) ?:)
 -                       (save-excursion
 -                         (c-backward-token-2)
 -                         (not (looking-at c-:$-multichar-token-regexp)))
                         (c-just-after-func-arglist-p))))
  
            (while (and (not (and level-plausible
                      (c-backward-syntactic-ws)
                      (c-back-over-list-of-member-inits)
                      (and (eq (char-before) ?:)
 -                         (save-excursion
 -                           (c-backward-token-2)
 -                           (not (looking-at c-:$-multichar-token-regexp)))
                           (c-just-after-func-arglist-p)))))
  
            (and at-top-level level-plausible)))
@@@ -8278,8 -8284,8 +8278,8 @@@ comment at the start of cc-engine.el fo
             before-lparen after-rparen
             (here (point))
             (pp-count-out 20)  ; Max number of paren/brace constructs before
-                               ; we give up
-            ids              ; List of identifiers in the parenthesised list.
+                               ; we give up.
+            ids              ; List of identifiers in the parenthesized list.
             id-start after-prec-token decl-or-cast decl-res
             c-last-identifier-range identifier-ok)
        (narrow-to-region low-lim (or macro-end (point-max)))
        ;; {
        ;;
        ;; Additionally, for a knr list to be recognized:
-       ;; o - The identifier of each deeclarator up to and including the
+       ;; o - The identifier of each declarator up to and including the
        ;;   one "near" point must be contained in the arg list.
  
        (catch 'knr
diff --combined lisp/progmodes/python.el
index a8c65fa23a97f2be4193b8e287c2ec6dedb4e644,5aeefe47a5498770e193e84fb9fb4d5d24eadb23..01f7f251eddbcb80b85b08cc713c866935d31872
@@@ -2044,8 -2044,8 +2044,8 @@@ virtualenv.
  (defun python-shell-calculate-pythonpath ()
    "Calculate the PYTHONPATH using `python-shell-extra-pythonpaths'."
    (let ((pythonpath
 -         (tramp-compat-split-string
 -          (or (getenv "PYTHONPATH") "") path-separator)))
 +         (split-string
 +          (or (getenv "PYTHONPATH") "") path-separator 'omit)))
      (python-shell--add-to-path-with-priority
       pythonpath python-shell-extra-pythonpaths)
      (mapconcat 'identity pythonpath path-separator)))
@@@ -2116,7 -2116,7 +2116,7 @@@ appends `python-shell-remote-exec-path
             (md5 tramp-end-of-output)))
        unset vars item)
      (while env
 -      (setq item (tramp-compat-split-string (car env) "="))
 +      (setq item (split-string (car env) "=" 'omit))
        (setcdr item (mapconcat 'identity (cdr item) "="))
        (if (and (stringp (cdr item)) (not (string-equal (cdr item) "")))
          (push (format "%s %s" (car item) (cdr item)) vars)
@@@ -2737,7 -2737,7 +2737,7 @@@ killed.
                   (process (get-buffer-process buffer))
                   ;; Users can override the interpreter and args
                   ;; interactively when calling `run-python', let-binding
-                  ;; these allows to have the new right values in all
+                  ;; these allows having the new right values in all
                   ;; setup code that is done in `inferior-python-mode',
                   ;; which is important, especially for prompt detection.
                   (python-shell--interpreter interpreter)
@@@ -3351,7 -3351,7 +3351,7 @@@ def __PYTHON_EL_native_completion_setup
                  if not completion:
                      if self.last_completion != '1__dummy_completion__':
                          # When no more completions are available, returning a
-                         # dummy with non-sharing prefix allow to ensure output
+                         # dummy with non-sharing prefix allow ensuring output
                          # while preventing changes to current input.
                          # Coincidentally it's also the end of output.
                          completion = '1__dummy_completion__'
diff --combined src/emacs.c
index f661196313f4789316e947dc0658d4ce02cf8d61,89d8ca784aea96bd6503ceb20036c6e432e2ecba..7c818f59c5cddf9ef32052379ecdda20419f973d
@@@ -370,20 -370,17 +370,20 @@@ terminate_due_to_signal (int sig, int b
  {
    signal (sig, SIG_DFL);
  
 -  /* If fatal error occurs in code below, avoid infinite recursion.  */
 -  if (! fatal_error_in_progress)
 +  if (attempt_orderly_shutdown_on_fatal_signal)
      {
 -      fatal_error_in_progress = 1;
 -
 -      totally_unblock_input ();
 -      if (sig == SIGTERM || sig == SIGHUP || sig == SIGINT)
 -        Fkill_emacs (make_number (sig));
 -
 -      shut_down_emacs (sig, Qnil);
 -      emacs_backtrace (backtrace_limit);
 +      /* If fatal error occurs in code below, avoid infinite recursion.  */
 +      if (! fatal_error_in_progress)
 +        {
 +          fatal_error_in_progress = 1;
 +
 +          totally_unblock_input ();
 +          if (sig == SIGTERM || sig == SIGHUP || sig == SIGINT)
 +            Fkill_emacs (make_number (sig));
 +
 +          shut_down_emacs (sig, Qnil);
 +          emacs_backtrace (backtrace_limit);
 +        }
      }
  
    /* Signal the same code; this time it will really be fatal.
@@@ -2191,7 -2188,7 +2191,7 @@@ synchronize_locale (int category, Lisp_
      {
        *plocale = desired_locale;
  #ifdef WINDOWSNT
-       /* Changing categories like LC_TIME usually requires to specify
+       /* Changing categories like LC_TIME usually requires specifying
         an encoding suitable for the new locale, but MS-Windows's
         'setlocale' will only switch the encoding when LC_ALL is
         specified.  So we ignore CATEGORY, use LC_ALL instead, and
diff --combined src/window.c
index 70b7e58feb5ec17d1d4f7c8bb00ad2bda089f8b7,8953d3cec00299c9bd2db6ce6b28b888a0ffa04d..e1a30ee571408c2a43a9b1ea1627e82705ec971c
@@@ -3971,9 -3971,11 +3971,9 @@@ values.  */
  }
  
  
 -/* Resize frame F's windows when F's width or height is set to SIZE.
 -   If HORFLAG is zero, F's width was set to SIZE, otherwise its height
 -   was set.  SIZE is interpreted in F's canonical character units
 -   (a.k.a. "columns" or "lines"), unless PIXELWISE is non-zero, which
 -   means to interpret SIZE in pixel units.  */
 +/* Resize frame F's windows when number of lines of F is set to SIZE.
 +   HORFLAG means resize windows when number of columns of F is set to
 +   SIZE.  PIXELWISE means to interpret SIZE as pixels.  */
  void
  resize_frame_windows (struct frame *f, int size, bool horflag, bool pixelwise)
  {
        m = XWINDOW (mini);
        if (horflag)
        {
 -        m->total_cols = new_size;
 +        m->total_cols = size;
          m->pixel_width = new_pixel_size;
        }
        else
@@@ -7261,7 -7263,7 +7261,7 @@@ resizing a window preferably resizes on
  
  If this variable is t, splitting a window tries to get the space
  proportionally from all windows in the same combination.  This also
- allows to split a window that is otherwise too small or of fixed size.
+ allows splitting a window that is otherwise too small or of fixed size.
  Resizing and deleting a window proportionally resize all windows in the
  same combination.
  
index 0fb068d1a2c3c7df12cbc7e6b55b01131a363c2f,96c52c0469147179e8f2db6bc57bbbf7e656213c..96c52c0469147179e8f2db6bc57bbbf7e656213c
@@@ -2005,7 -2005,7 +2005,7 @@@ struct Lisp_Marke
    /* For markers that point somewhere,
       this is used to chain of all the markers in a given buffer.  */
    /* We could remove it and use an array in buffer_text instead.
-      That would also allow to preserve it ordered.  */
+      That would also allow us to preserve it ordered.  */
    struct Lisp_Marker *next;
    /* This is the char position where the marker points.  */
    ptrdiff_t charpos;
index 6c28ba35a4c8c15a747461e7c5a09fdc30eebe02,5d28657e28ba15e6d7824e980744368d22360da4..5d28657e28ba15e6d7824e980744368d22360da4
@@@ -2094,7 -2094,7 +2094,7 @@@ for \\[find-tag] (which see).
      (`apropos (etags--xref-find-definitions id t))))
  
  (defun etags--xref-find-definitions (pattern &optional regexp?)
-   ;; This emulates the behaviour of `find-tag-in-order' but instead of
+   ;; This emulates the behavior of `find-tag-in-order' but instead of
    ;; returning one match at a time all matches are returned as list.
    ;; NOTE: find-tag-tag-order is typically a buffer-local variable.
    (let* ((xrefs '())