Now on revision 107446. ------------------------------------------------------------ revno: 107446 committer: Chong Yidong branch nick: trunk timestamp: Mon 2012-02-27 15:26:13 +0800 message: More updates for Buffers and Files chapters of Lisp manual. * doc/emacs/buffers.texi (Creating Buffers): Clarify that generate-new-buffer uses generate-new-buffer-names. (Killing Buffers): Remove bogus example duplicating buffer-live-p. * doc/emacs/files.texi (Directory Names): Index entry for file name abbreviations. (Relative File Names, File Name Expansion): Refer to it. (Locating Files): Move locate-user-emacs-file documentation to Standard File Names. (Standard File Names): Add locate-user-emacs-file; update examples. diff: === modified file 'admin/FOR-RELEASE' --- admin/FOR-RELEASE 2012-02-25 20:59:46 +0000 +++ admin/FOR-RELEASE 2012-02-27 07:26:13 +0000 @@ -185,7 +185,7 @@ anti.texi back.texi backups.texi cyd -buffers.texi +buffers.texi cyd commands.texi cyd compile.texi cyd control.texi cyd === modified file 'doc/lispref/ChangeLog' --- doc/lispref/ChangeLog 2012-02-26 09:41:13 +0000 +++ doc/lispref/ChangeLog 2012-02-27 07:26:13 +0000 @@ -1,3 +1,15 @@ +2012-02-27 Chong Yidong + + * buffers.texi (Creating Buffers): Clarify that + generate-new-buffer uses generate-new-buffer-names. + (Killing Buffers): Remove bogus example duplicating buffer-live-p. + + * files.texi (Directory Names): Index entry for file name abbreviations. + (Relative File Names, File Name Expansion): Refer to it. + (Locating Files): Move locate-user-emacs-file documentation to + Standard File Names. + (Standard File Names): Add locate-user-emacs-file; update examples. + 2012-02-26 Michael Albinus * files.texi (Magic File Names): Add files-equal-p and file-subdir-of-p. === modified file 'doc/lispref/buffers.texi' --- doc/lispref/buffers.texi 2012-01-19 07:21:25 +0000 +++ doc/lispref/buffers.texi 2012-02-27 07:26:13 +0000 @@ -417,7 +417,7 @@ visited in the current buffer, or @code{nil} if no file is visited. It is a permanent local, unaffected by @code{kill-all-local-variables}. @xref{Truenames}, and -@ref{Definition of abbreviate-file-name}. +@ref{abbreviate-file-name}. @end defvar @defvar buffer-file-number @@ -502,9 +502,8 @@ last file modification time, after which @code{visited-file-modtime} returns zero. -@c Wordy to avoid overfull hbox. --rjc 16mar92 -When the function @code{set-visited-file-name} is called interactively, it -prompts for @var{filename} in the minibuffer. +When the function @code{set-visited-file-name} is called +interactively, it prompts for @var{filename} in the minibuffer. @end deffn @defvar list-buffers-directory @@ -913,7 +912,7 @@ This command switches to the last buffer in the local buffer list of the selected frame. More precisely, it calls the function @code{switch-to-buffer} (@pxref{Switching Buffers}), to display the -buffer returned by @code{last-buffer}, see above, in the selected +buffer returned by @code{last-buffer} (see above), in the selected window. @end deffn @@ -959,11 +958,12 @@ @defun generate-new-buffer name This function returns a newly created, empty buffer, but does not make -it current. If there is no buffer named @var{name}, then that is the -name of the new buffer. If that name is in use, this function adds -suffixes of the form @samp{<@var{n}>} to @var{name}, where @var{n} is an -integer. It tries successive integers starting with 2 until it finds an -available name. +it current. The name of the buffer is generated by passing @var{name} +to the function @code{generate-new-buffer-name} (@pxref{Buffer +Names}). Thus, if there is no buffer named @var{name}, then that is +the name of the new buffer; if that name is in use, a suffix of the +form @samp{<@var{n}>}, where @var{n} is an integer, is appended to +@var{name}. An error is signaled if @var{name} is not a string. @@ -985,9 +985,6 @@ The major mode for the new buffer is set to Fundamental mode. The default value of the variable @code{major-mode} is handled at a higher level. @xref{Auto Major Mode}. - -See the related function @code{generate-new-buffer-name} in @ref{Buffer -Names}. @end defun @node Killing Buffers @@ -1005,25 +1002,26 @@ distinct according to @code{eq} although both are dead. If you kill a buffer that is current or displayed in a window, Emacs -automatically selects or displays some other buffer instead. This means -that killing a buffer can in general change the current buffer. -Therefore, when you kill a buffer, you should also take the precautions +automatically selects or displays some other buffer instead. This +means that killing a buffer can change the current buffer. Therefore, +when you kill a buffer, you should also take the precautions associated with changing the current buffer (unless you happen to know that the buffer being killed isn't current). @xref{Current Buffer}. If you kill a buffer that is the base buffer of one or more indirect -buffers, the indirect buffers are automatically killed as well. - - The @code{buffer-name} of a killed buffer is @code{nil}. You can use -this feature to test whether a buffer has been killed: - -@example -@group -(defun buffer-killed-p (buffer) - "Return t if BUFFER is killed." - (not (buffer-name buffer))) -@end group -@end example +@iftex +buffers, +@end iftex +@ifnottex +buffers (@pxref{Indirect Buffers}), +@end ifnottex +the indirect buffers are automatically killed as well. + +@cindex live buffer + The @code{buffer-name} of a buffer is @code{nil} if, and only if, +the buffer is killed. A buffer that has not been killed is called a +@dfn{live} buffer. To test whether a buffer is live or killed, use +the function @code{buffer-live-p} (see below). @deffn Command kill-buffer &optional buffer-or-name This function kills the buffer @var{buffer-or-name}, freeing all its @@ -1032,9 +1030,8 @@ buffer. Any processes that have this buffer as the @code{process-buffer} are -sent the @code{SIGHUP} signal, which normally causes them to terminate. -(The basic meaning of @code{SIGHUP} is that a dialup line has been -disconnected.) @xref{Signals to Processes}. +sent the @code{SIGHUP} (``hangup'') signal, which normally causes them +to terminate. @xref{Signals to Processes}. If the buffer is visiting a file and contains unsaved changes, @code{kill-buffer} asks the user to confirm before the buffer is killed. @@ -1099,8 +1096,8 @@ @end defvar @defun buffer-live-p object -This function returns @code{t} if @var{object} is a buffer which has -not been killed, @code{nil} otherwise. +This function returns @code{t} if @var{object} is a live buffer (a +buffer which has not been killed), @code{nil} otherwise. @end defun @node Indirect Buffers === modified file 'doc/lispref/files.texi' --- doc/lispref/files.texi 2012-02-26 09:41:13 +0000 +++ doc/lispref/files.texi 2012-02-27 07:26:13 +0000 @@ -1360,8 +1360,10 @@ This section explains how to search for a file in a list of directories (a @dfn{path}), or for an executable file in the standard -list of executable file directories, or for an Emacs-specific user -configuration file. +list of executable file directories. + + To search for a user-specific configuration file, @xref{Standard +File Names}, for the @code{locate-user-emacs-file} function. @defun locate-file filename path &optional suffixes predicate This function searches for a file whose name is @var{filename} in a @@ -1408,32 +1410,6 @@ @code{exec-suffixes} (@pxref{Subprocess Creation}). @end defun -@defun locate-user-emacs-file base-name &optional old-name -This function returns an absolute file name for an Emacs-specific -configuration or data file. The argument @file{base-name} should be a -relative file name. The return value is the absolute name of a file -in the directory specified by @code{user-emacs-directory}; if that -directory does not exist, this function creates it. - -If the optional argument @var{old-name} is non-@code{nil}, it -specifies a file in the user's home directory, -@file{~/@var{old-name}}. If such a file exists, the return value is -the absolute name of that file, instead of the file specified by -@var{base-name}. This argument is intended to be used by Emacs -packages to provide backward compatibility. For instance, prior to -the introduction of @code{user-emacs-directory}, the abbrev file was -located in @file{~/.abbrev_defs}, so the definition of -@code{abbrev-file-name} is - -@example -(defcustom abbrev-file-name - (locate-user-emacs-file "abbrev_defs" ".abbrev_defs") - "Default name of file from which to read abbrevs." - @dots{} - :type 'file) -@end example -@end defun - @node Changing Files @section Changing File Names and Attributes @c @cindex renaming files Duplicates rename-file @@ -1880,14 +1856,15 @@ All the directories in the file system form a tree starting at the root directory. A file name can specify all the directory names -starting from the root of the tree; then it is called an @dfn{absolute} -file name. Or it can specify the position of the file in the tree -relative to a default directory; then it is called a @dfn{relative} file -name. On Unix and GNU/Linux, an absolute file name starts with a slash -or a tilde (@samp{~}), and a relative one does not. On MS-DOS and -MS-Windows, an absolute file name starts with a slash or a backslash, or -with a drive specification @samp{@var{x}:/}, where @var{x} is the -@dfn{drive letter}. +starting from the root of the tree; then it is called an +@dfn{absolute} file name. Or it can specify the position of the file +in the tree relative to a default directory; then it is called a +@dfn{relative} file name. On Unix and GNU/Linux, an absolute file +name starts with a @samp{/} or a @samp{~} +(@pxref{abbreviate-file-name}), and a relative one does not. On +MS-DOS and MS-Windows, an absolute file name starts with a slash or a +backslash, or with a drive specification @samp{@var{x}:/}, where +@var{x} is the @dfn{drive letter}. @defun file-name-absolute-p filename This function returns @code{t} if file @var{filename} is an absolute @@ -2023,8 +2000,10 @@ To convert a directory name to its abbreviation, use this function: +@cindex file name abbreviations +@cindex abbreviated file names @defun abbreviate-file-name filename -@anchor{Definition of abbreviate-file-name} +@anchor{abbreviate-file-name} This function returns an abbreviated form of @var{filename}. It applies the abbreviations specified in @code{directory-abbrev-alist} (@pxref{File Aliases,,File Aliases, emacs, The GNU Emacs Manual}), @@ -2042,11 +2021,15 @@ @subsection Functions that Expand Filenames @cindex expansion of file names - @dfn{Expansion} of a file name means converting a relative file name -to an absolute one. Since this is done relative to a default directory, -you must specify the default directory name as well as the file name to -be expanded. Expansion also simplifies file names by eliminating -redundancies such as @file{./} and @file{@var{name}/../}. + @dfn{Expanding} a file name means converting a relative file name to +an absolute one. Since this is done relative to a default directory, +you must specify the default directory name as well as the file name +to be expanded. It also involves expanding abbreviations like +@file{~/} +@ifnottex +(@pxref{abbreviate-file-name}), +@end ifnottex +and eliminating redundancies like @file{./} and @file{@var{name}/../}. @defun expand-file-name filename &optional directory This function converts @var{filename} to an absolute file name. If @@ -2411,50 +2394,61 @@ @node Standard File Names @subsection Standard File Names - Most of the file names used in Lisp programs are entered by the user. -But occasionally a Lisp program needs to specify a standard file name -for a particular use---typically, to hold customization information -about each user. For example, abbrev definitions are stored (by -default) in the file @file{~/.abbrev_defs}; the @code{completion} -package stores completions in the file @file{~/.completions}. These are -two of the many standard file names used by parts of Emacs for certain -purposes. - - Various operating systems have their own conventions for valid file -names and for which file names to use for user profile data. A Lisp -program which reads a file using a standard file name ought to use, on -each type of system, a file name suitable for that system. The function -@code{convert-standard-filename} makes this easy to do. + Sometimes, an Emacs Lisp program needs to specify a standard file +name for a particular use---typically, to hold configuration data +specified by the current user. Usually, such files should be located +in the directory specified by @code{user-emacs-directory}, which is +@file{~/.emacs.d} by default (@pxref{Init File}). For example, abbrev +definitions are stored by default in @file{~/.emacs.d/abbrev_defs}. +The easiest way to specify such a file name is to use the function +@code{locate-user-emacs-file}. + +@defun locate-user-emacs-file base-name &optional old-name +This function returns an absolute file name for an Emacs-specific +configuration or data file. The argument @file{base-name} should be a +relative file name. The return value is the absolute name of a file +in the directory specified by @code{user-emacs-directory}; if that +directory does not exist, this function creates it. + +If the optional argument @var{old-name} is non-@code{nil}, it +specifies a file in the user's home directory, +@file{~/@var{old-name}}. If such a file exists, the return value is +the absolute name of that file, instead of the file specified by +@var{base-name}. This argument is intended to be used by Emacs +packages to provide backward compatibility. For instance, prior to +the introduction of @code{user-emacs-directory}, the abbrev file was +located in @file{~/.abbrev_defs}. Here is the definition of +@code{abbrev-file-name}: + +@example +(defcustom abbrev-file-name + (locate-user-emacs-file "abbrev_defs" ".abbrev_defs") + "Default name of file from which to read abbrevs." + @dots{} + :type 'file) +@end example +@end defun + + A lower-level function for standardizing file names, which +@code{locate-user-emacs-file} uses as a subroutine, is +@code{convert-standard-filename}. @defun convert-standard-filename filename -This function alters the file name @var{filename} to fit the conventions -of the operating system in use, and returns the result as a new string. +This function returns a file name based on @var{filename}, which fits +the conventions of the current operating system. + +On GNU and Unix systems, this simply returns @var{filename}. On other +operating systems, it may enforce system-specific file name +conventions; for example, on MS-DOS this function performs a variety +of changes to enforce MS-DOS file name limitations, including +converting any leading @samp{.} to @samp{_} and truncating to three +characters after the @samp{.}. + +The recommended way to use this function is to specify a name which +fits the conventions of GNU and Unix systems, and pass it to +@code{convert-standard-filename}. @end defun - The recommended way to specify a standard file name in a Lisp program -is to choose a name which fits the conventions of GNU and Unix systems, -usually with a nondirectory part that starts with a period, and pass it -to @code{convert-standard-filename} instead of using it directly. Here -is an example from the @code{completion} package: - -@example -(defvar save-completions-file-name - (convert-standard-filename "~/.completions") - "*The file name to save completions to.") -@end example - - On GNU and Unix systems, and on some other systems as well, -@code{convert-standard-filename} returns its argument unchanged. On -some other systems, it alters the name to fit the system's conventions. - - For example, on MS-DOS the alterations made by this function include -converting a leading @samp{.} to @samp{_}, converting a @samp{_} in the -middle of the name to @samp{.} if there is no other @samp{.}, inserting -a @samp{.} after eight characters if there is none, and truncating to -three characters after the @samp{.}. (It makes other changes as well.) -Thus, @file{.abbrev_defs} becomes @file{_abbrev.def}, and -@file{.completions} becomes @file{_complet.ion}. - @node Contents of Directories @section Contents of Directories @cindex directory-oriented functions ------------------------------------------------------------ revno: 107445 tags: EMACS_PRETEST_24_0_94 committer: Chong Yidong branch nick: trunk timestamp: Mon 2012-02-27 11:20:00 +0800 message: Bump version to 24.0.94 diff: === modified file 'README' --- README 2012-02-09 07:48:22 +0000 +++ README 2012-02-27 03:20:00 +0000 @@ -2,7 +2,7 @@ See the end of the file for license conditions. -This directory tree holds version 24.0.93 of GNU Emacs, the extensible, +This directory tree holds version 24.0.94 of GNU Emacs, the extensible, customizable, self-documenting real-time display editor. The file INSTALL in this directory says how to build and install GNU === modified file 'configure.in' --- configure.in 2012-02-09 07:48:22 +0000 +++ configure.in 2012-02-27 03:20:00 +0000 @@ -22,7 +22,7 @@ dnl along with GNU Emacs. If not, see . AC_PREREQ(2.65) -AC_INIT(emacs, 24.0.93) +AC_INIT(emacs, 24.0.94) AC_CONFIG_HEADER(src/config.h:src/config.in) AC_CONFIG_SRCDIR(src/lisp.h) AC_CONFIG_AUX_DIR(build-aux) === modified file 'doc/emacs/emacsver.texi' --- doc/emacs/emacsver.texi 2012-01-29 15:46:05 +0000 +++ doc/emacs/emacsver.texi 2012-02-27 03:20:00 +0000 @@ -1,4 +1,4 @@ @c It would be nicer to generate this using configure and @version@. @c However, that would mean emacsver.texi would always be newer @c then the info files in release tarfiles. -@set EMACSVER 24.0.93 +@set EMACSVER 24.0.94 === modified file 'doc/man/emacs.1' --- doc/man/emacs.1 2012-02-09 07:48:22 +0000 +++ doc/man/emacs.1 2012-02-27 03:20:00 +0000 @@ -1,5 +1,5 @@ .\" See section COPYING for copyright and redistribution information. -.TH EMACS 1 "2007 April 13" "GNU Emacs 24.0.93" +.TH EMACS 1 "2007 April 13" "GNU Emacs 24.0.94" . . .SH NAME === modified file 'etc/AUTHORS' --- etc/AUTHORS 2012-02-09 07:48:22 +0000 +++ etc/AUTHORS 2012-02-27 03:20:00 +0000 @@ -3,8 +3,6 @@ their public spirit, we list here in alphabetical order a condensed list of their contributions. -Aaa Bbb: changed org-archive.el - Aaron Ecay: changed nsterm.m Aaron Larson: co-wrote bibtex.el @@ -53,8 +51,6 @@ Agustín Martín: changed ispell.el flyspell.el fixit.texi -Agustín Martín Domingo: changed flyspell.el ispell.el - Aidan Kehoe: changed ipa.el lread.c mm-util.el erc-log.el erc.el gnus-sum.el gnus-util.el latin-ltx.el nnfolder.el ob-tangle.el objects.texi @@ -72,10 +68,10 @@ Alan Mackenzie: wrote cc-awk.el and co-wrote cc-align.el cc-cmds.el cc-defs.el cc-engine.el cc-fonts.el cc-langs.el cc-mode.el cc-styles.el cc-vars.el -and changed cc-mode.texi lread.c programs.texi isearch.el lisp.el - cc-subword.el display.texi font-lock.el modes.texi os.texi search.texi - startup.el subr.el text.texi INSTALL.BZR add-log.el buffers.texi - bytecomp.el callint.c cc-fix.el cc-menus.el and 21 other files +and changed cc-mode.texi lread.c programs.texi font-lock.el font-core.el + isearch.el lisp.el modes.texi cc-subword.el display.texi os.texi + search.texi startup.el subr.el text.texi INSTALL.BZR add-log.el + buffers.texi bytecomp.el callint.c cc-fix.el and 22 other files Alan Shutko: changed diary-lib.el calendar.el bindings.el cal-hebrew.el easy-mmode.el gnus-sum.el ibuf-ext.el ibuffer.el lunar.el macros.el @@ -89,9 +85,6 @@ Alex Coventry: changed files.el -Alex Harsanyi: changed soap-client.el emacs3.py soap-inspect.el - vc-hooks.el vc.el xml.el - Alex Ott: changed TUTORIAL.ru ru-refcard.tex ispell.el ru-refcard.ps Alex Rezinsky: wrote which-func.el @@ -99,7 +92,7 @@ Alex Schroeder: wrote ansi-color.el cus-theme.el erc-compat.el erc-hecomplete.el erc-join.el erc-lang.el erc-ring.el master.el spam-stat.el sql.el -and co-wrote longlines.el rmailmm.el +and co-wrote longlines.el mail/rmailmm.el and changed erc.el erc-track.el erc-button.el erc-stamp.el erc-match.el erc-autoaway.el erc-nickserv.el rcirc.texi erc-autojoin.el erc-fill.el erc-pcomplete.el erc-complete.el erc-ibuffer.el erc-members.el rmail.el @@ -117,7 +110,7 @@ Alexander L. Belikoff: wrote erc.el -Alexander Pohoyda: co-wrote rmailmm.el +Alexander Pohoyda: co-wrote mail/rmailmm.el and changed rmailsum.el man.el rmail.el sendmail.el Alexander Shopov: changed code-pages.el @@ -133,6 +126,7 @@ Alexandre Veyrenc: changed fr-refcard.tex Alexandru Harsanyi: wrote soap-client.el soap-inspect.el +and changed emacs3.py vc-hooks.el vc.el xml.el Alfred Correira: changed generic-x.el @@ -147,6 +141,8 @@ Allen S. Rout: changed org-capture.el +Alon Albert: wrote rcompile.el + Alp Aker: changed nsfont.m nsterm.h nsterm.m buff-menu.el configure.in nsfns.m nsmenu.m @@ -197,7 +193,7 @@ Andreas Schwab: changed Makefile.in configure.in lisp.h xdisp.c alloc.c process.c coding.c files.el keyboard.c xterm.c editfns.c emacs.c fns.c print.c eval.c fileio.c lread.c sysdep.c dired.el xfns.c buffer.c - and 573 other files + and 577 other files Andreas Seltenreich: changed nnweb.el gnus.texi message.el gnus-sum.el gnus.el nnslashdot.el gnus-srvr.el gnus-util.el mm-url.el mm-uu.el @@ -260,8 +256,8 @@ Ari Roponen: changed atimer.c doc.c mule.texi startup.el time-date.el Arisawa Akihiro: changed characters.el coding.c epa-file.el japan-util.el - message.el mm-decode.el mm-view.el ps-print.el tai-viet.el term.c - tibetan.el time.el utf-8.el + language/tibetan.el message.el mm-decode.el mm-view.el ps-print.el + tai-viet.el term.c time.el utf-8.el Arnaud Giersch: changed gnus-sum.el @@ -294,13 +290,13 @@ Barry Fishman: changed gnu-linux.h -Bastien Guerry: wrote gnus-bookmark.el org-latex.el org-protocol.el -and co-wrote org-bibtex.el org-list.el org-src.el +Bastien Guerry: wrote gnus-bookmark.el org-latex.el +and co-wrote org-bibtex.el org-list.el org-protocol.el org-src.el and changed org.el org-agenda.el org-html.el org-clock.el org-exp.el org.texi org-table.el org-capture.el org-publish.el org-timer.el org-export-latex.el org-archive.el ob.el org-ascii.el org-mobile.el bookmark.el info.el org-attach.el org-colview.el org-crypt.el - org-eshell.el and 31 other files + org-eshell.el and 32 other files Ben A. Mesander: co-wrote erc-dcc.el @@ -431,9 +427,7 @@ compare-w.el compile.el dabbrev.el debug.el diary.el diff.el dired.el doctex.el doctor.el ebuff-menu.el echistory.el and 129 other files -Brian Sniffen: changed gnus-draft.el mm-decode.el - -Brian T. Sniffen: changed imap.el +Brian Sniffen: changed gnus-draft.el imap.el mm-decode.el Bruno Haible: co-wrote po.el and changed INSTALL emacs.1 epaths.in info.el paths.el @@ -498,9 +492,9 @@ font-parse-tests.el redisplay-testsuite.el tabulated-list.el and co-wrote longlines.el tango-dark-theme.el tango-theme.el and changed xdisp.c simple.el display.texi files.el frames.texi - cus-edit.el files.texi keyboard.c startup.el custom.el package.el - text.texi emacs.texi misc.texi xterm.c faces.el subr.el image.c - mouse.el custom.texi progmodes/compile.el and 837 other files + cus-edit.el files.texi keyboard.c custom.el startup.el package.el + text.texi xterm.c emacs.texi faces.el misc.texi subr.el image.c + mouse.el custom.texi xfns.c and 841 other files Chris Chase: co-wrote idlw-shell.el idlwave.el @@ -564,11 +558,11 @@ Christoph Conrad: changed gnus-agent.el gnus-score.el makefile.w32-in qp.el -Christoph Scholtes: changed makefile.w32-in progmodes/python.el stdint.h - INSTALL README.W32 maintaining.texi zipdist.bat admin.el bookmark.el - config.nt configure.bat control.texi cua-base.el help-mode.el help.el - ido.el makedist.bat menu.c minibuf.c process.c progmodes/grep.el - and 3 other files +Christoph Scholtes: changed makefile.w32-in README.W32 + progmodes/python.el stdint.h INSTALL maintaining.texi zipdist.bat + admin.el bookmark.el config.nt configure.bat control.texi cua-base.el + gmake.defs help-mode.el help.el ido.el make-dist makedist.bat menu.c + minibuf.c and 6 other files Christoph Wedler: wrote antlr-mode.el and changed format.el gnus-art.el gnus-picon.el message.el register.el @@ -665,7 +659,7 @@ Dan Rosenberg: changed movemail.c -Dani Moncayo: changed lists.texi buffers.texi text.texi +Dani Moncayo: changed buffers.texi lists.texi makefile.w32-in text.texi Daniel Brockman: changed cus-start.el format-spec.el ibuffer.el rcirc.el @@ -685,7 +679,7 @@ Daniel Engeler: changed sysdep.c elisp.texi emacs.texi internals.texi misc.texi process.c process.h processes.texi term.el w32.c w32.h -Daniel Hackney: changed emacsclient.c process.c +Daniel Hackney: changed emacsclient.c package.el process.c Daniel Jensen: changed apropos.el @@ -695,7 +689,7 @@ Daniel M Coffman: changed arc-mode.el -Daniel M German: wrote org-protocol.el +Daniel M German: co-wrote org-protocol.el Daniel Néri: changed message.el @@ -727,30 +721,29 @@ Darrin B. Jewell: changed etags.c lisp.h -Dave Abrahams: changed gnus-sum.el org-agenda.el gnus-registry.el - gnus.texi nnimap.el nnir.el nnmairix.el nnregistry.el org-clock.el - Dave Detlefs: co-wrote cc-align.el cc-cmds.el cc-defs.el cc-engine.el cc-langs.el cc-menus.el cc-mode.el cc-styles.el cc-vars.el Dave Lambert: changed sol2-5.h xfns.c xterm.c xterm.h Dave Love: wrote autoarg.el autoconf.el benchmark.el cap-words.el - cfengine.el elide-head.el georgian.el hl-line.el latin1-disp.el - progmodes/python.el refill.el rfc1345.el sgml-input.el smiley.el - sym-comp.el tool-bar.el uni-input.el utf-7.el utf-8-lang.el vc-bzr.el - welsh.el + cfengine.el elide-head.el hl-line.el language/georgian.el + latin1-disp.el progmodes/python.el quail/georgian.el refill.el + rfc1345.el sgml-input.el smiley.el sym-comp.el tool-bar.el uni-input.el + utf-7.el utf-8-lang.el vc/vc-bzr.el welsh.el and co-wrote latin-ltx.el socks.el and changed Makefile.in configure.in help.el mule-cmds.el fortran.el - mule-conf.el xterm.c browse-url.el mule.el coding.c cyrillic.el - european.el fns.c mule-diag.el simple.el wid-edit.el cus-edit.el - cus-start.el files.el keyboard.c byte-opt.el and 759 other files + mule-conf.el xterm.c browse-url.el mule.el coding.c european.el fns.c + mule-diag.el simple.el wid-edit.el cus-edit.el cus-start.el files.el + keyboard.c byte-opt.el info.el and 770 other files Dave Pearson: wrote 5x5.el quickurl.el David A. Capello: changed etags.c -David Abrahams: changed coding.c ediff-init.el mairix.el +David Abrahams: changed gnus-sum.el org-agenda.el coding.c ediff-init.el + gnus-registry.el gnus.texi mairix.el nnimap.el nnir.el nnmairix.el + nnregistry.el org-clock.el David Bakhash: wrote strokes.el @@ -771,9 +764,9 @@ David Engster: wrote mairix.el nnmairix.el and changed gnus.texi insert.el registry.el gnus-msg.el analyze/complete.el base.el bovine-grammar.el cedet/srecode.el - cpp-root.el custom.el db-find.el db-typecache.el db.el dictionary.el - display.texi document.el ede-grammar.el files.el filters.el generic.el - gnus-registry.el and 22 other files + cpp-root.el db-find.el db-typecache.el db.el dictionary.el display.texi + document.el ede-grammar.el ede/custom.el ede/generic.el files.el + filters.el gnus-registry.el and 22 other files David Gillespie: wrote calc-aent.el calc-alg.el calc-arith.el calc-bin.el calc-comb.el calc-cplx.el calc-embed.el calc-ext.el calc-fin.el @@ -807,10 +800,10 @@ b2m.c config.in digest-doc.c emacsclient.c emacsserver.c emacstool.c etags-vmslib.c fortran.el hexl.c and 14 other files -David Kastrup: changed greek.el replace.el faq.texi search.c ange-ftp.el - calc.el help.el keymaps.texi mouse.el subr.el woman.el Makefile.in - desktop.el gnus-art.el keymap.c keymap.h lisp-mnt.el meta-mode.el - mpuz.el process.c search.texi and 79 other files +David Kastrup: changed quail/greek.el replace.el faq.texi search.c + ange-ftp.el calc.el help.el keymaps.texi mouse.el subr.el woman.el + Makefile.in desktop.el gnus-art.el keymap.c keymap.h lisp-mnt.el + meta-mode.el mpuz.el process.c search.texi and 79 other files David Kågedal: wrote tempo.el and changed sendmail.el xmenu.c @@ -853,6 +846,7 @@ sysdep.c terminfo.c unexelf1.c yow.c David O'Toole: wrote org-publish.el +and co-wrote ob-lisp.el David Ponce: wrote bovine-grammar.el cedet.el comp.el grammar-wy.el grammar.el java-tags.el mode-local.el recentf.el ruler-mode.el @@ -876,8 +870,6 @@ David S. Goldberg: changed gnus-art.el message.el -David T. O'Toole: co-wrote ob-lisp.el - David Vazquez: changed m4-mode.el David Z. Maze: changed nnml.el nnrss.el @@ -904,7 +896,7 @@ Deniz Dogan: changed rcirc.el simple.el css-mode.el commands.texi image.el iswitchb.el lisp-mode.el process.c progmodes/python.el - quickurl.el rcirc.texi vc-bzr.el wdired.el window.el + quickurl.el rcirc.texi vc/vc-bzr.el wdired.el window.el Dennis Gilmore: changed sparc.h @@ -920,7 +912,7 @@ Detlev Zundel: wrote re-builder.el -Devon Sean Mccullough: changed comint.el +Devon Sean McCullough: changed comint.el Dhruva Krishnamurthy: changed makefile.w32-in emacsclient.c fontset.c sound.c w32proc.c @@ -960,6 +952,8 @@ Dmitry Dzhus: changed gdb-mi.el gud.el fadr.el all.xpm building.texi emacs.texi process.c thread.xpm +Dmitry Gutov: changed lisp.el + Dmitry Kurochkin: changed isearch.el Dominique de Waleffe: changed pcvs-info.el @@ -991,8 +985,8 @@ Ed Swarthout: changed hexl.el textmodes/table.el Eduard Wiebe: changed dired.el browse-url.el flymake.texi footnote.el - javascript.el korean.el locate.el mule-conf.el nxml-mode.texi - objects.texi ps-print.el vc-rcs.el + javascript.el jit-lock.el korean.el locate.el mule-conf.el + nxml-mode.texi objects.texi ps-print.el vc-rcs.el Eduardo Muñoz: changed dired.el ls-lisp.el @@ -1013,8 +1007,6 @@ Edward Trumbo: changed Makefile.in -Edward Wiebe: changed jit-lock.el - Edwin Steiner: changed gnus-nocem.el Ehud Karni: changed rmail.el aviion-intel.h complete.el configure.in @@ -1030,8 +1022,8 @@ tty-colors.el and changed makefile.w32-in msdos.c xdisp.c Makefile.in files.el config.bat fileio.c simple.el msdos.h info.el mainmake.v2 rmail.el - sed1v2.inp display.texi w32.c process.c pc-win.el dispnew.c startup.el - dispextern.h dired.c and 697 other files + sed1v2.inp display.texi w32.c pc-win.el process.c dispnew.c startup.el + dispextern.h dired.c and 700 other files Elias Oltmanns: changed tls.el gnus-agent.el gnus-int.el gnus-srvr.el gnus.el @@ -1078,16 +1070,16 @@ args.el auto.el autoconf-edit.el base.el bovine.el bovine/debug.el bovine/el.el bovine/make.el c.el cedet-cscope.el cedet-files.el cedet-global.el cedet-idutils.el cedet-utests.el cedet/semantic.el - cedet/srecode.el checkdoc.el cpp-root.el cscope.el custom.el - data-debug.el db-debug.el db-el.el db-file.el db-find.el db-global.el - db-mode.el db-ref.el db-typecache.el db.el decorate.el decorate/mode.el - dep.el dframe.el dictionary.el doc.el document.el ede-grammar.el - ede-tests.el ede.el ede/dired.el ede/files.el ede/linux.el - ede/locate.el ede/make.el ede/shell.el ede/simple.el ede/speedbar.el - ede/srecode.el ede/util.el edit.el eieio-base.el eieio-custom.el - eieio-datadebug.el eieio-opt.el eieio-speedbar.el eieio.el - emacs-lisp/chart.el emacs.el expandproto.el extract.el ezimage.el - fcn.el fields.el filter.el filters.el fw.el gcc.el generic.el getset.el + cedet/srecode.el checkdoc.el cpp-root.el cscope.el data-debug.el + db-debug.el db-el.el db-file.el db-find.el db-global.el db-mode.el + db-ref.el db-typecache.el db.el decorate.el decorate/mode.el dep.el + dframe.el dictionary.el doc.el document.el ede-grammar.el ede-tests.el + ede.el ede/custom.el ede/dired.el ede/files.el ede/generic.el + ede/linux.el ede/locate.el ede/make.el ede/shell.el ede/simple.el + ede/speedbar.el ede/srecode.el ede/util.el edit.el eieio-base.el + eieio-custom.el eieio-datadebug.el eieio-opt.el eieio-speedbar.el + eieio.el emacs-lisp/chart.el emacs.el expandproto.el extract.el + ezimage.el fcn.el fields.el filter.el filters.el fw.el gcc.el getset.el global.el html.el ia-sb.el ia.el idle.el idutils.el include.el insert.el inversion.el javascript.el lex-spp.el lex.el list.el makefile-edit.el map.el mru-bookmark.el pconf.el pmake.el @@ -1162,7 +1154,7 @@ Eugene Exarevsky: changed sql.el -Evangelos Evangelou: changed f90.el +Evangelos Evangelou: changed progmodes/f90.el Evgeni Dobrev: changed man.el @@ -1315,7 +1307,7 @@ and changed xdisp.c xterm.c dispnew.c dispextern.h xfns.c xfaces.c window.c keyboard.c lisp.h Makefile.in faces.el alloc.c buffer.c startup.el xterm.h fns.c simple.el term.c frame.c xmenu.c emacs.c - and 615 other files + and 617 other files Gergely Nagy: changed erc.el @@ -1332,12 +1324,11 @@ Giuseppe Scrivano: changed browse-url.el buffer.c configure.in sysdep.c xsmfns.c -Glenn Morris: wrote check-declare.el f90.el vc-bzr.el +Glenn Morris: wrote automated/f90.el automated/vc-bzr.el check-declare.el and changed Makefile.in configure.in calendar.el diary-lib.el rmail.el - files.el cal-menu.el appt.el cal-hebrew.el fortran.el bytecomp.el - holidays.el make-dist calendar.texi emacs.texi simple.el sed1v2.inp - cal-islam.el cal-bahai.el makefile.w32-in dired-x.el - and 1210 other files + progmodes/f90.el files.el cal-menu.el appt.el cal-hebrew.el fortran.el + bytecomp.el holidays.el calendar.texi emacs.texi make-dist simple.el + ack.texi sed1v2.inp cal-islam.el dired-x.el and 1242 other files Glynn Clements: wrote gamegrid.el snake.el tetris.el @@ -1407,8 +1398,8 @@ Helmut Waitzmann: changed gnus-sum.el gnus.texi Henrik Enberg: changed rmailout.el gnus-art.el gnus-msg.el lread.c - rmail.el rmailedit.el rmailkwd.el rmailmm.el rmailmsc.el rmailsort.el - rmailsum.el xfaces.c + mail/rmailmm.el rmail.el rmailedit.el rmailkwd.el rmailmsc.el + rmailsort.el rmailsum.el xfaces.c Henrique Martins: changed mh-mime.el mh-xface.el @@ -1531,8 +1522,8 @@ Jambunathan K: wrote org-lparse.el org-odt.el and changed org.el org-exp.el org-inlinetask.el org.texi - OrgOdtContentTemplate.xml OrgOdtStyles.xml indian.el org-footnote.el - org-html.el package-x.el tar-mode.el + OrgOdtContentTemplate.xml OrgOdtStyles.xml org-footnote.el org-html.el + package-x.el quail/indian.el tar-mode.el James Clark: wrote nxml-enc.el nxml-glyph.el nxml-maint.el nxml-mode.el nxml-ns.el nxml-outln.el nxml-parse.el nxml-rap.el nxml-uchnm.el @@ -1572,7 +1563,7 @@ and changed gtkutil.c xterm.c xfns.c configure.in xmenu.c xterm.h gtkutil.h nsterm.m x-win.el keyboard.c Makefile.in frames.texi xsettings.c emacs.c frame.c nsfns.m xselect.c process.c xlwmenu.c - config.in cus-start.el and 302 other files + config.in cus-start.el and 303 other files Jan Moringen: co-wrote srecode/cpp.el tango-dark-theme.el tango-theme.el and changed dbus.el dbus.texi dbusbind.c eieio.el log-edit.el zeroconf.el @@ -1614,10 +1605,10 @@ font.c image.c w32font.h w32gui.h and 160 other files Jay Belanger: changed calc.texi calc.el calc-ext.el calc-aent.el - calc-units.el calc-embed.el calc-lang.el calc-prog.el calc-help.el + calc-units.el calc-embed.el calc-help.el calc-lang.el calc-prog.el calc-math.el calccomp.el calc-arith.el calc-graph.el calc-forms.el calc-misc.el calc-store.el calc-yank.el calcalg2.el calc-bin.el - calc-alg.el calc-vec.el and 39 other files + calc-alg.el calc-vec.el and 40 other files Jay K. Adams: wrote jka-cmpr-hook.el jka-compr.el @@ -1648,11 +1639,12 @@ Jens Lautenbacher: changed gnus.el Jens Petersen: wrote find-func.el -and changed ffap.el mule-cmds.el pcmpl-rpm.el +and changed mule-cmds.el pcmpl-rpm.el Jens Toivo Berger Thielemann: changed word-help.el -Jens-Ulrik Holger Petersen: changed cus-edit.el find-func.el gnus.el +Jens-Ulrik Holger Petersen: changed cus-edit.el ffap.el find-func.el + gnus.el Jeramey Crawford: changed amdx86-64.h configure.in @@ -1684,7 +1676,7 @@ and changed keyboard.c xterm.c xfns.c Makefile.in window.c process.c ymakefile dispnew.c xdisp.c sysdep.c configure.in lisp.h keymap.c configure make-dist buffer.c frame.c screen.c simple.el alloc.c emacs.c - and 387 other files + and 388 other files Jim Kingdon: changed emacsclient.c emacs.tex functions.texinfo hp300bsd.h rmail.el @@ -1692,7 +1684,7 @@ Jim Meyering: changed lread.c w32.c copyright.el ebrowse.c emacs.c make-docfile.c nsfont.m term.c w32font.c xfaces.c xselect.c Makefile.in alloc.c artist.el autoinsert.el buffer.h character.h charset.c - configure configure.in doprnt.c and 52 other files + configure configure.in doprnt.c and 53 other files Jim Radford: changed gnus-start.el @@ -1773,8 +1765,6 @@ John F. Whitehead: changed mule-cmds.el mule-diag.el -John Foerch: changed display.texi - John Fremlin: changed gnus-msg.el message.el John Grabowski: changed xfaces.c xfns.c @@ -1785,9 +1775,10 @@ John Hughes: changed term.c -John J Foerch: changed erc-stamp.el org.el progmodes/compile.el +John J Foerch: changed display.texi erc-stamp.el org.el + progmodes/compile.el -John Mongan: changed f90.el +John Mongan: changed progmodes/f90.el John Paul Wallington: changed ibuffer.el ibuf-ext.el subr.el help-fns.el rmail.el files.el thumbs.el bindings.el fns.c xfns.c arc-mode.el @@ -1798,16 +1789,17 @@ John Tobey: changed gud.el -John W. Eaton: wrote octave-inf.el octave-mod.el +John W. Eaton: co-wrote octave-mod.el +and changed octave-inf.el John Wiegley: wrote align.el cal-bahai.el em-alias.el em-banner.el em-basic.el em-cmpl.el em-dirs.el em-glob.el em-hist.el em-ls.el em-pred.el em-prompt.el em-rebind.el em-script.el em-smart.el em-term.el em-unix.el em-xtra.el erc-identd.el esh-arg.el esh-cmd.el esh-ext.el esh-io.el esh-mode.el esh-module.el esh-opt.el esh-proc.el - esh-util.el esh-var.el eshell.el eudcb-mab.el isearchb.el org-attach.el - org-crypt.el org-habit.el pcmpl-cvs.el pcomplete.el remember.el - timeclock.el + esh-util.el esh-var.el eshell/eshell.el eudcb-mab.el isearchb.el + org-attach.el org-crypt.el org-habit.el pcmpl-cvs.el pcomplete.el + remember.el test/eshell.el timeclock.el and co-wrote org-mac-message.el org-pcomplete.el and changed org-clock.el org-agenda.el erc-chess.el org.el erc.el iswitchb.el ido.el esh-test.el Makefile.in allout.el cal-menu.el @@ -1881,10 +1873,10 @@ and changed ob-octave.el Juanma Barranquero: wrote emacs-lock.el -and changed makefile.w32-in subr.el w32fns.c files.el server.el - emacsclient.c bs.el help-fns.el faces.el org.el simple.el buffer.c - xdisp.c keyboard.c desktop.el process.c w32term.c window.c ido.el w32.c - allout.el and 1086 other files +and changed makefile.w32-in subr.el w32fns.c files.el server.el bs.el + emacsclient.c help-fns.el faces.el org.el simple.el buffer.c xdisp.c + keyboard.c desktop.el process.c w32term.c window.c ido.el w32.c + allout.el and 1089 other files Juergen Kreileder: changed imap.el nnimap.el @@ -1917,7 +1909,7 @@ dired-aux.el progmodes/compile.el dired.el startup.el faces.el files.el display.texi menu-bar.el descr-text.el bindings.el cus-edit.el image-mode.el ispell.el man.el dired-x.el log-view.el - and 337 other files + and 338 other files Justin Bogner: changed fortune.el @@ -2001,7 +1993,7 @@ Katsuhiro Hermit Endo: changed gnus-group.el gnus-spec.el Katsumi Yamaoka: wrote canlock.el -and changed gnus-art.el message.el gnus-sum.el gnus.texi mm-decode.el +and changed gnus-art.el gnus-sum.el message.el gnus.texi mm-decode.el mm-util.el mm-view.el gnus-group.el mml.el rfc2047.el gnus-util.el gnus-start.el gnus-msg.el gnus.el shr.el nntp.el gnus-agent.el nnrss.el mm-uu.el nnmail.el gnus-html.el and 135 other files @@ -2033,9 +2025,9 @@ Ken Laprade: changed simple.el Ken Manheimer: wrote allout-widgets.el allout.el icomplete.el -and changed pgg-gpg.el pgg.el progmodes/python.el encrypted-locked.xpm - pgg-pgp.el pgg-pgp5.el unlocked-encrypted.png unlocked-encrypted.xpm - README edebug.el pgg.texi tips.texi +and changed pgg-gpg.el pgg.el progmodes/python.el locked-encrypted.png + locked-encrypted.xpm pgg-pgp.el pgg-pgp5.el unlocked-encrypted.png + unlocked-encrypted.xpm README edebug.el pgg.texi tips.texi Ken Raeburn: changed lisp.h lread.c Makefile.in alloc.c buffer.c fns.c keyboard.c minibuf.c coding.c editfns.c fileio.c keymap.c xdisp.c @@ -2044,13 +2036,13 @@ Ken Stevens: wrote ispell.el -Kenichi Handa: wrote composite.el cyrillic.el isearch-x.el ps-bdf.el - py-punct.el pypunct-b5.el thai-word.el +Kenichi Handa: wrote composite.el isearch-x.el language/cyrillic.el + ps-bdf.el py-punct.el pypunct-b5.el thai-word.el and co-wrote ps-def.el ps-mule.el ps-print.el ps-samp.el quail.el and changed coding.c mule-cmds.el mule.el fontset.c charset.c xdisp.c fontset.el font.c xterm.c Makefile.in fileio.c mule-conf.el characters.el fns.c ftfont.c mule-diag.el charset.h ccl.c coding.h - xfaces.c japanese.el and 379 other files + xfaces.c editfns.c and 388 other files Kenichi Okada: co-wrote sasl-cram.el sasl-digest.el @@ -2139,7 +2131,8 @@ Kurt B. Kaiser: changed message.el -Kurt Hornik: wrote octave-inf.el octave-mod.el +Kurt Hornik: wrote octave-inf.el +and co-wrote octave-mod.el and changed battery.el ielm.el octave-hlp.el term.el Kurt Swanson: changed gnus-art.el gnus-salt.el gnus-sum.el gnus-ems.el @@ -2167,15 +2160,11 @@ hilit-chg.el misc.texi url-auth.el url-cache.el url-dired.el url-ftp.el url-irc.el url-misc.el url-news.el url-privacy.el and 39 other files -Lars Ingebrigtsen: changed nnimap.el gnus-art.el gnus-sum.el shr.el - gnus.texi gnus-start.el auth-source.el nntp.el message.el gnus-draft.el - gnus-group.el gnus-agent.el gnus-html.el gnus-util.el macros.texi - nnfolder.el nnmail.el proto-stream.el gnus-demon.el gnus-gravatar.el - gnus-int.el and 10 other files - Lars Lindberg: wrote msb.el and co-wrote dabbrev.el imenu.el +Lars Ljung: changed esh-ext.el + Lars Magne Ingebrigtsen: wrote compface.el dns.el ecomplete.el format-spec.el gnus-agent.el gnus-art.el gnus-async.el gnus-bcklg.el gnus-cache.el gnus-demon.el gnus-draft.el gnus-dup.el gnus-eform.el @@ -2192,11 +2181,10 @@ mm-encode.el mm-util.el nnbabyl.el nndoc.el nneething.el nnfolder.el nnheader.el nnimap.el nnmbox.el nnmh.el nnml.el nnspool.el nnvirtual.el rfc2047.el time-date.el -and changed gnus.texi gnus-cite.el pop3.el gnus-xmas.el smtpmail.el - proto-stream.el auth-source.el subr.el xml.c dired.el editfns.c - nnultimate.el gnus-nocem.el gnutls.c imap.el nnkiboze.el nnrss.el - nnslashdot.el spam-report.el url-http.el gnus-cus.el - and 207 other files +and changed gnus.texi gnus-cite.el pop3.el smtpmail.el gnus-xmas.el + auth-source.el proto-stream.el url-http.el gnutls.c subr.el xml.c + dired.el editfns.c nnultimate.el gnus-nocem.el imap.el nnkiboze.el + nnrss.el nnslashdot.el simple.el spam-report.el and 210 other files Lars Rasmusson: changed ebrowse.c @@ -2209,7 +2197,7 @@ erc-nickserv.el org-exp.el browse-url.el erc-button.el erc-compat.el erc-dcc.el erc-fill.el erc-list.el erc-track.el ielm.el ob.el org-html.el cl-macs.el erc-autoaway.el erc-autojoin.el erc-bbdb.el - and 22 other files + and 23 other files Lawrence R. Dodd: co-wrote dired-x.el and changed fortran.el ispell.el sendmail.el cmuscheme.el comint.el @@ -2227,10 +2215,10 @@ Lennart Staflin: changed dired.el diary-ins.el diary-lib.el tq.el xdisp.c -Leo Liu: changed rcirc.el ido.el makefile.w32-in abbrev.el Makefile.in - deps.mk dnd.el em-hist.el erc.el files.el fns.c footnote.el gl-comp.m4 - gnulib.mk help-mode.el iswitchb.el minibuf.c minibuffer.el register.el - replace.el subr.el and 47 other files +Leo Liu: changed rcirc.el ido.el makefile.w32-in abbrev.el subr.el + Makefile.in deps.mk diff-mode.el dnd.el em-hist.el erc.el files.el + fns.c footnote.el gl-comp.m4 gnulib.mk help-mode.el iswitchb.el + minibuf.c minibuffer.el register.el and 57 other files Leonard H. Tower Jr.: changed rnews.el rnewspost.el emacsbug.el rmailout.el sendmail.el @@ -2269,11 +2257,11 @@ Łukasz Stelmach: changed cookie1.el message.el org-agenda.el org-bbdb.el org-exp.el org-html.el org.el -Lute Kamstra: changed modes.texi generic.el emacs-lisp/debug.el - generic-x.el font-lock.el simple.el subr.el Makefile.in battery.el - debugging.texi easy-mmode.el elisp.texi hl-line.el info.el basic.texi - bindings.el calc.el cmdargs.texi diff-mode.el doclicense.texi - edebug.texi and 290 other files +Lute Kamstra: changed modes.texi emacs-lisp/debug.el generic-x.el + generic.el font-lock.el simple.el subr.el Makefile.in battery.el + debugging.texi easy-mmode.el elisp.texi emacs-lisp/generic.el + hl-line.el info.el basic.texi bindings.el calc.el cmdargs.texi + diff-mode.el doclicense.texi and 291 other files Lynn Slater: wrote help-macro.el @@ -2281,8 +2269,9 @@ Magnus Henoch: changed url-http.el ispell.el url.el dbusbind.c dns.el url-gw.el url-parse.el url-proxy.el autoinsert.el cl.texi configure.in - cyrillic.el dbus.el gnus.texi hashcash.el log-edit.el message.el - org-clock.el org-latex.el org-table.el process.c and 10 other files + dbus.el gnus.texi hashcash.el log-edit.el message.el org-clock.el + org-latex.el org-table.el process.c quail/cyrillic.el + and 10 other files Malcolm Purvis: changed spam-stat.el @@ -2423,7 +2412,7 @@ Martin Rudalics: changed window.el window.c windows.texi frame.c buffer.c help.el window.h cus-start.el frame.el cus-edit.el files.el buffers.texi dired.el subr.el add-log.el xdisp.c font-lock.el - help-fns.el lisp.h mouse.el wid-edit.el and 135 other files + help-fns.el lisp.h mouse.el wid-edit.el and 136 other files Martin Stjernholm: wrote cc-bytecomp.el and co-wrote cc-align.el cc-cmds.el cc-compat.el cc-defs.el cc-engine.el @@ -2452,15 +2441,13 @@ and changed etags.el asm-mode.el hexl.el xdisp.c bindings.el man.el xfaces.c simple.el vc.el wid-edit.el add-log.el etags.c faces.el pcvs.el progmodes/compile.el register.el ruler-mode.el buffer.c - cus-face.el dired-x.el dispextern.h and 71 other files + cc-langs.el cus-face.el dired-x.el and 73 other files Masayuki Ataka: changed texinfmt.el texinfo.el characters.el cmuscheme.el make-mode.el Masayuki Fujii: changed dnd.el w32-win.el -Mastake Yamato: changed cc-guess.el cc-langs.el cc-mode.el cc-styles.el - Mathias Dahl: wrote image-dired.el and changed tumme.el dired.el dired.texi @@ -2636,8 +2623,9 @@ Mikio Nakajima: changed ring.el viper-util.el -Milan Zamazal: wrote czech.el glasses.el tildify.el -and co-wrote prolog.el slovak.el +Milan Zamazal: wrote glasses.el language/czech.el quail/czech.el + tildify.el +and co-wrote language/slovak.el prolog.el quail/slovak.el and changed abbrev.el filecache.el files.el mm-view.el org.el progmodes/compile.el @@ -2770,9 +2758,7 @@ Noel Cragg: changed mh-junk.el Noorul Islam: changed org-latex.el org-html.el org.el org.texi - org-capture.el org-gnus.el org-habit.el - -Noorul Islam K M: changed package.el + org-capture.el org-gnus.el org-habit.el package.el Norbert Koch: changed gnus-msg.el gnus-score.el @@ -2783,7 +2769,7 @@ Odd Gripenstam: wrote dcl-mode.el -Ognyan Kulev: changed TUTORIAL.bg cyrillic.el +Ognyan Kulev: changed TUTORIAL.bg quail/cyrillic.el Okazaki Tetsurou: changed cc-fonts.el @@ -2791,7 +2777,8 @@ Ole Aamot: changed compile.el -Oleg S. Tihonov: changed cyrillic.el ispell.el map-ynp.el subr.el +Oleg S. Tihonov: changed ispell.el language/cyrillic.el map-ynp.el + quail/cyrillic.el subr.el Oleksandr Gavenko: changed generic-x.el progmodes/grep.el @@ -2846,7 +2833,7 @@ and changed lisp.h Makefile.in editfns.c alloc.c xdisp.c configure.in fileio.c image.c process.c fns.c xterm.c dispextern.h keyboard.c data.c lread.c sysdep.c xfns.c eval.c emacs.c config.in print.c - and 568 other files + and 573 other files Paul Fisher: changed fns.c @@ -2866,7 +2853,7 @@ Paul Reilly: changed dgux.h lwlib-Xm.c lwlib.c xlwmenu.c configure.in mail-utils.el process.c rmail.el xfns.c Makefile.in dgux5-4R2.h dgux5-4R3.h files.el keyboard.c lwlib-Xaw.c lwlib-Xm.h lwlib-int.h - lwlib.h rmailedit.el rmailkwd.el rmailmm.el and 10 other files + lwlib.h mail/rmailmm.el rmailedit.el rmailkwd.el and 10 other files Paul Rivier: changed ada-mode.el mixal-mode.el reftex-vars.el reftex.el @@ -2881,7 +2868,7 @@ Pavel Janík: changed keyboard.c xterm.c COPYING xdisp.c Makefile.in process.c emacs.c lisp.h menu-bar.el ldap.el make-dist xfns.c buffer.c coding.c eval.c fileio.c flyspell.el fns.c indent.c callint.c - cus-start.el and 700 other files + cus-start.el and 710 other files Pavel Kobiakov: wrote flymake.el and changed flymake.texi @@ -2915,8 +2902,9 @@ Pete Ware: changed message.el -Peter Breton: wrote dirtrack.el filecache.el find-lisp.el generic-x.el - generic.el locate.el net-utils.el +Peter Breton: wrote dirtrack.el emacs-lisp/generic.el filecache.el + find-lisp.el generic-x.el locate.el net-utils.el +and changed generic.el Peter Danenberg: changed scheme.el @@ -2926,7 +2914,7 @@ Peter Heslin: changed flyspell.el outline.el -Peter J. Weisberg: changed picture.el simple.el +Peter J. Weisberg: changed help.el picture.el simple.el Peter Jolly: changed arc-mode.el ftfont.c @@ -2978,24 +2966,26 @@ Philip Jackson: wrote find-cmd.el org-irc.el +Philipp Haselwarter: changed gnus-agent.el gnus.texi + Philippe Schnoebelen: wrote gomoku.el mpuz.el Philippe Waroquiers: changed etags.el term.c Pierre Poissinger: changed charset.c -Piet Van Oostrum: changed data.c fileio.c flyspell.el smtpmail.el +Piet van Oostrum: changed data.c fileio.c flyspell.el smtpmail.el Pieter E.J. Pareit: wrote mixal-mode.el Pieter Praet: changed org-crypt.el +Pieter Schoenmakers: changed TUTORIAL.nl + Pinku Surana: changed sql.el Piotr Zielinski: wrote org-mouse.el -Pj Weisberg: changed help.el - Prestoo Ten: changed screen.el Primoz Peterlin: changed TUTORIAL.sl @@ -3034,8 +3024,6 @@ Ralf Fassel: changed dabbrev.el files.el fill.el iso-acc.el tar-mode.el -Ralf Scheidhauer And Michael Mehl: wrote prolog.el - Ralph Schleicher: wrote battery.el info-look.el and changed libc.el browse-url.el fileio.c info.el mm-decode.el nnultimate.el perl-mode.el which-func.el @@ -3102,7 +3090,7 @@ and changed files.el keyboard.c simple.el xterm.c xdisp.c rmail.el Makefile.in fileio.c process.c sysdep.c buffer.c xfns.c window.c configure.in subr.el startup.el emacs.c sendmail.el editfns.c info.el - dispnew.c and 1347 other files + dispnew.c and 1350 other files Richard Mlynarik: wrote cl-indent.el ebuff-menu.el ehelp.el rfc822.el terminal.el yow.el @@ -3195,7 +3183,7 @@ Ronan Waide: changed smtpmail.el -Ross Patterson: wrote org-protocol.el +Ross Patterson: co-wrote org-protocol.el Roy Liu: changed ns-win.el @@ -3283,11 +3271,11 @@ Sean Neakums: changed gnus-msg.el gnus-uu.el supercite.el +Sean O'Halpin: changed ob.el + Sean O'Rourke: changed complete.el comint.el dabbrev.el find-func.el ibuf-ext.el pcomplete.el register.el tramp.el -Sean O'halpin: changed ob.el - Sean Sieger: changed emacs-lisp-intro.texi Sebastian Freundt: changed nnmaildir.el @@ -3298,15 +3286,13 @@ and co-wrote dired-x.el find-dired.el and changed add-log.el -Sebastian Rose: wrote org-protocol.el +Sebastian Rose: co-wrote org-protocol.el and changed org-publish.el ftfont.c org-jsinfo.el Sebastian Tennant: changed desktop.el Sebastien Kirche: changed mail-extr.el -Sebastien Vauban: changed org-agenda.el org-html.el - Seiji Zenitani: changed nsfns.m frame.c xterm.c Info.plist PkgInfo document.icns find-func.el frame.h help-fns.el macfns.c nsfont.m nsterm.m w32fns.c xdisp.c xfns.c @@ -3380,7 +3366,7 @@ and changed font-lock.el rmail.el fortran.el sendmail.el subr.el dired.el sh-script.el texinfo.el add-log.el compile.el outline.el help.el menu-bar.el perl-mode.el ps-print.el rmailsum.el bytecomp.el - cc-fonts.el data.c faces.el lisp-mode.el and 55 other files + cc-fonts.el data.c faces.el lisp-mode.el and 56 other files Simon South: co-wrote delphi.el @@ -3408,9 +3394,9 @@ pcvs-util.el reveal.el smerge-mode.el smie.el vc-mtn.el and co-wrote font-lock.el and changed vc.el subr.el simple.el lisp.h keyboard.c files.el - bytecomp.el Makefile.in keymap.c progmodes/compile.el xdisp.c pcvs.el + bytecomp.el keymap.c Makefile.in progmodes/compile.el xdisp.c pcvs.el alloc.c newcomment.el vc-hooks.el tex-mode.el buffer.c fileio.c eval.c - sh-script.el fill.el and 1032 other files + sh-script.el fill.el and 1033 other files Stefan Reichör: changed gnus-agent.el @@ -3512,7 +3498,7 @@ Sun Yijiang: changed TUTORIAL.cn -Sundar Narasimhan: changed rnews.el rnewspost.el +Sundar Narasimhan: changed rnews.el Suvayu Ali: changed org-exp.el org-inlinetask.el org.texi @@ -3527,16 +3513,15 @@ Sébastien Delafond: changed org.el -Sébastien Vauban: changed org.el org-agenda.el org-latex.el - -T. V. Raman: changed completion.el files.el json.el - -T.V. Raman: changed mairix.el mspools.el xml.c - -Taichi Kawabata: wrote indian.el ucs-normalize.el +Sébastien Vauban: changed org-agenda.el org.el org-html.el org-latex.el + +T.V. Raman: changed completion.el files.el json.el mairix.el mspools.el + xml.c + +Taichi Kawabata: wrote quail/indian.el ucs-normalize.el and changed devanagari.el ind-util.el Makefile.in devan-util.el - characters.el fontset.el malayalam.el mlm-util.el mule-conf.el tamil.el - tml-util.el + language/indian.el characters.el fontset.el malayalam.el mlm-util.el + mule-conf.el tamil.el tml-util.el Takaaki Ota: wrote textmodes/table.el and changed appt.el dired.c etags.c ldap.el makefile.w32-in @@ -3544,8 +3529,8 @@ Takahashi Kaoru: changed texinfmt.el -Takahashi Naoto: wrote cyrillic.el ethio-util.el ethiopic.el - latin-post.el robin.el +Takahashi Naoto: wrote ethio-util.el language/ethiopic.el latin-post.el + quail/cyrillic.el quail/ethiopic.el robin.el and co-wrote latin-ltx.el quail.el and changed fontset.el mule-conf.el @@ -3562,7 +3547,7 @@ gnus-art.el gnus.texi nnimap.el files.el gnus-sum.el info.el org-footnote.el org.el reftex-ref.el simple.el tsdh-dark-theme.el tsdh-light-theme.el ack.texi bindings.el bookmark.el cc-mode.el - and 23 other files + and 24 other files Tatsuya Ichikawa: changed gnus-agent.el gnus-cache.el @@ -3573,7 +3558,8 @@ Teemu Likonen: changed dired.el gnus-agent.el message.el Teodor Zlatanov: wrote auth-source.el gnus-registry.el gnus-sync.el - gnus-tests.el gnutls.el registry.el spam-report.el url-future.el + gnus-tests.el gnutls.el registry.el spam-report.el url-future-tests.el + url-future.el and changed spam.el gnus.el nnimap.el gnus.texi gnus-sum.el gnus-util.el auth.texi netrc.el gnus-start.el gnutls.c message.el spam-stat.el encrypt.el nnir.el nnmail.el imap.el mail-source.el nnmairix.el nntp.el @@ -3602,9 +3588,10 @@ Thierry Emery: changed kinsoku.el timezone.el url-http.el wid-edit.el -Thierry Volpiatto: changed bookmark.el eshell.el gnus-sum.el - image-mode.el info.el man.el woman.el dired-aux.el dired.el doc-view.el - files.el find-func.el gnus-art.el image-dired.el vc-rcs.el +Thierry Volpiatto: changed bookmark.el eshell/eshell.el files.el + gnus-sum.el dired-aux.el image-mode.el info.el man.el woman.el dired.el + doc-view.el files.texi find-func.el gnus-art.el image-dired.el + vc-rcs.el Thomas Baumann: wrote org-mhe.el and co-wrote org-bbdb.el @@ -3615,7 +3602,7 @@ Thomas Dorner: changed ange-ftp.el -Thomas Dye: changed org.texi ob-R.el +Thomas Dye: changed org.texi org-bibtex.el ob-R.el org.el Thomas Horsley: changed cxux-crt0.s cxux.h cxux7.h emacs.c nh3000.h nh4000.h simple.el sysdep.c xterm.c @@ -3644,9 +3631,9 @@ Tiago Saboga: changed files.el -Tibor Šimko: co-wrote slovak.el +Tibor Šimko: co-wrote language/slovak.el quail/slovak.el -Tijs Van Bakel: changed erc.el +Tijs van Bakel: changed erc.el Tim Cross: changed keymaps.texi @@ -3677,8 +3664,6 @@ Tom Breton: changed autoinsert.el cus-edit.el gnus-agent.el lread.c -Tom Dye: changed org.texi org-bibtex.el org.el - Tom Hageman: changed etags.c Tom Houlder: wrote mantemp.el @@ -3709,11 +3694,12 @@ Torbjörn Axelsson: changed options.el -Torbjörn Einarsson: wrote f90.el +Torbjörn Einarsson: wrote progmodes/f90.el +and changed f90.el Torsten Bronger: changed latin-ltx.el -Toru Tomabechi: wrote tibet-util.el tibetan.el +Toru Tomabechi: wrote language/tibetan.el quail/tibetan.el tibet-util.el Toru Tsuneyoshi: changed ange-ftp.el buff-menu.el cus-start.el fileio.c files.el lisp.h tramp.el w32fns.c @@ -3777,10 +3763,11 @@ Valentin Wüstholz: changed org.el -Valery Alexeev: changed cyril-util.el cyrillic.el +Valery Alexeev: changed cyril-util.el quail/cyrillic.el -Vasily Korytov: changed cyrillic.el message.el cperl-mode.el gnus-art.el - gnus-dired.el gnus-msg.el gnus-util.el mail-source.el smiley.el +Vasily Korytov: changed message.el quail/cyrillic.el cperl-mode.el + gnus-art.el gnus-dired.el gnus-msg.el gnus-util.el mail-source.el + smiley.el Victor Zandy: wrote zone.el @@ -3822,10 +3809,11 @@ Werner Benger: changed keyboard.c Werner Lemberg: wrote sisheng.el vntelex.el -and changed Makefile.in TUTORIAL.de calc.texi chinese.el czech.el emacs.1 - european.el idlwave.el reftex-vars.el reftex.el reftex.texi slovak.el - supercite.el advice.el calc-forms.el calc-sel.el calendar.el - china-util.el cl-macs.el cl.texi complete.el and 50 other files +and changed Makefile.in TUTORIAL.de calc.texi chinese.el emacs.1 + european.el idlwave.el language/czech.el language/slovak.el + reftex-vars.el reftex.el reftex.texi supercite.el advice.el + calc-forms.el calc-sel.el calendar.el china-util.el cl-macs.el cl.texi + complete.el and 50 other files Werner Meisner: changed lwlib-Xm.c @@ -3864,8 +3852,6 @@ Wim Nieuwenhuizen: changed TUTORIAL.nl -Wj Carpenter: changed feedmail.el - Wlodzimierz Bzyl: co-wrote ogonek.el and changed latin-pre.el pl-refcard.ps pl-refcard.tex refcard-pl.ps refcard-pl.tex survival.tex @@ -3894,7 +3880,7 @@ Yagi Tatsuya: changed gnus-art.el gnus-start.el -Yair F: changed hebrew.el +Yair F: changed quail/hebrew.el Yamamoto Mitsuharu: changed macterm.c macfns.c mac-win.el mac.c macterm.h macmenu.c macgui.h image.c xdisp.c macselect.c keyboard.c xterm.c @@ -3910,7 +3896,7 @@ Yoichi Nakayama: changed browse-url.el finder.el man.el rfc2368.el -Yong Lu: changed charset.c coding.c greek.el +Yong Lu: changed charset.c coding.c language/greek.el Yoni Rabkin: changed faces.el net-utils.el artist.el bs.el cmacexp.el ediff.el files.el hilit19.el ps-mode.el simula.el vera-mode.el === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2012-02-27 02:34:12 +0000 +++ lisp/ChangeLog 2012-02-27 03:20:00 +0000 @@ -3,7 +3,7 @@ * font-lock.el (font-lock-specified-p): Rename from font-lock-spec-present. Callers changed. -2012-02-27 Daniel Hackney (tiny change) +2012-02-27 Daniel Hackney * emacs-lisp/package.el (package-compute-transaction): Handle holding a package version to t in package-load-list. === modified file 'lisp/ldefs-boot.el' --- lisp/ldefs-boot.el 2012-02-09 07:48:22 +0000 +++ lisp/ldefs-boot.el 2012-02-27 03:20:00 +0000 @@ -5,7 +5,7 @@ ;;;### (autoloads (5x5-crack 5x5-crack-xor-mutate 5x5-crack-mutating-best ;;;;;; 5x5-crack-mutating-current 5x5-crack-randomly 5x5) "5x5" -;;;;;; "play/5x5.el" (20229 34587)) +;;;;;; "play/5x5.el" (20281 13989)) ;;; Generated autoloads from play/5x5.el (autoload '5x5 "5x5" "\ @@ -68,7 +68,7 @@ ;;;*** ;;;### (autoloads (ada-mode ada-add-extensions) "ada-mode" "progmodes/ada-mode.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/ada-mode.el (autoload 'ada-add-extensions "ada-mode" "\ @@ -88,7 +88,7 @@ ;;;*** ;;;### (autoloads (ada-header) "ada-stmt" "progmodes/ada-stmt.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/ada-stmt.el (autoload 'ada-header "ada-stmt" "\ @@ -99,7 +99,7 @@ ;;;*** ;;;### (autoloads (ada-find-file) "ada-xref" "progmodes/ada-xref.el" -;;;;;; (20236 7740)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/ada-xref.el (autoload 'ada-find-file "ada-xref" "\ @@ -114,7 +114,7 @@ ;;;;;; add-change-log-entry-other-window add-change-log-entry find-change-log ;;;;;; prompt-for-change-log-name add-log-mailing-address add-log-full-name ;;;;;; add-log-current-defun-function) "add-log" "vc/add-log.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from vc/add-log.el (put 'change-log-default-name 'safe-local-variable 'string-or-null-p) @@ -253,7 +253,7 @@ ;;;### (autoloads (defadvice ad-activate ad-add-advice ad-disable-advice ;;;;;; ad-enable-advice ad-default-compilation-action ad-redefinition-action) -;;;;;; "advice" "emacs-lisp/advice.el" (20229 34587)) +;;;;;; "advice" "emacs-lisp/advice.el" (20281 13989)) ;;; Generated autoloads from emacs-lisp/advice.el (defvar ad-redefinition-action 'warn "\ @@ -398,7 +398,7 @@ ;;;### (autoloads (align-newline-and-indent align-unhighlight-rule ;;;;;; align-highlight-rule align-current align-entire align-regexp -;;;;;; align) "align" "align.el" (20229 34587)) +;;;;;; align) "align" "align.el" (20281 13989)) ;;; Generated autoloads from align.el (autoload 'align "align" "\ @@ -489,7 +489,7 @@ ;;;### (autoloads (outlineify-sticky allout-mode allout-mode-p allout-auto-activation ;;;;;; allout-setup allout-auto-activation-helper) "allout" "allout.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from allout.el (autoload 'allout-auto-activation-helper "allout" "\ @@ -850,7 +850,7 @@ ;;;### (autoloads (allout-widgets-mode allout-widgets-auto-activation ;;;;;; allout-widgets-setup allout-widgets) "allout-widgets" "allout-widgets.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from allout-widgets.el (let ((loads (get 'allout-widgets 'custom-loads))) (if (member '"allout-widgets" loads) nil (put 'allout-widgets 'custom-loads (cons '"allout-widgets" loads)))) @@ -910,7 +910,7 @@ ;;;*** ;;;### (autoloads (ange-ftp-hook-function ange-ftp-reread-dir) "ange-ftp" -;;;;;; "net/ange-ftp.el" (20261 10951)) +;;;;;; "net/ange-ftp.el" (20295 19037)) ;;; Generated autoloads from net/ange-ftp.el (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) @@ -932,7 +932,7 @@ ;;;*** ;;;### (autoloads (animate-birthday-present animate-sequence animate-string) -;;;;;; "animate" "play/animate.el" (20229 34587)) +;;;;;; "animate" "play/animate.el" (20281 13989)) ;;; Generated autoloads from play/animate.el (autoload 'animate-string "animate" "\ @@ -965,7 +965,7 @@ ;;;*** ;;;### (autoloads (ansi-color-process-output ansi-color-for-comint-mode-on) -;;;;;; "ansi-color" "ansi-color.el" (20229 34587)) +;;;;;; "ansi-color" "ansi-color.el" (20288 65503)) ;;; Generated autoloads from ansi-color.el (autoload 'ansi-color-for-comint-mode-on "ansi-color" "\ @@ -991,7 +991,7 @@ ;;;*** ;;;### (autoloads (antlr-set-tabs antlr-mode antlr-show-makefile-rules) -;;;;;; "antlr-mode" "progmodes/antlr-mode.el" (20229 34587)) +;;;;;; "antlr-mode" "progmodes/antlr-mode.el" (20281 13989)) ;;; Generated autoloads from progmodes/antlr-mode.el (autoload 'antlr-show-makefile-rules "antlr-mode" "\ @@ -1027,7 +1027,7 @@ ;;;*** ;;;### (autoloads (appt-activate appt-add) "appt" "calendar/appt.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from calendar/appt.el (autoload 'appt-add "appt" "\ @@ -1050,7 +1050,7 @@ ;;;### (autoloads (apropos-documentation apropos-value apropos-library ;;;;;; apropos apropos-documentation-property apropos-command apropos-variable -;;;;;; apropos-read-pattern) "apropos" "apropos.el" (20229 34587)) +;;;;;; apropos-read-pattern) "apropos" "apropos.el" (20281 13989)) ;;; Generated autoloads from apropos.el (autoload 'apropos-read-pattern "apropos" "\ @@ -1158,8 +1158,8 @@ ;;;*** -;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from arc-mode.el (autoload 'archive-mode "arc-mode" "\ @@ -1179,7 +1179,7 @@ ;;;*** -;;;### (autoloads (array-mode) "array" "array.el" (20229 34587)) +;;;### (autoloads (array-mode) "array" "array.el" (20281 13989)) ;;; Generated autoloads from array.el (autoload 'array-mode "array" "\ @@ -1250,8 +1250,8 @@ ;;;*** -;;;### (autoloads (artist-mode) "artist" "textmodes/artist.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (artist-mode) "artist" "textmodes/artist.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from textmodes/artist.el (autoload 'artist-mode "artist" "\ @@ -1457,8 +1457,8 @@ ;;;*** -;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from progmodes/asm-mode.el (autoload 'asm-mode "asm-mode" "\ @@ -1486,7 +1486,7 @@ ;;;*** ;;;### (autoloads (auth-source-cache-expiry) "auth-source" "gnus/auth-source.el" -;;;;;; (20236 48737)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/auth-source.el (defvar auth-source-cache-expiry 7200 "\ @@ -1499,7 +1499,7 @@ ;;;*** ;;;### (autoloads (autoarg-kp-mode autoarg-mode) "autoarg" "autoarg.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from autoarg.el (defvar autoarg-mode nil "\ @@ -1560,7 +1560,7 @@ ;;;*** ;;;### (autoloads (autoconf-mode) "autoconf" "progmodes/autoconf.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/autoconf.el (autoload 'autoconf-mode "autoconf" "\ @@ -1571,7 +1571,7 @@ ;;;*** ;;;### (autoloads (auto-insert-mode define-auto-insert auto-insert) -;;;;;; "autoinsert" "autoinsert.el" (20229 34587)) +;;;;;; "autoinsert" "autoinsert.el" (20281 13989)) ;;; Generated autoloads from autoinsert.el (autoload 'auto-insert "autoinsert" "\ @@ -1611,7 +1611,7 @@ ;;;### (autoloads (batch-update-autoloads update-directory-autoloads ;;;;;; update-file-autoloads) "autoload" "emacs-lisp/autoload.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emacs-lisp/autoload.el (put 'generated-autoload-file 'safe-local-variable 'stringp) @@ -1662,7 +1662,7 @@ ;;;### (autoloads (global-auto-revert-mode turn-on-auto-revert-tail-mode ;;;;;; auto-revert-tail-mode turn-on-auto-revert-mode auto-revert-mode) -;;;;;; "autorevert" "autorevert.el" (20229 34587)) +;;;;;; "autorevert" "autorevert.el" (20281 13989)) ;;; Generated autoloads from autorevert.el (autoload 'auto-revert-mode "autorevert" "\ @@ -1751,7 +1751,7 @@ ;;;*** ;;;### (autoloads (mouse-avoidance-mode mouse-avoidance-mode) "avoid" -;;;;;; "avoid.el" (20229 34587)) +;;;;;; "avoid.el" (20281 13989)) ;;; Generated autoloads from avoid.el (defvar mouse-avoidance-mode nil "\ @@ -1792,7 +1792,7 @@ ;;;*** ;;;### (autoloads (display-battery-mode battery) "battery" "battery.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from battery.el (put 'battery-mode-line-string 'risky-local-variable t) @@ -1828,7 +1828,7 @@ ;;;*** ;;;### (autoloads (benchmark benchmark-run-compiled benchmark-run) -;;;;;; "benchmark" "emacs-lisp/benchmark.el" (20229 34587)) +;;;;;; "benchmark" "emacs-lisp/benchmark.el" (20281 13989)) ;;; Generated autoloads from emacs-lisp/benchmark.el (autoload 'benchmark-run "benchmark" "\ @@ -1861,7 +1861,7 @@ ;;;*** ;;;### (autoloads (bibtex-search-entry bibtex-mode bibtex-initialize) -;;;;;; "bibtex" "textmodes/bibtex.el" (20261 10951)) +;;;;;; "bibtex" "textmodes/bibtex.el" (20281 13989)) ;;; Generated autoloads from textmodes/bibtex.el (autoload 'bibtex-initialize "bibtex" "\ @@ -1950,7 +1950,7 @@ ;;;*** ;;;### (autoloads (bibtex-style-mode) "bibtex-style" "textmodes/bibtex-style.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from textmodes/bibtex-style.el (autoload 'bibtex-style-mode "bibtex-style" "\ @@ -1962,7 +1962,7 @@ ;;;### (autoloads (binhex-decode-region binhex-decode-region-external ;;;;;; binhex-decode-region-internal) "binhex" "mail/binhex.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from mail/binhex.el (defconst binhex-begin-line "^:...............................................................$" "\ @@ -1986,8 +1986,8 @@ ;;;*** -;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from play/blackbox.el (autoload 'blackbox "blackbox" "\ @@ -2110,7 +2110,7 @@ ;;;;;; bookmark-save bookmark-write bookmark-delete bookmark-insert ;;;;;; bookmark-rename bookmark-insert-location bookmark-relocate ;;;;;; bookmark-jump-other-window bookmark-jump bookmark-set) "bookmark" -;;;;;; "bookmark.el" (20229 34587)) +;;;;;; "bookmark.el" (20281 13989)) ;;; Generated autoloads from bookmark.el (define-key ctl-x-r-map "b" 'bookmark-jump) (define-key ctl-x-r-map "m" 'bookmark-set) @@ -2311,7 +2311,7 @@ ;;;;;; browse-url-xdg-open browse-url-at-mouse browse-url-at-point ;;;;;; browse-url browse-url-of-region browse-url-of-dired-file ;;;;;; browse-url-of-buffer browse-url-of-file browse-url-browser-function) -;;;;;; "browse-url" "net/browse-url.el" (20229 34587)) +;;;;;; "browse-url" "net/browse-url.el" (20281 13989)) ;;; Generated autoloads from net/browse-url.el (defvar browse-url-browser-function 'browse-url-default-browser "\ @@ -2380,9 +2380,11 @@ \(fn EVENT)" t nil) (autoload 'browse-url-xdg-open "browse-url" "\ - - -\(fn URL &optional NEW-WINDOW)" t nil) +Pass the specified URL to the \"xdg-open\" command. +xdg-open is a desktop utility that calls your preferred web browser. +The optional argument IGNORED is not used. + +\(fn URL &optional IGNORED)" t nil) (autoload 'browse-url-netscape "browse-url" "\ Ask the Netscape WWW browser to load URL. @@ -2624,8 +2626,8 @@ ;;;*** -;;;### (autoloads (snarf-bruces bruce) "bruce" "play/bruce.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (snarf-bruces bruce) "bruce" "play/bruce.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from play/bruce.el (autoload 'bruce "bruce" "\ @@ -2641,7 +2643,7 @@ ;;;*** ;;;### (autoloads (bs-show bs-customize bs-cycle-previous bs-cycle-next) -;;;;;; "bs" "bs.el" (20229 34587)) +;;;;;; "bs" "bs.el" (20297 43054)) ;;; Generated autoloads from bs.el (autoload 'bs-cycle-next "bs" "\ @@ -2681,7 +2683,7 @@ ;;;*** -;;;### (autoloads (bubbles) "bubbles" "play/bubbles.el" (20229 34587)) +;;;### (autoloads (bubbles) "bubbles" "play/bubbles.el" (20281 13989)) ;;; Generated autoloads from play/bubbles.el (autoload 'bubbles "bubbles" "\ @@ -2703,7 +2705,7 @@ ;;;*** ;;;### (autoloads (bug-reference-prog-mode bug-reference-mode) "bug-reference" -;;;;;; "progmodes/bug-reference.el" (20229 34587)) +;;;;;; "progmodes/bug-reference.el" (20281 13989)) ;;; Generated autoloads from progmodes/bug-reference.el (put 'bug-reference-url-format 'safe-local-variable (lambda (s) (or (stringp s) (and (symbolp s) (get s 'bug-reference-url-format))))) @@ -2727,7 +2729,7 @@ ;;;;;; batch-byte-compile-if-not-done display-call-tree byte-compile ;;;;;; compile-defun byte-compile-file byte-recompile-directory ;;;;;; byte-force-recompile byte-compile-enable-warning byte-compile-disable-warning) -;;;;;; "bytecomp" "emacs-lisp/bytecomp.el" (20230 55355)) +;;;;;; "bytecomp" "emacs-lisp/bytecomp.el" (20281 13989)) ;;; 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) @@ -2847,8 +2849,8 @@ ;;;*** -;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (20229 -;;;;;; 34587)) +;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from calendar/cal-china.el (put 'calendar-chinese-time-zone 'risky-local-variable t) @@ -2857,7 +2859,7 @@ ;;;*** -;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (20229 34587)) +;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (20281 13989)) ;;; Generated autoloads from calendar/cal-dst.el (put 'calendar-daylight-savings-starts 'risky-local-variable t) @@ -2869,7 +2871,7 @@ ;;;*** ;;;### (autoloads (calendar-hebrew-list-yahrzeits) "cal-hebrew" "calendar/cal-hebrew.el" -;;;;;; (20229 34587)) +;;;;;; (20285 4745)) ;;; Generated autoloads from calendar/cal-hebrew.el (autoload 'calendar-hebrew-list-yahrzeits "cal-hebrew" "\ @@ -2885,8 +2887,8 @@ ;;;### (autoloads (defmath calc-embedded-activate calc-embedded calc-grab-rectangle ;;;;;; calc-grab-region full-calc-keypad calc-keypad calc-eval quick-calc -;;;;;; full-calc calc calc-dispatch) "calc" "calc/calc.el" (20229 -;;;;;; 34587)) +;;;;;; full-calc calc calc-dispatch) "calc" "calc/calc.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from calc/calc.el (define-key ctl-x-map "*" 'calc-dispatch) @@ -2970,8 +2972,8 @@ ;;;*** -;;;### (autoloads (calc-undo) "calc-undo" "calc/calc-undo.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (calc-undo) "calc-undo" "calc/calc-undo.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from calc/calc-undo.el (autoload 'calc-undo "calc-undo" "\ @@ -2981,8 +2983,8 @@ ;;;*** -;;;### (autoloads (calculator) "calculator" "calculator.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (calculator) "calculator" "calculator.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from calculator.el (autoload 'calculator "calculator" "\ @@ -2993,8 +2995,8 @@ ;;;*** -;;;### (autoloads (calendar) "calendar" "calendar/calendar.el" (20230 -;;;;;; 18463)) +;;;### (autoloads (calendar) "calendar" "calendar/calendar.el" (20287 +;;;;;; 42957)) ;;; Generated autoloads from calendar/calendar.el (autoload 'calendar "calendar" "\ @@ -3038,7 +3040,7 @@ ;;;*** ;;;### (autoloads (canlock-verify canlock-insert-header) "canlock" -;;;;;; "gnus/canlock.el" (20229 34587)) +;;;;;; "gnus/canlock.el" (20281 13989)) ;;; Generated autoloads from gnus/canlock.el (autoload 'canlock-insert-header "canlock" "\ @@ -3056,7 +3058,7 @@ ;;;*** ;;;### (autoloads (capitalized-words-mode) "cap-words" "progmodes/cap-words.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/cap-words.el (autoload 'capitalized-words-mode "cap-words" "\ @@ -3095,15 +3097,15 @@ ;;;*** -;;;### (autoloads nil "cc-compat" "progmodes/cc-compat.el" (20229 -;;;;;; 34587)) +;;;### (autoloads nil "cc-compat" "progmodes/cc-compat.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from progmodes/cc-compat.el (put 'c-indent-level 'safe-local-variable 'integerp) ;;;*** ;;;### (autoloads (c-guess-basic-syntax) "cc-engine" "progmodes/cc-engine.el" -;;;;;; (20264 31805)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/cc-engine.el (autoload 'c-guess-basic-syntax "cc-engine" "\ @@ -3115,7 +3117,7 @@ ;;;### (autoloads (c-guess-install c-guess-region-no-install c-guess-region ;;;;;; c-guess-buffer-no-install c-guess-buffer c-guess-no-install -;;;;;; c-guess) "cc-guess" "progmodes/cc-guess.el" (20229 34587)) +;;;;;; c-guess) "cc-guess" "progmodes/cc-guess.el" (20281 13989)) ;;; Generated autoloads from progmodes/cc-guess.el (defvar c-guess-guessed-offsets-alist nil "\ @@ -3215,7 +3217,7 @@ ;;;### (autoloads (awk-mode pike-mode idl-mode java-mode objc-mode ;;;;;; c++-mode c-mode c-initialize-cc-mode) "cc-mode" "progmodes/cc-mode.el" -;;;;;; (20247 64512)) +;;;;;; (20293 51680)) ;;; Generated autoloads from progmodes/cc-mode.el (autoload 'c-initialize-cc-mode "cc-mode" "\ @@ -3392,7 +3394,7 @@ ;;;*** ;;;### (autoloads (c-set-offset c-add-style c-set-style) "cc-styles" -;;;;;; "progmodes/cc-styles.el" (20229 34587)) +;;;;;; "progmodes/cc-styles.el" (20281 13989)) ;;; Generated autoloads from progmodes/cc-styles.el (autoload 'c-set-style "cc-styles" "\ @@ -3443,7 +3445,7 @@ ;;;*** -;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (20229 34587)) +;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (20281 13989)) ;;; Generated autoloads from progmodes/cc-vars.el (put 'c-basic-offset 'safe-local-variable 'integerp) (put 'c-backslash-column 'safe-local-variable 'integerp) @@ -3453,7 +3455,7 @@ ;;;### (autoloads (ccl-execute-with-args check-ccl-program define-ccl-program ;;;;;; declare-ccl-program ccl-dump ccl-compile) "ccl" "international/ccl.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from international/ccl.el (autoload 'ccl-compile "ccl" "\ @@ -3714,7 +3716,7 @@ ;;;*** ;;;### (autoloads (cconv-closure-convert) "cconv" "emacs-lisp/cconv.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emacs-lisp/cconv.el (autoload 'cconv-closure-convert "cconv" "\ @@ -3729,7 +3731,7 @@ ;;;*** ;;;### (autoloads (cfengine-auto-mode cfengine2-mode cfengine3-mode) -;;;;;; "cfengine" "progmodes/cfengine.el" (20229 34587)) +;;;;;; "cfengine" "progmodes/cfengine.el" (20281 13989)) ;;; Generated autoloads from progmodes/cfengine.el (autoload 'cfengine3-mode "cfengine" "\ @@ -3759,7 +3761,7 @@ ;;;*** ;;;### (autoloads (check-declare-directory check-declare-file) "check-declare" -;;;;;; "emacs-lisp/check-declare.el" (20229 34587)) +;;;;;; "emacs-lisp/check-declare.el" (20281 13989)) ;;; Generated autoloads from emacs-lisp/check-declare.el (autoload 'check-declare-file "check-declare" "\ @@ -3784,7 +3786,7 @@ ;;;;;; checkdoc-comments checkdoc-continue checkdoc-start checkdoc-current-buffer ;;;;;; checkdoc-eval-current-buffer checkdoc-message-interactive ;;;;;; checkdoc-interactive checkdoc checkdoc-list-of-strings-p) -;;;;;; "checkdoc" "emacs-lisp/checkdoc.el" (20237 28610)) +;;;;;; "checkdoc" "emacs-lisp/checkdoc.el" (20281 13989)) ;;; Generated autoloads from emacs-lisp/checkdoc.el (put 'checkdoc-force-docstrings-flag 'safe-local-variable 'booleanp) (put 'checkdoc-force-history-flag 'safe-local-variable 'booleanp) @@ -3980,7 +3982,7 @@ ;;;### (autoloads (pre-write-encode-hz post-read-decode-hz encode-hz-buffer ;;;;;; encode-hz-region decode-hz-buffer decode-hz-region) "china-util" -;;;;;; "language/china-util.el" (20229 34587)) +;;;;;; "language/china-util.el" (20281 13989)) ;;; Generated autoloads from language/china-util.el (autoload 'decode-hz-region "china-util" "\ @@ -4018,7 +4020,7 @@ ;;;*** ;;;### (autoloads (command-history list-command-history repeat-matching-complex-command) -;;;;;; "chistory" "chistory.el" (20229 34587)) +;;;;;; "chistory" "chistory.el" (20281 13989)) ;;; Generated autoloads from chistory.el (autoload 'repeat-matching-complex-command "chistory" "\ @@ -4057,7 +4059,7 @@ ;;;*** -;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (20229 34587)) +;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (20281 13989)) ;;; Generated autoloads from emacs-lisp/cl.el (defvar custom-print-functions nil "\ @@ -4073,7 +4075,7 @@ ;;;*** ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "emacs-lisp/cl-indent.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emacs-lisp/cl-indent.el (autoload 'common-lisp-indent-function "cl-indent" "\ @@ -4152,7 +4154,7 @@ ;;;*** ;;;### (autoloads (c-macro-expand) "cmacexp" "progmodes/cmacexp.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/cmacexp.el (autoload 'c-macro-expand "cmacexp" "\ @@ -4172,8 +4174,8 @@ ;;;*** -;;;### (autoloads (run-scheme) "cmuscheme" "cmuscheme.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (run-scheme) "cmuscheme" "cmuscheme.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from cmuscheme.el (autoload 'run-scheme "cmuscheme" "\ @@ -4193,7 +4195,7 @@ ;;;*** -;;;### (autoloads (color-name-to-rgb) "color" "color.el" (20254 62269)) +;;;### (autoloads (color-name-to-rgb) "color" "color.el" (20281 13989)) ;;; Generated autoloads from color.el (autoload 'color-name-to-rgb "color" "\ @@ -4215,10 +4217,10 @@ ;;;### (autoloads (comint-redirect-results-list-from-process comint-redirect-results-list ;;;;;; comint-redirect-send-command-to-process comint-redirect-send-command ;;;;;; comint-run make-comint make-comint-in-buffer) "comint" "comint.el" -;;;;;; (20229 34587)) +;;;;;; (20288 56001)) ;;; Generated autoloads from comint.el -(defvar comint-output-filter-functions '(comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\ +(defvar comint-output-filter-functions '(ansi-color-process-output comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\ Functions to call after output is inserted into the buffer. One possible function is `comint-postoutput-scroll-to-bottom'. These functions get one argument, a string containing the text as originally @@ -4310,7 +4312,7 @@ ;;;*** ;;;### (autoloads (compare-windows) "compare-w" "vc/compare-w.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from vc/compare-w.el (autoload 'compare-windows "compare-w" "\ @@ -4347,8 +4349,8 @@ ;;;;;; compilation-shell-minor-mode compilation-mode compilation-start ;;;;;; compile compilation-disable-input compile-command compilation-search-path ;;;;;; compilation-ask-about-save compilation-window-height compilation-start-hook -;;;;;; compilation-mode-hook) "compile" "progmodes/compile.el" (20265 -;;;;;; 7997)) +;;;;;; compilation-mode-hook) "compile" "progmodes/compile.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from progmodes/compile.el (defvar compilation-mode-hook nil "\ @@ -4528,7 +4530,7 @@ ;;;*** ;;;### (autoloads (dynamic-completion-mode) "completion" "completion.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from completion.el (defvar dynamic-completion-mode nil "\ @@ -4541,7 +4543,10 @@ (custom-autoload 'dynamic-completion-mode "completion" nil) (autoload 'dynamic-completion-mode "completion" "\ -Enable dynamic word-completion. +Toggle dynamic word-completion on or off. +With a prefix argument ARG, enable the mode if ARG is positive, +and disable it otherwise. If called from Lisp, enable the mode +if ARG is omitted or nil. \(fn &optional ARG)" t nil) @@ -4550,7 +4555,7 @@ ;;;### (autoloads (conf-xdefaults-mode conf-ppd-mode conf-colon-mode ;;;;;; conf-space-keywords conf-space-mode conf-javaprop-mode conf-windows-mode ;;;;;; conf-unix-mode conf-mode) "conf-mode" "textmodes/conf-mode.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from textmodes/conf-mode.el (autoload 'conf-mode "conf-mode" "\ @@ -4706,7 +4711,7 @@ ;;;*** ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) -;;;;;; "cookie1" "play/cookie1.el" (20229 34587)) +;;;;;; "cookie1" "play/cookie1.el" (20281 13989)) ;;; Generated autoloads from play/cookie1.el (autoload 'cookie "cookie1" "\ @@ -4738,8 +4743,8 @@ ;;;*** ;;;### (autoloads (copyright-update-directory copyright copyright-fix-years -;;;;;; copyright-update) "copyright" "emacs-lisp/copyright.el" (20229 -;;;;;; 34587)) +;;;;;; copyright-update) "copyright" "emacs-lisp/copyright.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from emacs-lisp/copyright.el (put 'copyright-at-end-flag 'safe-local-variable 'booleanp) (put 'copyright-names-regexp 'safe-local-variable 'stringp) @@ -4778,7 +4783,7 @@ ;;;*** ;;;### (autoloads (cperl-perldoc-at-point cperl-perldoc cperl-mode) -;;;;;; "cperl-mode" "progmodes/cperl-mode.el" (20229 34587)) +;;;;;; "cperl-mode" "progmodes/cperl-mode.el" (20281 13989)) ;;; Generated autoloads from progmodes/cperl-mode.el (put 'cperl-indent-level 'safe-local-variable 'integerp) (put 'cperl-brace-offset 'safe-local-variable 'integerp) @@ -4977,7 +4982,7 @@ ;;;*** ;;;### (autoloads (cpp-parse-edit cpp-highlight-buffer) "cpp" "progmodes/cpp.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/cpp.el (autoload 'cpp-highlight-buffer "cpp" "\ @@ -4996,7 +5001,7 @@ ;;;*** ;;;### (autoloads (crisp-mode crisp-mode) "crisp" "emulation/crisp.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emulation/crisp.el (defvar crisp-mode nil "\ @@ -5022,7 +5027,7 @@ ;;;*** ;;;### (autoloads (completing-read-multiple) "crm" "emacs-lisp/crm.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emacs-lisp/crm.el (autoload 'completing-read-multiple "crm" "\ @@ -5057,8 +5062,8 @@ ;;;*** -;;;### (autoloads (css-mode) "css-mode" "textmodes/css-mode.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (css-mode) "css-mode" "textmodes/css-mode.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from textmodes/css-mode.el (autoload 'css-mode "css-mode" "\ @@ -5069,7 +5074,7 @@ ;;;*** ;;;### (autoloads (cua-selection-mode cua-mode) "cua-base" "emulation/cua-base.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emulation/cua-base.el (defvar cua-mode nil "\ @@ -5129,7 +5134,7 @@ ;;;;;; customize-mode customize customize-push-and-save customize-save-variable ;;;;;; customize-set-variable customize-set-value custom-menu-sort-alphabetically ;;;;;; custom-buffer-sort-alphabetically custom-browse-sort-alphabetically) -;;;;;; "cus-edit" "cus-edit.el" (20259 55615)) +;;;;;; "cus-edit" "cus-edit.el" (20281 13989)) ;;; Generated autoloads from cus-edit.el (defvar custom-browse-sort-alphabetically nil "\ @@ -5445,8 +5450,8 @@ ;;;*** ;;;### (autoloads (customize-themes describe-theme custom-theme-visit-theme -;;;;;; customize-create-theme) "cus-theme" "cus-theme.el" (20229 -;;;;;; 34587)) +;;;;;; customize-create-theme) "cus-theme" "cus-theme.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from cus-theme.el (autoload 'customize-create-theme "cus-theme" "\ @@ -5478,7 +5483,7 @@ ;;;*** ;;;### (autoloads (cvs-status-mode) "cvs-status" "vc/cvs-status.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from vc/cvs-status.el (autoload 'cvs-status-mode "cvs-status" "\ @@ -5489,7 +5494,7 @@ ;;;*** ;;;### (autoloads (global-cwarn-mode turn-on-cwarn-mode cwarn-mode) -;;;;;; "cwarn" "progmodes/cwarn.el" (20263 52669)) +;;;;;; "cwarn" "progmodes/cwarn.el" (20281 13989)) ;;; Generated autoloads from progmodes/cwarn.el (autoload 'cwarn-mode "cwarn" "\ @@ -5501,7 +5506,9 @@ be included in the variable `cwarn-configuration'. By default C and C++ modes are included. -With ARG, turn CWarn mode on if and only if arg is positive. +With a prefix argument ARG, enable the mode if ARG is positive, +and disable it otherwise. If called from Lisp, enable the mode +if ARG is omitted or nil. \(fn &optional ARG)" t nil) @@ -5538,7 +5545,7 @@ ;;;### (autoloads (standard-display-cyrillic-translit cyrillic-encode-alternativnyj-char ;;;;;; cyrillic-encode-koi8-r-char) "cyril-util" "language/cyril-util.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from language/cyril-util.el (autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\ @@ -5567,7 +5574,7 @@ ;;;*** ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "dabbrev.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from dabbrev.el (put 'dabbrev-case-fold-search 'risky-local-variable t) (put 'dabbrev-case-replace 'risky-local-variable t) @@ -5614,7 +5621,7 @@ ;;;*** ;;;### (autoloads (data-debug-new-buffer) "data-debug" "cedet/data-debug.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from cedet/data-debug.el (autoload 'data-debug-new-buffer "data-debug" "\ @@ -5624,8 +5631,8 @@ ;;;*** -;;;### (autoloads (dbus-handle-event) "dbus" "net/dbus.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (dbus-handle-event) "dbus" "net/dbus.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from net/dbus.el (autoload 'dbus-handle-event "dbus" "\ @@ -5638,8 +5645,8 @@ ;;;*** -;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from progmodes/dcl-mode.el (autoload 'dcl-mode "dcl-mode" "\ @@ -5766,7 +5773,7 @@ ;;;*** ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" -;;;;;; "emacs-lisp/debug.el" (20229 34587)) +;;;;;; "emacs-lisp/debug.el" (20281 13989)) ;;; Generated autoloads from emacs-lisp/debug.el (setq debugger 'debug) @@ -5810,7 +5817,7 @@ ;;;*** ;;;### (autoloads (decipher-mode decipher) "decipher" "play/decipher.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from play/decipher.el (autoload 'decipher "decipher" "\ @@ -5839,8 +5846,8 @@ ;;;*** ;;;### (autoloads (delimit-columns-rectangle delimit-columns-region -;;;;;; delimit-columns-customize) "delim-col" "delim-col.el" (20229 -;;;;;; 34587)) +;;;;;; delimit-columns-customize) "delim-col" "delim-col.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from delim-col.el (autoload 'delimit-columns-customize "delim-col" "\ @@ -5864,8 +5871,8 @@ ;;;*** -;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from progmodes/delphi.el (autoload 'delphi-mode "delphi" "\ @@ -5916,8 +5923,8 @@ ;;;*** -;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from delsel.el (defalias 'pending-delete-mode 'delete-selection-mode) @@ -5947,7 +5954,7 @@ ;;;*** ;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) -;;;;;; "derived" "emacs-lisp/derived.el" (20229 34587)) +;;;;;; "derived" "emacs-lisp/derived.el" (20281 13989)) ;;; Generated autoloads from emacs-lisp/derived.el (autoload 'define-derived-mode "derived" "\ @@ -6014,7 +6021,7 @@ ;;;*** ;;;### (autoloads (describe-char describe-text-properties) "descr-text" -;;;;;; "descr-text.el" (20259 55615)) +;;;;;; "descr-text.el" (20281 13989)) ;;; Generated autoloads from descr-text.el (autoload 'describe-text-properties "descr-text" "\ @@ -6051,7 +6058,7 @@ ;;;### (autoloads (desktop-revert desktop-save-in-desktop-dir desktop-change-dir ;;;;;; desktop-load-default desktop-read desktop-remove desktop-save ;;;;;; desktop-clear desktop-locals-to-save desktop-save-mode) "desktop" -;;;;;; "desktop.el" (20229 34587)) +;;;;;; "desktop.el" (20281 13989)) ;;; Generated autoloads from desktop.el (defvar desktop-save-mode nil "\ @@ -6238,7 +6245,7 @@ ;;;### (autoloads (gnus-article-outlook-deuglify-article gnus-outlook-deuglify-article ;;;;;; gnus-article-outlook-repair-attribution gnus-article-outlook-unwrap-lines) -;;;;;; "deuglify" "gnus/deuglify.el" (20229 34587)) +;;;;;; "deuglify" "gnus/deuglify.el" (20281 13989)) ;;; Generated autoloads from gnus/deuglify.el (autoload 'gnus-article-outlook-unwrap-lines "deuglify" "\ @@ -6271,7 +6278,7 @@ ;;;*** ;;;### (autoloads (diary-mode diary-mail-entries diary) "diary-lib" -;;;;;; "calendar/diary-lib.el" (20229 34587)) +;;;;;; "calendar/diary-lib.el" (20287 42957)) ;;; Generated autoloads from calendar/diary-lib.el (autoload 'diary "diary-lib" "\ @@ -6314,7 +6321,7 @@ ;;;*** ;;;### (autoloads (diff-buffer-with-file diff-backup diff diff-command -;;;;;; diff-switches) "diff" "vc/diff.el" (20229 34587)) +;;;;;; diff-switches) "diff" "vc/diff.el" (20281 13989)) ;;; Generated autoloads from vc/diff.el (defvar diff-switches (purecopy "-c") "\ @@ -6358,7 +6365,7 @@ ;;;*** ;;;### (autoloads (diff-minor-mode diff-mode) "diff-mode" "vc/diff-mode.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from vc/diff-mode.el (autoload 'diff-mode "diff-mode" "\ @@ -6390,7 +6397,7 @@ ;;;*** -;;;### (autoloads (dig) "dig" "net/dig.el" (20229 34587)) +;;;### (autoloads (dig) "dig" "net/dig.el" (20281 13989)) ;;; Generated autoloads from net/dig.el (autoload 'dig "dig" "\ @@ -6402,7 +6409,7 @@ ;;;*** ;;;### (autoloads (dired-mode dired-noselect dired-other-frame dired-other-window -;;;;;; dired dired-listing-switches) "dired" "dired.el" (20259 55615)) +;;;;;; dired dired-listing-switches) "dired" "dired.el" (20296 18557)) ;;; Generated autoloads from dired.el (defvar dired-listing-switches (purecopy "-al") "\ @@ -6524,7 +6531,7 @@ ;;;*** ;;;### (autoloads (dirtrack dirtrack-mode) "dirtrack" "dirtrack.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from dirtrack.el (autoload 'dirtrack-mode "dirtrack" "\ @@ -6554,8 +6561,8 @@ ;;;*** -;;;### (autoloads (disassemble) "disass" "emacs-lisp/disass.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (disassemble) "disass" "emacs-lisp/disass.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from emacs-lisp/disass.el (autoload 'disassemble "disass" "\ @@ -6574,7 +6581,7 @@ ;;;;;; standard-display-g1 standard-display-ascii standard-display-default ;;;;;; standard-display-8bit describe-current-display-table describe-display-table ;;;;;; set-display-table-slot display-table-slot make-display-table) -;;;;;; "disp-table" "disp-table.el" (20229 34587)) +;;;;;; "disp-table" "disp-table.el" (20281 13989)) ;;; Generated autoloads from disp-table.el (autoload 'make-display-table "disp-table" "\ @@ -6696,7 +6703,7 @@ ;;;*** ;;;### (autoloads (dissociated-press) "dissociate" "play/dissociate.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from play/dissociate.el (autoload 'dissociated-press "dissociate" "\ @@ -6712,7 +6719,7 @@ ;;;*** -;;;### (autoloads (dnd-protocol-alist) "dnd" "dnd.el" (20229 34587)) +;;;### (autoloads (dnd-protocol-alist) "dnd" "dnd.el" (20281 13989)) ;;; Generated autoloads from dnd.el (defvar dnd-protocol-alist `((,(purecopy "^file:///") . dnd-open-local-file) (,(purecopy "^file://") . dnd-open-file) (,(purecopy "^file:") . dnd-open-local-file) (,(purecopy "^\\(https?\\|ftp\\|file\\|nfs\\)://") . dnd-open-file)) "\ @@ -6733,7 +6740,7 @@ ;;;*** ;;;### (autoloads (dns-mode-soa-increment-serial dns-mode) "dns-mode" -;;;;;; "textmodes/dns-mode.el" (20229 34587)) +;;;;;; "textmodes/dns-mode.el" (20281 13989)) ;;; Generated autoloads from textmodes/dns-mode.el (autoload 'dns-mode "dns-mode" "\ @@ -6757,8 +6764,8 @@ ;;;*** ;;;### (autoloads (doc-view-bookmark-jump doc-view-minor-mode doc-view-mode-maybe -;;;;;; doc-view-mode doc-view-mode-p) "doc-view" "doc-view.el" (20229 -;;;;;; 34587)) +;;;;;; doc-view-mode doc-view-mode-p) "doc-view" "doc-view.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from doc-view.el (autoload 'doc-view-mode-p "doc-view" "\ @@ -6804,7 +6811,7 @@ ;;;*** -;;;### (autoloads (doctor) "doctor" "play/doctor.el" (20230 15291)) +;;;### (autoloads (doctor) "doctor" "play/doctor.el" (20281 13989)) ;;; Generated autoloads from play/doctor.el (autoload 'doctor "doctor" "\ @@ -6814,7 +6821,7 @@ ;;;*** -;;;### (autoloads (double-mode) "double" "double.el" (20229 34587)) +;;;### (autoloads (double-mode) "double" "double.el" (20281 13989)) ;;; Generated autoloads from double.el (autoload 'double-mode "double" "\ @@ -6830,7 +6837,7 @@ ;;;*** -;;;### (autoloads (dunnet) "dunnet" "play/dunnet.el" (20229 34587)) +;;;### (autoloads (dunnet) "dunnet" "play/dunnet.el" (20281 13989)) ;;; Generated autoloads from play/dunnet.el (autoload 'dunnet "dunnet" "\ @@ -6842,7 +6849,7 @@ ;;;### (autoloads (easy-mmode-defsyntax easy-mmode-defmap easy-mmode-define-keymap ;;;;;; define-globalized-minor-mode define-minor-mode) "easy-mmode" -;;;;;; "emacs-lisp/easy-mmode.el" (20264 40969)) +;;;;;; "emacs-lisp/easy-mmode.el" (20295 19037)) ;;; Generated autoloads from emacs-lisp/easy-mmode.el (defalias 'easy-mmode-define-minor-mode 'define-minor-mode) @@ -6853,6 +6860,14 @@ MODE (you can override this with the :variable keyword, see below). DOC is the documentation for the mode toggle command. +The defined mode command takes one optional (prefix) argument. +Interactively with no prefix argument it toggles the mode. +With a prefix argument, it enables the mode if the argument is +positive and otherwise disables it. When called from Lisp, it +enables the mode if the argument is omitted or nil, and toggles +the mode if the argument is `toggle'. If DOC is nil this +function adds a basic doc-string stating these facts. + Optional INIT-VALUE is the initial value of the mode's variable. Optional LIGHTER is displayed in the modeline when the mode is on. Optional KEYMAP is the default keymap bound to the mode keymap. @@ -6890,6 +6905,8 @@ the new state, and sets it. If you specify a :variable, this function does not define a MODE variable (nor any of the terms used in :variable). +:after-hook A single lisp form which is evaluated after the mode hooks + have been run. It should not be quoted. For example, you could write (define-minor-mode foo-mode \"If enabled, foo on you!\" @@ -6958,8 +6975,8 @@ ;;;*** ;;;### (autoloads (easy-menu-change easy-menu-create-menu easy-menu-do-define -;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (20229 -;;;;;; 34587)) +;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from emacs-lisp/easymenu.el (autoload 'easy-menu-define "easymenu" "\ @@ -7113,7 +7130,7 @@ ;;;;;; ebnf-eps-file ebnf-eps-directory ebnf-spool-region ebnf-spool-buffer ;;;;;; ebnf-spool-file ebnf-spool-directory ebnf-print-region ebnf-print-buffer ;;;;;; ebnf-print-file ebnf-print-directory ebnf-customize) "ebnf2ps" -;;;;;; "progmodes/ebnf2ps.el" (20229 34587)) +;;;;;; "progmodes/ebnf2ps.el" (20281 13989)) ;;; Generated autoloads from progmodes/ebnf2ps.el (autoload 'ebnf-customize "ebnf2ps" "\ @@ -7387,8 +7404,8 @@ ;;;;;; ebrowse-tags-find-declaration-other-window ebrowse-tags-find-definition ;;;;;; ebrowse-tags-view-definition ebrowse-tags-find-declaration ;;;;;; ebrowse-tags-view-declaration ebrowse-member-mode ebrowse-electric-choose-tree -;;;;;; ebrowse-tree-mode) "ebrowse" "progmodes/ebrowse.el" (20229 -;;;;;; 34587)) +;;;;;; ebrowse-tree-mode) "ebrowse" "progmodes/ebrowse.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from progmodes/ebrowse.el (autoload 'ebrowse-tree-mode "ebrowse" "\ @@ -7537,7 +7554,7 @@ ;;;*** ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "ebuff-menu.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from ebuff-menu.el (autoload 'electric-buffer-list "ebuff-menu" "\ @@ -7562,7 +7579,7 @@ ;;;*** ;;;### (autoloads (Electric-command-history-redo-expression) "echistory" -;;;;;; "echistory.el" (20229 34587)) +;;;;;; "echistory.el" (20281 13989)) ;;; Generated autoloads from echistory.el (autoload 'Electric-command-history-redo-expression "echistory" "\ @@ -7574,7 +7591,7 @@ ;;;*** ;;;### (autoloads (ecomplete-setup) "ecomplete" "gnus/ecomplete.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/ecomplete.el (autoload 'ecomplete-setup "ecomplete" "\ @@ -7584,7 +7601,7 @@ ;;;*** -;;;### (autoloads (global-ede-mode) "ede" "cedet/ede.el" (20240 47305)) +;;;### (autoloads (global-ede-mode) "ede" "cedet/ede.el" (20281 13989)) ;;; Generated autoloads from cedet/ede.el (defvar global-ede-mode nil "\ @@ -7611,7 +7628,7 @@ ;;;### (autoloads (edebug-all-forms edebug-all-defs edebug-eval-top-level-form ;;;;;; edebug-basic-spec edebug-all-forms edebug-all-defs) "edebug" -;;;;;; "emacs-lisp/edebug.el" (20229 34587)) +;;;;;; "emacs-lisp/edebug.el" (20281 13989)) ;;; Generated autoloads from emacs-lisp/edebug.el (defvar edebug-all-defs nil "\ @@ -7684,7 +7701,7 @@ ;;;;;; ediff-merge-directories-with-ancestor ediff-merge-directories ;;;;;; ediff-directories3 ediff-directory-revisions ediff-directories ;;;;;; ediff-buffers3 ediff-buffers ediff-backup ediff-current-file -;;;;;; ediff-files3 ediff-files) "ediff" "vc/ediff.el" (20229 34587)) +;;;;;; ediff-files3 ediff-files) "ediff" "vc/ediff.el" (20281 13989)) ;;; Generated autoloads from vc/ediff.el (autoload 'ediff-files "ediff" "\ @@ -7916,7 +7933,7 @@ ;;;*** ;;;### (autoloads (ediff-customize) "ediff-help" "vc/ediff-help.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from vc/ediff-help.el (autoload 'ediff-customize "ediff-help" "\ @@ -7927,7 +7944,7 @@ ;;;*** ;;;### (autoloads (ediff-show-registry) "ediff-mult" "vc/ediff-mult.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from vc/ediff-mult.el (autoload 'ediff-show-registry "ediff-mult" "\ @@ -7940,7 +7957,7 @@ ;;;*** ;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe) -;;;;;; "ediff-util" "vc/ediff-util.el" (20229 34587)) +;;;;;; "ediff-util" "vc/ediff-util.el" (20281 13989)) ;;; Generated autoloads from vc/ediff-util.el (autoload 'ediff-toggle-multiframe "ediff-util" "\ @@ -7961,7 +7978,7 @@ ;;;### (autoloads (format-kbd-macro read-kbd-macro edit-named-kbd-macro ;;;;;; edit-last-kbd-macro edit-kbd-macro) "edmacro" "edmacro.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from edmacro.el (autoload 'edit-kbd-macro "edmacro" "\ @@ -8010,7 +8027,7 @@ ;;;*** ;;;### (autoloads (edt-emulation-on edt-set-scroll-margins) "edt" -;;;;;; "emulation/edt.el" (20229 34587)) +;;;;;; "emulation/edt.el" (20281 13989)) ;;; Generated autoloads from emulation/edt.el (autoload 'edt-set-scroll-margins "edt" "\ @@ -8028,7 +8045,7 @@ ;;;*** ;;;### (autoloads (electric-helpify with-electric-help) "ehelp" "ehelp.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from ehelp.el (autoload 'with-electric-help "ehelp" "\ @@ -8065,7 +8082,7 @@ ;;;*** ;;;### (autoloads (turn-on-eldoc-mode eldoc-mode eldoc-minor-mode-string) -;;;;;; "eldoc" "emacs-lisp/eldoc.el" (20229 34587)) +;;;;;; "eldoc" "emacs-lisp/eldoc.el" (20281 13989)) ;;; Generated autoloads from emacs-lisp/eldoc.el (defvar eldoc-minor-mode-string (purecopy " ElDoc") "\ @@ -8112,7 +8129,7 @@ ;;;*** ;;;### (autoloads (electric-layout-mode electric-pair-mode electric-indent-mode) -;;;;;; "electric" "electric.el" (20229 34587)) +;;;;;; "electric" "electric.el" (20281 13989)) ;;; Generated autoloads from electric.el (defvar electric-indent-chars '(10) "\ @@ -8133,9 +8150,9 @@ positive, and disable it otherwise. If called from Lisp, enable the mode if ARG is omitted or nil. -Electric Indent mode is a global minor mode. When enabled, -reindentation is triggered whenever you insert a character listed -in `electric-indent-chars'. +This is a global minor mode. When enabled, it reindents whenever +the hook `electric-indent-functions' returns non-nil, or you +insert a character from `electric-indent-chars'. \(fn &optional ARG)" t nil) @@ -8158,6 +8175,8 @@ an open parenthesis automatically inserts the corresponding closing parenthesis. (Likewise for brackets, etc.) +See options `electric-pair-pairs' and `electric-pair-skip-self'. + \(fn &optional ARG)" t nil) (defvar electric-layout-mode nil "\ @@ -8171,13 +8190,17 @@ (autoload 'electric-layout-mode "electric" "\ Automatically insert newlines around some chars. +With a prefix argument ARG, enable Electric Layout mode if ARG is +positive, and disable it otherwise. If called from Lisp, enable +the mode if ARG is omitted or nil. +The variable `electric-layout-rules' says when and how to insert newlines. \(fn &optional ARG)" t nil) ;;;*** -;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from elide-head.el (autoload 'elide-head "elide-head" "\ @@ -8194,7 +8217,7 @@ ;;;### (autoloads (elint-initialize elint-defun elint-current-buffer ;;;;;; elint-directory elint-file) "elint" "emacs-lisp/elint.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emacs-lisp/elint.el (autoload 'elint-file "elint" "\ @@ -8230,8 +8253,8 @@ ;;;*** ;;;### (autoloads (elp-results elp-instrument-package elp-instrument-list -;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (20229 -;;;;;; 34587)) +;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from emacs-lisp/elp.el (autoload 'elp-instrument-function "elp" "\ @@ -8266,7 +8289,7 @@ ;;;*** ;;;### (autoloads (emacs-lock-mode) "emacs-lock" "emacs-lock.el" -;;;;;; (20237 28610)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emacs-lock.el (autoload 'emacs-lock-mode "emacs-lock" "\ @@ -8294,7 +8317,7 @@ ;;;*** ;;;### (autoloads (report-emacs-bug-query-existing-bugs report-emacs-bug) -;;;;;; "emacsbug" "mail/emacsbug.el" (20259 55615)) +;;;;;; "emacsbug" "mail/emacsbug.el" (20281 13989)) ;;; Generated autoloads from mail/emacsbug.el (autoload 'report-emacs-bug "emacsbug" "\ @@ -8315,7 +8338,7 @@ ;;;;;; emerge-revisions emerge-files-with-ancestor-remote emerge-files-remote ;;;;;; emerge-files-with-ancestor-command emerge-files-command emerge-buffers-with-ancestor ;;;;;; emerge-buffers emerge-files-with-ancestor emerge-files) "emerge" -;;;;;; "vc/emerge.el" (20204 31303)) +;;;;;; "vc/emerge.el" (20292 33249)) ;;; Generated autoloads from vc/emerge.el (autoload 'emerge-files "emerge" "\ @@ -8376,13 +8399,18 @@ ;;;*** ;;;### (autoloads (enriched-decode enriched-encode enriched-mode) -;;;;;; "enriched" "textmodes/enriched.el" (20229 34587)) +;;;;;; "enriched" "textmodes/enriched.el" (20281 13989)) ;;; Generated autoloads from textmodes/enriched.el (autoload 'enriched-mode "enriched" "\ Minor mode for editing text/enriched files. These are files with embedded formatting information in the MIME standard text/enriched format. + +With a prefix argument ARG, enable the mode if ARG is positive, +and disable it otherwise. If called from Lisp, enable the mode +if ARG is omitted or nil. + Turning the mode on or off runs `enriched-mode-hook'. More information about Enriched mode is available in the file @@ -8411,8 +8439,8 @@ ;;;;;; epa-sign-region epa-verify-cleartext-in-region epa-verify-region ;;;;;; epa-decrypt-armor-in-region epa-decrypt-region epa-encrypt-file ;;;;;; epa-sign-file epa-verify-file epa-decrypt-file epa-select-keys -;;;;;; epa-list-secret-keys epa-list-keys) "epa" "epa.el" (20229 -;;;;;; 34587)) +;;;;;; epa-list-secret-keys epa-list-keys) "epa" "epa.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from epa.el (autoload 'epa-list-keys "epa" "\ @@ -8590,7 +8618,7 @@ ;;;*** ;;;### (autoloads (epa-dired-do-encrypt epa-dired-do-sign epa-dired-do-verify -;;;;;; epa-dired-do-decrypt) "epa-dired" "epa-dired.el" (20229 34587)) +;;;;;; epa-dired-do-decrypt) "epa-dired" "epa-dired.el" (20281 13989)) ;;; Generated autoloads from epa-dired.el (autoload 'epa-dired-do-decrypt "epa-dired" "\ @@ -8616,7 +8644,7 @@ ;;;*** ;;;### (autoloads (epa-file-disable epa-file-enable epa-file-handler) -;;;;;; "epa-file" "epa-file.el" (20229 34587)) +;;;;;; "epa-file" "epa-file.el" (20281 13989)) ;;; Generated autoloads from epa-file.el (autoload 'epa-file-handler "epa-file" "\ @@ -8638,11 +8666,14 @@ ;;;### (autoloads (epa-global-mail-mode epa-mail-import-keys epa-mail-encrypt ;;;;;; epa-mail-sign epa-mail-verify epa-mail-decrypt epa-mail-mode) -;;;;;; "epa-mail" "epa-mail.el" (20229 34587)) +;;;;;; "epa-mail" "epa-mail.el" (20281 13989)) ;;; Generated autoloads from epa-mail.el (autoload 'epa-mail-mode "epa-mail" "\ A minor-mode for composing encrypted/clearsigned mails. +With a prefix argument ARG, enable the mode if ARG is positive, +and disable it otherwise. If called from Lisp, enable the mode +if ARG is omitted or nil. \(fn &optional ARG)" t nil) @@ -8697,12 +8728,15 @@ (autoload 'epa-global-mail-mode "epa-mail" "\ Minor mode to hook EasyPG into Mail mode. +With a prefix argument ARG, enable the mode if ARG is positive, +and disable it otherwise. If called from Lisp, enable the mode +if ARG is omitted or nil. \(fn &optional ARG)" t nil) ;;;*** -;;;### (autoloads (epg-make-context) "epg" "epg.el" (20241 25657)) +;;;### (autoloads (epg-make-context) "epg" "epg.el" (20281 13989)) ;;; Generated autoloads from epg.el (autoload 'epg-make-context "epg" "\ @@ -8713,7 +8747,7 @@ ;;;*** ;;;### (autoloads (epg-expand-group epg-check-configuration epg-configuration) -;;;;;; "epg-config" "epg-config.el" (20229 34587)) +;;;;;; "epg-config" "epg-config.el" (20281 13989)) ;;; Generated autoloads from epg-config.el (autoload 'epg-configuration "epg-config" "\ @@ -8734,7 +8768,7 @@ ;;;*** ;;;### (autoloads (erc-handle-irc-url erc-tls erc erc-select-read-args) -;;;;;; "erc" "erc/erc.el" (20230 55355)) +;;;;;; "erc" "erc/erc.el" (20281 13989)) ;;; Generated autoloads from erc/erc.el (autoload 'erc-select-read-args "erc" "\ @@ -8782,33 +8816,33 @@ ;;;*** -;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (20229 -;;;;;; 34587)) +;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from erc/erc-autoaway.el (autoload 'erc-autoaway-mode "erc-autoaway") ;;;*** -;;;### (autoloads nil "erc-button" "erc/erc-button.el" (20229 34587)) +;;;### (autoloads nil "erc-button" "erc/erc-button.el" (20281 13989)) ;;; Generated autoloads from erc/erc-button.el (autoload 'erc-button-mode "erc-button" nil t) ;;;*** -;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (20229 34587)) +;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (20281 13989)) ;;; Generated autoloads from erc/erc-capab.el (autoload 'erc-capab-identify-mode "erc-capab" nil t) ;;;*** -;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (20229 34587)) +;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (20281 13989)) ;;; Generated autoloads from erc/erc-compat.el (autoload 'erc-define-minor-mode "erc-compat") ;;;*** ;;;### (autoloads (erc-ctcp-query-DCC pcomplete/erc-mode/DCC erc-cmd-DCC) -;;;;;; "erc-dcc" "erc/erc-dcc.el" (20229 34587)) +;;;;;; "erc-dcc" "erc/erc-dcc.el" (20281 13989)) ;;; Generated autoloads from erc/erc-dcc.el (autoload 'erc-dcc-mode "erc-dcc") @@ -8841,7 +8875,7 @@ ;;;;;; erc-ezb-add-session erc-ezb-end-of-session-list erc-ezb-init-session-list ;;;;;; erc-ezb-identify erc-ezb-notice-autodetect erc-ezb-lookup-action ;;;;;; erc-ezb-get-login erc-cmd-ezb) "erc-ezbounce" "erc/erc-ezbounce.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from erc/erc-ezbounce.el (autoload 'erc-cmd-ezb "erc-ezbounce" "\ @@ -8903,8 +8937,8 @@ ;;;*** -;;;### (autoloads (erc-fill) "erc-fill" "erc/erc-fill.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (erc-fill) "erc-fill" "erc/erc-fill.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from erc/erc-fill.el (autoload 'erc-fill-mode "erc-fill" nil t) @@ -8917,7 +8951,7 @@ ;;;*** ;;;### (autoloads (erc-identd-stop erc-identd-start) "erc-identd" -;;;;;; "erc/erc-identd.el" (20229 34587)) +;;;;;; "erc/erc-identd.el" (20281 13989)) ;;; Generated autoloads from erc/erc-identd.el (autoload 'erc-identd-mode "erc-identd") @@ -8939,7 +8973,7 @@ ;;;*** ;;;### (autoloads (erc-create-imenu-index) "erc-imenu" "erc/erc-imenu.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from erc/erc-imenu.el (autoload 'erc-create-imenu-index "erc-imenu" "\ @@ -8949,20 +8983,20 @@ ;;;*** -;;;### (autoloads nil "erc-join" "erc/erc-join.el" (20229 34587)) +;;;### (autoloads nil "erc-join" "erc/erc-join.el" (20281 13989)) ;;; Generated autoloads from erc/erc-join.el (autoload 'erc-autojoin-mode "erc-join" nil t) ;;;*** -;;;### (autoloads nil "erc-list" "erc/erc-list.el" (20229 34587)) +;;;### (autoloads nil "erc-list" "erc/erc-list.el" (20281 13989)) ;;; Generated autoloads from erc/erc-list.el (autoload 'erc-list-mode "erc-list") ;;;*** ;;;### (autoloads (erc-save-buffer-in-logs erc-logging-enabled) "erc-log" -;;;;;; "erc/erc-log.el" (20229 34587)) +;;;;;; "erc/erc-log.el" (20281 13989)) ;;; Generated autoloads from erc/erc-log.el (autoload 'erc-log-mode "erc-log" nil t) @@ -8994,7 +9028,7 @@ ;;;### (autoloads (erc-delete-dangerous-host erc-add-dangerous-host ;;;;;; erc-delete-keyword erc-add-keyword erc-delete-fool erc-add-fool ;;;;;; erc-delete-pal erc-add-pal) "erc-match" "erc/erc-match.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from erc/erc-match.el (autoload 'erc-match-mode "erc-match") @@ -9040,14 +9074,14 @@ ;;;*** -;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (20229 34587)) +;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (20281 13989)) ;;; Generated autoloads from erc/erc-menu.el (autoload 'erc-menu-mode "erc-menu" nil t) ;;;*** ;;;### (autoloads (erc-cmd-WHOLEFT) "erc-netsplit" "erc/erc-netsplit.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from erc/erc-netsplit.el (autoload 'erc-netsplit-mode "erc-netsplit") @@ -9059,7 +9093,7 @@ ;;;*** ;;;### (autoloads (erc-server-select erc-determine-network) "erc-networks" -;;;;;; "erc/erc-networks.el" (20229 34587)) +;;;;;; "erc/erc-networks.el" (20281 13989)) ;;; Generated autoloads from erc/erc-networks.el (autoload 'erc-determine-network "erc-networks" "\ @@ -9077,7 +9111,7 @@ ;;;*** ;;;### (autoloads (pcomplete/erc-mode/NOTIFY erc-cmd-NOTIFY) "erc-notify" -;;;;;; "erc/erc-notify.el" (20229 34587)) +;;;;;; "erc/erc-notify.el" (20281 13989)) ;;; Generated autoloads from erc/erc-notify.el (autoload 'erc-notify-mode "erc-notify" nil t) @@ -9095,33 +9129,33 @@ ;;;*** -;;;### (autoloads nil "erc-page" "erc/erc-page.el" (20237 28610)) +;;;### (autoloads nil "erc-page" "erc/erc-page.el" (20281 13989)) ;;; Generated autoloads from erc/erc-page.el (autoload 'erc-page-mode "erc-page") ;;;*** -;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (20229 -;;;;;; 34587)) +;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from erc/erc-pcomplete.el (autoload 'erc-completion-mode "erc-pcomplete" nil t) ;;;*** -;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (20229 34587)) +;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (20281 13989)) ;;; Generated autoloads from erc/erc-replace.el (autoload 'erc-replace-mode "erc-replace") ;;;*** -;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (20229 34587)) +;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (20281 13989)) ;;; Generated autoloads from erc/erc-ring.el (autoload 'erc-ring-mode "erc-ring" nil t) ;;;*** ;;;### (autoloads (erc-nickserv-identify erc-nickserv-identify-mode) -;;;;;; "erc-services" "erc/erc-services.el" (20229 34587)) +;;;;;; "erc-services" "erc/erc-services.el" (20281 13989)) ;;; Generated autoloads from erc/erc-services.el (autoload 'erc-services-mode "erc-services" nil t) @@ -9138,14 +9172,14 @@ ;;;*** -;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (20229 34587)) +;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (20281 13989)) ;;; Generated autoloads from erc/erc-sound.el (autoload 'erc-sound-mode "erc-sound") ;;;*** ;;;### (autoloads (erc-speedbar-browser) "erc-speedbar" "erc/erc-speedbar.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from erc/erc-speedbar.el (autoload 'erc-speedbar-browser "erc-speedbar" "\ @@ -9156,21 +9190,21 @@ ;;;*** -;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (20229 -;;;;;; 34587)) +;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from erc/erc-spelling.el (autoload 'erc-spelling-mode "erc-spelling" nil t) ;;;*** -;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (20229 34587)) +;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (20281 13989)) ;;; Generated autoloads from erc/erc-stamp.el (autoload 'erc-timestamp-mode "erc-stamp" nil t) ;;;*** ;;;### (autoloads (erc-track-minor-mode) "erc-track" "erc/erc-track.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from erc/erc-track.el (defvar erc-track-minor-mode nil "\ @@ -9196,7 +9230,7 @@ ;;;*** ;;;### (autoloads (erc-truncate-buffer erc-truncate-buffer-to-size) -;;;;;; "erc-truncate" "erc/erc-truncate.el" (20229 34587)) +;;;;;; "erc-truncate" "erc/erc-truncate.el" (20281 13989)) ;;; Generated autoloads from erc/erc-truncate.el (autoload 'erc-truncate-mode "erc-truncate" nil t) @@ -9216,7 +9250,7 @@ ;;;*** ;;;### (autoloads (erc-xdcc-add-file) "erc-xdcc" "erc/erc-xdcc.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from erc/erc-xdcc.el (autoload 'erc-xdcc-mode "erc-xdcc") @@ -9229,7 +9263,7 @@ ;;;### (autoloads (ert-describe-test ert-run-tests-interactively ;;;;;; ert-run-tests-batch-and-exit ert-run-tests-batch ert-deftest) -;;;;;; "ert" "emacs-lisp/ert.el" (20229 34587)) +;;;;;; "ert" "emacs-lisp/ert.el" (20281 13989)) ;;; Generated autoloads from emacs-lisp/ert.el (autoload 'ert-deftest "ert" "\ @@ -9299,7 +9333,7 @@ ;;;*** ;;;### (autoloads (ert-kill-all-test-buffers) "ert-x" "emacs-lisp/ert-x.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emacs-lisp/ert-x.el (put 'ert-with-test-buffer 'lisp-indent-function 1) @@ -9311,8 +9345,8 @@ ;;;*** -;;;### (autoloads (eshell-mode) "esh-mode" "eshell/esh-mode.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (eshell-mode) "esh-mode" "eshell/esh-mode.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from eshell/esh-mode.el (autoload 'eshell-mode "esh-mode" "\ @@ -9325,7 +9359,7 @@ ;;;*** ;;;### (autoloads (eshell-command-result eshell-command eshell) "eshell" -;;;;;; "eshell/eshell.el" (20229 34587)) +;;;;;; "eshell/eshell.el" (20281 13989)) ;;; Generated autoloads from eshell/eshell.el (autoload 'eshell "eshell" "\ @@ -9366,7 +9400,7 @@ ;;;;;; visit-tags-table tags-table-mode find-tag-default-function ;;;;;; find-tag-hook tags-add-tables tags-compression-info-list ;;;;;; tags-table-list tags-case-fold-search) "etags" "progmodes/etags.el" -;;;;;; (20237 28610)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/etags.el (defvar tags-file-name nil "\ @@ -9684,7 +9718,7 @@ ;;;;;; ethio-fidel-to-sera-marker ethio-fidel-to-sera-region ethio-fidel-to-sera-buffer ;;;;;; ethio-sera-to-fidel-marker ethio-sera-to-fidel-region ethio-sera-to-fidel-buffer ;;;;;; setup-ethiopic-environment-internal) "ethio-util" "language/ethio-util.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from language/ethio-util.el (autoload 'setup-ethiopic-environment-internal "ethio-util" "\ @@ -9854,7 +9888,7 @@ ;;;### (autoloads (eudc-load-eudc eudc-query-form eudc-expand-inline ;;;;;; eudc-get-phone eudc-get-email eudc-set-server) "eudc" "net/eudc.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from net/eudc.el (autoload 'eudc-set-server "eudc" "\ @@ -9910,7 +9944,7 @@ ;;;### (autoloads (eudc-display-jpeg-as-button eudc-display-jpeg-inline ;;;;;; eudc-display-sound eudc-display-mail eudc-display-url eudc-display-generic-binary) -;;;;;; "eudc-bob" "net/eudc-bob.el" (20229 34587)) +;;;;;; "eudc-bob" "net/eudc-bob.el" (20281 13989)) ;;; Generated autoloads from net/eudc-bob.el (autoload 'eudc-display-generic-binary "eudc-bob" "\ @@ -9946,7 +9980,7 @@ ;;;*** ;;;### (autoloads (eudc-try-bbdb-insert eudc-insert-record-at-point-into-bbdb) -;;;;;; "eudc-export" "net/eudc-export.el" (20229 34587)) +;;;;;; "eudc-export" "net/eudc-export.el" (20281 13989)) ;;; Generated autoloads from net/eudc-export.el (autoload 'eudc-insert-record-at-point-into-bbdb "eudc-export" "\ @@ -9963,7 +9997,7 @@ ;;;*** ;;;### (autoloads (eudc-edit-hotlist) "eudc-hotlist" "net/eudc-hotlist.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from net/eudc-hotlist.el (autoload 'eudc-edit-hotlist "eudc-hotlist" "\ @@ -9973,8 +10007,8 @@ ;;;*** -;;;### (autoloads (ewoc-create) "ewoc" "emacs-lisp/ewoc.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (ewoc-create) "ewoc" "emacs-lisp/ewoc.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from emacs-lisp/ewoc.el (autoload 'ewoc-create "ewoc" "\ @@ -10003,7 +10037,7 @@ ;;;### (autoloads (executable-make-buffer-file-executable-if-script-p ;;;;;; executable-self-display executable-set-magic executable-interpret ;;;;;; executable-command-find-posix-p) "executable" "progmodes/executable.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/executable.el (autoload 'executable-command-find-posix-p "executable" "\ @@ -10046,7 +10080,7 @@ ;;;### (autoloads (expand-jump-to-next-slot expand-jump-to-previous-slot ;;;;;; expand-abbrev-hook expand-add-abbrevs) "expand" "expand.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from expand.el (autoload 'expand-add-abbrevs "expand" "\ @@ -10095,7 +10129,7 @@ ;;;*** -;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (20257 13883)) +;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (20281 13989)) ;;; Generated autoloads from progmodes/f90.el (autoload 'f90-mode "f90" "\ @@ -10165,8 +10199,8 @@ ;;;### (autoloads (variable-pitch-mode buffer-face-toggle buffer-face-set ;;;;;; buffer-face-mode text-scale-adjust text-scale-decrease text-scale-increase ;;;;;; text-scale-set face-remap-set-base face-remap-reset-base -;;;;;; face-remap-add-relative) "face-remap" "face-remap.el" (20229 -;;;;;; 34587)) +;;;;;; face-remap-add-relative) "face-remap" "face-remap.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from face-remap.el (autoload 'face-remap-add-relative "face-remap" "\ @@ -10264,8 +10298,10 @@ (autoload 'buffer-face-mode "face-remap" "\ Minor mode for a buffer-specific default face. -When enabled, the face specified by the variable -`buffer-face-mode-face' is used to display the buffer text. +With a prefix argument ARG, enable the mode if ARG is positive, +and disable it otherwise. If called from Lisp, enable the mode +if ARG is omitted or nil. When enabled, the face specified by the +variable `buffer-face-mode-face' is used to display the buffer text. \(fn &optional ARG)" t nil) @@ -10306,7 +10342,7 @@ ;;;### (autoloads (feedmail-queue-reminder feedmail-run-the-queue ;;;;;; feedmail-run-the-queue-global-prompt feedmail-run-the-queue-no-prompts -;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (20172 54913)) +;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (20281 13989)) ;;; Generated autoloads from mail/feedmail.el (autoload 'feedmail-send-it "feedmail" "\ @@ -10360,7 +10396,7 @@ ;;;*** ;;;### (autoloads (ffap-bindings dired-at-point ffap-at-mouse ffap-menu -;;;;;; find-file-at-point ffap-next) "ffap" "ffap.el" (20229 34587)) +;;;;;; find-file-at-point ffap-next) "ffap" "ffap.el" (20292 45155)) ;;; Generated autoloads from ffap.el (autoload 'ffap-next "ffap" "\ @@ -10424,7 +10460,7 @@ ;;;### (autoloads (file-cache-minibuffer-complete file-cache-add-directory-recursively ;;;;;; file-cache-add-directory-using-locate file-cache-add-directory-using-find ;;;;;; file-cache-add-file file-cache-add-directory-list file-cache-add-directory) -;;;;;; "filecache" "filecache.el" (20229 34587)) +;;;;;; "filecache" "filecache.el" (20281 13989)) ;;; Generated autoloads from filecache.el (autoload 'file-cache-add-directory "filecache" "\ @@ -10484,7 +10520,7 @@ ;;;;;; copy-file-locals-to-dir-locals delete-dir-local-variable ;;;;;; add-dir-local-variable delete-file-local-variable-prop-line ;;;;;; add-file-local-variable-prop-line delete-file-local-variable -;;;;;; add-file-local-variable) "files-x" "files-x.el" (20229 34587)) +;;;;;; add-file-local-variable) "files-x" "files-x.el" (20281 13989)) ;;; Generated autoloads from files-x.el (autoload 'add-file-local-variable "files-x" "\ @@ -10549,8 +10585,8 @@ ;;;*** -;;;### (autoloads (filesets-init) "filesets" "filesets.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (filesets-init) "filesets" "filesets.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from filesets.el (autoload 'filesets-init "filesets" "\ @@ -10561,7 +10597,7 @@ ;;;*** -;;;### (autoloads (find-cmd) "find-cmd" "find-cmd.el" (20229 34587)) +;;;### (autoloads (find-cmd) "find-cmd" "find-cmd.el" (20281 13989)) ;;; Generated autoloads from find-cmd.el (autoload 'find-cmd "find-cmd" "\ @@ -10581,7 +10617,7 @@ ;;;*** ;;;### (autoloads (find-grep-dired find-name-dired find-dired) "find-dired" -;;;;;; "find-dired.el" (20239 38674)) +;;;;;; "find-dired.el" (20281 13989)) ;;; Generated autoloads from find-dired.el (autoload 'find-dired "find-dired" "\ @@ -10621,7 +10657,7 @@ ;;;### (autoloads (ff-mouse-find-other-file-other-window ff-mouse-find-other-file ;;;;;; ff-find-other-file ff-get-other-file) "find-file" "find-file.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; 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)))) "\ @@ -10715,7 +10751,7 @@ ;;;;;; find-variable find-variable-noselect find-function-other-frame ;;;;;; find-function-other-window find-function find-function-noselect ;;;;;; find-function-search-for-symbol find-library) "find-func" -;;;;;; "emacs-lisp/find-func.el" (20229 34587)) +;;;;;; "emacs-lisp/find-func.el" (20281 13989)) ;;; Generated autoloads from emacs-lisp/find-func.el (autoload 'find-library "find-func" "\ @@ -10874,7 +10910,7 @@ ;;;*** ;;;### (autoloads (find-lisp-find-dired-filter find-lisp-find-dired-subdirectories -;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (20229 34587)) +;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (20281 13989)) ;;; Generated autoloads from find-lisp.el (autoload 'find-lisp-find-dired "find-lisp" "\ @@ -10895,7 +10931,7 @@ ;;;*** ;;;### (autoloads (finder-by-keyword finder-commentary finder-list-keywords) -;;;;;; "finder" "finder.el" (20229 34587)) +;;;;;; "finder" "finder.el" (20281 13989)) ;;; Generated autoloads from finder.el (autoload 'finder-list-keywords "finder" "\ @@ -10917,7 +10953,7 @@ ;;;*** ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" -;;;;;; "flow-ctrl.el" (20229 34587)) +;;;;;; "flow-ctrl.el" (20281 13989)) ;;; Generated autoloads from flow-ctrl.el (autoload 'enable-flow-control "flow-ctrl" "\ @@ -10939,7 +10975,7 @@ ;;;*** ;;;### (autoloads (fill-flowed fill-flowed-encode) "flow-fill" "gnus/flow-fill.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/flow-fill.el (autoload 'fill-flowed-encode "flow-fill" "\ @@ -10955,13 +10991,14 @@ ;;;*** ;;;### (autoloads (flymake-find-file-hook flymake-mode-off flymake-mode-on -;;;;;; flymake-mode) "flymake" "progmodes/flymake.el" (20229 34587)) +;;;;;; flymake-mode) "flymake" "progmodes/flymake.el" (20281 13989)) ;;; Generated autoloads from progmodes/flymake.el (autoload 'flymake-mode "flymake" "\ -Minor mode to do on-the-fly syntax checking. -When called interactively, toggles the minor mode. -With arg, turn Flymake mode on if and only if arg is positive. +Toggle on-the-fly syntax checking. +With a prefix argument ARG, enable the mode if ARG is positive, +and disable it otherwise. If called from Lisp, enable the mode +if ARG is omitted or nil. \(fn &optional ARG)" t nil) @@ -10984,7 +11021,7 @@ ;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off ;;;;;; turn-off-flyspell turn-on-flyspell flyspell-mode flyspell-prog-mode) -;;;;;; "flyspell" "textmodes/flyspell.el" (20229 34587)) +;;;;;; "flyspell" "textmodes/flyspell.el" (20281 13989)) ;;; Generated autoloads from textmodes/flyspell.el (autoload 'flyspell-prog-mode "flyspell" "\ @@ -11056,7 +11093,7 @@ ;;;### (autoloads (follow-delete-other-windows-and-split follow-mode ;;;;;; turn-off-follow-mode turn-on-follow-mode) "follow" "follow.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from follow.el (autoload 'turn-on-follow-mode "follow" "\ @@ -11132,8 +11169,8 @@ ;;;*** -;;;### (autoloads (footnote-mode) "footnote" "mail/footnote.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (footnote-mode) "footnote" "mail/footnote.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from mail/footnote.el (autoload 'footnote-mode "footnote" "\ @@ -11152,7 +11189,7 @@ ;;;*** ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) -;;;;;; "forms" "forms.el" (20229 34587)) +;;;;;; "forms" "forms.el" (20281 13989)) ;;; Generated autoloads from forms.el (autoload 'forms-mode "forms" "\ @@ -11189,7 +11226,7 @@ ;;;*** ;;;### (autoloads (fortran-mode) "fortran" "progmodes/fortran.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/fortran.el (autoload 'fortran-mode "fortran" "\ @@ -11267,7 +11304,7 @@ ;;;*** ;;;### (autoloads (fortune fortune-to-signature fortune-compile fortune-from-region -;;;;;; fortune-add-fortune) "fortune" "play/fortune.el" (20229 34587)) +;;;;;; fortune-add-fortune) "fortune" "play/fortune.el" (20281 13989)) ;;; Generated autoloads from play/fortune.el (autoload 'fortune-add-fortune "fortune" "\ @@ -11316,7 +11353,7 @@ ;;;*** ;;;### (autoloads (gdb gdb-enable-debug) "gdb-mi" "progmodes/gdb-mi.el" -;;;;;; (20264 32142)) +;;;;;; (20297 64756)) ;;; Generated autoloads from progmodes/gdb-mi.el (defvar gdb-enable-debug nil "\ @@ -11383,8 +11420,8 @@ ;;;*** ;;;### (autoloads (generic-make-keywords-list generic-mode generic-mode-internal -;;;;;; define-generic-mode) "generic" "emacs-lisp/generic.el" (20229 -;;;;;; 34587)) +;;;;;; define-generic-mode) "generic" "emacs-lisp/generic.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from emacs-lisp/generic.el (defvar generic-mode-list nil "\ @@ -11461,13 +11498,15 @@ ;;;*** ;;;### (autoloads (glasses-mode) "glasses" "progmodes/glasses.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/glasses.el (autoload 'glasses-mode "glasses" "\ Minor mode for making identifiers likeThis readable. -When this mode is active, it tries to add virtual separators (like underscores) -at places they belong to. +With a prefix argument ARG, enable the mode if ARG is positive, +and disable it otherwise. If called from Lisp, enable the mode +if ARG is omitted or nil. When this mode is active, it tries to +add virtual separators (like underscores) at places they belong to. \(fn &optional ARG)" t nil) @@ -11475,7 +11514,7 @@ ;;;### (autoloads (gmm-tool-bar-from-list gmm-widget-p gmm-error ;;;;;; gmm-message gmm-regexp-concat) "gmm-utils" "gnus/gmm-utils.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/gmm-utils.el (autoload 'gmm-regexp-concat "gmm-utils" "\ @@ -11530,7 +11569,7 @@ ;;;*** ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server -;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (20258 34747)) +;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (20281 13989)) ;;; Generated autoloads from gnus/gnus.el (when (fboundp 'custom-autoload) (custom-autoload 'gnus-select-method "gnus")) @@ -11583,7 +11622,7 @@ ;;;;;; gnus-agent-get-undownloaded-list gnus-agent-delete-group ;;;;;; gnus-agent-rename-group gnus-agent-possibly-save-gcc gnus-agentize ;;;;;; gnus-slave-unplugged gnus-plugged gnus-unplugged) "gnus-agent" -;;;;;; "gnus/gnus-agent.el" (20265 7997)) +;;;;;; "gnus/gnus-agent.el" (20281 13989)) ;;; Generated autoloads from gnus/gnus-agent.el (autoload 'gnus-unplugged "gnus-agent" "\ @@ -11674,7 +11713,7 @@ ;;;*** ;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el" -;;;;;; (20232 10689)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/gnus-art.el (autoload 'gnus-article-prepare-display "gnus-art" "\ @@ -11685,7 +11724,7 @@ ;;;*** ;;;### (autoloads (gnus-bookmark-bmenu-list gnus-bookmark-jump gnus-bookmark-set) -;;;;;; "gnus-bookmark" "gnus/gnus-bookmark.el" (20229 34587)) +;;;;;; "gnus-bookmark" "gnus/gnus-bookmark.el" (20281 13989)) ;;; Generated autoloads from gnus/gnus-bookmark.el (autoload 'gnus-bookmark-set "gnus-bookmark" "\ @@ -11710,8 +11749,8 @@ ;;;### (autoloads (gnus-cache-delete-group gnus-cache-rename-group ;;;;;; gnus-cache-generate-nov-databases gnus-cache-generate-active -;;;;;; gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (20229 -;;;;;; 34587)) +;;;;;; gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from gnus/gnus-cache.el (autoload 'gnus-jog-cache "gnus-cache" "\ @@ -11753,7 +11792,7 @@ ;;;*** ;;;### (autoloads (gnus-delay-initialize gnus-delay-send-queue gnus-delay-article) -;;;;;; "gnus-delay" "gnus/gnus-delay.el" (20229 34587)) +;;;;;; "gnus-delay" "gnus/gnus-delay.el" (20281 13989)) ;;; Generated autoloads from gnus/gnus-delay.el (autoload 'gnus-delay-article "gnus-delay" "\ @@ -11789,7 +11828,7 @@ ;;;*** ;;;### (autoloads (gnus-user-format-function-D gnus-user-format-function-d) -;;;;;; "gnus-diary" "gnus/gnus-diary.el" (20229 34587)) +;;;;;; "gnus-diary" "gnus/gnus-diary.el" (20281 13989)) ;;; Generated autoloads from gnus/gnus-diary.el (autoload 'gnus-user-format-function-d "gnus-diary" "\ @@ -11805,7 +11844,7 @@ ;;;*** ;;;### (autoloads (turn-on-gnus-dired-mode) "gnus-dired" "gnus/gnus-dired.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/gnus-dired.el (autoload 'turn-on-gnus-dired-mode "gnus-dired" "\ @@ -11816,7 +11855,7 @@ ;;;*** ;;;### (autoloads (gnus-draft-reminder) "gnus-draft" "gnus/gnus-draft.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/gnus-draft.el (autoload 'gnus-draft-reminder "gnus-draft" "\ @@ -11828,8 +11867,8 @@ ;;;### (autoloads (gnus-convert-png-to-face gnus-convert-face-to-png ;;;;;; gnus-face-from-file gnus-x-face-from-file gnus-insert-random-x-face-header -;;;;;; gnus-random-x-face) "gnus-fun" "gnus/gnus-fun.el" (20229 -;;;;;; 34587)) +;;;;;; gnus-random-x-face) "gnus-fun" "gnus/gnus-fun.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from gnus/gnus-fun.el (autoload 'gnus-random-x-face "gnus-fun" "\ @@ -11874,7 +11913,7 @@ ;;;*** ;;;### (autoloads (gnus-treat-mail-gravatar gnus-treat-from-gravatar) -;;;;;; "gnus-gravatar" "gnus/gnus-gravatar.el" (20229 34587)) +;;;;;; "gnus-gravatar" "gnus/gnus-gravatar.el" (20281 13989)) ;;; Generated autoloads from gnus/gnus-gravatar.el (autoload 'gnus-treat-from-gravatar "gnus-gravatar" "\ @@ -11892,7 +11931,7 @@ ;;;*** ;;;### (autoloads (gnus-fetch-group-other-frame gnus-fetch-group) -;;;;;; "gnus-group" "gnus/gnus-group.el" (20232 10689)) +;;;;;; "gnus-group" "gnus/gnus-group.el" (20281 13989)) ;;; Generated autoloads from gnus/gnus-group.el (autoload 'gnus-fetch-group "gnus-group" "\ @@ -11910,7 +11949,7 @@ ;;;*** ;;;### (autoloads (gnus-html-prefetch-images gnus-article-html) "gnus-html" -;;;;;; "gnus/gnus-html.el" (20229 34587)) +;;;;;; "gnus/gnus-html.el" (20281 13989)) ;;; Generated autoloads from gnus/gnus-html.el (autoload 'gnus-article-html "gnus-html" "\ @@ -11926,7 +11965,7 @@ ;;;*** ;;;### (autoloads (gnus-batch-score) "gnus-kill" "gnus/gnus-kill.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/gnus-kill.el (defalias 'gnus-batch-kill 'gnus-batch-score) @@ -11941,7 +11980,7 @@ ;;;### (autoloads (gnus-mailing-list-mode gnus-mailing-list-insinuate ;;;;;; turn-on-gnus-mailing-list-mode) "gnus-ml" "gnus/gnus-ml.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/gnus-ml.el (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" "\ @@ -11966,7 +12005,7 @@ ;;;### (autoloads (gnus-group-split-fancy gnus-group-split gnus-group-split-update ;;;;;; gnus-group-split-setup) "gnus-mlspl" "gnus/gnus-mlspl.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/gnus-mlspl.el (autoload 'gnus-group-split-setup "gnus-mlspl" "\ @@ -12067,13 +12106,15 @@ ;;;*** ;;;### (autoloads (gnus-button-reply gnus-button-mailto gnus-msg-mail) -;;;;;; "gnus-msg" "gnus/gnus-msg.el" (20230 55355)) +;;;;;; "gnus-msg" "gnus/gnus-msg.el" (20291 37665)) ;;; Generated autoloads from gnus/gnus-msg.el (autoload 'gnus-msg-mail "gnus-msg" "\ Start editing a mail message to be sent. Like `message-mail', but with Gnus paraphernalia, particularly the Gcc: header for archiving purposes. +If Gnus isn't running, a plain `message-mail' setup is used +instead. \(fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-ACTION YANK-ACTION SEND-ACTIONS RETURN-ACTION)" t nil) @@ -12093,7 +12134,7 @@ ;;;### (autoloads (gnus-treat-newsgroups-picon gnus-treat-mail-picon ;;;;;; gnus-treat-from-picon) "gnus-picon" "gnus/gnus-picon.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/gnus-picon.el (autoload 'gnus-treat-from-picon "gnus-picon" "\ @@ -12120,7 +12161,7 @@ ;;;;;; gnus-sorted-nintersection gnus-sorted-range-intersection ;;;;;; gnus-sorted-intersection gnus-intersection gnus-sorted-complement ;;;;;; gnus-sorted-ndifference gnus-sorted-difference) "gnus-range" -;;;;;; "gnus/gnus-range.el" (20229 34587)) +;;;;;; "gnus/gnus-range.el" (20281 13989)) ;;; Generated autoloads from gnus/gnus-range.el (autoload 'gnus-sorted-difference "gnus-range" "\ @@ -12188,7 +12229,7 @@ ;;;*** ;;;### (autoloads (gnus-registry-install-hooks gnus-registry-initialize) -;;;;;; "gnus-registry" "gnus/gnus-registry.el" (20229 34587)) +;;;;;; "gnus-registry" "gnus/gnus-registry.el" (20281 13989)) ;;; Generated autoloads from gnus/gnus-registry.el (autoload 'gnus-registry-initialize "gnus-registry" "\ @@ -12204,8 +12245,8 @@ ;;;*** ;;;### (autoloads (gnus-sieve-article-add-rule gnus-sieve-generate -;;;;;; gnus-sieve-update) "gnus-sieve" "gnus/gnus-sieve.el" (20229 -;;;;;; 34587)) +;;;;;; gnus-sieve-update) "gnus-sieve" "gnus/gnus-sieve.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from gnus/gnus-sieve.el (autoload 'gnus-sieve-update "gnus-sieve" "\ @@ -12233,7 +12274,7 @@ ;;;*** ;;;### (autoloads (gnus-update-format) "gnus-spec" "gnus/gnus-spec.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/gnus-spec.el (autoload 'gnus-update-format "gnus-spec" "\ @@ -12244,7 +12285,7 @@ ;;;*** ;;;### (autoloads (gnus-declare-backend) "gnus-start" "gnus/gnus-start.el" -;;;;;; (20259 55615)) +;;;;;; (20285 5577)) ;;; Generated autoloads from gnus/gnus-start.el (autoload 'gnus-declare-backend "gnus-start" "\ @@ -12255,7 +12296,7 @@ ;;;*** ;;;### (autoloads (gnus-summary-bookmark-jump) "gnus-sum" "gnus/gnus-sum.el" -;;;;;; (20258 34747)) +;;;;;; (20291 37665)) ;;; Generated autoloads from gnus/gnus-sum.el (autoload 'gnus-summary-bookmark-jump "gnus-sum" "\ @@ -12267,7 +12308,7 @@ ;;;*** ;;;### (autoloads (gnus-sync-install-hooks gnus-sync-initialize) -;;;;;; "gnus-sync" "gnus/gnus-sync.el" (20229 34587)) +;;;;;; "gnus-sync" "gnus/gnus-sync.el" (20281 13989)) ;;; Generated autoloads from gnus/gnus-sync.el (autoload 'gnus-sync-initialize "gnus-sync" "\ @@ -12283,7 +12324,7 @@ ;;;*** ;;;### (autoloads (gnus-add-configuration) "gnus-win" "gnus/gnus-win.el" -;;;;;; (20232 10689)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/gnus-win.el (autoload 'gnus-add-configuration "gnus-win" "\ @@ -12294,7 +12335,7 @@ ;;;*** ;;;### (autoloads (gnutls-min-prime-bits) "gnutls" "net/gnutls.el" -;;;;;; (20229 34587)) +;;;;;; (20286 22798)) ;;; Generated autoloads from net/gnutls.el (defvar gnutls-min-prime-bits nil "\ @@ -12310,7 +12351,7 @@ ;;;*** -;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (20229 34587)) +;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (20281 13989)) ;;; Generated autoloads from play/gomoku.el (autoload 'gomoku "gomoku" "\ @@ -12337,8 +12378,8 @@ ;;;*** ;;;### (autoloads (goto-address-prog-mode goto-address-mode goto-address -;;;;;; goto-address-at-point) "goto-addr" "net/goto-addr.el" (20229 -;;;;;; 34587)) +;;;;;; goto-address-at-point) "goto-addr" "net/goto-addr.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from net/goto-addr.el (define-obsolete-function-alias 'goto-address-at-mouse 'goto-address-at-point "22.1") @@ -12366,6 +12407,9 @@ (autoload 'goto-address-mode "goto-addr" "\ Minor mode to buttonize URLs and e-mail addresses in the current buffer. +With a prefix argument ARG, enable the mode if ARG is positive, +and disable it otherwise. If called from Lisp, enable the mode +if ARG is omitted or nil. \(fn &optional ARG)" t nil) @@ -12377,7 +12421,7 @@ ;;;*** ;;;### (autoloads (gravatar-retrieve-synchronously gravatar-retrieve) -;;;;;; "gravatar" "gnus/gravatar.el" (20229 34587)) +;;;;;; "gravatar" "gnus/gravatar.el" (20281 13989)) ;;; Generated autoloads from gnus/gravatar.el (autoload 'gravatar-retrieve "gravatar" "\ @@ -12395,7 +12439,7 @@ ;;;### (autoloads (zrgrep rgrep lgrep grep-find grep grep-mode grep-compute-defaults ;;;;;; grep-process-setup grep-setup-hook grep-find-command grep-command -;;;;;; grep-window-height) "grep" "progmodes/grep.el" (20255 25045)) +;;;;;; grep-window-height) "grep" "progmodes/grep.el" (20281 13989)) ;;; Generated autoloads from progmodes/grep.el (defvar grep-window-height nil "\ @@ -12557,7 +12601,7 @@ ;;;*** -;;;### (autoloads (gs-load-image) "gs" "gs.el" (20229 34587)) +;;;### (autoloads (gs-load-image) "gs" "gs.el" (20281 13989)) ;;; Generated autoloads from gs.el (autoload 'gs-load-image "gs" "\ @@ -12571,7 +12615,7 @@ ;;;*** ;;;### (autoloads (gud-tooltip-mode gdb-script-mode jdb pdb perldb -;;;;;; xdb dbx sdb gud-gdb) "gud" "progmodes/gud.el" (20261 10951)) +;;;;;; xdb dbx sdb gud-gdb) "gud" "progmodes/gud.el" (20281 13989)) ;;; Generated autoloads from progmodes/gud.el (autoload 'gud-gdb "gud" "\ @@ -12659,8 +12703,8 @@ ;;;*** -;;;### (autoloads (handwrite) "handwrite" "play/handwrite.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (handwrite) "handwrite" "play/handwrite.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from play/handwrite.el (autoload 'handwrite "handwrite" "\ @@ -12678,7 +12722,7 @@ ;;;*** ;;;### (autoloads (hanoi-unix-64 hanoi-unix hanoi) "hanoi" "play/hanoi.el" -;;;;;; (19981 40664)) +;;;;;; (20281 13875)) ;;; Generated autoloads from play/hanoi.el (autoload 'hanoi "hanoi" "\ @@ -12707,7 +12751,7 @@ ;;;### (autoloads (mail-check-payment mail-add-payment-async mail-add-payment ;;;;;; hashcash-verify-payment hashcash-insert-payment-async hashcash-insert-payment) -;;;;;; "hashcash" "mail/hashcash.el" (20229 34587)) +;;;;;; "hashcash" "mail/hashcash.el" (20281 13989)) ;;; Generated autoloads from mail/hashcash.el (autoload 'hashcash-insert-payment "hashcash" "\ @@ -12752,7 +12796,7 @@ ;;;### (autoloads (scan-buf-previous-region scan-buf-next-region ;;;;;; scan-buf-move-to-region help-at-pt-display-when-idle help-at-pt-set-timer ;;;;;; help-at-pt-cancel-timer display-local-help help-at-pt-kbd-string -;;;;;; help-at-pt-string) "help-at-pt" "help-at-pt.el" (20229 34587)) +;;;;;; help-at-pt-string) "help-at-pt" "help-at-pt.el" (20281 13989)) ;;; Generated autoloads from help-at-pt.el (autoload 'help-at-pt-string "help-at-pt" "\ @@ -12882,7 +12926,7 @@ ;;;### (autoloads (doc-file-to-info doc-file-to-man describe-categories ;;;;;; describe-syntax describe-variable variable-at-point describe-function-1 ;;;;;; find-lisp-object-file-name help-C-file-name describe-function) -;;;;;; "help-fns" "help-fns.el" (20229 34587)) +;;;;;; "help-fns" "help-fns.el" (20297 63987)) ;;; Generated autoloads from help-fns.el (autoload 'describe-function "help-fns" "\ @@ -12962,7 +13006,7 @@ ;;;*** ;;;### (autoloads (three-step-help) "help-macro" "help-macro.el" -;;;;;; (20249 19777)) +;;;;;; (20281 13989)) ;;; Generated autoloads from help-macro.el (defvar three-step-help nil "\ @@ -12978,8 +13022,8 @@ ;;;### (autoloads (help-xref-on-pp help-insert-xref-button help-xref-button ;;;;;; help-make-xrefs help-buffer help-setup-xref help-mode-finish -;;;;;; help-mode-setup help-mode) "help-mode" "help-mode.el" (20229 -;;;;;; 34587)) +;;;;;; help-mode-setup help-mode) "help-mode" "help-mode.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from help-mode.el (autoload 'help-mode "help-mode" "\ @@ -13072,7 +13116,7 @@ ;;;*** ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" -;;;;;; "emacs-lisp/helper.el" (20229 34587)) +;;;;;; "emacs-lisp/helper.el" (20281 13989)) ;;; Generated autoloads from emacs-lisp/helper.el (autoload 'Helper-describe-bindings "helper" "\ @@ -13088,7 +13132,7 @@ ;;;*** ;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl" -;;;;;; "hexl.el" (20229 34587)) +;;;;;; "hexl.el" (20281 13989)) ;;; Generated autoloads from hexl.el (autoload 'hexl-mode "hexl" "\ @@ -13185,7 +13229,7 @@ ;;;### (autoloads (hi-lock-write-interactive-patterns hi-lock-unface-buffer ;;;;;; hi-lock-face-phrase-buffer hi-lock-face-buffer hi-lock-line-face-buffer ;;;;;; global-hi-lock-mode hi-lock-mode) "hi-lock" "hi-lock.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from hi-lock.el (autoload 'hi-lock-mode "hi-lock" "\ @@ -13324,7 +13368,7 @@ ;;;*** ;;;### (autoloads (hide-ifdef-mode) "hideif" "progmodes/hideif.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/hideif.el (autoload 'hide-ifdef-mode "hideif" "\ @@ -13368,7 +13412,7 @@ ;;;*** ;;;### (autoloads (turn-off-hideshow hs-minor-mode) "hideshow" "progmodes/hideshow.el" -;;;;;; (20237 28610)) +;;;;;; (20281 13989)) ;;; 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))) "\ @@ -13401,6 +13445,10 @@ (autoload 'hs-minor-mode "hideshow" "\ Minor mode to selectively hide/show code and comment blocks. +With a prefix argument ARG, enable the mode if ARG is positive, +and disable it otherwise. If called from Lisp, enable the mode +if ARG is omitted or nil. + When hideshow minor mode is on, the menu bar is augmented with hideshow commands and the hideshow commands are enabled. The value '(hs . t) is added to `buffer-invisibility-spec'. @@ -13430,8 +13478,8 @@ ;;;;;; highlight-compare-buffers highlight-changes-rotate-faces ;;;;;; highlight-changes-previous-change highlight-changes-next-change ;;;;;; highlight-changes-remove-highlight highlight-changes-visible-mode -;;;;;; highlight-changes-mode) "hilit-chg" "hilit-chg.el" (20229 -;;;;;; 34587)) +;;;;;; highlight-changes-mode) "hilit-chg" "hilit-chg.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from hilit-chg.el (autoload 'highlight-changes-mode "hilit-chg" "\ @@ -13566,7 +13614,7 @@ ;;;;;; hippie-expand-ignore-buffers hippie-expand-max-buffers hippie-expand-no-restriction ;;;;;; hippie-expand-dabbrev-as-symbol hippie-expand-dabbrev-skip-space ;;;;;; hippie-expand-verbose hippie-expand-try-functions-list) "hippie-exp" -;;;;;; "hippie-exp.el" (20229 34587)) +;;;;;; "hippie-exp.el" (20281 13989)) ;;; Generated autoloads from hippie-exp.el (defvar hippie-expand-try-functions-list '(try-complete-file-name-partially try-complete-file-name try-expand-all-abbrevs try-expand-list try-expand-line try-expand-dabbrev try-expand-dabbrev-all-buffers try-expand-dabbrev-from-kill try-complete-lisp-symbol-partially try-complete-lisp-symbol) "\ @@ -13639,7 +13687,7 @@ ;;;*** ;;;### (autoloads (global-hl-line-mode hl-line-mode) "hl-line" "hl-line.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from hl-line.el (autoload 'hl-line-mode "hl-line" "\ @@ -13692,7 +13740,7 @@ ;;;;;; holiday-bahai-holidays holiday-islamic-holidays holiday-christian-holidays ;;;;;; holiday-hebrew-holidays holiday-other-holidays holiday-local-holidays ;;;;;; holiday-oriental-holidays holiday-general-holidays) "holidays" -;;;;;; "calendar/holidays.el" (20229 34587)) +;;;;;; "calendar/holidays.el" (20287 42957)) ;;; Generated autoloads from calendar/holidays.el (define-obsolete-variable-alias 'general-holidays 'holiday-general-holidays "23.1") @@ -13787,8 +13835,8 @@ (define-obsolete-variable-alias 'bahai-holidays 'holiday-bahai-holidays "23.1") -(defvar holiday-bahai-holidays (mapcar 'purecopy '((holiday-bahai-new-year) (holiday-bahai-ridvan) (holiday-fixed 5 23 "Declaration of the Bab") (holiday-fixed 5 29 "Ascension of Baha'u'llah") (holiday-fixed 7 9 "Martyrdom of the Bab") (holiday-fixed 10 20 "Birth of the Bab") (holiday-fixed 11 12 "Birth of Baha'u'llah") (if calendar-bahai-all-holidays-flag (append (holiday-fixed 11 26 "Day of the Covenant") (holiday-fixed 11 28 "Ascension of `Abdu'l-Baha"))))) "\ -Baha'i holidays. +(defvar holiday-bahai-holidays (mapcar 'purecopy '((holiday-bahai-new-year) (holiday-bahai-ridvan) (holiday-fixed 5 23 "Declaration of the Báb") (holiday-fixed 5 29 "Ascension of Bahá'u'lláh") (holiday-fixed 7 9 "Martyrdom of the Báb") (holiday-fixed 10 20 "Birth of the Báb") (holiday-fixed 11 12 "Birth of Bahá'u'lláh") (if calendar-bahai-all-holidays-flag (append (holiday-fixed 11 26 "Day of the Covenant") (holiday-fixed 11 28 "Ascension of `Abdu'l-Bahá"))))) "\ +Bahá'í holidays. See the documentation for `calendar-holidays' for details.") (custom-autoload 'holiday-bahai-holidays "holidays" t) @@ -13840,8 +13888,8 @@ ;;;*** -;;;### (autoloads (html2text) "html2text" "gnus/html2text.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (html2text) "html2text" "gnus/html2text.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from gnus/html2text.el (autoload 'html2text "html2text" "\ @@ -13852,7 +13900,7 @@ ;;;*** ;;;### (autoloads (htmlfontify-copy-and-link-dir htmlfontify-buffer) -;;;;;; "htmlfontify" "htmlfontify.el" (20237 28610)) +;;;;;; "htmlfontify" "htmlfontify.el" (20281 13989)) ;;; Generated autoloads from htmlfontify.el (autoload 'htmlfontify-buffer "htmlfontify" "\ @@ -13885,8 +13933,8 @@ ;;;*** ;;;### (autoloads (define-ibuffer-filter define-ibuffer-op define-ibuffer-sorter -;;;;;; define-ibuffer-column) "ibuf-macs" "ibuf-macs.el" (20229 -;;;;;; 34587)) +;;;;;; define-ibuffer-column) "ibuf-macs" "ibuf-macs.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from ibuf-macs.el (autoload 'define-ibuffer-column "ibuf-macs" "\ @@ -13983,7 +14031,7 @@ ;;;*** ;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers) -;;;;;; "ibuffer" "ibuffer.el" (20232 10689)) +;;;;;; "ibuffer" "ibuffer.el" (20281 13989)) ;;; Generated autoloads from ibuffer.el (autoload 'ibuffer-list-buffers "ibuffer" "\ @@ -14024,7 +14072,7 @@ ;;;### (autoloads (icalendar-import-buffer icalendar-import-file ;;;;;; icalendar-export-region icalendar-export-file) "icalendar" -;;;;;; "calendar/icalendar.el" (20229 34587)) +;;;;;; "calendar/icalendar.el" (20281 13989)) ;;; Generated autoloads from calendar/icalendar.el (autoload 'icalendar-export-file "icalendar" "\ @@ -14076,8 +14124,8 @@ ;;;*** -;;;### (autoloads (icomplete-mode) "icomplete" "icomplete.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (icomplete-mode) "icomplete" "icomplete.el" (20294 +;;;;;; 31102)) ;;; Generated autoloads from icomplete.el (defvar icomplete-mode nil "\ @@ -14099,7 +14147,7 @@ ;;;*** -;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (20229 34587)) +;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (20281 13989)) ;;; Generated autoloads from progmodes/icon.el (autoload 'icon-mode "icon" "\ @@ -14140,7 +14188,7 @@ ;;;*** ;;;### (autoloads (idlwave-shell) "idlw-shell" "progmodes/idlw-shell.el" -;;;;;; (20237 28610)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/idlw-shell.el (autoload 'idlwave-shell "idlw-shell" "\ @@ -14166,7 +14214,7 @@ ;;;*** ;;;### (autoloads (idlwave-mode) "idlwave" "progmodes/idlwave.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/idlwave.el (autoload 'idlwave-mode "idlwave" "\ @@ -14300,8 +14348,8 @@ ;;;;;; ido-find-alternate-file ido-find-file-other-window ido-find-file ;;;;;; ido-find-file-in-dir ido-switch-buffer-other-frame ido-insert-buffer ;;;;;; ido-kill-buffer ido-display-buffer ido-switch-buffer-other-window -;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (20229 -;;;;;; 34587)) +;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from ido.el (defvar ido-mode nil "\ @@ -14442,7 +14490,6 @@ \\[ido-toggle-regexp] Toggle regexp searching. \\[ido-toggle-prefix] Toggle between substring and prefix matching. \\[ido-toggle-case] Toggle case-sensitive searching of file names. -\\[ido-toggle-vc] Toggle version control for this file. \\[ido-toggle-literal] Toggle literal reading of this file. \\[ido-completion-help] Show list of matching files in separate window. \\[ido-toggle-ignore] Toggle ignoring files listed in `ido-ignore-files'. @@ -14562,7 +14609,7 @@ ;;;*** -;;;### (autoloads (ielm) "ielm" "ielm.el" (20229 34587)) +;;;### (autoloads (ielm) "ielm" "ielm.el" (20281 13989)) ;;; Generated autoloads from ielm.el (autoload 'ielm "ielm" "\ @@ -14573,13 +14620,17 @@ ;;;*** -;;;### (autoloads (iimage-mode) "iimage" "iimage.el" (20229 34587)) +;;;### (autoloads (iimage-mode) "iimage" "iimage.el" (20281 13989)) ;;; Generated autoloads from iimage.el (define-obsolete-function-alias 'turn-on-iimage-mode 'iimage-mode "24.1") (autoload 'iimage-mode "iimage" "\ -Toggle inline image minor mode. +Toggle Iimage mode on or off. +With a prefix argument ARG, enable Iimage mode if ARG is +positive, and disable it otherwise. If called from Lisp, enable +the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'. +\\{iimage-mode-map} \(fn &optional ARG)" t nil) @@ -14590,7 +14641,7 @@ ;;;;;; create-image image-type-auto-detected-p image-type-available-p ;;;;;; image-type image-type-from-file-name image-type-from-file-header ;;;;;; image-type-from-buffer image-type-from-data) "image" "image.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from image.el (autoload 'image-type-from-data "image" "\ @@ -14787,7 +14838,7 @@ ;;;;;; image-dired-jump-thumbnail-buffer image-dired-delete-tag ;;;;;; image-dired-tag-files image-dired-show-all-from-dir image-dired-display-thumbs ;;;;;; image-dired-dired-with-window-configuration image-dired-dired-toggle-marked-thumbs) -;;;;;; "image-dired" "image-dired.el" (20229 34587)) +;;;;;; "image-dired" "image-dired.el" (20281 13989)) ;;; Generated autoloads from image-dired.el (autoload 'image-dired-dired-toggle-marked-thumbs "image-dired" "\ @@ -14925,7 +14976,7 @@ ;;;### (autoloads (auto-image-file-mode insert-image-file image-file-name-regexp ;;;;;; image-file-name-regexps image-file-name-extensions) "image-file" -;;;;;; "image-file.el" (20229 34587)) +;;;;;; "image-file.el" (20281 13989)) ;;; 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")) "\ @@ -14988,7 +15039,7 @@ ;;;*** ;;;### (autoloads (image-bookmark-jump image-mode-as-text image-minor-mode -;;;;;; image-mode) "image-mode" "image-mode.el" (20229 34587)) +;;;;;; image-mode) "image-mode" "image-mode.el" (20281 13989)) ;;; Generated autoloads from image-mode.el (autoload 'image-mode "image-mode" "\ @@ -15033,7 +15084,7 @@ ;;;*** ;;;### (autoloads (imenu imenu-add-menubar-index imenu-add-to-menubar -;;;;;; imenu-sort-function) "imenu" "imenu.el" (20229 34587)) +;;;;;; imenu-sort-function) "imenu" "imenu.el" (20281 13989)) ;;; Generated autoloads from imenu.el (defvar imenu-sort-function nil "\ @@ -15150,7 +15201,7 @@ ;;;### (autoloads (indian-2-column-to-ucs-region in-is13194-pre-write-conversion ;;;;;; in-is13194-post-read-conversion indian-compose-string indian-compose-region) -;;;;;; "ind-util" "language/ind-util.el" (20229 34587)) +;;;;;; "ind-util" "language/ind-util.el" (20281 13989)) ;;; Generated autoloads from language/ind-util.el (autoload 'indian-compose-region "ind-util" "\ @@ -15182,7 +15233,7 @@ ;;;### (autoloads (inferior-lisp inferior-lisp-prompt inferior-lisp-load-command ;;;;;; inferior-lisp-program inferior-lisp-filter-regexp) "inf-lisp" -;;;;;; "progmodes/inf-lisp.el" (20229 34587)) +;;;;;; "progmodes/inf-lisp.el" (20281 13989)) ;;; Generated autoloads from progmodes/inf-lisp.el (defvar inferior-lisp-filter-regexp (purecopy "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'") "\ @@ -15249,7 +15300,7 @@ ;;;;;; Info-goto-emacs-key-command-node Info-goto-emacs-command-node ;;;;;; Info-mode info-finder info-apropos Info-index Info-directory ;;;;;; Info-on-current-buffer info-standalone info-emacs-manual -;;;;;; info info-other-window) "info" "info.el" (20242 46528)) +;;;;;; info info-other-window) "info" "info.el" (20281 13989)) ;;; Generated autoloads from info.el (autoload 'info-other-window "info" "\ @@ -15435,7 +15486,7 @@ ;;;### (autoloads (info-complete-file info-complete-symbol info-lookup-file ;;;;;; info-lookup-symbol info-lookup-reset) "info-look" "info-look.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from info-look.el (autoload 'info-lookup-reset "info-look" "\ @@ -15484,7 +15535,7 @@ ;;;### (autoloads (info-xref-docstrings info-xref-check-all-custom ;;;;;; info-xref-check-all info-xref-check) "info-xref" "info-xref.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from info-xref.el (autoload 'info-xref-check "info-xref" "\ @@ -15567,7 +15618,7 @@ ;;;*** ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-split-threshold -;;;;;; Info-tagify) "informat" "informat.el" (20229 34587)) +;;;;;; Info-tagify) "informat" "informat.el" (20281 13989)) ;;; Generated autoloads from informat.el (autoload 'Info-tagify "informat" "\ @@ -15614,7 +15665,7 @@ ;;;### (autoloads (isearch-process-search-multibyte-characters isearch-toggle-input-method ;;;;;; isearch-toggle-specified-input-method) "isearch-x" "international/isearch-x.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from international/isearch-x.el (autoload 'isearch-toggle-specified-input-method "isearch-x" "\ @@ -15634,8 +15685,8 @@ ;;;*** -;;;### (autoloads (isearchb-activate) "isearchb" "isearchb.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (isearchb-activate) "isearchb" "isearchb.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from isearchb.el (autoload 'isearchb-activate "isearchb" "\ @@ -15651,7 +15702,7 @@ ;;;### (autoloads (iso-cvt-define-menu iso-cvt-write-only iso-cvt-read-only ;;;;;; iso-sgml2iso iso-iso2sgml iso-iso2duden iso-iso2gtex iso-gtex2iso ;;;;;; iso-tex2iso iso-iso2tex iso-german iso-spanish) "iso-cvt" -;;;;;; "international/iso-cvt.el" (20229 34587)) +;;;;;; "international/iso-cvt.el" (20281 13989)) ;;; Generated autoloads from international/iso-cvt.el (autoload 'iso-spanish "iso-cvt" "\ @@ -15742,7 +15793,7 @@ ;;;*** ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from international/iso-transl.el (or key-translation-map (setq key-translation-map (make-sparse-keymap))) (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) @@ -15754,7 +15805,7 @@ ;;;;;; ispell-complete-word ispell-continue ispell-buffer ispell-comments-and-strings ;;;;;; ispell-region ispell-change-dictionary ispell-kill-ispell ;;;;;; ispell-help ispell-pdict-save ispell-word ispell-personal-dictionary) -;;;;;; "ispell" "textmodes/ispell.el" (20229 34587)) +;;;;;; "ispell" "textmodes/ispell.el" (20281 13989)) ;;; Generated autoloads from textmodes/ispell.el (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) @@ -15980,8 +16031,8 @@ ;;;*** -;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from iswitchb.el (defvar iswitchb-mode nil "\ @@ -16009,7 +16060,7 @@ ;;;### (autoloads (read-hiragana-string japanese-zenkaku-region japanese-hankaku-region ;;;;;; japanese-hiragana-region japanese-katakana-region japanese-zenkaku ;;;;;; japanese-hankaku japanese-hiragana japanese-katakana setup-japanese-environment-internal) -;;;;;; "japan-util" "language/japan-util.el" (20229 34587)) +;;;;;; "japan-util" "language/japan-util.el" (20281 13989)) ;;; Generated autoloads from language/japan-util.el (autoload 'setup-japanese-environment-internal "japan-util" "\ @@ -16087,7 +16138,7 @@ ;;;*** ;;;### (autoloads (jka-compr-uninstall jka-compr-handler) "jka-compr" -;;;;;; "jka-compr.el" (20250 40679)) +;;;;;; "jka-compr.el" (20281 13989)) ;;; Generated autoloads from jka-compr.el (defvar jka-compr-inhibit nil "\ @@ -16110,7 +16161,7 @@ ;;;*** -;;;### (autoloads (js-mode) "js" "progmodes/js.el" (20229 34587)) +;;;### (autoloads (js-mode) "js" "progmodes/js.el" (20281 13989)) ;;; Generated autoloads from progmodes/js.el (autoload 'js-mode "js" "\ @@ -16124,7 +16175,7 @@ ;;;### (autoloads (keypad-setup keypad-numlock-shifted-setup keypad-shifted-setup ;;;;;; keypad-numlock-setup keypad-setup) "keypad" "emulation/keypad.el" -;;;;;; (20237 28610)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emulation/keypad.el (defvar keypad-setup nil "\ @@ -16180,7 +16231,7 @@ ;;;*** ;;;### (autoloads (kinsoku) "kinsoku" "international/kinsoku.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from international/kinsoku.el (autoload 'kinsoku "kinsoku" "\ @@ -16201,8 +16252,8 @@ ;;;*** -;;;### (autoloads (kkc-region) "kkc" "international/kkc.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (kkc-region) "kkc" "international/kkc.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from international/kkc.el (defvar kkc-after-update-conversion-functions nil "\ @@ -16227,7 +16278,7 @@ ;;;### (autoloads (kmacro-end-call-mouse kmacro-end-and-call-macro ;;;;;; kmacro-end-or-call-macro kmacro-start-macro-or-insert-counter ;;;;;; kmacro-call-macro kmacro-end-macro kmacro-start-macro kmacro-exec-ring-item) -;;;;;; "kmacro" "kmacro.el" (20229 34587)) +;;;;;; "kmacro" "kmacro.el" (20281 13989)) ;;; Generated autoloads from kmacro.el (global-set-key "\C-x(" 'kmacro-start-macro) (global-set-key "\C-x)" 'kmacro-end-macro) @@ -16338,7 +16389,7 @@ ;;;*** ;;;### (autoloads (setup-korean-environment-internal) "korea-util" -;;;;;; "language/korea-util.el" (20229 34587)) +;;;;;; "language/korea-util.el" (20281 13989)) ;;; Generated autoloads from language/korea-util.el (defvar default-korean-keyboard (purecopy (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "")) "\ @@ -16353,7 +16404,7 @@ ;;;*** ;;;### (autoloads (landmark landmark-test-run) "landmark" "play/landmark.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from play/landmark.el (defalias 'landmark-repeat 'landmark-test-run) @@ -16385,7 +16436,7 @@ ;;;### (autoloads (lao-compose-region lao-composition-function lao-transcribe-roman-to-lao-string ;;;;;; lao-transcribe-single-roman-syllable-to-lao lao-compose-string) -;;;;;; "lao-util" "language/lao-util.el" (20229 34587)) +;;;;;; "lao-util" "language/lao-util.el" (20281 13989)) ;;; Generated autoloads from language/lao-util.el (autoload 'lao-compose-string "lao-util" "\ @@ -16424,7 +16475,7 @@ ;;;### (autoloads (latexenc-find-file-coding-system latexenc-coding-system-to-inputenc ;;;;;; latexenc-inputenc-to-coding-system latex-inputenc-coding-alist) -;;;;;; "latexenc" "international/latexenc.el" (20229 34587)) +;;;;;; "latexenc" "international/latexenc.el" (20281 13989)) ;;; 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))) "\ @@ -16456,7 +16507,7 @@ ;;;*** ;;;### (autoloads (latin1-display-ucs-per-lynx latin1-display latin1-display) -;;;;;; "latin1-disp" "international/latin1-disp.el" (20229 34587)) +;;;;;; "latin1-disp" "international/latin1-disp.el" (20281 13989)) ;;; Generated autoloads from international/latin1-disp.el (defvar latin1-display nil "\ @@ -16498,7 +16549,7 @@ ;;;*** ;;;### (autoloads (ld-script-mode) "ld-script" "progmodes/ld-script.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/ld-script.el (autoload 'ld-script-mode "ld-script" "\ @@ -16509,7 +16560,7 @@ ;;;*** ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from ledit.el (defconst ledit-save-files t "\ @@ -16544,7 +16595,7 @@ ;;;*** -;;;### (autoloads (life) "life" "play/life.el" (20229 34587)) +;;;### (autoloads (life) "life" "play/life.el" (20281 13989)) ;;; Generated autoloads from play/life.el (autoload 'life "life" "\ @@ -16558,7 +16609,7 @@ ;;;*** ;;;### (autoloads (global-linum-mode linum-mode linum-format) "linum" -;;;;;; "linum.el" (20229 34587)) +;;;;;; "linum.el" (20281 13989)) ;;; Generated autoloads from linum.el (defvar linum-format 'dynamic "\ @@ -16603,8 +16654,8 @@ ;;;*** -;;;### (autoloads (unload-feature) "loadhist" "loadhist.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (unload-feature) "loadhist" "loadhist.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from loadhist.el (autoload 'unload-feature "loadhist" "\ @@ -16636,7 +16687,7 @@ ;;;*** ;;;### (autoloads (locate-with-filter locate locate-ls-subdir-switches) -;;;;;; "locate" "locate.el" (20229 34587)) +;;;;;; "locate" "locate.el" (20281 13989)) ;;; Generated autoloads from locate.el (defvar locate-ls-subdir-switches (purecopy "-al") "\ @@ -16688,7 +16739,7 @@ ;;;*** -;;;### (autoloads (log-edit) "log-edit" "vc/log-edit.el" (20229 34587)) +;;;### (autoloads (log-edit) "log-edit" "vc/log-edit.el" (20281 13989)) ;;; Generated autoloads from vc/log-edit.el (autoload 'log-edit "log-edit" "\ @@ -16715,8 +16766,8 @@ ;;;*** -;;;### (autoloads (log-view-mode) "log-view" "vc/log-view.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (log-view-mode) "log-view" "vc/log-view.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from vc/log-view.el (autoload 'log-view-mode "log-view" "\ @@ -16726,8 +16777,8 @@ ;;;*** -;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from longlines.el (autoload 'longlines-mode "longlines" "\ @@ -16753,8 +16804,8 @@ ;;;*** ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer -;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (20229 -;;;;;; 34587)) +;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from lpr.el (defvar lpr-windows-system (memq system-type '(ms-dos windows-nt)) "\ @@ -16850,7 +16901,7 @@ ;;;*** ;;;### (autoloads (ls-lisp-support-shell-wildcards) "ls-lisp" "ls-lisp.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from ls-lisp.el (defvar ls-lisp-support-shell-wildcards t "\ @@ -16861,8 +16912,8 @@ ;;;*** -;;;### (autoloads (lunar-phases) "lunar" "calendar/lunar.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (lunar-phases) "lunar" "calendar/lunar.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from calendar/lunar.el (autoload 'lunar-phases "lunar" "\ @@ -16876,8 +16927,8 @@ ;;;*** -;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from progmodes/m4-mode.el (autoload 'm4-mode "m4-mode" "\ @@ -16888,7 +16939,7 @@ ;;;*** ;;;### (autoloads (macroexpand-all) "macroexp" "emacs-lisp/macroexp.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emacs-lisp/macroexp.el (autoload 'macroexpand-all "macroexp" "\ @@ -16902,7 +16953,7 @@ ;;;*** ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro -;;;;;; name-last-kbd-macro) "macros" "macros.el" (20229 34587)) +;;;;;; name-last-kbd-macro) "macros" "macros.el" (20281 13989)) ;;; Generated autoloads from macros.el (autoload 'name-last-kbd-macro "macros" "\ @@ -16991,7 +17042,7 @@ ;;;*** ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" -;;;;;; "mail/mail-extr.el" (20237 28610)) +;;;;;; "mail/mail-extr.el" (20281 13989)) ;;; Generated autoloads from mail/mail-extr.el (autoload 'mail-extract-address-components "mail-extr" "\ @@ -17023,7 +17074,7 @@ ;;;### (autoloads (mail-hist-put-headers-into-history mail-hist-keep-history ;;;;;; mail-hist-enable mail-hist-define-keys) "mail-hist" "mail/mail-hist.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from mail/mail-hist.el (autoload 'mail-hist-define-keys "mail-hist" "\ @@ -17055,7 +17106,7 @@ ;;;### (autoloads (mail-fetch-field mail-unquote-printable-region ;;;;;; mail-unquote-printable mail-quote-printable-region mail-quote-printable ;;;;;; mail-file-babyl-p mail-dont-reply-to-names mail-use-rfc822) -;;;;;; "mail-utils" "mail/mail-utils.el" (20229 34587)) +;;;;;; "mail-utils" "mail/mail-utils.el" (20281 13989)) ;;; Generated autoloads from mail/mail-utils.el (defvar mail-use-rfc822 nil "\ @@ -17127,8 +17178,8 @@ ;;;*** ;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup -;;;;;; mail-abbrevs-mode) "mailabbrev" "mail/mailabbrev.el" (20229 -;;;;;; 34587)) +;;;;;; mail-abbrevs-mode) "mailabbrev" "mail/mailabbrev.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from mail/mailabbrev.el (defvar mail-abbrevs-mode nil "\ @@ -17179,7 +17230,7 @@ ;;;### (autoloads (mail-complete mail-completion-at-point-function ;;;;;; define-mail-alias expand-mail-aliases mail-complete-style) -;;;;;; "mailalias" "mail/mailalias.el" (20229 34587)) +;;;;;; "mailalias" "mail/mailalias.el" (20281 13989)) ;;; Generated autoloads from mail/mailalias.el (defvar mail-complete-style 'angles "\ @@ -17231,7 +17282,7 @@ ;;;*** ;;;### (autoloads (mailclient-send-it) "mailclient" "mail/mailclient.el" -;;;;;; (20237 28610)) +;;;;;; (20281 13989)) ;;; Generated autoloads from mail/mailclient.el (autoload 'mailclient-send-it "mailclient" "\ @@ -17245,7 +17296,7 @@ ;;;### (autoloads (makefile-imake-mode makefile-bsdmake-mode makefile-makepp-mode ;;;;;; makefile-gmake-mode makefile-automake-mode makefile-mode) -;;;;;; "make-mode" "progmodes/make-mode.el" (20229 34587)) +;;;;;; "make-mode" "progmodes/make-mode.el" (20281 13989)) ;;; Generated autoloads from progmodes/make-mode.el (autoload 'makefile-mode "make-mode" "\ @@ -17362,8 +17413,8 @@ ;;;*** -;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from makesum.el (autoload 'make-command-summary "makesum" "\ @@ -17375,7 +17426,7 @@ ;;;*** ;;;### (autoloads (Man-bookmark-jump man-follow man) "man" "man.el" -;;;;;; (20229 34587)) +;;;;;; (20292 45155)) ;;; Generated autoloads from man.el (defalias 'manual-entry 'man) @@ -17429,7 +17480,7 @@ ;;;*** -;;;### (autoloads (master-mode) "master" "master.el" (20229 34587)) +;;;### (autoloads (master-mode) "master" "master.el" (20281 13989)) ;;; Generated autoloads from master.el (autoload 'master-mode "master" "\ @@ -17452,7 +17503,7 @@ ;;;*** ;;;### (autoloads (minibuffer-depth-indicate-mode) "mb-depth" "mb-depth.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from mb-depth.el (defvar minibuffer-depth-indicate-mode nil "\ @@ -17485,7 +17536,7 @@ ;;;;;; message-forward-make-body message-forward message-recover ;;;;;; message-supersede message-cancel-news message-followup message-wide-reply ;;;;;; message-reply message-news message-mail message-mode) "message" -;;;;;; "gnus/message.el" (20229 34587)) +;;;;;; "gnus/message.el" (20281 13989)) ;;; 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) @@ -17651,7 +17702,7 @@ ;;;*** ;;;### (autoloads (metapost-mode metafont-mode) "meta-mode" "progmodes/meta-mode.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/meta-mode.el (autoload 'metafont-mode "meta-mode" "\ @@ -17668,7 +17719,7 @@ ;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body ;;;;;; metamail-interpret-header) "metamail" "mail/metamail.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from mail/metamail.el (autoload 'metamail-interpret-header "metamail" "\ @@ -17713,7 +17764,7 @@ ;;;### (autoloads (mh-fully-kill-draft mh-send-letter mh-user-agent-compose ;;;;;; mh-smail-batch mh-smail-other-window mh-smail) "mh-comp" -;;;;;; "mh-e/mh-comp.el" (20229 34587)) +;;;;;; "mh-e/mh-comp.el" (20281 13989)) ;;; Generated autoloads from mh-e/mh-comp.el (autoload 'mh-smail "mh-comp" "\ @@ -17803,7 +17854,7 @@ ;;;*** -;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (20229 34587)) +;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (20281 13989)) ;;; Generated autoloads from mh-e/mh-e.el (put 'mh-progs 'risky-local-variable t) @@ -17820,7 +17871,7 @@ ;;;*** ;;;### (autoloads (mh-folder-mode mh-nmail mh-rmail) "mh-folder" -;;;;;; "mh-e/mh-folder.el" (20229 34587)) +;;;;;; "mh-e/mh-folder.el" (20281 13989)) ;;; Generated autoloads from mh-e/mh-folder.el (autoload 'mh-rmail "mh-folder" "\ @@ -17902,7 +17953,7 @@ ;;;*** ;;;### (autoloads (midnight-delay-set clean-buffer-list) "midnight" -;;;;;; "midnight.el" (20229 34587)) +;;;;;; "midnight.el" (20281 13989)) ;;; Generated autoloads from midnight.el (autoload 'clean-buffer-list "midnight" "\ @@ -17929,7 +17980,7 @@ ;;;*** ;;;### (autoloads (minibuffer-electric-default-mode) "minibuf-eldef" -;;;;;; "minibuf-eldef.el" (20229 34587)) +;;;;;; "minibuf-eldef.el" (20281 13989)) ;;; Generated autoloads from minibuf-eldef.el (defvar minibuffer-electric-default-mode nil "\ @@ -17959,7 +18010,7 @@ ;;;*** ;;;### (autoloads (list-dynamic-libraries butterfly) "misc" "misc.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from misc.el (autoload 'butterfly "misc" "\ @@ -17989,7 +18040,7 @@ ;;;### (autoloads (multi-isearch-files-regexp multi-isearch-files ;;;;;; multi-isearch-buffers-regexp multi-isearch-buffers multi-isearch-setup) -;;;;;; "misearch" "misearch.el" (20229 34587)) +;;;;;; "misearch" "misearch.el" (20281 13989)) ;;; Generated autoloads from misearch.el (add-hook 'isearch-mode-hook 'multi-isearch-setup) @@ -18071,7 +18122,7 @@ ;;;*** ;;;### (autoloads (mixal-mode) "mixal-mode" "progmodes/mixal-mode.el" -;;;;;; (20237 28610)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/mixal-mode.el (autoload 'mixal-mode "mixal-mode" "\ @@ -18082,7 +18133,7 @@ ;;;*** ;;;### (autoloads (mm-default-file-encoding) "mm-encode" "gnus/mm-encode.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/mm-encode.el (autoload 'mm-default-file-encoding "mm-encode" "\ @@ -18093,7 +18144,7 @@ ;;;*** ;;;### (autoloads (mm-inline-external-body mm-extern-cache-contents) -;;;;;; "mm-extern" "gnus/mm-extern.el" (20229 34587)) +;;;;;; "mm-extern" "gnus/mm-extern.el" (20281 13989)) ;;; Generated autoloads from gnus/mm-extern.el (autoload 'mm-extern-cache-contents "mm-extern" "\ @@ -18112,7 +18163,7 @@ ;;;*** ;;;### (autoloads (mm-inline-partial) "mm-partial" "gnus/mm-partial.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/mm-partial.el (autoload 'mm-inline-partial "mm-partial" "\ @@ -18126,7 +18177,7 @@ ;;;*** ;;;### (autoloads (mm-url-insert-file-contents-external mm-url-insert-file-contents) -;;;;;; "mm-url" "gnus/mm-url.el" (20229 34587)) +;;;;;; "mm-url" "gnus/mm-url.el" (20281 13989)) ;;; Generated autoloads from gnus/mm-url.el (autoload 'mm-url-insert-file-contents "mm-url" "\ @@ -18143,7 +18194,7 @@ ;;;*** ;;;### (autoloads (mm-uu-dissect-text-parts mm-uu-dissect) "mm-uu" -;;;;;; "gnus/mm-uu.el" (20229 34587)) +;;;;;; "gnus/mm-uu.el" (20281 13989)) ;;; Generated autoloads from gnus/mm-uu.el (autoload 'mm-uu-dissect "mm-uu" "\ @@ -18163,7 +18214,7 @@ ;;;*** ;;;### (autoloads (mml-attach-file mml-to-mime) "mml" "gnus/mml.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/mml.el (autoload 'mml-to-mime "mml" "\ @@ -18188,7 +18239,7 @@ ;;;*** ;;;### (autoloads (mml1991-sign mml1991-encrypt) "mml1991" "gnus/mml1991.el" -;;;;;; (20229 34587)) +;;;;;; (20291 37665)) ;;; Generated autoloads from gnus/mml1991.el (autoload 'mml1991-encrypt "mml1991" "\ @@ -18205,7 +18256,7 @@ ;;;### (autoloads (mml2015-self-encrypt mml2015-sign mml2015-encrypt ;;;;;; mml2015-verify-test mml2015-verify mml2015-decrypt-test mml2015-decrypt) -;;;;;; "mml2015" "gnus/mml2015.el" (20229 34587)) +;;;;;; "mml2015" "gnus/mml2015.el" (20281 13989)) ;;; Generated autoloads from gnus/mml2015.el (autoload 'mml2015-decrypt "mml2015" "\ @@ -18245,8 +18296,8 @@ ;;;*** -;;;### (autoloads (m2-mode) "modula2" "progmodes/modula2.el" (20159 -;;;;;; 42847)) +;;;### (autoloads (m2-mode) "modula2" "progmodes/modula2.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from progmodes/modula2.el (defalias 'modula-2-mode 'm2-mode) @@ -18280,7 +18331,7 @@ ;;;*** ;;;### (autoloads (denato-region nato-region unmorse-region morse-region) -;;;;;; "morse" "play/morse.el" (20229 34587)) +;;;;;; "morse" "play/morse.el" (20281 13989)) ;;; Generated autoloads from play/morse.el (autoload 'morse-region "morse" "\ @@ -18306,7 +18357,7 @@ ;;;*** ;;;### (autoloads (mouse-drag-drag mouse-drag-throw) "mouse-drag" -;;;;;; "mouse-drag.el" (20229 34587)) +;;;;;; "mouse-drag.el" (20281 13989)) ;;; Generated autoloads from mouse-drag.el (autoload 'mouse-drag-throw "mouse-drag" "\ @@ -18353,8 +18404,8 @@ ;;;*** -;;;### (autoloads (mouse-sel-mode) "mouse-sel" "mouse-sel.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (mouse-sel-mode) "mouse-sel" "mouse-sel.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from mouse-sel.el (defvar mouse-sel-mode nil "\ @@ -18397,7 +18448,7 @@ ;;;*** -;;;### (autoloads (mpc) "mpc" "mpc.el" (20229 34587)) +;;;### (autoloads (mpc) "mpc" "mpc.el" (20281 13989)) ;;; Generated autoloads from mpc.el (autoload 'mpc "mpc" "\ @@ -18407,7 +18458,7 @@ ;;;*** -;;;### (autoloads (mpuz) "mpuz" "play/mpuz.el" (20229 34587)) +;;;### (autoloads (mpuz) "mpuz" "play/mpuz.el" (20281 13989)) ;;; Generated autoloads from play/mpuz.el (autoload 'mpuz "mpuz" "\ @@ -18417,7 +18468,7 @@ ;;;*** -;;;### (autoloads (msb-mode) "msb" "msb.el" (20229 34587)) +;;;### (autoloads (msb-mode) "msb" "msb.el" (20281 13989)) ;;; Generated autoloads from msb.el (defvar msb-mode nil "\ @@ -18447,7 +18498,7 @@ ;;;;;; describe-current-coding-system describe-current-coding-system-briefly ;;;;;; describe-coding-system describe-character-set list-charset-chars ;;;;;; read-charset list-character-sets) "mule-diag" "international/mule-diag.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from international/mule-diag.el (autoload 'list-character-sets "mule-diag" "\ @@ -18584,7 +18635,7 @@ ;;;;;; coding-system-translation-table-for-decode coding-system-pre-write-conversion ;;;;;; coding-system-post-read-conversion lookup-nested-alist set-nested-alist ;;;;;; truncate-string-to-width store-substring string-to-sequence) -;;;;;; "mule-util" "international/mule-util.el" (20229 34587)) +;;;;;; "mule-util" "international/mule-util.el" (20281 13989)) ;;; Generated autoloads from international/mule-util.el (autoload 'string-to-sequence "mule-util" "\ @@ -18724,8 +18775,8 @@ ;;;### (autoloads (network-connection network-connection-to-service ;;;;;; whois-reverse-lookup whois finger ftp run-dig dns-lookup-host ;;;;;; nslookup nslookup-host ping traceroute route arp netstat -;;;;;; iwconfig ifconfig) "net-utils" "net/net-utils.el" (20229 -;;;;;; 34587)) +;;;;;; iwconfig ifconfig) "net-utils" "net/net-utils.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from net/net-utils.el (autoload 'ifconfig "net-utils" "\ @@ -18819,8 +18870,8 @@ ;;;*** -;;;### (autoloads (netrc-credentials) "netrc" "net/netrc.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (netrc-credentials) "netrc" "net/netrc.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from net/netrc.el (autoload 'netrc-credentials "netrc" "\ @@ -18833,7 +18884,7 @@ ;;;*** ;;;### (autoloads (open-network-stream) "network-stream" "net/network-stream.el" -;;;;;; (20236 7740)) +;;;;;; (20281 13989)) ;;; Generated autoloads from net/network-stream.el (autoload 'open-network-stream "network-stream" "\ @@ -18929,7 +18980,7 @@ ;;;;;; uncomment-region comment-kill comment-set-column comment-indent ;;;;;; comment-indent-default comment-normalize-vars comment-multi-line ;;;;;; comment-padding comment-style comment-column) "newcomment" -;;;;;; "newcomment.el" (20229 34587)) +;;;;;; "newcomment.el" (20296 20594)) ;;; Generated autoloads from newcomment.el (defalias 'indent-for-comment 'comment-indent) @@ -18990,6 +19041,48 @@ Applicable at least in modes for languages like fixed-format Fortran where comments always start in column zero.") +(defconst comment-styles '((plain nil nil nil nil "Start in column 0 (do not indent), as in Emacs-20") (indent-or-triple nil nil nil multi-char "Start in column 0, but only for single-char starters") (indent nil nil nil t "Full comment per line, ends not aligned") (aligned nil t nil t "Full comment per line, ends aligned") (box nil t t t "Full comment per line, ends aligned, + top and bottom") (extra-line t nil t t "One comment for all lines, end on a line by itself") (multi-line t nil nil t "One comment for all lines, end on last commented line") (box-multi t t t t "One comment for all lines, + top and bottom")) "\ +Comment region style definitions. +Each style is defined with a form (STYLE . (MULTI ALIGN EXTRA INDENT DOC)). +DOC should succinctly describe the style. +STYLE should be a mnemonic symbol. +MULTI specifies that comments are allowed to span multiple lines. + e.g. in C it comments regions as + /* blabla + * bli */ + rather than + /* blabla */ + /* bli */ + if `comment-end' is empty, this has no effect. + +ALIGN specifies that the `comment-end' markers should be aligned. + e.g. in C it comments regions as + /* blabla */ + /* bli */ + rather than + /* blabla */ + /* bli */ + if `comment-end' is empty, this has no effect, unless EXTRA is also set, + in which case the comment gets wrapped in a box. + +EXTRA specifies that an extra line should be used before and after the + region to comment (to put the `comment-end' and `comment-start'). + e.g. in C it comments regions as + /* + * blabla + * bli + */ + rather than + /* blabla + * bli */ + if the comment style is not multi line, this has no effect, unless ALIGN + is also set, in which case the comment gets wrapped in a box. + +INDENT specifies that the `comment-start' markers should not be put at the + left margin but at the current indentation of the region to comment. +If INDENT is `multi-char', that means indent multi-character + comment starters, but not one-character comment starters.") + (defvar comment-style 'indent "\ Style to be used for `comment-region'. See `comment-styles' for a list of available styles.") @@ -19129,7 +19222,7 @@ ;;;*** ;;;### (autoloads (newsticker-start newsticker-running-p) "newst-backend" -;;;;;; "net/newst-backend.el" (20229 34587)) +;;;;;; "net/newst-backend.el" (20281 13989)) ;;; Generated autoloads from net/newst-backend.el (autoload 'newsticker-running-p "newst-backend" "\ @@ -19151,7 +19244,7 @@ ;;;*** ;;;### (autoloads (newsticker-plainview) "newst-plainview" "net/newst-plainview.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from net/newst-plainview.el (autoload 'newsticker-plainview "newst-plainview" "\ @@ -19162,7 +19255,7 @@ ;;;*** ;;;### (autoloads (newsticker-show-news) "newst-reader" "net/newst-reader.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from net/newst-reader.el (autoload 'newsticker-show-news "newst-reader" "\ @@ -19173,7 +19266,7 @@ ;;;*** ;;;### (autoloads (newsticker-start-ticker newsticker-ticker-running-p) -;;;;;; "newst-ticker" "net/newst-ticker.el" (20229 34587)) +;;;;;; "newst-ticker" "net/newst-ticker.el" (20281 13989)) ;;; Generated autoloads from net/newst-ticker.el (autoload 'newsticker-ticker-running-p "newst-ticker" "\ @@ -19194,7 +19287,7 @@ ;;;*** ;;;### (autoloads (newsticker-treeview) "newst-treeview" "net/newst-treeview.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from net/newst-treeview.el (autoload 'newsticker-treeview "newst-treeview" "\ @@ -19205,7 +19298,7 @@ ;;;*** ;;;### (autoloads (nndiary-generate-nov-databases) "nndiary" "gnus/nndiary.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/nndiary.el (autoload 'nndiary-generate-nov-databases "nndiary" "\ @@ -19215,8 +19308,8 @@ ;;;*** -;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from gnus/nndoc.el (autoload 'nndoc-add-type "nndoc" "\ @@ -19231,7 +19324,7 @@ ;;;*** ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/nnfolder.el (autoload 'nnfolder-generate-active-file "nnfolder" "\ @@ -19243,7 +19336,7 @@ ;;;*** ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/nnml.el (autoload 'nnml-generate-nov-databases "nnml" "\ @@ -19254,7 +19347,7 @@ ;;;*** ;;;### (autoloads (disable-command enable-command disabled-command-function) -;;;;;; "novice" "novice.el" (20229 34587)) +;;;;;; "novice" "novice.el" (20281 13989)) ;;; Generated autoloads from novice.el (defvar disabled-command-function 'disabled-command-function "\ @@ -19287,7 +19380,7 @@ ;;;*** ;;;### (autoloads (nroff-mode) "nroff-mode" "textmodes/nroff-mode.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from textmodes/nroff-mode.el (autoload 'nroff-mode "nroff-mode" "\ @@ -19302,7 +19395,7 @@ ;;;*** ;;;### (autoloads (nxml-glyph-display-string) "nxml-glyph" "nxml/nxml-glyph.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from nxml/nxml-glyph.el (autoload 'nxml-glyph-display-string "nxml-glyph" "\ @@ -19314,8 +19407,8 @@ ;;;*** -;;;### (autoloads (nxml-mode) "nxml-mode" "nxml/nxml-mode.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (nxml-mode) "nxml-mode" "nxml/nxml-mode.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from nxml/nxml-mode.el (autoload 'nxml-mode "nxml-mode" "\ @@ -19377,7 +19470,7 @@ ;;;*** ;;;### (autoloads (nxml-enable-unicode-char-name-sets) "nxml-uchnm" -;;;;;; "nxml/nxml-uchnm.el" (20229 34587)) +;;;;;; "nxml/nxml-uchnm.el" (20281 13989)) ;;; Generated autoloads from nxml/nxml-uchnm.el (autoload 'nxml-enable-unicode-char-name-sets "nxml-uchnm" "\ @@ -19400,7 +19493,7 @@ ;;;;;; org-babel-pop-to-session-maybe org-babel-load-in-session-maybe ;;;;;; org-babel-expand-src-block-maybe org-babel-view-src-block-info ;;;;;; org-babel-execute-maybe org-babel-execute-safely-maybe) "ob" -;;;;;; "org/ob.el" (20230 13182)) +;;;;;; "org/ob.el" (20281 13989)) ;;; Generated autoloads from org/ob.el (autoload 'org-babel-execute-safely-maybe "ob" "\ @@ -19611,7 +19704,7 @@ ;;;*** ;;;### (autoloads (org-babel-describe-bindings) "ob-keys" "org/ob-keys.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from org/ob-keys.el (autoload 'org-babel-describe-bindings "ob-keys" "\ @@ -19622,7 +19715,7 @@ ;;;*** ;;;### (autoloads (org-babel-lob-get-info org-babel-lob-execute-maybe -;;;;;; org-babel-lob-ingest) "ob-lob" "org/ob-lob.el" (20229 34587)) +;;;;;; org-babel-lob-ingest) "ob-lob" "org/ob-lob.el" (20281 13989)) ;;; Generated autoloads from org/ob-lob.el (autoload 'org-babel-lob-ingest "ob-lob" "\ @@ -19647,7 +19740,7 @@ ;;;### (autoloads (org-babel-tangle org-babel-tangle-file org-babel-load-file ;;;;;; org-babel-tangle-lang-exts) "ob-tangle" "org/ob-tangle.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from org/ob-tangle.el (defvar org-babel-tangle-lang-exts '(("emacs-lisp" . "el")) "\ @@ -19689,7 +19782,7 @@ ;;;*** ;;;### (autoloads (inferior-octave) "octave-inf" "progmodes/octave-inf.el" -;;;;;; (20229 34587)) +;;;;;; (20291 37665)) ;;; Generated autoloads from progmodes/octave-inf.el (autoload 'inferior-octave "octave-inf" "\ @@ -19712,7 +19805,7 @@ ;;;*** ;;;### (autoloads (octave-mode) "octave-mod" "progmodes/octave-mod.el" -;;;;;; (20229 34587)) +;;;;;; (20291 37665)) ;;; Generated autoloads from progmodes/octave-mod.el (autoload 'octave-mode "octave-mod" "\ @@ -19800,7 +19893,7 @@ ;;;;;; org-insert-link-global org-store-link org-run-like-in-org-mode ;;;;;; turn-on-orgstruct++ turn-on-orgstruct orgstruct-mode org-global-cycle ;;;;;; org-mode org-babel-do-load-languages) "org" "org/org.el" -;;;;;; (20236 7740)) +;;;;;; (20281 13989)) ;;; Generated autoloads from org/org.el (autoload 'org-babel-do-load-languages "org" "\ @@ -20027,7 +20120,7 @@ ;;;;;; org-diary org-agenda-list-stuck-projects org-tags-view org-todo-list ;;;;;; org-search-view org-agenda-list org-batch-store-agenda-views ;;;;;; org-store-agenda-views org-batch-agenda-csv org-batch-agenda -;;;;;; org-agenda) "org-agenda" "org/org-agenda.el" (20236 7740)) +;;;;;; org-agenda) "org-agenda" "org/org-agenda.el" (20281 13989)) ;;; Generated autoloads from org/org-agenda.el (autoload 'org-agenda "org-agenda" "\ @@ -20281,7 +20374,7 @@ ;;;### (autoloads (org-archive-subtree-default-with-confirmation ;;;;;; org-archive-subtree-default) "org-archive" "org/org-archive.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from org/org-archive.el (autoload 'org-archive-subtree-default "org-archive" "\ @@ -20301,8 +20394,8 @@ ;;;### (autoloads (org-export-as-ascii org-export-region-as-ascii ;;;;;; org-replace-region-by-ascii org-export-as-ascii-to-buffer ;;;;;; org-export-as-utf8-to-buffer org-export-as-utf8 org-export-as-latin1-to-buffer -;;;;;; org-export-as-latin1) "org-ascii" "org/org-ascii.el" (20229 -;;;;;; 34587)) +;;;;;; org-export-as-latin1) "org-ascii" "org/org-ascii.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from org/org-ascii.el (autoload 'org-export-as-latin1 "org-ascii" "\ @@ -20375,8 +20468,8 @@ ;;;*** -;;;### (autoloads (org-attach) "org-attach" "org/org-attach.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (org-attach) "org-attach" "org/org-attach.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from org/org-attach.el (autoload 'org-attach "org-attach" "\ @@ -20388,7 +20481,7 @@ ;;;*** ;;;### (autoloads (org-bbdb-anniversaries) "org-bbdb" "org/org-bbdb.el" -;;;;;; (20230 13182)) +;;;;;; (20281 13989)) ;;; Generated autoloads from org/org-bbdb.el (autoload 'org-bbdb-anniversaries "org-bbdb" "\ @@ -20399,7 +20492,7 @@ ;;;*** ;;;### (autoloads (org-capture-import-remember-templates org-capture-insert-template-here -;;;;;; org-capture) "org-capture" "org/org-capture.el" (20236 7740)) +;;;;;; org-capture) "org-capture" "org/org-capture.el" (20281 13989)) ;;; Generated autoloads from org/org-capture.el (autoload 'org-capture "org-capture" "\ @@ -20437,7 +20530,7 @@ ;;;*** ;;;### (autoloads (org-clock-persistence-insinuate org-get-clocktable) -;;;;;; "org-clock" "org/org-clock.el" (20236 7740)) +;;;;;; "org-clock" "org/org-clock.el" (20281 13989)) ;;; Generated autoloads from org/org-clock.el (autoload 'org-get-clocktable "org-clock" "\ @@ -20455,7 +20548,7 @@ ;;;*** ;;;### (autoloads (org-datetree-find-date-create) "org-datetree" -;;;;;; "org/org-datetree.el" (20229 34587)) +;;;;;; "org/org-datetree.el" (20281 13989)) ;;; Generated autoloads from org/org-datetree.el (autoload 'org-datetree-find-date-create "org-datetree" "\ @@ -20471,7 +20564,7 @@ ;;;### (autoloads (org-export-as-docbook org-export-as-docbook-pdf-and-open ;;;;;; org-export-as-docbook-pdf org-export-region-as-docbook org-replace-region-by-docbook ;;;;;; org-export-as-docbook-to-buffer org-export-as-docbook-batch) -;;;;;; "org-docbook" "org/org-docbook.el" (20229 34587)) +;;;;;; "org-docbook" "org/org-docbook.el" (20281 13989)) ;;; Generated autoloads from org/org-docbook.el (autoload 'org-export-as-docbook-batch "org-docbook" "\ @@ -20548,7 +20641,7 @@ ;;;### (autoloads (org-insert-export-options-template org-export-as-org ;;;;;; org-export-visible org-export) "org-exp" "org/org-exp.el" -;;;;;; (20236 7740)) +;;;;;; (20281 13989)) ;;; Generated autoloads from org/org-exp.el (autoload 'org-export "org-exp" "\ @@ -20609,8 +20702,8 @@ ;;;*** ;;;### (autoloads (org-feed-show-raw-feed org-feed-goto-inbox org-feed-update -;;;;;; org-feed-update-all) "org-feed" "org/org-feed.el" (20229 -;;;;;; 34587)) +;;;;;; org-feed-update-all) "org-feed" "org/org-feed.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from org/org-feed.el (autoload 'org-feed-update-all "org-feed" "\ @@ -20638,7 +20731,7 @@ ;;;*** ;;;### (autoloads (org-footnote-normalize org-footnote-action) "org-footnote" -;;;;;; "org/org-footnote.el" (20229 34587)) +;;;;;; "org/org-footnote.el" (20282 26769)) ;;; Generated autoloads from org/org-footnote.el (autoload 'org-footnote-action "org-footnote" "\ @@ -20689,7 +20782,7 @@ ;;;### (autoloads (org-freemind-to-org-mode org-freemind-from-org-sparse-tree ;;;;;; org-freemind-from-org-mode org-freemind-from-org-mode-node ;;;;;; org-freemind-show org-export-as-freemind) "org-freemind" -;;;;;; "org/org-freemind.el" (20229 34587)) +;;;;;; "org/org-freemind.el" (20281 13989)) ;;; Generated autoloads from org/org-freemind.el (autoload 'org-export-as-freemind "org-freemind" "\ @@ -20750,7 +20843,7 @@ ;;;### (autoloads (org-export-htmlize-generate-css org-export-as-html ;;;;;; org-export-region-as-html org-replace-region-by-html org-export-as-html-to-buffer ;;;;;; org-export-as-html-batch org-export-as-html-and-open) "org-html" -;;;;;; "org/org-html.el" (20229 34587)) +;;;;;; "org/org-html.el" (20281 13989)) ;;; Generated autoloads from org/org-html.el (put 'org-export-html-style-include-default 'safe-local-variable 'booleanp) @@ -20844,7 +20937,7 @@ ;;;### (autoloads (org-export-icalendar-combine-agenda-files org-export-icalendar-all-agenda-files ;;;;;; org-export-icalendar-this-file) "org-icalendar" "org/org-icalendar.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from org/org-icalendar.el (autoload 'org-export-icalendar-this-file "org-icalendar" "\ @@ -20872,7 +20965,7 @@ ;;;### (autoloads (org-id-store-link org-id-find-id-file org-id-find ;;;;;; org-id-goto org-id-get-with-outline-drilling org-id-get-with-outline-path-completion ;;;;;; org-id-get org-id-copy org-id-get-create) "org-id" "org/org-id.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from org/org-id.el (autoload 'org-id-get-create "org-id" "\ @@ -20941,7 +21034,7 @@ ;;;*** ;;;### (autoloads (org-indent-mode) "org-indent" "org/org-indent.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from org/org-indent.el (autoload 'org-indent-mode "org-indent" "\ @@ -20959,7 +21052,7 @@ ;;;*** ;;;### (autoloads (org-irc-store-link) "org-irc" "org/org-irc.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from org/org-irc.el (autoload 'org-irc-store-link "org-irc" "\ @@ -20972,7 +21065,7 @@ ;;;### (autoloads (org-export-as-pdf-and-open org-export-as-pdf org-export-as-latex ;;;;;; org-export-region-as-latex org-replace-region-by-latex org-export-as-latex-to-buffer ;;;;;; org-export-as-latex-batch) "org-latex" "org/org-latex.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from org/org-latex.el (autoload 'org-export-as-latex-batch "org-latex" "\ @@ -21053,7 +21146,7 @@ ;;;### (autoloads (org-lparse-region org-replace-region-by org-lparse-to-buffer ;;;;;; org-lparse-batch org-lparse-and-open) "org-lparse" "org/org-lparse.el" -;;;;;; (20236 7740)) +;;;;;; (20281 13989)) ;;; Generated autoloads from org/org-lparse.el (autoload 'org-lparse-and-open "org-lparse" "\ @@ -21110,8 +21203,8 @@ ;;;*** ;;;### (autoloads (org-mobile-create-sumo-agenda org-mobile-pull -;;;;;; org-mobile-push) "org-mobile" "org/org-mobile.el" (20230 -;;;;;; 13182)) +;;;;;; org-mobile-push) "org-mobile" "org/org-mobile.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from org/org-mobile.el (autoload 'org-mobile-push "org-mobile" "\ @@ -21138,7 +21231,7 @@ ;;;### (autoloads (org-export-as-odf-and-open org-export-as-odf org-export-odt-convert ;;;;;; org-export-as-odt org-export-region-as-odt org-replace-region-by-odt ;;;;;; org-export-as-odt-to-buffer org-export-as-odt-batch org-export-as-odt-and-open) -;;;;;; "org-odt" "org/org-odt.el" (20236 7740)) +;;;;;; "org-odt" "org/org-odt.el" (20281 13989)) ;;; Generated autoloads from org/org-odt.el (autoload 'org-export-as-odt-and-open "org-odt" "\ @@ -21239,7 +21332,7 @@ ;;;*** ;;;### (autoloads (org-plot/gnuplot) "org-plot" "org/org-plot.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from org/org-plot.el (autoload 'org-plot/gnuplot "org-plot" "\ @@ -21253,7 +21346,7 @@ ;;;### (autoloads (org-publish-current-project org-publish-current-file ;;;;;; org-publish-all org-publish) "org-publish" "org/org-publish.el" -;;;;;; (20236 7740)) +;;;;;; (20281 13989)) ;;; Generated autoloads from org/org-publish.el (defalias 'org-publish-project 'org-publish) @@ -21287,7 +21380,7 @@ ;;;### (autoloads (org-remember-handler org-remember org-remember-apply-template ;;;;;; org-remember-annotation org-remember-insinuate) "org-remember" -;;;;;; "org/org-remember.el" (20229 34587)) +;;;;;; "org/org-remember.el" (20281 13989)) ;;; Generated autoloads from org/org-remember.el (autoload 'org-remember-insinuate "org-remember" "\ @@ -21363,7 +21456,7 @@ ;;;*** ;;;### (autoloads (org-table-to-lisp orgtbl-mode turn-on-orgtbl) -;;;;;; "org-table" "org/org-table.el" (20236 7740)) +;;;;;; "org-table" "org/org-table.el" (20281 13989)) ;;; Generated autoloads from org/org-table.el (autoload 'turn-on-orgtbl "org-table" "\ @@ -21387,7 +21480,7 @@ ;;;*** ;;;### (autoloads (org-export-as-taskjuggler-and-open org-export-as-taskjuggler) -;;;;;; "org-taskjuggler" "org/org-taskjuggler.el" (20236 7740)) +;;;;;; "org-taskjuggler" "org/org-taskjuggler.el" (20281 13989)) ;;; Generated autoloads from org/org-taskjuggler.el (autoload 'org-export-as-taskjuggler "org-taskjuggler" "\ @@ -21415,7 +21508,7 @@ ;;;### (autoloads (org-timer-set-timer org-timer-item org-timer-change-times-in-region ;;;;;; org-timer org-timer-start) "org-timer" "org/org-timer.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from org/org-timer.el (autoload 'org-timer-start "org-timer" "\ @@ -21476,7 +21569,7 @@ ;;;*** ;;;### (autoloads (org-export-as-xoxo) "org-xoxo" "org/org-xoxo.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from org/org-xoxo.el (autoload 'org-export-as-xoxo "org-xoxo" "\ @@ -21488,7 +21581,7 @@ ;;;*** ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "outline.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from outline.el (put 'outline-regexp 'safe-local-variable 'stringp) (put 'outline-heading-end-regexp 'safe-local-variable 'stringp) @@ -21552,7 +21645,7 @@ ;;;### (autoloads (list-packages describe-package package-initialize ;;;;;; package-refresh-contents package-install-file package-install-from-buffer ;;;;;; package-install package-enable-at-startup) "package" "emacs-lisp/package.el" -;;;;;; (20259 55615)) +;;;;;; (20298 57969)) ;;; Generated autoloads from emacs-lisp/package.el (defvar package-enable-at-startup t "\ @@ -21622,7 +21715,7 @@ ;;;*** -;;;### (autoloads (show-paren-mode) "paren" "paren.el" (20229 34587)) +;;;### (autoloads (show-paren-mode) "paren" "paren.el" (20281 13989)) ;;; Generated autoloads from paren.el (defvar show-paren-mode nil "\ @@ -21649,7 +21742,7 @@ ;;;*** ;;;### (autoloads (parse-time-string) "parse-time" "calendar/parse-time.el" -;;;;;; (20229 34587)) +;;;;;; (20297 43054)) ;;; Generated autoloads from calendar/parse-time.el (put 'parse-time-rules 'risky-local-variable t) @@ -21662,8 +21755,8 @@ ;;;*** -;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from progmodes/pascal.el (autoload 'pascal-mode "pascal" "\ @@ -21716,7 +21809,7 @@ ;;;*** ;;;### (autoloads (password-in-cache-p password-cache-expiry password-cache) -;;;;;; "password-cache" "password-cache.el" (20229 34587)) +;;;;;; "password-cache" "password-cache.el" (20281 13989)) ;;; Generated autoloads from password-cache.el (defvar password-cache t "\ @@ -21738,7 +21831,7 @@ ;;;*** ;;;### (autoloads (pcase-let pcase-let* pcase) "pcase" "emacs-lisp/pcase.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emacs-lisp/pcase.el (autoload 'pcase "pcase" "\ @@ -21797,8 +21890,8 @@ ;;;*** -;;;### (autoloads (pcomplete/cvs) "pcmpl-cvs" "pcmpl-cvs.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (pcomplete/cvs) "pcmpl-cvs" "pcmpl-cvs.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from pcmpl-cvs.el (autoload 'pcomplete/cvs "pcmpl-cvs" "\ @@ -21809,7 +21902,7 @@ ;;;*** ;;;### (autoloads (pcomplete/tar pcomplete/make pcomplete/bzip2 pcomplete/gzip) -;;;;;; "pcmpl-gnu" "pcmpl-gnu.el" (20254 62253)) +;;;;;; "pcmpl-gnu" "pcmpl-gnu.el" (20281 13989)) ;;; Generated autoloads from pcmpl-gnu.el (autoload 'pcomplete/gzip "pcmpl-gnu" "\ @@ -21837,7 +21930,7 @@ ;;;*** ;;;### (autoloads (pcomplete/mount pcomplete/umount pcomplete/kill) -;;;;;; "pcmpl-linux" "pcmpl-linux.el" (20229 34587)) +;;;;;; "pcmpl-linux" "pcmpl-linux.el" (20281 13989)) ;;; Generated autoloads from pcmpl-linux.el (autoload 'pcomplete/kill "pcmpl-linux" "\ @@ -21857,8 +21950,8 @@ ;;;*** -;;;### (autoloads (pcomplete/rpm) "pcmpl-rpm" "pcmpl-rpm.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (pcomplete/rpm) "pcmpl-rpm" "pcmpl-rpm.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from pcmpl-rpm.el (autoload 'pcomplete/rpm "pcmpl-rpm" "\ @@ -21870,7 +21963,7 @@ ;;;### (autoloads (pcomplete/scp pcomplete/ssh pcomplete/chgrp pcomplete/chown ;;;;;; pcomplete/which pcomplete/xargs pcomplete/rm pcomplete/rmdir -;;;;;; pcomplete/cd) "pcmpl-unix" "pcmpl-unix.el" (20259 55615)) +;;;;;; pcomplete/cd) "pcmpl-unix" "pcmpl-unix.el" (20281 13989)) ;;; Generated autoloads from pcmpl-unix.el (autoload 'pcomplete/cd "pcmpl-unix" "\ @@ -21927,8 +22020,8 @@ ;;;### (autoloads (pcomplete-shell-setup pcomplete-comint-setup pcomplete-list ;;;;;; pcomplete-help pcomplete-expand pcomplete-continue pcomplete-expand-and-complete -;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (20229 -;;;;;; 34587)) +;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from pcomplete.el (autoload 'pcomplete "pcomplete" "\ @@ -21987,7 +22080,7 @@ ;;;### (autoloads (cvs-dired-use-hook cvs-dired-action cvs-status ;;;;;; cvs-update cvs-examine cvs-quickdir cvs-checkout) "pcvs" -;;;;;; "vc/pcvs.el" (20253 16827)) +;;;;;; "vc/pcvs.el" (20281 13989)) ;;; Generated autoloads from vc/pcvs.el (autoload 'cvs-checkout "pcvs" "\ @@ -22062,7 +22155,7 @@ ;;;*** -;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (20229 34587)) +;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (20281 13989)) ;;; 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)) "\ @@ -22071,7 +22164,7 @@ ;;;*** ;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/perl-mode.el (put 'perl-indent-level 'safe-local-variable 'integerp) (put 'perl-continued-statement-offset 'safe-local-variable 'integerp) @@ -22133,7 +22226,7 @@ ;;;*** ;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el" -;;;;;; (20229 34587)) +;;;;;; (20292 33249)) ;;; Generated autoloads from textmodes/picture.el (autoload 'picture-mode "picture" "\ @@ -22183,7 +22276,7 @@ You can manipulate text with these commands: Clear ARG columns after point without moving: \\[picture-clear-column] - Delete char at point: \\[delete-char] + Delete char at point: \\[picture-delete-char] Clear ARG columns backward: \\[picture-backward-clear-column] Clear ARG lines, advancing over them: \\[picture-clear-line] (the cleared text is saved in the kill ring) @@ -22213,8 +22306,8 @@ ;;;*** -;;;### (autoloads (plstore-open) "plstore" "gnus/plstore.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (plstore-open) "plstore" "gnus/plstore.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from gnus/plstore.el (autoload 'plstore-open "plstore" "\ @@ -22225,7 +22318,7 @@ ;;;*** ;;;### (autoloads (po-find-file-coding-system) "po" "textmodes/po.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from textmodes/po.el (autoload 'po-find-file-coding-system "po" "\ @@ -22236,7 +22329,7 @@ ;;;*** -;;;### (autoloads (pong) "pong" "play/pong.el" (20229 34587)) +;;;### (autoloads (pong) "pong" "play/pong.el" (20281 13989)) ;;; Generated autoloads from play/pong.el (autoload 'pong "pong" "\ @@ -22252,7 +22345,7 @@ ;;;*** -;;;### (autoloads (pop3-movemail) "pop3" "gnus/pop3.el" (20229 34587)) +;;;### (autoloads (pop3-movemail) "pop3" "gnus/pop3.el" (20281 13989)) ;;; Generated autoloads from gnus/pop3.el (autoload 'pop3-movemail "pop3" "\ @@ -22265,7 +22358,7 @@ ;;;### (autoloads (pp-macroexpand-last-sexp pp-eval-last-sexp pp-macroexpand-expression ;;;;;; pp-eval-expression pp pp-buffer pp-to-string) "pp" "emacs-lisp/pp.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emacs-lisp/pp.el (autoload 'pp-to-string "pp" "\ @@ -22333,7 +22426,7 @@ ;;;;;; pr-ps-buffer-print pr-ps-buffer-using-ghostscript pr-ps-buffer-preview ;;;;;; pr-ps-directory-ps-print pr-ps-directory-print pr-ps-directory-using-ghostscript ;;;;;; pr-ps-directory-preview pr-interface) "printing" "printing.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from printing.el (autoload 'pr-interface "printing" "\ @@ -22920,7 +23013,7 @@ ;;;*** -;;;### (autoloads (proced) "proced" "proced.el" (20229 34587)) +;;;### (autoloads (proced) "proced" "proced.el" (20281 13989)) ;;; Generated autoloads from proced.el (autoload 'proced "proced" "\ @@ -22936,7 +23029,7 @@ ;;;*** ;;;### (autoloads (run-prolog mercury-mode prolog-mode) "prolog" -;;;;;; "progmodes/prolog.el" (20229 34587)) +;;;;;; "progmodes/prolog.el" (20293 51680)) ;;; Generated autoloads from progmodes/prolog.el (autoload 'prolog-mode "prolog" "\ @@ -22971,8 +23064,8 @@ ;;;*** -;;;### (autoloads (bdf-directory-list) "ps-bdf" "ps-bdf.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (bdf-directory-list) "ps-bdf" "ps-bdf.el" (20281 +;;;;;; 13989)) ;;; 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")) "\ @@ -22983,8 +23076,8 @@ ;;;*** -;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from progmodes/ps-mode.el (autoload 'ps-mode "ps-mode" "\ @@ -23035,8 +23128,8 @@ ;;;;;; ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer ;;;;;; ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces ;;;;;; ps-print-buffer ps-print-customize ps-print-color-p ps-paper-type -;;;;;; ps-page-dimensions-database) "ps-print" "ps-print.el" (20229 -;;;;;; 36386)) +;;;;;; ps-page-dimensions-database) "ps-print" "ps-print.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from ps-print.el (defvar ps-page-dimensions-database (purecopy (list (list 'a4 (/ (* 72 21.0) 2.54) (/ (* 72 29.7) 2.54) "A4") (list 'a3 (/ (* 72 29.7) 2.54) (/ (* 72 42.0) 2.54) "A3") (list 'letter (* 72 8.5) (* 72 11.0) "Letter") (list 'legal (* 72 8.5) (* 72 14.0) "Legal") (list 'letter-small (* 72 7.68) (* 72 10.16) "LetterSmall") (list 'tabloid (* 72 11.0) (* 72 17.0) "Tabloid") (list 'ledger (* 72 17.0) (* 72 11.0) "Ledger") (list 'statement (* 72 5.5) (* 72 8.5) "Statement") (list 'executive (* 72 7.5) (* 72 10.0) "Executive") (list 'a4small (* 72 7.47) (* 72 10.85) "A4Small") (list 'b4 (* 72 10.125) (* 72 14.33) "B4") (list 'b5 (* 72 7.16) (* 72 10.125) "B5") '(addresslarge 236.0 99.0 "AddressLarge") '(addresssmall 236.0 68.0 "AddressSmall") '(cuthanging13 90.0 222.0 "CutHanging13") '(cuthanging15 90.0 114.0 "CutHanging15") '(diskette 181.0 136.0 "Diskette") '(eurofilefolder 139.0 112.0 "EuropeanFilefolder") '(eurofoldernarrow 526.0 107.0 "EuroFolderNarrow") '(eurofolderwide 526.0 136.0 "EuroFolderWide") '(euronamebadge 189.0 108.0 "EuroNameBadge") '(euronamebadgelarge 223.0 136.0 "EuroNameBadgeLarge") '(filefolder 230.0 37.0 "FileFolder") '(jewelry 76.0 136.0 "Jewelry") '(mediabadge 180.0 136.0 "MediaBadge") '(multipurpose 126.0 68.0 "MultiPurpose") '(retaillabel 90.0 104.0 "RetailLabel") '(shipping 271.0 136.0 "Shipping") '(slide35mm 26.0 104.0 "Slide35mm") '(spine8mm 187.0 26.0 "Spine8mm") '(topcoated 425.19685 136.0 "TopCoatedPaper") '(topcoatedpaper 396.0 136.0 "TopcoatedPaper150") '(vhsface 205.0 127.0 "VHSFace") '(vhsspine 400.0 50.0 "VHSSpine") '(zipdisk 156.0 136.0 "ZipDisk"))) "\ @@ -23233,7 +23326,7 @@ ;;;*** ;;;### (autoloads (jython-mode python-mode python-after-info-look -;;;;;; run-python) "python" "progmodes/python.el" (20261 10951)) +;;;;;; run-python) "python" "progmodes/python.el" (20281 13989)) ;;; Generated autoloads from progmodes/python.el (add-to-list 'interpreter-mode-alist (cons (purecopy "jython") 'jython-mode)) @@ -23319,7 +23412,7 @@ ;;;*** ;;;### (autoloads (quoted-printable-decode-region) "qp" "gnus/qp.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/qp.el (autoload 'quoted-printable-decode-region "qp" "\ @@ -23342,7 +23435,7 @@ ;;;;;; quail-defrule quail-install-decode-map quail-install-map ;;;;;; quail-define-rules quail-show-keyboard-layout quail-set-keyboard-layout ;;;;;; quail-define-package quail-use-package quail-title) "quail" -;;;;;; "international/quail.el" (20229 34587)) +;;;;;; "international/quail.el" (20281 13989)) ;;; Generated autoloads from international/quail.el (autoload 'quail-title "quail" "\ @@ -23573,8 +23666,8 @@ ;;;### (autoloads (quickurl-list quickurl-list-mode quickurl-edit-urls ;;;;;; quickurl-browse-url-ask quickurl-browse-url quickurl-add-url -;;;;;; quickurl-ask quickurl) "quickurl" "net/quickurl.el" (20229 -;;;;;; 34587)) +;;;;;; quickurl-ask quickurl) "quickurl" "net/quickurl.el" (20281 +;;;;;; 13989)) ;;; 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" "\ @@ -23646,7 +23739,7 @@ ;;;*** ;;;### (autoloads (rcirc-track-minor-mode rcirc-connect rcirc) "rcirc" -;;;;;; "net/rcirc.el" (20229 34587)) +;;;;;; "net/rcirc.el" (20281 13989)) ;;; Generated autoloads from net/rcirc.el (autoload 'rcirc "rcirc" "\ @@ -23676,13 +23769,16 @@ (autoload 'rcirc-track-minor-mode "rcirc" "\ Global minor mode for tracking activity in rcirc buffers. +With a prefix argument ARG, enable the mode if ARG is positive, +and disable it otherwise. If called from Lisp, enable the mode +if ARG is omitted or nil. \(fn &optional ARG)" t nil) ;;;*** -;;;### (autoloads (remote-compile) "rcompile" "net/rcompile.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (remote-compile) "rcompile" "net/rcompile.el" (20291 +;;;;;; 37665)) ;;; Generated autoloads from net/rcompile.el (autoload 'remote-compile "rcompile" "\ @@ -23694,7 +23790,7 @@ ;;;*** ;;;### (autoloads (re-builder) "re-builder" "emacs-lisp/re-builder.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emacs-lisp/re-builder.el (defalias 'regexp-builder 're-builder) @@ -23712,7 +23808,7 @@ ;;;*** -;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (20229 34587)) +;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (20281 13989)) ;;; Generated autoloads from recentf.el (defvar recentf-mode nil "\ @@ -23742,7 +23838,7 @@ ;;;;;; string-rectangle delete-whitespace-rectangle open-rectangle ;;;;;; insert-rectangle yank-rectangle kill-rectangle extract-rectangle ;;;;;; delete-extract-rectangle delete-rectangle) "rect" "rect.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from rect.el (define-key ctl-x-r-map "c" 'clear-rectangle) (define-key ctl-x-r-map "k" 'kill-rectangle) @@ -23878,8 +23974,8 @@ ;;;*** -;;;### (autoloads (refill-mode) "refill" "textmodes/refill.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (refill-mode) "refill" "textmodes/refill.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from textmodes/refill.el (autoload 'refill-mode "refill" "\ @@ -23900,7 +23996,7 @@ ;;;*** ;;;### (autoloads (reftex-reset-scanning-information reftex-mode -;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (20229 34587)) +;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (20281 13989)) ;;; Generated autoloads from textmodes/reftex.el (autoload 'turn-on-reftex "reftex" "\ @@ -23956,7 +24052,7 @@ ;;;*** ;;;### (autoloads (reftex-citation) "reftex-cite" "textmodes/reftex-cite.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from textmodes/reftex-cite.el (autoload 'reftex-citation "reftex-cite" "\ @@ -23986,7 +24082,7 @@ ;;;*** ;;;### (autoloads (reftex-isearch-minor-mode) "reftex-global" "textmodes/reftex-global.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from textmodes/reftex-global.el (autoload 'reftex-isearch-minor-mode "reftex-global" "\ @@ -24003,7 +24099,7 @@ ;;;*** ;;;### (autoloads (reftex-index-phrases-mode) "reftex-index" "textmodes/reftex-index.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from textmodes/reftex-index.el (autoload 'reftex-index-phrases-mode "reftex-index" "\ @@ -24036,7 +24132,7 @@ ;;;*** ;;;### (autoloads (reftex-all-document-files) "reftex-parse" "textmodes/reftex-parse.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from textmodes/reftex-parse.el (autoload 'reftex-all-document-files "reftex-parse" "\ @@ -24048,8 +24144,8 @@ ;;;*** -;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (20229 -;;;;;; 34587)) +;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (20281 +;;;;;; 13989)) ;;; 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)))) @@ -24059,7 +24155,7 @@ ;;;*** ;;;### (autoloads (regexp-opt-depth regexp-opt) "regexp-opt" "emacs-lisp/regexp-opt.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emacs-lisp/regexp-opt.el (autoload 'regexp-opt "regexp-opt" "\ @@ -24090,7 +24186,7 @@ ;;;### (autoloads (remember-diary-extract-entries remember-clipboard ;;;;;; remember-other-frame remember) "remember" "textmodes/remember.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from textmodes/remember.el (autoload 'remember "remember" "\ @@ -24121,7 +24217,7 @@ ;;;*** -;;;### (autoloads (repeat) "repeat" "repeat.el" (20229 34587)) +;;;### (autoloads (repeat) "repeat" "repeat.el" (20281 13989)) ;;; Generated autoloads from repeat.el (autoload 'repeat "repeat" "\ @@ -24144,7 +24240,7 @@ ;;;*** ;;;### (autoloads (reporter-submit-bug-report) "reporter" "mail/reporter.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from mail/reporter.el (autoload 'reporter-submit-bug-report "reporter" "\ @@ -24176,7 +24272,7 @@ ;;;*** ;;;### (autoloads (reposition-window) "reposition" "reposition.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from reposition.el (autoload 'reposition-window "reposition" "\ @@ -24203,7 +24299,7 @@ ;;;*** ;;;### (autoloads (global-reveal-mode reveal-mode) "reveal" "reveal.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from reveal.el (autoload 'reveal-mode "reveal" "\ @@ -24239,7 +24335,7 @@ ;;;*** ;;;### (autoloads (make-ring ring-p) "ring" "emacs-lisp/ring.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emacs-lisp/ring.el (autoload 'ring-p "ring" "\ @@ -24254,7 +24350,7 @@ ;;;*** -;;;### (autoloads (rlogin) "rlogin" "net/rlogin.el" (20229 34587)) +;;;### (autoloads (rlogin) "rlogin" "net/rlogin.el" (20281 13989)) ;;; Generated autoloads from net/rlogin.el (autoload 'rlogin "rlogin" "\ @@ -24303,7 +24399,7 @@ ;;;;;; rmail-secondary-file-directory rmail-primary-inbox-list rmail-highlighted-headers ;;;;;; rmail-retry-ignored-headers rmail-displayed-headers rmail-ignored-headers ;;;;;; rmail-user-mail-address-regexp rmail-movemail-variant-p) -;;;;;; "rmail" "mail/rmail.el" (20259 55615)) +;;;;;; "rmail" "mail/rmail.el" (20288 35632)) ;;; Generated autoloads from mail/rmail.el (autoload 'rmail-movemail-variant-p "rmail" "\ @@ -24328,7 +24424,7 @@ (custom-autoload 'rmail-user-mail-address-regexp "rmail" t) -(defvaralias 'rmail-dont-reply-to-names 'mail-dont-reply-to-names) +(define-obsolete-variable-alias 'rmail-dont-reply-to-names 'mail-dont-reply-to-names "24.1") (defvar rmail-default-dont-reply-to-names nil "\ Regexp specifying part of the default value of `mail-dont-reply-to-names'. @@ -24487,7 +24583,7 @@ ;;;*** ;;;### (autoloads (rmail-output-body-to-file rmail-output-as-seen -;;;;;; rmail-output) "rmailout" "mail/rmailout.el" (20229 34587)) +;;;;;; rmail-output) "rmailout" "mail/rmailout.el" (20281 13989)) ;;; Generated autoloads from mail/rmailout.el (put 'rmail-output-file-alist 'risky-local-variable t) @@ -24552,7 +24648,7 @@ ;;;*** ;;;### (autoloads (rng-c-load-schema) "rng-cmpct" "nxml/rng-cmpct.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from nxml/rng-cmpct.el (autoload 'rng-c-load-schema "rng-cmpct" "\ @@ -24564,7 +24660,7 @@ ;;;*** ;;;### (autoloads (rng-nxml-mode-init) "rng-nxml" "nxml/rng-nxml.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from nxml/rng-nxml.el (autoload 'rng-nxml-mode-init "rng-nxml" "\ @@ -24577,7 +24673,7 @@ ;;;*** ;;;### (autoloads (rng-validate-mode) "rng-valid" "nxml/rng-valid.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from nxml/rng-valid.el (autoload 'rng-validate-mode "rng-valid" "\ @@ -24607,8 +24703,8 @@ ;;;*** -;;;### (autoloads (rng-xsd-compile) "rng-xsd" "nxml/rng-xsd.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (rng-xsd-compile) "rng-xsd" "nxml/rng-xsd.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from nxml/rng-xsd.el (put 'http://www\.w3\.org/2001/XMLSchema-datatypes 'rng-dt-compile 'rng-xsd-compile) @@ -24636,7 +24732,7 @@ ;;;*** ;;;### (autoloads (robin-use-package robin-modify-package robin-define-package) -;;;;;; "robin" "international/robin.el" (20209 49217)) +;;;;;; "robin" "international/robin.el" (20281 13989)) ;;; Generated autoloads from international/robin.el (autoload 'robin-define-package "robin" "\ @@ -24669,7 +24765,7 @@ ;;;*** ;;;### (autoloads (toggle-rot13-mode rot13-other-window rot13-region -;;;;;; rot13-string rot13) "rot13" "rot13.el" (20229 34587)) +;;;;;; rot13-string rot13) "rot13" "rot13.el" (20281 13989)) ;;; Generated autoloads from rot13.el (autoload 'rot13 "rot13" "\ @@ -24707,7 +24803,7 @@ ;;;*** ;;;### (autoloads (rst-minor-mode rst-mode) "rst" "textmodes/rst.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from textmodes/rst.el (add-to-list 'auto-mode-alist (purecopy '("\\.re?st\\'" . rst-mode))) @@ -24744,7 +24840,7 @@ ;;;*** ;;;### (autoloads (ruby-mode) "ruby-mode" "progmodes/ruby-mode.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/ruby-mode.el (autoload 'ruby-mode "ruby-mode" "\ @@ -24765,8 +24861,8 @@ ;;;*** -;;;### (autoloads (ruler-mode) "ruler-mode" "ruler-mode.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (ruler-mode) "ruler-mode" "ruler-mode.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from ruler-mode.el (defvar ruler-mode nil "\ @@ -24783,8 +24879,8 @@ ;;;*** -;;;### (autoloads (rx rx-to-string) "rx" "emacs-lisp/rx.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (rx rx-to-string) "rx" "emacs-lisp/rx.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from emacs-lisp/rx.el (autoload 'rx-to-string "rx" "\ @@ -25095,8 +25191,8 @@ ;;;*** -;;;### (autoloads (savehist-mode) "savehist" "savehist.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (savehist-mode) "savehist" "savehist.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from savehist.el (defvar savehist-mode nil "\ @@ -25128,7 +25224,7 @@ ;;;*** ;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/scheme.el (autoload 'scheme-mode "scheme" "\ @@ -25170,7 +25266,7 @@ ;;;*** ;;;### (autoloads (gnus-score-mode) "score-mode" "gnus/score-mode.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/score-mode.el (autoload 'gnus-score-mode "score-mode" "\ @@ -25184,7 +25280,7 @@ ;;;*** ;;;### (autoloads (scroll-all-mode) "scroll-all" "scroll-all.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from scroll-all.el (defvar scroll-all-mode nil "\ @@ -25210,21 +25306,23 @@ ;;;*** ;;;### (autoloads (scroll-lock-mode) "scroll-lock" "scroll-lock.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from scroll-lock.el (autoload 'scroll-lock-mode "scroll-lock" "\ Buffer-local minor mode for pager-like scrolling. -Keys which normally move point by line or paragraph will scroll -the buffer by the respective amount of lines instead and point -will be kept vertically fixed relative to window boundaries -during scrolling. +With a prefix argument ARG, enable the mode if ARG is positive, +and disable it otherwise. If called from Lisp, enable the mode +if ARG is omitted or nil. When enabled, keys that normally move +point by line or paragraph will scroll the buffer by the +respective amount of lines instead and point will be kept +vertically fixed relative to window boundaries during scrolling. \(fn &optional ARG)" t nil) ;;;*** -;;;### (autoloads nil "secrets" "net/secrets.el" (20229 34587)) +;;;### (autoloads nil "secrets" "net/secrets.el" (20281 13989)) ;;; Generated autoloads from net/secrets.el (when (featurep 'dbusbind) (autoload 'secrets-show-secrets "secrets" nil t)) @@ -25232,7 +25330,7 @@ ;;;*** ;;;### (autoloads (semantic-mode semantic-default-submodes) "semantic" -;;;;;; "cedet/semantic.el" (20229 34587)) +;;;;;; "cedet/semantic.el" (20281 13989)) ;;; Generated autoloads from cedet/semantic.el (defvar semantic-default-submodes '(global-semantic-idle-scheduler-mode global-semanticdb-minor-mode) "\ @@ -25286,7 +25384,7 @@ ;;;;;; mail-personal-alias-file mail-default-reply-to mail-archive-file-name ;;;;;; mail-header-separator send-mail-function mail-interactive ;;;;;; mail-self-blind mail-specify-envelope-from mail-from-style) -;;;;;; "sendmail" "mail/sendmail.el" (20238 49468)) +;;;;;; "sendmail" "mail/sendmail.el" (20281 13989)) ;;; Generated autoloads from mail/sendmail.el (defvar mail-from-style 'default "\ @@ -25568,8 +25666,8 @@ ;;;*** ;;;### (autoloads (server-save-buffers-kill-terminal server-mode -;;;;;; server-force-delete server-start) "server" "server.el" (20229 -;;;;;; 34587)) +;;;;;; server-force-delete server-start) "server" "server.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from server.el (put 'server-host 'risky-local-variable t) @@ -25636,7 +25734,7 @@ ;;;*** -;;;### (autoloads (ses-mode) "ses" "ses.el" (20229 34587)) +;;;### (autoloads (ses-mode) "ses" "ses.el" (20281 13989)) ;;; Generated autoloads from ses.el (autoload 'ses-mode "ses" "\ @@ -25655,7 +25753,7 @@ ;;;*** ;;;### (autoloads (html-mode sgml-mode) "sgml-mode" "textmodes/sgml-mode.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from textmodes/sgml-mode.el (autoload 'sgml-mode "sgml-mode" "\ @@ -25721,7 +25819,7 @@ ;;;*** ;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/sh-script.el (put 'sh-shell 'safe-local-variable 'symbolp) @@ -25786,7 +25884,7 @@ ;;;*** ;;;### (autoloads (list-load-path-shadows) "shadow" "emacs-lisp/shadow.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emacs-lisp/shadow.el (autoload 'list-load-path-shadows "shadow" "\ @@ -25836,8 +25934,8 @@ ;;;*** ;;;### (autoloads (shadow-initialize shadow-define-regexp-group shadow-define-literal-group -;;;;;; shadow-define-cluster) "shadowfile" "shadowfile.el" (20229 -;;;;;; 34587)) +;;;;;; shadow-define-cluster) "shadowfile" "shadowfile.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from shadowfile.el (autoload 'shadow-define-cluster "shadowfile" "\ @@ -25876,7 +25974,7 @@ ;;;*** ;;;### (autoloads (shell shell-dumb-shell-regexp) "shell" "shell.el" -;;;;;; (20230 13182)) +;;;;;; (20288 65415)) ;;; Generated autoloads from shell.el (defvar shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe") "\ @@ -25924,19 +26022,21 @@ ;;;*** -;;;### (autoloads (shr-insert-document) "shr" "gnus/shr.el" (20259 -;;;;;; 55615)) +;;;### (autoloads (shr-insert-document) "shr" "gnus/shr.el" (20297 +;;;;;; 43054)) ;;; Generated autoloads from gnus/shr.el (autoload 'shr-insert-document "shr" "\ - +Render the parsed document DOM into the current buffer. +DOM should be a parse tree as generated by +`libxml-parse-html-region' or similar. \(fn DOM)" nil nil) ;;;*** ;;;### (autoloads (sieve-upload-and-bury sieve-upload sieve-manage) -;;;;;; "sieve" "gnus/sieve.el" (20229 34587)) +;;;;;; "sieve" "gnus/sieve.el" (20281 13989)) ;;; Generated autoloads from gnus/sieve.el (autoload 'sieve-manage "sieve" "\ @@ -25957,7 +26057,7 @@ ;;;*** ;;;### (autoloads (sieve-mode) "sieve-mode" "gnus/sieve-mode.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/sieve-mode.el (autoload 'sieve-mode "sieve-mode" "\ @@ -25972,8 +26072,8 @@ ;;;*** -;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from progmodes/simula.el (autoload 'simula-mode "simula" "\ @@ -26022,7 +26122,7 @@ ;;;*** ;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy-new -;;;;;; define-skeleton) "skeleton" "skeleton.el" (20229 34587)) +;;;;;; define-skeleton) "skeleton" "skeleton.el" (20281 13989)) ;;; Generated autoloads from skeleton.el (defvar skeleton-filter-function 'identity "\ @@ -26132,7 +26232,7 @@ ;;;*** ;;;### (autoloads (smerge-start-session smerge-mode smerge-ediff) -;;;;;; "smerge-mode" "vc/smerge-mode.el" (20229 34587)) +;;;;;; "smerge-mode" "vc/smerge-mode.el" (20281 13989)) ;;; Generated autoloads from vc/smerge-mode.el (autoload 'smerge-ediff "smerge-mode" "\ @@ -26144,6 +26244,9 @@ (autoload 'smerge-mode "smerge-mode" "\ Minor mode to simplify editing output from the diff3 program. +With a prefix argument ARG, enable the mode if ARG is positive, +and disable it otherwise. If called from Lisp, enable the mode +if ARG is omitted or nil. \\{smerge-mode-map} \(fn &optional ARG)" t nil) @@ -26157,7 +26260,7 @@ ;;;*** ;;;### (autoloads (smiley-buffer smiley-region) "smiley" "gnus/smiley.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/smiley.el (autoload 'smiley-region "smiley" "\ @@ -26175,7 +26278,7 @@ ;;;*** ;;;### (autoloads (smtpmail-send-queued-mail smtpmail-send-it) "smtpmail" -;;;;;; "mail/smtpmail.el" (20232 10689)) +;;;;;; "mail/smtpmail.el" (20283 10476)) ;;; Generated autoloads from mail/smtpmail.el (autoload 'smtpmail-send-it "smtpmail" "\ @@ -26190,7 +26293,7 @@ ;;;*** -;;;### (autoloads (snake) "snake" "play/snake.el" (20229 34587)) +;;;### (autoloads (snake) "snake" "play/snake.el" (20281 13989)) ;;; Generated autoloads from play/snake.el (autoload 'snake "snake" "\ @@ -26214,7 +26317,7 @@ ;;;*** ;;;### (autoloads (snmpv2-mode snmp-mode) "snmp-mode" "net/snmp-mode.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from net/snmp-mode.el (autoload 'snmp-mode "snmp-mode" "\ @@ -26243,8 +26346,8 @@ ;;;*** -;;;### (autoloads (sunrise-sunset) "solar" "calendar/solar.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (sunrise-sunset) "solar" "calendar/solar.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from calendar/solar.el (autoload 'sunrise-sunset "solar" "\ @@ -26259,8 +26362,8 @@ ;;;*** -;;;### (autoloads (solitaire) "solitaire" "play/solitaire.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (solitaire) "solitaire" "play/solitaire.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from play/solitaire.el (autoload 'solitaire "solitaire" "\ @@ -26337,7 +26440,7 @@ ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields ;;;;;; sort-fields sort-numeric-fields sort-pages sort-paragraphs -;;;;;; sort-lines sort-subr) "sort" "sort.el" (20229 34587)) +;;;;;; sort-lines sort-subr) "sort" "sort.el" (20281 13989)) ;;; Generated autoloads from sort.el (put 'sort-fold-case 'safe-local-variable 'booleanp) @@ -26481,8 +26584,8 @@ ;;;*** -;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from gnus/spam.el (autoload 'spam-initialize "spam" "\ @@ -26498,7 +26601,7 @@ ;;;### (autoloads (spam-report-deagentize spam-report-agentize spam-report-url-to-file ;;;;;; spam-report-url-ping-mm-url spam-report-process-queue) "spam-report" -;;;;;; "gnus/spam-report.el" (20229 34587)) +;;;;;; "gnus/spam-report.el" (20281 13989)) ;;; Generated autoloads from gnus/spam-report.el (autoload 'spam-report-process-queue "spam-report" "\ @@ -26541,7 +26644,7 @@ ;;;*** ;;;### (autoloads (speedbar-get-focus speedbar-frame-mode) "speedbar" -;;;;;; "speedbar.el" (20229 34587)) +;;;;;; "speedbar.el" (20281 13989)) ;;; Generated autoloads from speedbar.el (defalias 'speedbar 'speedbar-frame-mode) @@ -26565,8 +26668,8 @@ ;;;*** -;;;### (autoloads (snarf-spooks spook) "spook" "play/spook.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (snarf-spooks spook) "spook" "play/spook.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from play/spook.el (autoload 'spook "spook" "\ @@ -26585,7 +26688,7 @@ ;;;;;; sql-ms sql-ingres sql-solid sql-mysql sql-sqlite sql-informix ;;;;;; sql-sybase sql-oracle sql-product-interactive sql-connect ;;;;;; sql-mode sql-help sql-add-product-keywords) "sql" "progmodes/sql.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/sql.el (autoload 'sql-add-product-keywords "sql" "\ @@ -27081,7 +27184,7 @@ ;;;*** ;;;### (autoloads (srecode-template-mode) "srecode/srt-mode" "cedet/srecode/srt-mode.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from cedet/srecode/srt-mode.el (autoload 'srecode-template-mode "srecode/srt-mode" "\ @@ -27094,7 +27197,7 @@ ;;;*** ;;;### (autoloads (starttls-open-stream) "starttls" "gnus/starttls.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from gnus/starttls.el (autoload 'starttls-open-stream "starttls" "\ @@ -27121,8 +27224,8 @@ ;;;;;; strokes-mode strokes-list-strokes strokes-load-user-strokes ;;;;;; strokes-help strokes-describe-stroke strokes-do-complex-stroke ;;;;;; strokes-do-stroke strokes-read-complex-stroke strokes-read-stroke -;;;;;; strokes-global-set-stroke) "strokes" "strokes.el" (20229 -;;;;;; 34587)) +;;;;;; strokes-global-set-stroke) "strokes" "strokes.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from strokes.el (autoload 'strokes-global-set-stroke "strokes" "\ @@ -27236,7 +27339,7 @@ ;;;*** ;;;### (autoloads (studlify-buffer studlify-word studlify-region) -;;;;;; "studly" "play/studly.el" (19845 45374)) +;;;;;; "studly" "play/studly.el" (20281 13875)) ;;; Generated autoloads from play/studly.el (autoload 'studlify-region "studly" "\ @@ -27257,7 +27360,7 @@ ;;;*** ;;;### (autoloads (global-subword-mode subword-mode) "subword" "progmodes/subword.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/subword.el (autoload 'subword-mode "subword" "\ @@ -27313,7 +27416,7 @@ ;;;*** ;;;### (autoloads (sc-cite-original) "supercite" "mail/supercite.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from mail/supercite.el (autoload 'sc-cite-original "supercite" "\ @@ -27345,8 +27448,8 @@ ;;;*** -;;;### (autoloads (gpm-mouse-mode) "t-mouse" "t-mouse.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (gpm-mouse-mode) "t-mouse" "t-mouse.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from t-mouse.el (define-obsolete-function-alias 't-mouse-mode 'gpm-mouse-mode "23.1") @@ -27374,7 +27477,7 @@ ;;;*** -;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (20229 34587)) +;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (20281 13989)) ;;; Generated autoloads from tabify.el (autoload 'untabify "tabify" "\ @@ -27409,7 +27512,7 @@ ;;;;;; table-recognize table-insert-row-column table-insert-column ;;;;;; table-insert-row table-insert table-point-left-cell-hook ;;;;;; table-point-entered-cell-hook table-load-hook table-cell-map-hook) -;;;;;; "table" "textmodes/table.el" (20229 34587)) +;;;;;; "table" "textmodes/table.el" (20281 13989)) ;;; Generated autoloads from textmodes/table.el (defvar table-cell-map-hook nil "\ @@ -27998,7 +28101,7 @@ ;;;*** ;;;### (autoloads (tabulated-list-mode) "tabulated-list" "emacs-lisp/tabulated-list.el" -;;;;;; (20257 13883)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emacs-lisp/tabulated-list.el (autoload 'tabulated-list-mode "tabulated-list" "\ @@ -28040,7 +28143,7 @@ ;;;*** -;;;### (autoloads (talk talk-connect) "talk" "talk.el" (20229 34587)) +;;;### (autoloads (talk talk-connect) "talk" "talk.el" (20281 13989)) ;;; Generated autoloads from talk.el (autoload 'talk-connect "talk" "\ @@ -28055,7 +28158,7 @@ ;;;*** -;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (20229 34587)) +;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (20281 13989)) ;;; Generated autoloads from tar-mode.el (autoload 'tar-mode "tar-mode" "\ @@ -28079,7 +28182,7 @@ ;;;*** ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" -;;;;;; "progmodes/tcl.el" (20229 34587)) +;;;;;; "progmodes/tcl.el" (20281 13989)) ;;; Generated autoloads from progmodes/tcl.el (autoload 'tcl-mode "tcl" "\ @@ -28127,7 +28230,7 @@ ;;;*** -;;;### (autoloads (rsh telnet) "telnet" "net/telnet.el" (20229 34587)) +;;;### (autoloads (rsh telnet) "telnet" "net/telnet.el" (20281 13989)) ;;; Generated autoloads from net/telnet.el (autoload 'telnet "telnet" "\ @@ -28153,7 +28256,7 @@ ;;;*** ;;;### (autoloads (serial-term ansi-term term make-term) "term" "term.el" -;;;;;; (20256 47696)) +;;;;;; (20281 13989)) ;;; Generated autoloads from term.el (autoload 'make-term "term" "\ @@ -28195,8 +28298,8 @@ ;;;*** -;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from terminal.el (autoload 'terminal-emulator "terminal" "\ @@ -28233,7 +28336,7 @@ ;;;*** ;;;### (autoloads (testcover-this-defun) "testcover" "emacs-lisp/testcover.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emacs-lisp/testcover.el (autoload 'testcover-this-defun "testcover" "\ @@ -28243,7 +28346,7 @@ ;;;*** -;;;### (autoloads (tetris) "tetris" "play/tetris.el" (20229 34587)) +;;;### (autoloads (tetris) "tetris" "play/tetris.el" (20281 13989)) ;;; Generated autoloads from play/tetris.el (autoload 'tetris "tetris" "\ @@ -28274,7 +28377,7 @@ ;;;;;; tex-start-commands tex-start-options slitex-run-command latex-run-command ;;;;;; tex-run-command tex-offer-save tex-main-file tex-first-line-header-regexp ;;;;;; tex-directory tex-shell-file-name) "tex-mode" "textmodes/tex-mode.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from textmodes/tex-mode.el (defvar tex-shell-file-name nil "\ @@ -28576,7 +28679,7 @@ ;;;*** ;;;### (autoloads (texi2info texinfo-format-region texinfo-format-buffer) -;;;;;; "texinfmt" "textmodes/texinfmt.el" (20229 34587)) +;;;;;; "texinfmt" "textmodes/texinfmt.el" (20281 13989)) ;;; Generated autoloads from textmodes/texinfmt.el (autoload 'texinfo-format-buffer "texinfmt" "\ @@ -28616,7 +28719,7 @@ ;;;*** ;;;### (autoloads (texinfo-mode texinfo-close-quote texinfo-open-quote) -;;;;;; "texinfo" "textmodes/texinfo.el" (20229 34587)) +;;;;;; "texinfo" "textmodes/texinfo.el" (20281 13989)) ;;; Generated autoloads from textmodes/texinfo.el (defvar texinfo-open-quote (purecopy "``") "\ @@ -28702,7 +28805,7 @@ ;;;### (autoloads (thai-composition-function thai-compose-buffer ;;;;;; thai-compose-string thai-compose-region) "thai-util" "language/thai-util.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from language/thai-util.el (autoload 'thai-compose-region "thai-util" "\ @@ -28731,7 +28834,7 @@ ;;;### (autoloads (list-at-point number-at-point symbol-at-point ;;;;;; sexp-at-point thing-at-point bounds-of-thing-at-point forward-thing) -;;;;;; "thingatpt" "thingatpt.el" (20229 34587)) +;;;;;; "thingatpt" "thingatpt.el" (20281 13989)) ;;; Generated autoloads from thingatpt.el (autoload 'forward-thing "thingatpt" "\ @@ -28794,7 +28897,7 @@ ;;;### (autoloads (thumbs-dired-setroot thumbs-dired-show thumbs-dired-show-marked ;;;;;; thumbs-show-from-dir thumbs-find-thumb) "thumbs" "thumbs.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from thumbs.el (autoload 'thumbs-find-thumb "thumbs" "\ @@ -28832,8 +28935,8 @@ ;;;;;; tibetan-post-read-conversion tibetan-compose-buffer tibetan-decompose-buffer ;;;;;; tibetan-decompose-string tibetan-decompose-region tibetan-compose-region ;;;;;; tibetan-compose-string tibetan-transcription-to-tibetan tibetan-tibetan-to-transcription -;;;;;; tibetan-char-p) "tibet-util" "language/tibet-util.el" (20229 -;;;;;; 34587)) +;;;;;; tibetan-char-p) "tibet-util" "language/tibet-util.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from language/tibet-util.el (autoload 'tibetan-char-p "tibet-util" "\ @@ -28907,7 +29010,7 @@ ;;;*** ;;;### (autoloads (tildify-buffer tildify-region) "tildify" "textmodes/tildify.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from textmodes/tildify.el (autoload 'tildify-region "tildify" "\ @@ -28932,7 +29035,7 @@ ;;;### (autoloads (emacs-init-time emacs-uptime display-time-world ;;;;;; display-time-mode display-time display-time-day-and-date) -;;;;;; "time" "time.el" (20230 55355)) +;;;;;; "time" "time.el" (20281 13989)) ;;; Generated autoloads from time.el (defvar display-time-day-and-date nil "\ @@ -28998,7 +29101,7 @@ ;;;;;; time-to-day-in-year date-leap-year-p days-between date-to-day ;;;;;; time-add time-subtract time-since days-to-time time-less-p ;;;;;; seconds-to-time date-to-time) "time-date" "calendar/time-date.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from calendar/time-date.el (autoload 'date-to-time "time-date" "\ @@ -29112,7 +29215,7 @@ ;;;*** ;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp" -;;;;;; "time-stamp.el" (20229 34587)) +;;;;;; "time-stamp.el" (20281 13989)) ;;; 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) @@ -29156,7 +29259,7 @@ ;;;;;; timeclock-workday-remaining-string timeclock-reread-log timeclock-query-out ;;;;;; timeclock-change timeclock-status-string timeclock-out timeclock-in ;;;;;; timeclock-modeline-display) "timeclock" "calendar/timeclock.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from calendar/timeclock.el (autoload 'timeclock-modeline-display "timeclock" "\ @@ -29256,7 +29359,7 @@ ;;;*** ;;;### (autoloads (batch-titdic-convert titdic-convert) "titdic-cnv" -;;;;;; "international/titdic-cnv.el" (20229 34587)) +;;;;;; "international/titdic-cnv.el" (20287 42957)) ;;; Generated autoloads from international/titdic-cnv.el (autoload 'titdic-convert "titdic-cnv" "\ @@ -29279,7 +29382,7 @@ ;;;*** ;;;### (autoloads (tmm-prompt tmm-menubar-mouse tmm-menubar) "tmm" -;;;;;; "tmm.el" (20229 34587)) +;;;;;; "tmm.el" (20281 13989)) ;;; Generated autoloads from tmm.el (define-key global-map "\M-`" 'tmm-menubar) (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse) @@ -29319,7 +29422,7 @@ ;;;### (autoloads (todo-show todo-cp todo-mode todo-print todo-top-priorities ;;;;;; todo-insert-item todo-add-item-non-interactively todo-add-category) -;;;;;; "todo-mode" "calendar/todo-mode.el" (20229 34587)) +;;;;;; "todo-mode" "calendar/todo-mode.el" (20281 13989)) ;;; Generated autoloads from calendar/todo-mode.el (autoload 'todo-add-category "todo-mode" "\ @@ -29379,7 +29482,7 @@ ;;;### (autoloads (tool-bar-local-item-from-menu tool-bar-add-item-from-menu ;;;;;; tool-bar-local-item tool-bar-add-item toggle-tool-bar-mode-from-frame) -;;;;;; "tool-bar" "tool-bar.el" (20229 34587)) +;;;;;; "tool-bar" "tool-bar.el" (20281 13989)) ;;; Generated autoloads from tool-bar.el (autoload 'toggle-tool-bar-mode-from-frame "tool-bar" "\ @@ -29450,7 +29553,7 @@ ;;;*** ;;;### (autoloads (tpu-edt-on tpu-edt-mode) "tpu-edt" "emulation/tpu-edt.el" -;;;;;; (20229 36384)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emulation/tpu-edt.el (defvar tpu-edt-mode nil "\ @@ -29463,7 +29566,10 @@ (custom-autoload 'tpu-edt-mode "tpu-edt" nil) (autoload 'tpu-edt-mode "tpu-edt" "\ -TPU/edt emulation. +Toggle TPU/edt emulation on or off. +With a prefix argument ARG, enable the mode if ARG is positive, +and disable it otherwise. If called from Lisp, enable the mode +if ARG is omitted or nil. \(fn &optional ARG)" t nil) @@ -29477,7 +29583,7 @@ ;;;*** ;;;### (autoloads (tpu-mapper) "tpu-mapper" "emulation/tpu-mapper.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emulation/tpu-mapper.el (autoload 'tpu-mapper "tpu-mapper" "\ @@ -29511,7 +29617,7 @@ ;;;*** -;;;### (autoloads (tq-create) "tq" "emacs-lisp/tq.el" (20229 34587)) +;;;### (autoloads (tq-create) "tq" "emacs-lisp/tq.el" (20281 13989)) ;;; Generated autoloads from emacs-lisp/tq.el (autoload 'tq-create "tq" "\ @@ -29525,7 +29631,7 @@ ;;;*** ;;;### (autoloads (trace-function-background trace-function trace-buffer) -;;;;;; "trace" "emacs-lisp/trace.el" (20229 34587)) +;;;;;; "trace" "emacs-lisp/trace.el" (20281 13989)) ;;; Generated autoloads from emacs-lisp/trace.el (defvar trace-buffer (purecopy "*trace-output*") "\ @@ -29562,7 +29668,7 @@ ;;;### (autoloads (tramp-unload-tramp tramp-completion-handle-file-name-completion ;;;;;; tramp-completion-handle-file-name-all-completions tramp-unload-file-name-handlers ;;;;;; tramp-file-name-handler tramp-syntax tramp-mode) "tramp" -;;;;;; "net/tramp.el" (20253 16827)) +;;;;;; "net/tramp.el" (20298 57601)) ;;; Generated autoloads from net/tramp.el (defvar tramp-mode t "\ @@ -29695,7 +29801,7 @@ ;;;*** ;;;### (autoloads (tramp-ftp-enable-ange-ftp) "tramp-ftp" "net/tramp-ftp.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from net/tramp-ftp.el (autoload 'tramp-ftp-enable-ange-ftp "tramp-ftp" "\ @@ -29705,8 +29811,8 @@ ;;;*** -;;;### (autoloads (help-with-tutorial) "tutorial" "tutorial.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (help-with-tutorial) "tutorial" "tutorial.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from tutorial.el (autoload 'help-with-tutorial "tutorial" "\ @@ -29731,7 +29837,7 @@ ;;;*** ;;;### (autoloads (tai-viet-composition-function) "tv-util" "language/tv-util.el" -;;;;;; (19845 45374)) +;;;;;; (20281 13875)) ;;; Generated autoloads from language/tv-util.el (autoload 'tai-viet-composition-function "tv-util" "\ @@ -29742,7 +29848,7 @@ ;;;*** ;;;### (autoloads (2C-split 2C-associate-buffer 2C-two-columns) "two-column" -;;;;;; "textmodes/two-column.el" (20229 34587)) +;;;;;; "textmodes/two-column.el" (20281 13989)) ;;; Generated autoloads from textmodes/two-column.el (autoload '2C-command "two-column" () t 'keymap) (global-set-key "\C-x6" '2C-command) @@ -29793,7 +29899,7 @@ ;;;;;; type-break type-break-mode type-break-keystroke-threshold ;;;;;; type-break-good-break-interval type-break-good-rest-interval ;;;;;; type-break-interval type-break-mode) "type-break" "type-break.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from type-break.el (defvar type-break-mode nil "\ @@ -29975,7 +30081,7 @@ ;;;*** -;;;### (autoloads (uce-reply-to-uce) "uce" "mail/uce.el" (20229 34587)) +;;;### (autoloads (uce-reply-to-uce) "uce" "mail/uce.el" (20281 13989)) ;;; Generated autoloads from mail/uce.el (autoload 'uce-reply-to-uce "uce" "\ @@ -29993,7 +30099,7 @@ ;;;;;; ucs-normalize-NFKC-string ucs-normalize-NFKC-region ucs-normalize-NFKD-string ;;;;;; ucs-normalize-NFKD-region ucs-normalize-NFC-string ucs-normalize-NFC-region ;;;;;; ucs-normalize-NFD-string ucs-normalize-NFD-region) "ucs-normalize" -;;;;;; "international/ucs-normalize.el" (20229 34587)) +;;;;;; "international/ucs-normalize.el" (20281 13989)) ;;; Generated autoloads from international/ucs-normalize.el (autoload 'ucs-normalize-NFD-region "ucs-normalize" "\ @@ -30059,7 +30165,7 @@ ;;;*** ;;;### (autoloads (ununderline-region underline-region) "underline" -;;;;;; "textmodes/underline.el" (20229 34587)) +;;;;;; "textmodes/underline.el" (20281 13989)) ;;; Generated autoloads from textmodes/underline.el (autoload 'underline-region "underline" "\ @@ -30080,7 +30186,7 @@ ;;;*** ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "mail/unrmail.el" -;;;;;; (20235 41048)) +;;;;;; (20281 13989)) ;;; Generated autoloads from mail/unrmail.el (autoload 'batch-unrmail "unrmail" "\ @@ -30099,8 +30205,8 @@ ;;;*** -;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from emacs-lisp/unsafep.el (autoload 'unsafep "unsafep" "\ @@ -30113,7 +30219,7 @@ ;;;*** ;;;### (autoloads (url-retrieve-synchronously url-retrieve) "url" -;;;;;; "url/url.el" (20229 34587)) +;;;;;; "url/url.el" (20291 37665)) ;;; Generated autoloads from url/url.el (autoload 'url-retrieve "url" "\ @@ -30141,8 +30247,10 @@ take effect. If SILENT, then don't message progress reports and the like. +If INHIBIT-COOKIES, cookies will neither be stored nor sent to +the server. -\(fn URL CALLBACK &optional CBARGS SILENT)" nil nil) +\(fn URL CALLBACK &optional CBARGS SILENT INHIBIT-COOKIES)" nil nil) (autoload 'url-retrieve-synchronously "url" "\ Retrieve URL synchronously. @@ -30155,7 +30263,7 @@ ;;;*** ;;;### (autoloads (url-register-auth-scheme url-get-authentication) -;;;;;; "url-auth" "url/url-auth.el" (20238 49468)) +;;;;;; "url-auth" "url/url-auth.el" (20281 13989)) ;;; Generated autoloads from url/url-auth.el (autoload 'url-get-authentication "url-auth" "\ @@ -30197,7 +30305,7 @@ ;;;*** ;;;### (autoloads (url-cache-extract url-is-cached url-store-in-cache) -;;;;;; "url-cache" "url/url-cache.el" (20229 34587)) +;;;;;; "url-cache" "url/url-cache.el" (20281 13989)) ;;; Generated autoloads from url/url-cache.el (autoload 'url-store-in-cache "url-cache" "\ @@ -30218,7 +30326,7 @@ ;;;*** -;;;### (autoloads (url-cid) "url-cid" "url/url-cid.el" (20229 34587)) +;;;### (autoloads (url-cid) "url-cid" "url/url-cid.el" (20281 13989)) ;;; Generated autoloads from url/url-cid.el (autoload 'url-cid "url-cid" "\ @@ -30229,7 +30337,7 @@ ;;;*** ;;;### (autoloads (url-dav-vc-registered url-dav-supported-p) "url-dav" -;;;;;; "url/url-dav.el" (20229 34587)) +;;;;;; "url/url-dav.el" (20281 13989)) ;;; Generated autoloads from url/url-dav.el (autoload 'url-dav-supported-p "url-dav" "\ @@ -30244,8 +30352,8 @@ ;;;*** -;;;### (autoloads (url-file) "url-file" "url/url-file.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (url-file) "url-file" "url/url-file.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from url/url-file.el (autoload 'url-file "url-file" "\ @@ -30256,7 +30364,7 @@ ;;;*** ;;;### (autoloads (url-open-stream url-gateway-nslookup-host) "url-gw" -;;;;;; "url/url-gw.el" (20229 34587)) +;;;;;; "url/url-gw.el" (20281 13989)) ;;; Generated autoloads from url/url-gw.el (autoload 'url-gateway-nslookup-host "url-gw" "\ @@ -30276,7 +30384,7 @@ ;;;### (autoloads (url-insert-file-contents url-file-local-copy url-copy-file ;;;;;; url-file-handler url-handler-mode) "url-handlers" "url/url-handlers.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from url/url-handlers.el (defvar url-handler-mode nil "\ @@ -30331,7 +30439,7 @@ ;;;*** ;;;### (autoloads (url-http-options url-http-file-attributes url-http-file-exists-p -;;;;;; url-http) "url-http" "url/url-http.el" (20229 34587)) +;;;;;; url-http) "url-http" "url/url-http.el" (20281 13989)) ;;; Generated autoloads from url/url-http.el (autoload 'url-http "url-http" "\ @@ -30397,7 +30505,7 @@ ;;;*** -;;;### (autoloads (url-irc) "url-irc" "url/url-irc.el" (20229 34587)) +;;;### (autoloads (url-irc) "url-irc" "url/url-irc.el" (20281 13989)) ;;; Generated autoloads from url/url-irc.el (autoload 'url-irc "url-irc" "\ @@ -30407,8 +30515,8 @@ ;;;*** -;;;### (autoloads (url-ldap) "url-ldap" "url/url-ldap.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (url-ldap) "url-ldap" "url/url-ldap.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from url/url-ldap.el (autoload 'url-ldap "url-ldap" "\ @@ -30422,7 +30530,7 @@ ;;;*** ;;;### (autoloads (url-mailto url-mail) "url-mailto" "url/url-mailto.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from url/url-mailto.el (autoload 'url-mail "url-mailto" "\ @@ -30438,7 +30546,7 @@ ;;;*** ;;;### (autoloads (url-data url-generic-emulator-loader url-info -;;;;;; url-man) "url-misc" "url/url-misc.el" (20229 34587)) +;;;;;; url-man) "url-misc" "url/url-misc.el" (20281 13989)) ;;; Generated autoloads from url/url-misc.el (autoload 'url-man "url-misc" "\ @@ -30470,7 +30578,7 @@ ;;;*** ;;;### (autoloads (url-snews url-news) "url-news" "url/url-news.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from url/url-news.el (autoload 'url-news "url-news" "\ @@ -30487,7 +30595,7 @@ ;;;### (autoloads (url-ns-user-pref url-ns-prefs isInNet isResolvable ;;;;;; dnsResolve dnsDomainIs isPlainHostName) "url-ns" "url/url-ns.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from url/url-ns.el (autoload 'isPlainHostName "url-ns" "\ @@ -30528,7 +30636,7 @@ ;;;*** ;;;### (autoloads (url-generic-parse-url url-recreate-url) "url-parse" -;;;;;; "url/url-parse.el" (20229 34587)) +;;;;;; "url/url-parse.el" (20281 13989)) ;;; Generated autoloads from url/url-parse.el (autoload 'url-recreate-url "url-parse" "\ @@ -30546,7 +30654,7 @@ ;;;*** ;;;### (autoloads (url-setup-privacy-info) "url-privacy" "url/url-privacy.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from url/url-privacy.el (autoload 'url-setup-privacy-info "url-privacy" "\ @@ -30557,16 +30665,17 @@ ;;;*** ;;;### (autoloads (url-queue-retrieve) "url-queue" "url/url-queue.el" -;;;;;; (20229 34587)) +;;;;;; (20291 37665)) ;;; Generated autoloads from url/url-queue.el (autoload 'url-queue-retrieve "url-queue" "\ Retrieve URL asynchronously and call CALLBACK with CBARGS when finished. -Like `url-retrieve' (which see for details of the arguments), but -controls the level of parallelism via the -`url-queue-parallel-processes' variable. +This is like `url-retrieve' (which see for details of the arguments), +but with limits on the degree of parallelism. The variable +`url-queue-parallel-processes' sets the number of concurrent processes. +The variable `url-queue-timeout' sets a timeout. -\(fn URL CALLBACK &optional CBARGS SILENT)" nil nil) +\(fn URL CALLBACK &optional CBARGS SILENT INHIBIT-COOKIES)" nil nil) ;;;*** @@ -30576,7 +30685,7 @@ ;;;;;; url-pretty-length url-strip-leading-spaces url-eat-trailing-space ;;;;;; url-get-normalized-date url-lazy-message url-normalize-url ;;;;;; url-insert-entities-in-string url-parse-args url-debug url-debug) -;;;;;; "url-util" "url/url-util.el" (20229 34587)) +;;;;;; "url-util" "url/url-util.el" (20281 13989)) ;;; Generated autoloads from url/url-util.el (defvar url-debug nil "\ @@ -30712,7 +30821,7 @@ ;;;*** ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) -;;;;;; "userlock" "userlock.el" (20229 34587)) +;;;;;; "userlock" "userlock.el" (20281 13989)) ;;; Generated autoloads from userlock.el (autoload 'ask-user-about-lock "userlock" "\ @@ -30742,7 +30851,7 @@ ;;;### (autoloads (utf-7-imap-pre-write-conversion utf-7-pre-write-conversion ;;;;;; utf-7-imap-post-read-conversion utf-7-post-read-conversion) -;;;;;; "utf-7" "international/utf-7.el" (20229 34587)) +;;;;;; "utf-7" "international/utf-7.el" (20281 13989)) ;;; Generated autoloads from international/utf-7.el (autoload 'utf-7-post-read-conversion "utf-7" "\ @@ -30767,7 +30876,7 @@ ;;;*** -;;;### (autoloads (utf7-encode) "utf7" "gnus/utf7.el" (20229 34587)) +;;;### (autoloads (utf7-encode) "utf7" "gnus/utf7.el" (20281 13989)) ;;; Generated autoloads from gnus/utf7.el (autoload 'utf7-encode "utf7" "\ @@ -30779,7 +30888,7 @@ ;;;### (autoloads (uudecode-decode-region uudecode-decode-region-internal ;;;;;; uudecode-decode-region-external) "uudecode" "mail/uudecode.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from mail/uudecode.el (autoload 'uudecode-decode-region-external "uudecode" "\ @@ -30809,8 +30918,8 @@ ;;;;;; vc-print-log vc-retrieve-tag vc-create-tag vc-merge vc-insert-headers ;;;;;; vc-revision-other-window vc-root-diff vc-ediff vc-version-ediff ;;;;;; vc-diff vc-version-diff vc-register vc-next-action vc-before-checkin-hook -;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc/vc.el" (20255 -;;;;;; 18260)) +;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc/vc.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from vc/vc.el (defvar vc-checkout-hook nil "\ @@ -30934,6 +31043,7 @@ (autoload 'vc-merge "vc" "\ Perform a version control merge operation. +You must be visiting a version controlled file, or in a `vc-dir' buffer. On a distributed version control system, this runs a \"merge\" operation to incorporate changes from another branch onto the current branch, prompting for an argument list. @@ -31016,6 +31126,7 @@ (autoload 'vc-pull "vc" "\ 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. @@ -31086,7 +31197,7 @@ ;;;*** ;;;### (autoloads (vc-annotate) "vc-annotate" "vc/vc-annotate.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from vc/vc-annotate.el (autoload 'vc-annotate "vc-annotate" "\ @@ -31123,7 +31234,7 @@ ;;;*** -;;;### (autoloads nil "vc-arch" "vc/vc-arch.el" (20229 34587)) +;;;### (autoloads nil "vc-arch" "vc/vc-arch.el" (20296 25039)) ;;; Generated autoloads from vc/vc-arch.el (defun vc-arch-registered (file) (if (vc-find-root file "{arch}/=tagging-method") @@ -31133,7 +31244,7 @@ ;;;*** -;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (20229 34587)) +;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (20296 24948)) ;;; Generated autoloads from vc/vc-bzr.el (defconst vc-bzr-admin-dirname ".bzr" "\ @@ -31149,7 +31260,7 @@ ;;;*** -;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (20229 34587)) +;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (20296 25049)) ;;; Generated autoloads from vc/vc-cvs.el (defun vc-cvs-registered (f) "Return non-nil if file F is registered with CVS." @@ -31160,7 +31271,7 @@ ;;;*** -;;;### (autoloads (vc-dir) "vc-dir" "vc/vc-dir.el" (20229 34587)) +;;;### (autoloads (vc-dir) "vc-dir" "vc/vc-dir.el" (20281 13989)) ;;; Generated autoloads from vc/vc-dir.el (autoload 'vc-dir "vc-dir" "\ @@ -31185,7 +31296,7 @@ ;;;*** ;;;### (autoloads (vc-do-command) "vc-dispatcher" "vc/vc-dispatcher.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from vc/vc-dispatcher.el (autoload 'vc-do-command "vc-dispatcher" "\ @@ -31208,7 +31319,7 @@ ;;;*** -;;;### (autoloads nil "vc-git" "vc/vc-git.el" (20229 34587)) +;;;### (autoloads nil "vc-git" "vc/vc-git.el" (20296 25033)) ;;; Generated autoloads from vc/vc-git.el (defun vc-git-registered (file) "Return non-nil if FILE is registered with git." @@ -31219,7 +31330,7 @@ ;;;*** -;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (20229 34587)) +;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (20296 24967)) ;;; Generated autoloads from vc/vc-hg.el (defun vc-hg-registered (file) "Return non-nil if FILE is registered with hg." @@ -31230,7 +31341,7 @@ ;;;*** -;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (20229 34587)) +;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (20296 24986)) ;;; Generated autoloads from vc/vc-mtn.el (defconst vc-mtn-admin-dir "_MTN" "\ @@ -31247,7 +31358,7 @@ ;;;*** ;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc/vc-rcs.el" -;;;;;; (20254 37696)) +;;;;;; (20296 25058)) ;;; Generated autoloads from vc/vc-rcs.el (defvar vc-rcs-master-templates (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ @@ -31261,7 +31372,7 @@ ;;;*** ;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc/vc-sccs.el" -;;;;;; (20254 37696)) +;;;;;; (20296 25068)) ;;; Generated autoloads from vc/vc-sccs.el (defvar vc-sccs-master-templates (purecopy '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ @@ -31278,7 +31389,7 @@ ;;;*** -;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (20229 34587)) +;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (20296 24998)) ;;; Generated autoloads from vc/vc-svn.el (defun vc-svn-registered (f) (let ((admin-dir (cond ((and (eq system-type 'windows-nt) @@ -31292,7 +31403,7 @@ ;;;*** ;;;### (autoloads (vera-mode) "vera-mode" "progmodes/vera-mode.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/vera-mode.el (add-to-list 'auto-mode-alist (cons (purecopy "\\.vr[hi]?\\'") 'vera-mode)) @@ -31350,7 +31461,7 @@ ;;;*** ;;;### (autoloads (verilog-mode) "verilog-mode" "progmodes/verilog-mode.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/verilog-mode.el (autoload 'verilog-mode "verilog-mode" "\ @@ -31489,7 +31600,7 @@ ;;;*** ;;;### (autoloads (vhdl-mode) "vhdl-mode" "progmodes/vhdl-mode.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from progmodes/vhdl-mode.el (autoload 'vhdl-mode "vhdl-mode" "\ @@ -32030,7 +32141,7 @@ ;;;*** -;;;### (autoloads (vi-mode) "vi" "emulation/vi.el" (20104 14925)) +;;;### (autoloads (vi-mode) "vi" "emulation/vi.el" (20281 13989)) ;;; Generated autoloads from emulation/vi.el (autoload 'vi-mode "vi" "\ @@ -32085,7 +32196,7 @@ ;;;### (autoloads (viqr-pre-write-conversion viqr-post-read-conversion ;;;;;; viet-encode-viqr-buffer viet-encode-viqr-region viet-decode-viqr-buffer ;;;;;; viet-decode-viqr-region viet-encode-viscii-char) "viet-util" -;;;;;; "language/viet-util.el" (20229 34587)) +;;;;;; "language/viet-util.el" (20281 13989)) ;;; Generated autoloads from language/viet-util.el (autoload 'viet-encode-viscii-char "viet-util" "\ @@ -32133,7 +32244,7 @@ ;;;;;; view-mode view-buffer-other-frame view-buffer-other-window ;;;;;; view-buffer view-file-other-frame view-file-other-window ;;;;;; view-file kill-buffer-if-not-modified view-remove-frame-by-deleting) -;;;;;; "view" "view.el" (20265 7997)) +;;;;;; "view" "view.el" (20281 13989)) ;;; Generated autoloads from view.el (defvar view-remove-frame-by-deleting t "\ @@ -32375,8 +32486,8 @@ ;;;*** -;;;### (autoloads (vip-mode vip-setup) "vip" "emulation/vip.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (vip-mode vip-setup) "vip" "emulation/vip.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from emulation/vip.el (autoload 'vip-setup "vip" "\ @@ -32392,7 +32503,7 @@ ;;;*** ;;;### (autoloads (viper-mode toggle-viper-mode) "viper" "emulation/viper.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emulation/viper.el (autoload 'toggle-viper-mode "viper" "\ @@ -32409,7 +32520,7 @@ ;;;*** ;;;### (autoloads (warn lwarn display-warning) "warnings" "emacs-lisp/warnings.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emacs-lisp/warnings.el (defvar warning-prefix-function nil "\ @@ -32499,7 +32610,7 @@ ;;;*** ;;;### (autoloads (wdired-change-to-wdired-mode) "wdired" "wdired.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from wdired.el (autoload 'wdired-change-to-wdired-mode "wdired" "\ @@ -32515,7 +32626,7 @@ ;;;*** -;;;### (autoloads (webjump) "webjump" "net/webjump.el" (20229 34587)) +;;;### (autoloads (webjump) "webjump" "net/webjump.el" (20281 13989)) ;;; Generated autoloads from net/webjump.el (autoload 'webjump "webjump" "\ @@ -32532,7 +32643,7 @@ ;;;*** ;;;### (autoloads (which-function-mode which-func-mode) "which-func" -;;;;;; "progmodes/which-func.el" (20232 10689)) +;;;;;; "progmodes/which-func.el" (20281 13989)) ;;; Generated autoloads from progmodes/which-func.el (put 'which-func-format 'risky-local-variable t) (put 'which-func-current 'risky-local-variable t) @@ -32568,7 +32679,7 @@ ;;;### (autoloads (whitespace-report-region whitespace-report whitespace-cleanup-region ;;;;;; whitespace-cleanup global-whitespace-toggle-options whitespace-toggle-options ;;;;;; global-whitespace-newline-mode global-whitespace-mode whitespace-newline-mode -;;;;;; whitespace-mode) "whitespace" "whitespace.el" (20229 34587)) +;;;;;; whitespace-mode) "whitespace" "whitespace.el" (20281 13989)) ;;; Generated autoloads from whitespace.el (autoload 'whitespace-mode "whitespace" "\ @@ -32967,7 +33078,7 @@ ;;;*** ;;;### (autoloads (widget-minor-mode widget-browse-other-window widget-browse -;;;;;; widget-browse-at) "wid-browse" "wid-browse.el" (20229 34587)) +;;;;;; widget-browse-at) "wid-browse" "wid-browse.el" (20281 13989)) ;;; Generated autoloads from wid-browse.el (autoload 'widget-browse-at "wid-browse" "\ @@ -32987,14 +33098,17 @@ (autoload 'widget-minor-mode "wid-browse" "\ Minor mode for traversing widgets. +With a prefix argument ARG, enable the mode if ARG is positive, +and disable it otherwise. If called from Lisp, enable the mode +if ARG is omitted or nil. \(fn &optional ARG)" t nil) ;;;*** ;;;### (autoloads (widget-setup widget-insert widget-delete widget-create -;;;;;; widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (20229 -;;;;;; 34587)) +;;;;;; widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from wid-edit.el (autoload 'widgetp "wid-edit" "\ @@ -33037,8 +33151,8 @@ ;;;*** ;;;### (autoloads (windmove-default-keybindings windmove-down windmove-right -;;;;;; windmove-up windmove-left) "windmove" "windmove.el" (20250 -;;;;;; 40679)) +;;;;;; windmove-up windmove-left) "windmove" "windmove.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from windmove.el (autoload 'windmove-left "windmove" "\ @@ -33091,7 +33205,7 @@ ;;;*** ;;;### (autoloads (winner-mode winner-mode) "winner" "winner.el" -;;;;;; (20237 28610)) +;;;;;; (20281 13989)) ;;; Generated autoloads from winner.el (defvar winner-mode nil "\ @@ -33110,7 +33224,7 @@ ;;;*** ;;;### (autoloads (woman-bookmark-jump woman-find-file woman-dired-find-file -;;;;;; woman woman-locale) "woman" "woman.el" (20229 34587)) +;;;;;; woman woman-locale) "woman" "woman.el" (20281 13989)) ;;; Generated autoloads from woman.el (defvar woman-locale nil "\ @@ -33159,7 +33273,7 @@ ;;;*** ;;;### (autoloads (wordstar-mode) "ws-mode" "emulation/ws-mode.el" -;;;;;; (20229 34587)) +;;;;;; (20281 13989)) ;;; Generated autoloads from emulation/ws-mode.el (autoload 'wordstar-mode "ws-mode" "\ @@ -33271,7 +33385,7 @@ ;;;*** -;;;### (autoloads (xesam-search) "xesam" "net/xesam.el" (20229 34587)) +;;;### (autoloads (xesam-search) "xesam" "net/xesam.el" (20281 13989)) ;;; Generated autoloads from net/xesam.el (autoload 'xesam-search "xesam" "\ @@ -33291,7 +33405,7 @@ ;;;*** ;;;### (autoloads (xml-parse-region xml-parse-file) "xml" "xml.el" -;;;;;; (20258 34747)) +;;;;;; (20281 13989)) ;;; Generated autoloads from xml.el (autoload 'xml-parse-file "xml" "\ @@ -33317,7 +33431,7 @@ ;;;*** ;;;### (autoloads (xmltok-get-declared-encoding-position) "xmltok" -;;;;;; "nxml/xmltok.el" (20229 34587)) +;;;;;; "nxml/xmltok.el" (20281 13989)) ;;; Generated autoloads from nxml/xmltok.el (autoload 'xmltok-get-declared-encoding-position "xmltok" "\ @@ -33335,8 +33449,8 @@ ;;;*** -;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (20229 -;;;;;; 34587)) +;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (20281 +;;;;;; 13989)) ;;; Generated autoloads from xt-mouse.el (defvar xterm-mouse-mode nil "\ @@ -33366,7 +33480,7 @@ ;;;*** ;;;### (autoloads (yenc-extract-filename yenc-decode-region) "yenc" -;;;;;; "gnus/yenc.el" (20229 34587)) +;;;;;; "gnus/yenc.el" (20281 13989)) ;;; Generated autoloads from gnus/yenc.el (autoload 'yenc-decode-region "yenc" "\ @@ -33382,7 +33496,7 @@ ;;;*** ;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism -;;;;;; yow) "yow" "play/yow.el" (20229 34587)) +;;;;;; yow) "yow" "play/yow.el" (20281 13989)) ;;; Generated autoloads from play/yow.el (autoload 'yow "yow" "\ @@ -33408,7 +33522,7 @@ ;;;*** -;;;### (autoloads (zone) "zone" "play/zone.el" (20229 34587)) +;;;### (autoloads (zone) "zone" "play/zone.el" (20281 13989)) ;;; Generated autoloads from play/zone.el (autoload 'zone "zone" "\ @@ -33424,47 +33538,46 @@ ;;;;;; "calc/calc-fin.el" "calc/calc-forms.el" "calc/calc-frac.el" ;;;;;; "calc/calc-funcs.el" "calc/calc-graph.el" "calc/calc-help.el" ;;;;;; "calc/calc-incom.el" "calc/calc-keypd.el" "calc/calc-lang.el" -;;;;;; "calc/calc-loaddefs.el" "calc/calc-macs.el" "calc/calc-map.el" -;;;;;; "calc/calc-math.el" "calc/calc-menu.el" "calc/calc-misc.el" -;;;;;; "calc/calc-mode.el" "calc/calc-mtx.el" "calc/calc-nlfit.el" -;;;;;; "calc/calc-poly.el" "calc/calc-prog.el" "calc/calc-rewr.el" -;;;;;; "calc/calc-rules.el" "calc/calc-sel.el" "calc/calc-stat.el" -;;;;;; "calc/calc-store.el" "calc/calc-stuff.el" "calc/calc-trail.el" -;;;;;; "calc/calc-units.el" "calc/calc-vec.el" "calc/calc-yank.el" -;;;;;; "calc/calcalg2.el" "calc/calcalg3.el" "calc/calccomp.el" -;;;;;; "calc/calcsel2.el" "calendar/cal-bahai.el" "calendar/cal-coptic.el" -;;;;;; "calendar/cal-french.el" "calendar/cal-html.el" "calendar/cal-islam.el" -;;;;;; "calendar/cal-iso.el" "calendar/cal-julian.el" "calendar/cal-loaddefs.el" -;;;;;; "calendar/cal-mayan.el" "calendar/cal-menu.el" "calendar/cal-move.el" -;;;;;; "calendar/cal-persia.el" "calendar/cal-tex.el" "calendar/cal-x.el" -;;;;;; "calendar/diary-loaddefs.el" "calendar/hol-loaddefs.el" "cdl.el" -;;;;;; "cedet/cedet-cscope.el" "cedet/cedet-files.el" "cedet/cedet-global.el" -;;;;;; "cedet/cedet-idutils.el" "cedet/cedet.el" "cedet/ede/auto.el" -;;;;;; "cedet/ede/autoconf-edit.el" "cedet/ede/base.el" "cedet/ede/cpp-root.el" -;;;;;; "cedet/ede/custom.el" "cedet/ede/dired.el" "cedet/ede/emacs.el" -;;;;;; "cedet/ede/files.el" "cedet/ede/generic.el" "cedet/ede/linux.el" -;;;;;; "cedet/ede/loaddefs.el" "cedet/ede/locate.el" "cedet/ede/make.el" -;;;;;; "cedet/ede/makefile-edit.el" "cedet/ede/pconf.el" "cedet/ede/pmake.el" -;;;;;; "cedet/ede/proj-archive.el" "cedet/ede/proj-aux.el" "cedet/ede/proj-comp.el" -;;;;;; "cedet/ede/proj-elisp.el" "cedet/ede/proj-info.el" "cedet/ede/proj-misc.el" -;;;;;; "cedet/ede/proj-obj.el" "cedet/ede/proj-prog.el" "cedet/ede/proj-scheme.el" -;;;;;; "cedet/ede/proj-shared.el" "cedet/ede/proj.el" "cedet/ede/project-am.el" -;;;;;; "cedet/ede/shell.el" "cedet/ede/simple.el" "cedet/ede/source.el" -;;;;;; "cedet/ede/speedbar.el" "cedet/ede/srecode.el" "cedet/ede/system.el" -;;;;;; "cedet/ede/util.el" "cedet/inversion.el" "cedet/mode-local.el" -;;;;;; "cedet/pulse.el" "cedet/semantic/analyze.el" "cedet/semantic/analyze/complete.el" -;;;;;; "cedet/semantic/analyze/debug.el" "cedet/semantic/analyze/fcn.el" -;;;;;; "cedet/semantic/analyze/refs.el" "cedet/semantic/bovine.el" -;;;;;; "cedet/semantic/bovine/c-by.el" "cedet/semantic/bovine/c.el" -;;;;;; "cedet/semantic/bovine/debug.el" "cedet/semantic/bovine/el.el" -;;;;;; "cedet/semantic/bovine/gcc.el" "cedet/semantic/bovine/make-by.el" -;;;;;; "cedet/semantic/bovine/make.el" "cedet/semantic/bovine/scm-by.el" -;;;;;; "cedet/semantic/bovine/scm.el" "cedet/semantic/chart.el" -;;;;;; "cedet/semantic/complete.el" "cedet/semantic/ctxt.el" "cedet/semantic/db-debug.el" -;;;;;; "cedet/semantic/db-ebrowse.el" "cedet/semantic/db-el.el" -;;;;;; "cedet/semantic/db-file.el" "cedet/semantic/db-find.el" "cedet/semantic/db-global.el" -;;;;;; "cedet/semantic/db-javascript.el" "cedet/semantic/db-mode.el" -;;;;;; "cedet/semantic/db-ref.el" "cedet/semantic/db-typecache.el" +;;;;;; "calc/calc-macs.el" "calc/calc-map.el" "calc/calc-math.el" +;;;;;; "calc/calc-menu.el" "calc/calc-misc.el" "calc/calc-mode.el" +;;;;;; "calc/calc-mtx.el" "calc/calc-nlfit.el" "calc/calc-poly.el" +;;;;;; "calc/calc-prog.el" "calc/calc-rewr.el" "calc/calc-rules.el" +;;;;;; "calc/calc-sel.el" "calc/calc-stat.el" "calc/calc-store.el" +;;;;;; "calc/calc-stuff.el" "calc/calc-trail.el" "calc/calc-units.el" +;;;;;; "calc/calc-vec.el" "calc/calc-yank.el" "calc/calcalg2.el" +;;;;;; "calc/calcalg3.el" "calc/calccomp.el" "calc/calcsel2.el" +;;;;;; "calendar/cal-bahai.el" "calendar/cal-coptic.el" "calendar/cal-french.el" +;;;;;; "calendar/cal-html.el" "calendar/cal-islam.el" "calendar/cal-iso.el" +;;;;;; "calendar/cal-julian.el" "calendar/cal-loaddefs.el" "calendar/cal-mayan.el" +;;;;;; "calendar/cal-menu.el" "calendar/cal-move.el" "calendar/cal-persia.el" +;;;;;; "calendar/cal-tex.el" "calendar/cal-x.el" "calendar/diary-loaddefs.el" +;;;;;; "calendar/hol-loaddefs.el" "cdl.el" "cedet/cedet-cscope.el" +;;;;;; "cedet/cedet-files.el" "cedet/cedet-global.el" "cedet/cedet-idutils.el" +;;;;;; "cedet/cedet.el" "cedet/ede/auto.el" "cedet/ede/autoconf-edit.el" +;;;;;; "cedet/ede/base.el" "cedet/ede/cpp-root.el" "cedet/ede/custom.el" +;;;;;; "cedet/ede/dired.el" "cedet/ede/emacs.el" "cedet/ede/files.el" +;;;;;; "cedet/ede/generic.el" "cedet/ede/linux.el" "cedet/ede/locate.el" +;;;;;; "cedet/ede/make.el" "cedet/ede/makefile-edit.el" "cedet/ede/pconf.el" +;;;;;; "cedet/ede/pmake.el" "cedet/ede/proj-archive.el" "cedet/ede/proj-aux.el" +;;;;;; "cedet/ede/proj-comp.el" "cedet/ede/proj-elisp.el" "cedet/ede/proj-info.el" +;;;;;; "cedet/ede/proj-misc.el" "cedet/ede/proj-obj.el" "cedet/ede/proj-prog.el" +;;;;;; "cedet/ede/proj-scheme.el" "cedet/ede/proj-shared.el" "cedet/ede/proj.el" +;;;;;; "cedet/ede/project-am.el" "cedet/ede/shell.el" "cedet/ede/simple.el" +;;;;;; "cedet/ede/source.el" "cedet/ede/speedbar.el" "cedet/ede/srecode.el" +;;;;;; "cedet/ede/system.el" "cedet/ede/util.el" "cedet/inversion.el" +;;;;;; "cedet/mode-local.el" "cedet/pulse.el" "cedet/semantic/analyze.el" +;;;;;; "cedet/semantic/analyze/complete.el" "cedet/semantic/analyze/debug.el" +;;;;;; "cedet/semantic/analyze/fcn.el" "cedet/semantic/analyze/refs.el" +;;;;;; "cedet/semantic/bovine.el" "cedet/semantic/bovine/c-by.el" +;;;;;; "cedet/semantic/bovine/c.el" "cedet/semantic/bovine/debug.el" +;;;;;; "cedet/semantic/bovine/el.el" "cedet/semantic/bovine/gcc.el" +;;;;;; "cedet/semantic/bovine/make-by.el" "cedet/semantic/bovine/make.el" +;;;;;; "cedet/semantic/bovine/scm-by.el" "cedet/semantic/bovine/scm.el" +;;;;;; "cedet/semantic/chart.el" "cedet/semantic/complete.el" "cedet/semantic/ctxt.el" +;;;;;; "cedet/semantic/db-debug.el" "cedet/semantic/db-ebrowse.el" +;;;;;; "cedet/semantic/db-el.el" "cedet/semantic/db-file.el" "cedet/semantic/db-find.el" +;;;;;; "cedet/semantic/db-global.el" "cedet/semantic/db-javascript.el" +;;;;;; "cedet/semantic/db-mode.el" "cedet/semantic/db-ref.el" "cedet/semantic/db-typecache.el" ;;;;;; "cedet/semantic/db.el" "cedet/semantic/debug.el" "cedet/semantic/decorate.el" ;;;;;; "cedet/semantic/decorate/include.el" "cedet/semantic/decorate/mode.el" ;;;;;; "cedet/semantic/dep.el" "cedet/semantic/doc.el" "cedet/semantic/ede-grammar.el" @@ -33472,13 +33585,13 @@ ;;;;;; "cedet/semantic/fw.el" "cedet/semantic/grammar-wy.el" "cedet/semantic/grammar.el" ;;;;;; "cedet/semantic/html.el" "cedet/semantic/ia-sb.el" "cedet/semantic/ia.el" ;;;;;; "cedet/semantic/idle.el" "cedet/semantic/imenu.el" "cedet/semantic/java.el" -;;;;;; "cedet/semantic/lex-spp.el" "cedet/semantic/lex.el" "cedet/semantic/loaddefs.el" -;;;;;; "cedet/semantic/mru-bookmark.el" "cedet/semantic/sb.el" "cedet/semantic/scope.el" -;;;;;; "cedet/semantic/senator.el" "cedet/semantic/sort.el" "cedet/semantic/symref.el" -;;;;;; "cedet/semantic/symref/cscope.el" "cedet/semantic/symref/filter.el" -;;;;;; "cedet/semantic/symref/global.el" "cedet/semantic/symref/grep.el" -;;;;;; "cedet/semantic/symref/idutils.el" "cedet/semantic/symref/list.el" -;;;;;; "cedet/semantic/tag-file.el" "cedet/semantic/tag-ls.el" "cedet/semantic/tag-write.el" +;;;;;; "cedet/semantic/lex-spp.el" "cedet/semantic/lex.el" "cedet/semantic/mru-bookmark.el" +;;;;;; "cedet/semantic/sb.el" "cedet/semantic/scope.el" "cedet/semantic/senator.el" +;;;;;; "cedet/semantic/sort.el" "cedet/semantic/symref.el" "cedet/semantic/symref/cscope.el" +;;;;;; "cedet/semantic/symref/filter.el" "cedet/semantic/symref/global.el" +;;;;;; "cedet/semantic/symref/grep.el" "cedet/semantic/symref/idutils.el" +;;;;;; "cedet/semantic/symref/list.el" "cedet/semantic/tag-file.el" +;;;;;; "cedet/semantic/tag-ls.el" "cedet/semantic/tag-write.el" ;;;;;; "cedet/semantic/tag.el" "cedet/semantic/texi.el" "cedet/semantic/util-modes.el" ;;;;;; "cedet/semantic/util.el" "cedet/semantic/wisent.el" "cedet/semantic/wisent/comp.el" ;;;;;; "cedet/semantic/wisent/java-tags.el" "cedet/semantic/wisent/javascript.el" @@ -33490,33 +33603,32 @@ ;;;;;; "cedet/srecode/el.el" "cedet/srecode/expandproto.el" "cedet/srecode/extract.el" ;;;;;; "cedet/srecode/fields.el" "cedet/srecode/filters.el" "cedet/srecode/find.el" ;;;;;; "cedet/srecode/getset.el" "cedet/srecode/insert.el" "cedet/srecode/java.el" -;;;;;; "cedet/srecode/loaddefs.el" "cedet/srecode/map.el" "cedet/srecode/mode.el" -;;;;;; "cedet/srecode/semantic.el" "cedet/srecode/srt-wy.el" "cedet/srecode/srt.el" -;;;;;; "cedet/srecode/table.el" "cedet/srecode/template.el" "cedet/srecode/texi.el" -;;;;;; "cus-dep.el" "dframe.el" "dired-aux.el" "dired-x.el" "dos-fns.el" -;;;;;; "dos-vars.el" "dos-w32.el" "dynamic-setting.el" "emacs-lisp/assoc.el" -;;;;;; "emacs-lisp/authors.el" "emacs-lisp/avl-tree.el" "emacs-lisp/bindat.el" -;;;;;; "emacs-lisp/byte-opt.el" "emacs-lisp/chart.el" "emacs-lisp/cl-extra.el" -;;;;;; "emacs-lisp/cl-loaddefs.el" "emacs-lisp/cl-macs.el" "emacs-lisp/cl-seq.el" -;;;;;; "emacs-lisp/cl-specs.el" "emacs-lisp/cust-print.el" "emacs-lisp/eieio-base.el" -;;;;;; "emacs-lisp/eieio-custom.el" "emacs-lisp/eieio-datadebug.el" -;;;;;; "emacs-lisp/eieio-opt.el" "emacs-lisp/eieio-speedbar.el" -;;;;;; "emacs-lisp/eieio.el" "emacs-lisp/find-gc.el" "emacs-lisp/gulp.el" -;;;;;; "emacs-lisp/lisp-mnt.el" "emacs-lisp/package-x.el" "emacs-lisp/regi.el" -;;;;;; "emacs-lisp/smie.el" "emacs-lisp/tcover-ses.el" "emacs-lisp/tcover-unsafep.el" -;;;;;; "emulation/cua-gmrk.el" "emulation/cua-rect.el" "emulation/edt-lk201.el" -;;;;;; "emulation/edt-mapper.el" "emulation/edt-pc.el" "emulation/edt-vt100.el" -;;;;;; "emulation/tpu-extras.el" "emulation/viper-cmd.el" "emulation/viper-ex.el" -;;;;;; "emulation/viper-init.el" "emulation/viper-keym.el" "emulation/viper-macs.el" -;;;;;; "emulation/viper-mous.el" "emulation/viper-util.el" "erc/erc-backend.el" -;;;;;; "erc/erc-goodies.el" "erc/erc-ibuffer.el" "erc/erc-lang.el" -;;;;;; "eshell/em-alias.el" "eshell/em-banner.el" "eshell/em-basic.el" -;;;;;; "eshell/em-cmpl.el" "eshell/em-dirs.el" "eshell/em-glob.el" -;;;;;; "eshell/em-hist.el" "eshell/em-ls.el" "eshell/em-pred.el" -;;;;;; "eshell/em-prompt.el" "eshell/em-rebind.el" "eshell/em-script.el" -;;;;;; "eshell/em-smart.el" "eshell/em-term.el" "eshell/em-unix.el" -;;;;;; "eshell/em-xtra.el" "eshell/esh-arg.el" "eshell/esh-cmd.el" -;;;;;; "eshell/esh-ext.el" "eshell/esh-groups.el" "eshell/esh-io.el" +;;;;;; "cedet/srecode/map.el" "cedet/srecode/mode.el" "cedet/srecode/semantic.el" +;;;;;; "cedet/srecode/srt-wy.el" "cedet/srecode/srt.el" "cedet/srecode/table.el" +;;;;;; "cedet/srecode/template.el" "cedet/srecode/texi.el" "cus-dep.el" +;;;;;; "dframe.el" "dired-aux.el" "dired-x.el" "dos-fns.el" "dos-vars.el" +;;;;;; "dos-w32.el" "dynamic-setting.el" "emacs-lisp/assoc.el" "emacs-lisp/authors.el" +;;;;;; "emacs-lisp/avl-tree.el" "emacs-lisp/bindat.el" "emacs-lisp/byte-opt.el" +;;;;;; "emacs-lisp/chart.el" "emacs-lisp/cl-extra.el" "emacs-lisp/cl-loaddefs.el" +;;;;;; "emacs-lisp/cl-macs.el" "emacs-lisp/cl-seq.el" "emacs-lisp/cl-specs.el" +;;;;;; "emacs-lisp/cust-print.el" "emacs-lisp/eieio-base.el" "emacs-lisp/eieio-custom.el" +;;;;;; "emacs-lisp/eieio-datadebug.el" "emacs-lisp/eieio-opt.el" +;;;;;; "emacs-lisp/eieio-speedbar.el" "emacs-lisp/eieio.el" "emacs-lisp/find-gc.el" +;;;;;; "emacs-lisp/gulp.el" "emacs-lisp/lisp-mnt.el" "emacs-lisp/package-x.el" +;;;;;; "emacs-lisp/regi.el" "emacs-lisp/smie.el" "emacs-lisp/tcover-ses.el" +;;;;;; "emacs-lisp/tcover-unsafep.el" "emulation/cua-gmrk.el" "emulation/cua-rect.el" +;;;;;; "emulation/edt-lk201.el" "emulation/edt-mapper.el" "emulation/edt-pc.el" +;;;;;; "emulation/edt-vt100.el" "emulation/tpu-extras.el" "emulation/viper-cmd.el" +;;;;;; "emulation/viper-ex.el" "emulation/viper-init.el" "emulation/viper-keym.el" +;;;;;; "emulation/viper-macs.el" "emulation/viper-mous.el" "emulation/viper-util.el" +;;;;;; "erc/erc-backend.el" "erc/erc-goodies.el" "erc/erc-ibuffer.el" +;;;;;; "erc/erc-lang.el" "eshell/em-alias.el" "eshell/em-banner.el" +;;;;;; "eshell/em-basic.el" "eshell/em-cmpl.el" "eshell/em-dirs.el" +;;;;;; "eshell/em-glob.el" "eshell/em-hist.el" "eshell/em-ls.el" +;;;;;; "eshell/em-pred.el" "eshell/em-prompt.el" "eshell/em-rebind.el" +;;;;;; "eshell/em-script.el" "eshell/em-smart.el" "eshell/em-term.el" +;;;;;; "eshell/em-unix.el" "eshell/em-xtra.el" "eshell/esh-arg.el" +;;;;;; "eshell/esh-cmd.el" "eshell/esh-ext.el" "eshell/esh-io.el" ;;;;;; "eshell/esh-module.el" "eshell/esh-opt.el" "eshell/esh-proc.el" ;;;;;; "eshell/esh-util.el" "eshell/esh-var.el" "ezimage.el" "foldout.el" ;;;;;; "format-spec.el" "forms-d2.el" "forms-pass.el" "fringe.el" @@ -33621,7 +33733,7 @@ ;;;;;; "vc/ediff-ptch.el" "vc/ediff-vers.el" "vc/ediff-wind.el" ;;;;;; "vc/pcvs-info.el" "vc/pcvs-parse.el" "vc/pcvs-util.el" "vc/vc-dav.el" ;;;;;; "vcursor.el" "vt-control.el" "vt100-led.el" "w32-fns.el" -;;;;;; "w32-vars.el" "x-dnd.el") (20265 8335 405119)) +;;;;;; "w32-vars.el" "x-dnd.el") (20298 60939 999086)) ;;;*** === modified file 'msdos/sed2v2.inp' --- msdos/sed2v2.inp 2012-01-29 15:46:05 +0000 +++ msdos/sed2v2.inp 2012-02-27 03:20:00 +0000 @@ -59,7 +59,7 @@ /^#undef PACKAGE_STRING/s/^.*$/#define PACKAGE_STRING ""/ /^#undef PACKAGE_TARNAME/s/^.*$/#define PACKAGE_TARNAME ""/ /^#undef PACKAGE_VERSION/s/^.*$/#define PACKAGE_VERSION ""/ -/^#undef VERSION/s/^.*$/#define VERSION "24.0.93"/ +/^#undef VERSION/s/^.*$/#define VERSION "24.0.94"/ /^#undef HAVE_DECL_GETENV/s/^.*$/#define HAVE_DECL_GETENV 1/ /^#undef SYS_SIGLIST_DECLARED/s/^.*$/#define SYS_SIGLIST_DECLARED 1/ /^#undef HAVE_DIRENT_H/s/^.*$/#define HAVE_DIRENT_H 1/ === modified file 'nextstep/Cocoa/Emacs.base/Contents/Info.plist' --- nextstep/Cocoa/Emacs.base/Contents/Info.plist 2012-02-09 07:48:22 +0000 +++ nextstep/Cocoa/Emacs.base/Contents/Info.plist 2012-02-27 03:20:00 +0000 @@ -553,7 +553,7 @@ CFBundleExecutable Emacs CFBundleGetInfoString - Emacs 24.0.93 Copyright (C) 2012 Free Software Foundation, Inc. + Emacs 24.0.94 Copyright (C) 2012 Free Software Foundation, Inc. CFBundleIconFile Emacs.icns CFBundleIdentifier @@ -566,7 +566,7 @@ APPL CFBundleShortVersionString - 24.0.93 + 24.0.94 CFBundleSignature EMAx === modified file 'nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj/InfoPlist.strings' --- nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj/InfoPlist.strings 2012-02-09 07:48:22 +0000 +++ nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj/InfoPlist.strings 2012-02-27 03:20:00 +0000 @@ -1,6 +1,6 @@ /* Localized versions of Info.plist keys */ CFBundleName = "Emacs"; -CFBundleShortVersionString = "Version 24.0.93"; -CFBundleGetInfoString = "Emacs version 24.0.93, NS Windowing"; +CFBundleShortVersionString = "Version 24.0.94"; +CFBundleGetInfoString = "Emacs version 24.0.94, NS Windowing"; NSHumanReadableCopyright = "Copyright (C) 2012 Free Software Foundation, Inc."; === modified file 'nextstep/GNUstep/Emacs.base/Resources/Emacs.desktop' --- nextstep/GNUstep/Emacs.base/Resources/Emacs.desktop 2012-02-09 07:48:22 +0000 +++ nextstep/GNUstep/Emacs.base/Resources/Emacs.desktop 2012-02-27 03:20:00 +0000 @@ -1,7 +1,7 @@ [Desktop Entry] Encoding=UTF-8 Type=Application -Version=24.0.93 +Version=24.0.94 Categories=GNUstep Name=Emacs Comment=GNU Emacs for NeXT/Open/GNUstep and OS X === modified file 'nextstep/GNUstep/Emacs.base/Resources/Info-gnustep.plist' --- nextstep/GNUstep/Emacs.base/Resources/Info-gnustep.plist 2012-02-09 07:48:22 +0000 +++ nextstep/GNUstep/Emacs.base/Resources/Info-gnustep.plist 2012-02-27 03:20:00 +0000 @@ -2,7 +2,7 @@ ApplicationDescription = "GNU Emacs for GNUstep / OS X"; ApplicationIcon = emacs.tiff; ApplicationName = Emacs; - ApplicationRelease = "24.0.93"; + ApplicationRelease = "24.0.94"; Authors = ( "Adrian Robert (GNUstep)", "Christophe de Dinechin (MacOS X)", @@ -13,7 +13,7 @@ ); Copyright = "Copyright (C) 2012 Free Software Foundation, Inc."; CopyrightDescription = "Released under the GNU General Public License Version 3 or later"; - FullVersionID = "Emacs 24.0.93, NS Windowing"; + FullVersionID = "Emacs 24.0.94, NS Windowing"; NSExecutable = Emacs; NSIcon = emacs.tiff; NSPrincipalClass = NSApplication; === modified file 'nt/config.nt' --- nt/config.nt 2012-01-29 15:46:05 +0000 +++ nt/config.nt 2012-02-27 03:20:00 +0000 @@ -328,7 +328,7 @@ #define PACKAGE "emacs" /* Version number of package */ -#define VERSION "24.0.93" +#define VERSION "24.0.94" /* Define to `__inline__' or `__inline' if that's what the C compiler calls it, or to nothing if 'inline' is not supported under any name. */ === modified file 'nt/emacs.rc' --- nt/emacs.rc 2012-02-09 07:48:22 +0000 +++ nt/emacs.rc 2012-02-27 03:20:00 +0000 @@ -7,8 +7,8 @@ #endif VS_VERSION_INFO VERSIONINFO - FILEVERSION 24,0,93,0 - PRODUCTVERSION 24,0,93,0 + FILEVERSION 24,0,94,0 + PRODUCTVERSION 24,0,94,0 FILEFLAGSMASK 0x3FL #ifdef EMACSDEBUG FILEFLAGS 0x1L @@ -25,12 +25,12 @@ BEGIN VALUE "CompanyName", "Free Software Foundation\0" VALUE "FileDescription", "GNU Emacs: The extensible self-documenting text editor\0" - VALUE "FileVersion", "24, 0, 93, 0\0" + VALUE "FileVersion", "24, 0, 94, 0\0" VALUE "InternalName", "Emacs\0" VALUE "LegalCopyright", "Copyright (C) 2001-2012\0" VALUE "OriginalFilename", "emacs.exe" VALUE "ProductName", "Emacs\0" - VALUE "ProductVersion", "24, 0, 93, 0\0" + VALUE "ProductVersion", "24, 0, 94, 0\0" VALUE "OLESelfRegister", "\0" END END === modified file 'nt/emacsclient.rc' --- nt/emacsclient.rc 2012-02-09 07:48:22 +0000 +++ nt/emacsclient.rc 2012-02-27 03:20:00 +0000 @@ -5,8 +5,8 @@ #endif VS_VERSION_INFO VERSIONINFO - FILEVERSION 24,0,93,0 - PRODUCTVERSION 24,0,93,0 + FILEVERSION 24,0,94,0 + PRODUCTVERSION 24,0,94,0 FILEFLAGSMASK 0x3FL #ifdef EMACSDEBUG FILEFLAGS 0x1L @@ -23,12 +23,12 @@ BEGIN VALUE "CompanyName", "Free Software Foundation\0" VALUE "FileDescription", "GNU EmacsClient: Client for the extensible self-documenting text editor\0" - VALUE "FileVersion", "24, 0, 93, 0\0" + VALUE "FileVersion", "24, 0, 94, 0\0" VALUE "InternalName", "EmacsClient\0" VALUE "LegalCopyright", "Copyright (C) 2001-2012\0" VALUE "OriginalFilename", "emacsclientw.exe" VALUE "ProductName", "EmacsClient\0" - VALUE "ProductVersion", "24, 0, 93, 0\0" + VALUE "ProductVersion", "24, 0, 94, 0\0" VALUE "OLESelfRegister", "\0" END END === modified file 'nt/makefile.w32-in' --- nt/makefile.w32-in 2012-02-23 07:52:08 +0000 +++ nt/makefile.w32-in 2012-02-27 03:20:00 +0000 @@ -22,7 +22,7 @@ # FIXME: This file uses DOS EOLs. Convert to Unix after 22.1 is out # (and remove or replace this comment). -VERSION = 24.0.93 +VERSION = 24.0.94 TMP_DIST_DIR = emacs-$(VERSION) ------------------------------------------------------------ revno: 107444 committer: Chong Yidong branch nick: trunk timestamp: Mon 2012-02-27 10:34:12 +0800 message: * font-lock.el (font-lock-specified-p): Rename from font-lock-spec-present. Callers changed. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2012-02-27 01:57:50 +0000 +++ lisp/ChangeLog 2012-02-27 02:34:12 +0000 @@ -1,3 +1,8 @@ +2012-02-27 Chong Yidong + + * font-lock.el (font-lock-specified-p): Rename from + font-lock-spec-present. Callers changed. + 2012-02-27 Daniel Hackney (tiny change) * emacs-lisp/package.el (package-compute-transaction): Handle === modified file 'lisp/font-core.el' --- lisp/font-core.el 2012-02-26 13:02:52 +0000 +++ lisp/font-core.el 2012-02-27 02:34:12 +0000 @@ -192,7 +192,7 @@ ;; Only do hard work if the mode has specified stuff in ;; `font-lock-defaults'. - (when (font-lock-spec-present mode) + (when (font-lock-specified-p mode) (font-lock-mode-internal mode))) (defun turn-on-font-lock () === modified file 'lisp/font-lock.el' --- lisp/font-lock.el 2012-02-26 13:02:52 +0000 +++ lisp/font-lock.el 2012-02-27 02:34:12 +0000 @@ -629,10 +629,13 @@ ;; Shut up the byte compiler. (defvar font-lock-face-attributes)) ; Obsolete but respected if set. -(defun font-lock-spec-present (mode) - ;; Is there enough specification to do fontification at all? +(defun font-lock-specified-p (mode) + "Return non-nil if the current buffer is ready for fontification. +The MODE argument, if non-nil, means Font Lock mode is about to +be enabled." (or font-lock-defaults - (if (boundp 'font-lock-keywords) font-lock-keywords) + (and (boundp 'font-lock-keywords) + font-lock-keywords) (and mode (boundp 'font-lock-set-defaults) font-lock-set-defaults @@ -643,7 +646,7 @@ ;; The first fontification after turning the mode on. This must ;; only be called after the mode hooks have been run. (when (and font-lock-mode - (font-lock-spec-present t)) + (font-lock-specified-p t)) (let ((max-size (font-lock-value-in-major-mode font-lock-maximum-size))) (cond (font-lock-fontified nil) ------------------------------------------------------------ revno: 107443 author: Daniel Hackney committer: Chong Yidong branch nick: trunk timestamp: Mon 2012-02-27 09:57:50 +0800 message: Fix oversight in package-load-list handling. * lisp/emacs-lisp/package.el (package-compute-transaction): Handle holding a package version to t in package-load-list. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2012-02-26 19:36:59 +0000 +++ lisp/ChangeLog 2012-02-27 01:57:50 +0000 @@ -1,3 +1,8 @@ +2012-02-27 Daniel Hackney (tiny change) + + * emacs-lisp/package.el (package-compute-transaction): Handle + holding a package version to t in package-load-list. + 2012-02-26 Michael Albinus * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0. === modified file 'lisp/emacs-lisp/package.el' --- lisp/emacs-lisp/package.el 2012-02-10 15:59:29 +0000 +++ lisp/emacs-lisp/package.el 2012-02-27 01:57:50 +0000 @@ -750,7 +750,8 @@ hold) (when (setq hold (assq next-pkg package-load-list)) (setq hold (cadr hold)) - (cond ((eq hold nil) + (cond ((eq hold t)) + ((eq hold nil) (error "Required package '%s' is disabled" (symbol-name next-pkg))) ((null (stringp hold)) ------------------------------------------------------------ revno: 107442 committer: Michael Albinus branch nick: trunk timestamp: Sun 2012-02-26 20:36:59 +0100 message: * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0. (tramp-get-inode, tramp-get-device): Use cached values. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2012-02-26 13:02:52 +0000 +++ lisp/ChangeLog 2012-02-26 19:36:59 +0000 @@ -1,3 +1,8 @@ +2012-02-26 Michael Albinus + + * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0. + (tramp-get-inode, tramp-get-device): Use cached values. + 2012-02-26 Alan Mackenzie Check there is a font-lock specification before doing initial === modified file 'lisp/net/tramp.el' --- lisp/net/tramp.el 2012-02-25 08:51:32 +0000 +++ lisp/net/tramp.el 2012-02-26 19:36:59 +0000 @@ -1650,7 +1650,7 @@ ;; applied might be not so efficient (Ange-FTP uses hashes). But ;; performance isn't the major issue given that file transfer will ;; take time. -(defvar tramp-inodes nil +(defvar tramp-inodes 0 "Keeps virtual inodes numbers.") ;; Devices must distinguish physical file systems. The device numbers @@ -1658,7 +1658,7 @@ ;; So we use virtual device numbers, generated by Tramp. Both Ange-FTP and ;; EFS use device number "-1". In order to be different, we use device number ;; (-1 . x), whereby "x" is unique for a given (method user host). -(defvar tramp-devices nil +(defvar tramp-devices 0 "Keeps virtual device numbers.") (defun tramp-default-file-modes (filename) @@ -3412,28 +3412,14 @@ (defun tramp-get-inode (vec) "Returns the virtual inode number. If it doesn't exist, generate a new one." - (let ((string (tramp-make-tramp-file-name - (tramp-file-name-method vec) - (tramp-file-name-user vec) - (tramp-file-name-host vec) - ""))) - (unless (assoc string tramp-inodes) - (add-to-list 'tramp-inodes - (list string (length tramp-inodes)))) - (nth 1 (assoc string tramp-inodes)))) + (with-file-property vec (tramp-file-name-localname vec) "inode" + (setq tramp-inodes (1+ tramp-inodes)))) (defun tramp-get-device (vec) "Returns the virtual device number. If it doesn't exist, generate a new one." - (let ((string (tramp-make-tramp-file-name - (tramp-file-name-method vec) - (tramp-file-name-user vec) - (tramp-file-name-host vec) - ""))) - (unless (assoc string tramp-devices) - (add-to-list 'tramp-devices - (list string (length tramp-devices)))) - (cons -1 (nth 1 (assoc string tramp-devices))))) + (with-connection-property (tramp-get-connection-process vec) "device" + (cons -1 (setq tramp-devices (1+ tramp-devices))))) (defun tramp-equal-remote (file1 file2) "Check, whether the remote parts of FILE1 and FILE2 are identical. ------------------------------------------------------------ revno: 107441 committer: Alan Mackenzie branch nick: trunk timestamp: Sun 2012-02-26 13:02:52 +0000 message: Check there is a font-lock specification before initial fontification. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2012-02-26 09:38:45 +0000 +++ lisp/ChangeLog 2012-02-26 13:02:52 +0000 @@ -1,3 +1,16 @@ +2012-02-26 Alan Mackenzie + + Check there is a font-lock specification before doing initial + fontification. + + * font-core.el (font-lock-mode): Move the conditional from + :after-hook to font-lock-initial-fontify. + (font-lock-default-function): Move the check for a specification + to font-lock-spec-present. + + * font-lock.el (font-lock-initial-fontify): call ... + (font-lock-spec-present): New function. + 2012-02-26 Jim Blandy * progmodes/gdb-mi.el (gdb-mi-quote): New function. === modified file 'lisp/font-core.el' --- lisp/font-core.el 2012-02-23 18:51:22 +0000 +++ lisp/font-core.el 2012-02-26 13:02:52 +0000 @@ -138,7 +138,7 @@ your own function which is called when `font-lock-mode' is toggled via `font-lock-function'. " nil nil nil - :after-hook (if font-lock-mode (font-lock-initial-fontify)) + :after-hook (font-lock-initial-fontify) ;; Don't turn on Font Lock mode if we don't have a display (we're running a ;; batch job) or if the buffer is invisible (the name starts with a space). (when (or noninteractive (eq (aref (buffer-name) 0) ?\s)) @@ -192,13 +192,7 @@ ;; Only do hard work if the mode has specified stuff in ;; `font-lock-defaults'. - (when (or font-lock-defaults - (if (boundp 'font-lock-keywords) font-lock-keywords) - (and mode - (boundp 'font-lock-set-defaults) - font-lock-set-defaults - font-lock-major-mode - (not (eq font-lock-major-mode major-mode)))) + (when (font-lock-spec-present mode) (font-lock-mode-internal mode))) (defun turn-on-font-lock () === modified file 'lisp/font-lock.el' --- lisp/font-lock.el 2012-02-23 18:51:22 +0000 +++ lisp/font-lock.el 2012-02-26 13:02:52 +0000 @@ -629,17 +629,29 @@ ;; Shut up the byte compiler. (defvar font-lock-face-attributes)) ; Obsolete but respected if set. +(defun font-lock-spec-present (mode) + ;; Is there enough specification to do fontification at all? + (or font-lock-defaults + (if (boundp 'font-lock-keywords) font-lock-keywords) + (and mode + (boundp 'font-lock-set-defaults) + font-lock-set-defaults + font-lock-major-mode + (not (eq font-lock-major-mode major-mode))))) + (defun font-lock-initial-fontify () ;; The first fontification after turning the mode on. This must ;; only be called after the mode hooks have been run. - (let ((max-size (font-lock-value-in-major-mode font-lock-maximum-size))) - (cond (font-lock-fontified - nil) - ((or (null max-size) (> max-size (buffer-size))) - (font-lock-fontify-buffer)) - (font-lock-verbose - (message "Fontifying %s...buffer size greater than font-lock-maximum-size" - (buffer-name)))))) + (when (and font-lock-mode + (font-lock-spec-present t)) + (let ((max-size (font-lock-value-in-major-mode font-lock-maximum-size))) + (cond (font-lock-fontified + nil) + ((or (null max-size) (> max-size (buffer-size))) + (font-lock-fontify-buffer)) + (font-lock-verbose + (message "Fontifying %s...buffer size greater than font-lock-maximum-size" + (buffer-name))))))) (defun font-lock-mode-internal (arg) ;; Turn on Font Lock mode. ------------------------------------------------------------ revno: 107440 fixes bug(s): http://debbugs.gnu.org/10396 author: David Engster committer: Chong Yidong branch nick: trunk timestamp: Sun 2012-02-26 17:52:09 +0800 message: Add NEWS entry about update-directory-autoloads change. diff: === modified file 'etc/NEWS' --- etc/NEWS 2012-02-26 09:17:07 +0000 +++ etc/NEWS 2012-02-26 09:52:09 +0000 @@ -1131,6 +1131,11 @@ mechanism is now based on the package concept. The variable finder-package-info is replaced by package--builtins and finder-keywords-hash. +--- +** When generating autoloads, `update-directory-autoloads' no longer +assumes every inspected file is in your `load-path'. It instead +generates relative names according to the current `load-path'. + * Lisp changes in Emacs 24.1 ------------------------------------------------------------ revno: 107439 committer: Michael Albinus branch nick: trunk timestamp: Sun 2012-02-26 10:41:13 +0100 message: * files.texi (Magic File Names): Add files-equal-p and file-subdir-of-p. diff: === modified file 'doc/lispref/ChangeLog' --- doc/lispref/ChangeLog 2012-02-26 09:08:19 +0000 +++ doc/lispref/ChangeLog 2012-02-26 09:41:13 +0000 @@ -1,3 +1,7 @@ +2012-02-26 Michael Albinus + + * files.texi (Magic File Names): Add files-equal-p and file-subdir-of-p. + 2012-02-26 Chong Yidong * files.texi (Kinds of Files): Improve documentation of === modified file 'doc/lispref/files.texi' --- doc/lispref/files.texi 2012-02-26 09:29:50 +0000 +++ doc/lispref/files.texi 2012-02-26 09:41:13 +0000 @@ -2726,9 +2726,9 @@ @code{file-name-nondirectory}, @code{file-name-sans-versions}, @code{file-newer-than-file-p}, @code{file-ownership-preserved-p}, -@code{file-readable-p}, @code{file-regular-p}, @code{file-symlink-p}, -@code{file-truename}, @code{file-writable-p}, -@code{find-backup-file-name}, +@code{file-readable-p}, @code{file-regular-p}, @code{file-subdir-of-p}, +@code{file-symlink-p}, @code{file-truename}, @code{file-writable-p}, +@code{files-equal-p}, @code{find-backup-file-name}, @c Not sure why it was here: @code{find-file-noselect},@* @code{get-file-buffer}, @code{insert-directory}, ------------------------------------------------------------ revno: 107438 fixes bug(s): http://debbugs.gnu.org/10765 author: Jim Blandy committer: Chong Yidong branch nick: trunk timestamp: Sun 2012-02-26 17:38:45 +0800 message: Fix handling of commands containing double quotes in gdb-mi * lisp/progmodes/gdb-mi.el (gdb-mi-quote): New function. (gdb-send): Apply it to the operand of the '-interpreter-exec console' command, so that we can pass arguments with (say) quotes in them. Store exact string sent in gdb-debug-log (Bug#10765). diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2012-02-26 09:24:13 +0000 +++ lisp/ChangeLog 2012-02-26 09:38:45 +0000 @@ -1,3 +1,10 @@ +2012-02-26 Jim Blandy + + * progmodes/gdb-mi.el (gdb-mi-quote): New function. + (gdb-send): Apply it to the operand of the '-interpreter-exec + console' command, so that we can pass arguments with (say) quotes + in them. Store exact string sent in gdb-debug-log (Bug#10765). + 2012-02-26 Chong Yidong * help-fns.el (describe-function-1): Clarify description of === modified file 'lisp/progmodes/gdb-mi.el' --- lisp/progmodes/gdb-mi.el 2012-02-05 08:06:37 +0000 +++ lisp/progmodes/gdb-mi.el 2012-02-26 09:38:45 +0000 @@ -1672,8 +1672,6 @@ (if (not (string= "" string)) (setq gdb-last-command string) (if gdb-last-command (setq string gdb-last-command))) - (if gdb-enable-debug - (push (cons 'mi-send (concat string "\n")) gdb-debug-log)) (if (string-match "^-" string) ;; MI command (progn @@ -1683,10 +1681,22 @@ (if (string-match "\\\\$" string) (setq gdb-continuation (concat gdb-continuation string "\n")) (setq gdb-first-done-or-error t) - (process-send-string proc (concat "-interpreter-exec console \"" - gdb-continuation string "\"\n")) + (let ((to-send (concat "-interpreter-exec console " + (gdb-mi-quote string) + "\n"))) + (if gdb-enable-debug + (push (cons 'mi-send to-send) gdb-debug-log)) + (process-send-string proc to-send)) (setq gdb-continuation nil)))) +(defun gdb-mi-quote (string) + "Return STRING quoted properly as an MI argument. +The string is enclosed in double quotes. +All embedded quotes, newlines, and backslashes are preceded with a backslash." + (setq string (replace-regexp-in-string "\\([\"\\]\\)" "\\\\\\&" string)) + (setq string (replace-regexp-in-string "\n" "\\n" string t t)) + (concat "\"" string "\"")) + (defun gdb-input (command handler-function) "Send COMMAND to GDB via the MI interface. Run the function HANDLER-FUNCTION, with no arguments, once the command is ------------------------------------------------------------ revno: 107437 fixes bug(s): http://debbugs.gnu.org/10834 committer: Chong Yidong branch nick: trunk timestamp: Sun 2012-02-26 17:29:50 +0800 message: * doc/misc/ediff.texi (Quick Help Commands): Add a couple of index entries. diff: === modified file 'doc/lispref/files.texi' --- doc/lispref/files.texi 2012-02-26 09:08:19 +0000 +++ doc/lispref/files.texi 2012-02-26 09:29:50 +0000 @@ -1021,7 +1021,7 @@ @defun files-equal-p file1 file2 This function returns @code{t} if the files @var{file1} and @var{file2} name the same file. Two ordinary files are considered to -be the same if the function @code{file-attributes} (@xref{File +be the same if the function @code{file-attributes} (@pxref{File Attributes}) returns @code{equal} values for them. @end defun === modified file 'doc/misc/ChangeLog' --- doc/misc/ChangeLog 2012-02-17 07:44:31 +0000 +++ doc/misc/ChangeLog 2012-02-26 09:29:50 +0000 @@ -1,3 +1,8 @@ +2012-02-26 Chong Yidong + + * ediff.texi (Quick Help Commands): Add a couple of index entries + (Bug#10834). + 2012-02-17 Glenn Morris * gnus.texi (Posting Styles): === modified file 'doc/misc/ediff.texi' --- doc/misc/ediff.texi 2012-01-19 07:21:25 +0000 +++ doc/misc/ediff.texi 2012-02-26 09:29:50 +0000 @@ -433,6 +433,8 @@ @node Quick Help Commands,Other Session Commands,,Session Commands @section Quick Help Commands +@cindex command help +@cindex important commands @table @kbd @item ? ------------------------------------------------------------ revno: 107436 fixes bug(s): http://debbugs.gnu.org/10844 committer: Chong Yidong branch nick: trunk timestamp: Sun 2012-02-26 17:24:13 +0800 message: * help-fns.el (describe-function-1): Clarify description of remapping. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2012-02-26 09:08:19 +0000 +++ lisp/ChangeLog 2012-02-26 09:24:13 +0000 @@ -1,5 +1,8 @@ 2012-02-26 Chong Yidong + * help-fns.el (describe-function-1): Clarify description of + remapping (Bug#10844). + * files.el (files-equal-p): Doc fix. (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp, and quit the loop once a mismatch is found. === modified file 'lisp/help-fns.el' --- lisp/help-fns.el 2012-02-10 07:57:21 +0000 +++ lisp/help-fns.el 2012-02-26 09:24:13 +0000 @@ -482,12 +482,14 @@ (if (member (event-modifiers (aref key 0)) '(nil (shift))) (push key non-modified-keys))) (when remapped - (princ "It is remapped to `") + (princ "Its keys are remapped to `") (princ (symbol-name remapped)) - (princ "'")) + (princ "'.\n")) (when keys - (princ (if remapped ", which is bound to " "It is bound to ")) + (princ (if remapped + "Without this remapping, it would be bound to " + "It is bound to ")) ;; If lots of ordinary text characters run this command, ;; don't mention them one by one. (if (< (length non-modified-keys) 10) ------------------------------------------------------------ revno: 107435 committer: Chong Yidong branch nick: trunk timestamp: Sun 2012-02-26 17:17:07 +0800 message: Add NEWS entry about change to drag and drop behavior on Mac OS. diff: === modified file 'etc/NEWS' --- etc/NEWS 2012-02-25 09:32:33 +0000 +++ etc/NEWS 2012-02-26 09:17:07 +0000 @@ -1578,6 +1578,10 @@ ** Customize ns-auto-hide-menu-bar to have the menu-bar hidden, but reappear on mouse-over. (Requires OS X 10.6 or later.) ++++ +** On Mac OS X, dragging a file into Emacs visits the file, like on +other platforms, rather than inserting its contents into the buffer. + ---------------------------------------------------------------------- This file is part of GNU Emacs. ------------------------------------------------------------ revno: 107434 committer: Chong Yidong branch nick: trunk timestamp: Sun 2012-02-26 17:08:19 +0800 message: Code and doc fixes for file-subdir-of-p and files-equal-p. * lisp/files.el (files-equal-p): Doc fix. (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp, and quit the loop once a mismatch is found. * doc/lispref/files.texi (Kinds of Files): Improve documentation of files-equal-p and file-subdir-of-p. diff: === modified file 'doc/lispref/ChangeLog' --- doc/lispref/ChangeLog 2012-02-26 02:25:07 +0000 +++ doc/lispref/ChangeLog 2012-02-26 09:08:19 +0000 @@ -1,3 +1,8 @@ +2012-02-26 Chong Yidong + + * files.texi (Kinds of Files): Improve documentation of + files-equal-p and file-subdir-of-p. + 2012-02-26 Glenn Morris * intro.texi (Acknowledgements): Small changes. === modified file 'doc/lispref/files.texi' --- doc/lispref/files.texi 2012-02-25 15:31:07 +0000 +++ doc/lispref/files.texi 2012-02-26 09:08:19 +0000 @@ -1019,20 +1019,19 @@ @end defun @defun files-equal-p file1 file2 -This function return @code{t} if the files @var{file1} and @var{file2} name -the same file. -Comparison is made with the @code{file-attributes} of both files. +This function returns @code{t} if the files @var{file1} and +@var{file2} name the same file. Two ordinary files are considered to +be the same if the function @code{file-attributes} (@xref{File +Attributes}) returns @code{equal} values for them. @end defun @defun file-subdir-of-p dir1 dir2 -This function return @code{t} if directory @var{dir1} is a subdirectory -of @var{dir2} or if @var{dir1} and @var{dir2} are the same directory. -Arguments @var{dir1} and @var{dir2} must be existing directories, -otherwise, return nil. -Check is done by building a directory name based on equality of differents -components of both directory names, if this resulting directory name -is equal to @var{dir2}, we assume directory @var{dir1} -is a subdirectory of @var{dir2}. +This function returns @code{t} if directory @var{dir1} is a +subdirectory of @var{dir2}, or if @var{dir1} and @var{dir2} are the +same directory. It compares the @code{file-truename} values of the +two directories (@pxref{Truenames}). If either @var{dir1} or +@var{dir2} do not name existing directories, the return value is +@code{nil}. @end defun @node Truenames === modified file 'doc/lispref/modes.texi' --- doc/lispref/modes.texi 2012-02-23 18:51:22 +0000 +++ doc/lispref/modes.texi 2012-02-26 09:08:19 +0000 @@ -1596,7 +1596,7 @@ and @var{set} is a function of one argument (a state) that sets it. @item :after-hook @var{after-hook} -This defines a single lisp form which is evaluated after the mode hooks +This defines a single Lisp form which is evaluated after the mode hooks have run. It should not be quoted. @end table === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2012-02-25 23:26:40 +0000 +++ lisp/ChangeLog 2012-02-26 09:08:19 +0000 @@ -1,3 +1,9 @@ +2012-02-26 Chong Yidong + + * files.el (files-equal-p): Doc fix. + (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp, + and quit the loop once a mismatch is found. + 2012-02-25 Juanma Barranquero * bs.el (bs--show-with-configuration): Don't throw an error === modified file 'lisp/files.el' --- lisp/files.el 2012-02-24 19:25:38 +0000 +++ lisp/files.el 2012-02-26 09:08:19 +0000 @@ -4986,7 +4986,9 @@ (delete-directory-internal directory))))) (defun files-equal-p (file1 file2) - "Return non-nil if FILE1 and FILE2 name the same file." + "Return non-nil if FILE1 and FILE2 name the same file. +Ordinary files are considered to be the same if `file-attributes' +returns `equal' values for them." (let ((handler (or (find-file-name-handler file1 'files-equal-p) (find-file-name-handler file2 'files-equal-p)))) (if handler @@ -4996,27 +4998,28 @@ (defun file-subdir-of-p (dir1 dir2) "Return non-nil if DIR1 is a subdirectory of DIR2. -Note that a directory is treated by this function as a subdirectory of itself. -This function only works when its two arguments already exist, -when they don't, it returns nil." +A directory is considered to be a subdirectory of itself. +Return nil if DIR1 or DIR2 are not existing directories." (let ((handler (or (find-file-name-handler dir1 'file-subdir-of-p) (find-file-name-handler dir2 'file-subdir-of-p)))) (if handler (funcall handler 'file-subdir-of-p dir1 dir2) (when (and (file-directory-p dir1) (file-directory-p dir2)) - (loop with f1 = (file-truename dir1) - with f2 = (file-truename dir2) - with ls1 = (or (split-string f1 "/" t) (list "/")) - with ls2 = (or (split-string f2 "/" t) (list "/")) - for p = (string-match "^/" f1) - for i in ls1 - for j in ls2 - when (string= i j) - concat (if p (concat "/" i) (concat i "/")) - into root - finally return - (files-equal-p (file-truename root) f2)))))) + (setq dir1 (file-truename dir1) + dir2 (file-truename dir2)) + (let ((ls1 (or (split-string dir1 "/" t) '("/"))) + (ls2 (or (split-string dir2 "/" t) '("/"))) + (root (if (string-match "\\`/" dir1) "/" "")) + (mismatch nil)) + (while (and ls1 ls2 (not mismatch)) + (if (string-equal (car ls1) (car ls2)) + (setq root (concat root (car ls1) "/")) + (setq mismatch t)) + (setq ls1 (cdr ls1) + ls2 (cdr ls2))) + (unless mismatch + (files-equal-p (file-truename root) dir2))))))) (defun copy-directory (directory newname &optional keep-time parents copy-contents) "Copy DIRECTORY to NEWNAME. Both args must be strings. ------------------------------------------------------------ revno: 107433 committer: Glenn Morris branch nick: trunk timestamp: Sat 2012-02-25 18:25:07 -0800 message: * doc/lispref/intro.texi (Acknowledgements): Small changes. diff: === modified file 'doc/lispref/ChangeLog' --- doc/lispref/ChangeLog 2012-02-25 20:59:46 +0000 +++ doc/lispref/ChangeLog 2012-02-26 02:25:07 +0000 @@ -1,3 +1,7 @@ +2012-02-26 Glenn Morris + + * intro.texi (Acknowledgements): Small changes. + 2012-02-25 Glenn Morris * errors.texi: Don't try to list _all_ the error symbols. === modified file 'doc/lispref/intro.texi' --- doc/lispref/intro.texi 2012-01-21 16:04:55 +0000 +++ doc/lispref/intro.texi 2012-02-26 02:25:07 +0000 @@ -522,16 +522,16 @@ @node Acknowledgements @section Acknowledgements - This manual was written by Robert Krawitz, Bil Lewis, Dan LaLiberte, -Richard@tie{}M. Stallman and Chris Welty, the volunteers of the GNU -manual group, in an effort extending over several years. + This manual was originally written by Robert Krawitz, Bil Lewis, Dan +LaLiberte, Richard@tie{}M. Stallman and Chris Welty, the volunteers of +the GNU manual group, in an effort extending over several years. Robert@tie{}J. Chassell helped to review and edit the manual, with the support of the Defense Advanced Research Projects Agency, ARPA Order 6082, arranged by Warren@tie{}A. Hunt, Jr.@: of Computational Logic, -Inc. Additional sections were written by Miles Bader, Lars Brinkhoff, -Chong Yidong, Kenichi Handa, Lute Kamstra, Juri Linkov, Glenn Morris, -Thien-Thi Nguyen, Dan Nicolaescu, Martin Rudalics, Kim F. Storm, Luc -Teirlinck, and Eli Zaretskii. +Inc. Additional sections have since been written by Miles Bader, Lars +Brinkhoff, Chong Yidong, Kenichi Handa, Lute Kamstra, Juri Linkov, +Glenn Morris, Thien-Thi Nguyen, Dan Nicolaescu, Martin Rudalics, Kim +F. Storm, Luc Teirlinck, and Eli Zaretskii, and others. Corrections were supplied by Drew Adams, Juanma Barranquero, Karl Berry, Jim Blandy, Bard Bloom, Stephane Boucher, David Boyes, Alan @@ -546,3 +546,6 @@ Per Starbck, Shinichirou Sugou, Kimmo Suominen, Edward Tharp, Bill Trost, Rickard Westman, Jean White, Eduard Wiebe, Matthew Wilding, Carl Witty, Dale Worley, Rusty Wright, and David D. Zuhn. + + For a more complete list of contributors, please see the relevant +ChangeLog file in the Emacs sources.