commit 34d69ed7355572b905bf16ab84024b7056cffe85 (HEAD, refs/remotes/origin/master) Author: Mark Oteiza Date: Sun Mar 19 22:21:03 2017 -0400 Simpler filter implementation * lisp/play/dunnet.el (dun-endgame-question): Get or set dun-endgame-questions one time only. Use dolist and an index to prune the list. diff --git a/lisp/play/dunnet.el b/lisp/play/dunnet.el index 677946262c..8f013bb09f 100644 --- a/lisp/play/dunnet.el +++ b/lisp/play/dunnet.el @@ -2106,28 +2106,23 @@ for a moment, then straighten yourself up.\n") (dun-mprincl "That answer is incorrect."))))) (defun dun-endgame-question () -(if (not dun-endgame-questions) - (progn - (dun-mprincl "Your question is:") - (dun-mprincl "No more questions, just do ‘answer foo’.") - (setq dun-correct-answer '("foo"))) - (let (which i newques) - (setq i 0) - (setq newques nil) - (setq which (random (length dun-endgame-questions))) - (dun-mprincl "Your question is:") - (dun-mprincl (setq dun-endgame-question (car - (nth which - dun-endgame-questions)))) - (setq dun-correct-answer (cdr (nth which dun-endgame-questions))) - (while (< i which) - (setq newques (append newques (list (nth i dun-endgame-questions)))) - (setq i (1+ i))) - (setq i (1+ which)) - (while (< i (length dun-endgame-questions)) - (setq newques (append newques (list (nth i dun-endgame-questions)))) - (setq i (1+ i))) - (setq dun-endgame-questions newques)))) + (let ((questions dun-endgame-questions)) + (if (null questions) + (progn + (dun-mprincl "Your question is:") + (dun-mprincl "No more questions, just do ‘answer foo’.") + (setq dun-correct-answer '("foo"))) + (let* ((which (random (length questions))) + (question (nth which questions))) + (dun-mprincl "Your question is:") + (dun-mprincl (setq dun-endgame-question (car question))) + (setq dun-correct-answer (cdr question)) + (let ((i 0) res) + (dolist (q questions) + (when (/= i which) + (push q res)) + (setq i (1+ i))) + (setq dun-endgame-questions (nreverse res))))))) (defun dun-power (_args) (if (not (= dun-current-room pc-area)) commit 715962e5c416b62c1deea0bec16c88ae9c63674e Author: Mark Oteiza Date: Sun Mar 19 20:20:45 2017 -0400 * lisp/button.el (forward-button): Use user-error instead. diff --git a/lisp/button.el b/lisp/button.el index c39e4f97c1..b04bc283e4 100644 --- a/lisp/button.el +++ b/lisp/button.el @@ -493,7 +493,7 @@ Returns the button found." (unless (button-get button 'skip) (setq n (1- n))))))) (if (null button) - (error (if wrap "No buttons!" "No more buttons")) + (user-error (if wrap "No buttons!" "No more buttons")) (let ((msg (and display-message (button-get button 'help-echo)))) (when msg (message "%s" msg))) commit fa90c5e86e2b11e89c6a1d709e25003a60656f0d Author: Paul Eggert Date: Sun Mar 19 13:07:03 2017 -0700 Merge from gnulib This gets Emacs working again with HP-UX Itanium cc. It incorporates: 2017-03-19 stdalign: tweak version# and test for HP-UX IA64 2017-03-18 stdalign: restore previous behavior for HP-UX IA64 2017-03-17 stat-time, timespec: Support header files in C++ mode 2017-03-17 stdalign: Make it work with HP-UX cc 2017-03-17 flexmember: try to detect HP-UX 11.31 cc bug 2017-03-16 stdint: Fix test compilation failure with HP-UX 11 cc. 2017-03-14 gnulib-tool: don't produce tests with only snippets 2017-03-14 limits-h: Make it work with HP-UX cc. * etc/PROBLEMS: Remove now-obsolete entry for HP-UX 11.31. * lib/gnulib.mk.in, m4/gnulib-comp.m4: Regenerate. * lib/limits.in.h, lib/stat-time.h, lib/stdalign.in.h: * lib/stdint.in.h, lib/timespec.h, m4/flexmember.m4, m4/stdalign.m4: Copy from gnulib. diff --git a/etc/PROBLEMS b/etc/PROBLEMS index 145dd14009..e415887a4d 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS @@ -1959,13 +1959,6 @@ EOF This is a bug in HPUX; HPUX patch PHKL_16260 is said to fix it. -*** HP-UX 11.31 cc: Emacs does not build. - -HP-UX 11.31 cc has bugs in its implementation of flexible array -members, a C99 feature that Emacs relies on. To work around the -problem, install GCC and use it to build Emacs. For details, see: -http://lists.gnu.org/archive/html/bug-gnulib/2017-03/msg00066.html - ** AIX *** AIX: Trouble using ptys. diff --git a/lib/gnulib.mk.in b/lib/gnulib.mk.in index badfe3207b..2c0b689e71 100644 --- a/lib/gnulib.mk.in +++ b/lib/gnulib.mk.in @@ -927,6 +927,7 @@ standardlisppath = @standardlisppath@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ version = @version@ +with_mailutils = @with_mailutils@ x_default_search_path = @x_default_search_path@ # End of GNU Make output. diff --git a/lib/limits.in.h b/lib/limits.in.h index a7e307f5c6..08d3c328c4 100644 --- a/lib/limits.in.h +++ b/lib/limits.in.h @@ -28,6 +28,17 @@ #ifndef _@GUARD_PREFIX@_LIMITS_H #define _@GUARD_PREFIX@_LIMITS_H +/* For HP-UX 11.31. */ +#if defined LONG_LONG_MIN && !defined LLONG_MIN +# define LLONG_MIN LONG_LONG_MIN +#endif +#if defined LONG_LONG_MAX && !defined LLONG_MAX +# define LLONG_MAX LONG_LONG_MAX +#endif +#if defined ULONG_LONG_MAX && !defined ULLONG_MAX +# define ULLONG_MAX ULONG_LONG_MAX +#endif + /* The number of usable bits in an unsigned or signed integer type with minimum value MIN and maximum value MAX, as an int expression suitable in #if. Cover all known practical hosts. This diff --git a/lib/stat-time.h b/lib/stat-time.h index 9402b3fc1c..47469892ee 100644 --- a/lib/stat-time.h +++ b/lib/stat-time.h @@ -31,6 +31,10 @@ _GL_INLINE_HEADER_BEGIN # define _GL_STAT_TIME_INLINE _GL_INLINE #endif +#ifdef __cplusplus +extern "C" { +#endif + /* STAT_TIMESPEC (ST, ST_XTIM) is the ST_XTIM member for *ST of type struct timespec, if available. If not, then STAT_TIMESPEC_NS (ST, ST_XTIM) is the nanosecond component of the ST_XTIM member for *ST, @@ -194,6 +198,10 @@ get_stat_birthtime (struct stat const *st) return t; } +#ifdef __cplusplus +} +#endif + _GL_INLINE_HEADER_END #endif diff --git a/lib/stdalign.in.h b/lib/stdalign.in.h index 5f56eeefd3..ea24823170 100644 --- a/lib/stdalign.in.h +++ b/lib/stdalign.in.h @@ -103,7 +103,7 @@ # elif ((defined __APPLE__ && defined __MACH__ \ ? 4 < __GNUC__ + (1 <= __GNUC_MINOR__) \ : __GNUC__) \ - || 061200 <= __HP_cc || 061200 <= __HP_aCC \ + || (__ia64 && (61200 <= __HP_cc || 61200 <= __HP_aCC)) \ || __ICC || 0x590 <= __SUNPRO_C || 0x0600 <= __xlC__) # define _Alignas(a) __attribute__ ((__aligned__ (a))) # elif 1300 <= _MSC_VER diff --git a/lib/stdint.in.h b/lib/stdint.in.h index d899c1e034..5fbec34310 100644 --- a/lib/stdint.in.h +++ b/lib/stdint.in.h @@ -128,8 +128,13 @@ Return an unspecified value if BITS == 0, adding a check to pacify picky compilers. */ -# define _STDINT_MIN(signed, bits, zero) \ - ((signed) ? ~ _STDINT_MAX (signed, bits, zero) : (zero)) +/* These are separate macros, because if you try to merge these macros into + a single one, HP-UX cc rejects the resulting expression in constant + expressions. */ +# define _STDINT_UNSIGNED_MIN(bits, zero) \ + (zero) +# define _STDINT_SIGNED_MIN(bits, zero) \ + (~ _STDINT_MAX (1, bits, zero)) # define _STDINT_MAX(signed, bits, zero) \ (((((zero) + 1) << ((bits) ? (bits) - 1 - (signed) : 0)) - 1) * 2 + 1) @@ -512,15 +517,15 @@ typedef int _verify_intmax_size[sizeof (intmax_t) == sizeof (uintmax_t) # undef PTRDIFF_MAX # if @APPLE_UNIVERSAL_BUILD@ # ifdef _LP64 -# define PTRDIFF_MIN _STDINT_MIN (1, 64, 0l) +# define PTRDIFF_MIN _STDINT_SIGNED_MIN (64, 0l) # define PTRDIFF_MAX _STDINT_MAX (1, 64, 0l) # else -# define PTRDIFF_MIN _STDINT_MIN (1, 32, 0) +# define PTRDIFF_MIN _STDINT_SIGNED_MIN (32, 0) # define PTRDIFF_MAX _STDINT_MAX (1, 32, 0) # endif # else # define PTRDIFF_MIN \ - _STDINT_MIN (1, @BITSIZEOF_PTRDIFF_T@, 0@PTRDIFF_T_SUFFIX@) + _STDINT_SIGNED_MIN (@BITSIZEOF_PTRDIFF_T@, 0@PTRDIFF_T_SUFFIX@) # define PTRDIFF_MAX \ _STDINT_MAX (1, @BITSIZEOF_PTRDIFF_T@, 0@PTRDIFF_T_SUFFIX@) # endif @@ -528,9 +533,13 @@ typedef int _verify_intmax_size[sizeof (intmax_t) == sizeof (uintmax_t) /* sig_atomic_t limits */ # undef SIG_ATOMIC_MIN # undef SIG_ATOMIC_MAX -# define SIG_ATOMIC_MIN \ - _STDINT_MIN (@HAVE_SIGNED_SIG_ATOMIC_T@, @BITSIZEOF_SIG_ATOMIC_T@, \ - 0@SIG_ATOMIC_T_SUFFIX@) +# if @HAVE_SIGNED_SIG_ATOMIC_T@ +# define SIG_ATOMIC_MIN \ + _STDINT_SIGNED_MIN (@BITSIZEOF_SIG_ATOMIC_T@, 0@SIG_ATOMIC_T_SUFFIX@) +# else +# define SIG_ATOMIC_MIN \ + _STDINT_UNSIGNED_MIN (@BITSIZEOF_SIG_ATOMIC_T@, 0@SIG_ATOMIC_T_SUFFIX@) +# endif # define SIG_ATOMIC_MAX \ _STDINT_MAX (@HAVE_SIGNED_SIG_ATOMIC_T@, @BITSIZEOF_SIG_ATOMIC_T@, \ 0@SIG_ATOMIC_T_SUFFIX@) @@ -566,16 +575,26 @@ typedef int _verify_intmax_size[sizeof (intmax_t) == sizeof (uintmax_t) # endif # undef WCHAR_MIN # undef WCHAR_MAX -# define WCHAR_MIN \ - _STDINT_MIN (@HAVE_SIGNED_WCHAR_T@, @BITSIZEOF_WCHAR_T@, 0@WCHAR_T_SUFFIX@) +# if @HAVE_SIGNED_WCHAR_T@ +# define WCHAR_MIN \ + _STDINT_SIGNED_MIN (@BITSIZEOF_WCHAR_T@, 0@WCHAR_T_SUFFIX@) +# else +# define WCHAR_MIN \ + _STDINT_UNSIGNED_MIN (@BITSIZEOF_WCHAR_T@, 0@WCHAR_T_SUFFIX@) +# endif # define WCHAR_MAX \ _STDINT_MAX (@HAVE_SIGNED_WCHAR_T@, @BITSIZEOF_WCHAR_T@, 0@WCHAR_T_SUFFIX@) /* wint_t limits */ # undef WINT_MIN # undef WINT_MAX -# define WINT_MIN \ - _STDINT_MIN (@HAVE_SIGNED_WINT_T@, @BITSIZEOF_WINT_T@, 0@WINT_T_SUFFIX@) +# if @HAVE_SIGNED_WINT_T@ +# define WINT_MIN \ + _STDINT_SIGNED_MIN (@BITSIZEOF_WINT_T@, 0@WINT_T_SUFFIX@) +# else +# define WINT_MIN \ + _STDINT_UNSIGNED_MIN (@BITSIZEOF_WINT_T@, 0@WINT_T_SUFFIX@) +# endif # define WINT_MAX \ _STDINT_MAX (@HAVE_SIGNED_WINT_T@, @BITSIZEOF_WINT_T@, 0@WINT_T_SUFFIX@) diff --git a/lib/timespec.h b/lib/timespec.h index a5eca797ce..f5d823aefe 100644 --- a/lib/timespec.h +++ b/lib/timespec.h @@ -29,6 +29,10 @@ _GL_INLINE_HEADER_BEGIN # define _GL_TIMESPEC_INLINE _GL_INLINE #endif +#ifdef __cplusplus +extern "C" { +#endif + /* Resolution of timespec timestamps (in units per second), and log base 10 of the resolution. */ @@ -107,6 +111,10 @@ timespectod (struct timespec a) void gettime (struct timespec *); int settime (struct timespec const *); +#ifdef __cplusplus +} +#endif + _GL_INLINE_HEADER_END #endif diff --git a/m4/flexmember.m4 b/m4/flexmember.m4 index 35580ac27c..9d3b50d157 100644 --- a/m4/flexmember.m4 +++ b/m4/flexmember.m4 @@ -1,4 +1,4 @@ -# serial 4 +# serial 5 # Check for flexible array member support. # Copyright (C) 2006, 2009-2017 Free Software Foundation, Inc. @@ -17,12 +17,15 @@ AC_DEFUN([AC_C_FLEXIBLE_ARRAY_MEMBER], [[#include #include #include - struct s { int n; double d[]; };]], + struct m { struct m *next, **list; char name[]; }; + struct s { struct s *p; struct m *m; int n; double d[]; };]], [[int m = getchar (); size_t nbytes = offsetof (struct s, d) + m * sizeof (double); nbytes += sizeof (struct s) - 1; nbytes -= nbytes % sizeof (struct s); struct s *p = malloc (nbytes); + p->p = p; + p->m = NULL; p->d[0] = 0.0; return p->d != (double *) NULL;]])], [ac_cv_c_flexmember=yes], diff --git a/m4/gnulib-comp.m4 b/m4/gnulib-comp.m4 index bf7afa51bf..e613490f1a 100644 --- a/m4/gnulib-comp.m4 +++ b/m4/gnulib-comp.m4 @@ -787,8 +787,6 @@ changequote([, ])dnl AC_SUBST([LIBGNU_LIBDEPS]) LIBGNU_LTLIBDEPS="$gl_ltlibdeps" AC_SUBST([LIBGNU_LTLIBDEPS]) - LIBTESTS_LIBDEPS="$gltests_libdeps" - AC_SUBST([LIBTESTS_LIBDEPS]) ]) # Like AC_LIBOBJ, except that the module name goes @@ -1106,9 +1104,4 @@ AC_DEFUN([gl_FILE_LIST], [ m4/warnings.m4 m4/wchar_t.m4 m4/wint_t.m4 - tests=lib/_Noreturn.h - tests=lib/arg-nonnull.h - tests=lib/c++defs.h - tests=lib/dummy.c - tests=lib/warn-on-use.h ]) diff --git a/m4/stdalign.m4 b/m4/stdalign.m4 index 3a1265824e..0652a1e4af 100644 --- a/m4/stdalign.m4 +++ b/m4/stdalign.m4 @@ -35,8 +35,8 @@ AC_DEFUN([gl_STDALIGN_H], || (defined __APPLE__ && defined __MACH__ \ ? 4 < __GNUC__ + (1 <= __GNUC_MINOR__) \ : __GNUC__) \ - || __HP_cc || __HP_aCC || __IBMC__ || __IBMCPP__ \ - || __ICC || 0x5110 <= __SUNPRO_C \ + || (__ia64 && (61200 <= __HP_cc || 61200 <= __HP_aCC)) \ + || __ICC || 0x590 <= __SUNPRO_C || 0x0600 <= __xlC__ \ || 1300 <= _MSC_VER) struct alignas_test { char c; char alignas (8) alignas_8; }; char test_alignas[offsetof (struct alignas_test, alignas_8) == 8 commit 20ccaa63dbf20c0a64e0df360800ee61423252b7 Author: Paul Eggert Date: Sun Mar 19 13:07:02 2017 -0700 * ChangeLog.2: Merge from emacs-25. diff --git a/ChangeLog.2 b/ChangeLog.2 index b73651d814..a9e1dd2a11 100644 --- a/ChangeLog.2 +++ b/ChangeLog.2 @@ -1,3 +1,331 @@ +2017-02-18 Noam Postavsky + + * lisp/woman.el (woman): Fix docstring prefix arg description. + +2017-02-18 Eli Zaretskii + + Mention "editor" in Emacs man page header + + * doc/man/emacs.1.in: Mention "editor" in the header line. + (Bug#25771, Bug#25779) + +2017-02-18 Eli Zaretskii + + Document problems with nerd-fonts + + * etc/PROBLEMS (fonts): Describe the potential problems with + nerd-fonts that cause slow display. (Bug#25697) + +2017-02-13 Stefan Monnier + + * doc/lispref/modes.texi (Derived Modes): Make example more idiomatic + +2017-02-12 Eli Zaretskii + + Clarify what is the "cursor" + + * doc/lispref/windows.texi (Window Point): Clarify the notion of + "cursor". + +2017-02-10 Eli Zaretskii + + Improve commentary in lisp.h + + * src/lisp.h: Explain in the comment why enlarging a Lisp_Misc + object is discouraged. + +2017-02-08 Noam Postavsky + + Disable native completion for ipython (Bug#25067) + + * lisp/progmodes/python.el: + (python-shell-completion-native-disabled-interpreters): Add "ipython". + +2017-02-07 Eli Zaretskii + + Fix a typo in ada-mode manual + + * doc/misc/ada-mode.texi (Project file variables): Add a missing + right bracket. Reported by Jean-Christophe Helary + . + +2017-02-05 Eli Zaretskii + + Clarify documentation of 'bufferpos-to-filepos' and 'filepos-to-bufferpos' + + * doc/lispref/nonascii.texi (Text Representations): Clarify that + 'exact' value of QUALITY argument to 'bufferpos-to-filepos' and + 'filepos-to-bufferpos' can lead to expensive and slow processing. + + * lisp/international/mule-util.el (filepos-to-bufferpos) + (bufferpos-to-filepos): Doc fix. (Bug#25626) + +2017-02-03 Nicolas Petton + + Bump Emacs version to 25.2 RC1 + + * README: + * configure.ac: + * msdos/sed2v2.inp: + * nt/README.W32: Bump Emacs version. + * lisp/ldefs-boot.el: Update. + +2017-02-03 Nicolas Petton + + * admin/make-tarball.txt: Add documentation regarding the release banner. + +2017-02-03 Tino Calancha + + * CONTRIBUTE (Documenting your changes): Index new vars/commands in manual. + +2017-01-31 Eli Zaretskii + + Index byte-compile-debug + + * doc/lispref/compile.texi (Compilation Functions): Index + byte-compile-debug. + +2017-01-31 Philipp Stephani + + Document `byte-compile-debug' in the ELisp manual + + * doc/lispref/compile.texi: Document variable `byte-compile-debug'. + +2017-01-31 Philipp Stephani + + Document variable `byte-compile-debug' + + * lisp/emacs-lisp/bytecomp.el (byte-compile-debug): Document variable. + +2017-01-31 Noam Postavsky + + Fix call to debugger on assertion failure + + * lisp/emacs-lisp/cl-preloaded.el (cl--assertion-failed): The first + argument must be `error', and the second is a list of arguments for + `signal'. + +2017-01-29 Noam Postavsky + + Call modification hooks in org-src fontify buffers + + * lisp/org/org-src.el (org-src-font-lock-fontify-block): Let-bind + `inhibit-modification-hooks' to nil, since this function can be called + from jit-lock-function which binds that variable to t (Bug#25132). + +2017-01-28 Eli Zaretskii + + Improve documentation of 'format' conversions + + * src/editfns.c (Fformat): More accurate description of %g and + effects of the various flags on it. More accurate description of + integer conversions. + + * doc/lispref/strings.texi (Formatting Strings): More accurate + description of %g and effects of the various flags on it. More + accurate description of integer conversions. (Bug#25557) + +2017-01-27 Vladimir Panteleev (tiny change) + + Remove stale functions from ert manual + + * doc/misc/ert.texi (Useful Techniques when Writing Tests): + Replace ert--mismatch references with its cl-lib replacement, + cl-mismatch. + +2017-01-27 Eli Zaretskii + + Fix a typo in Eshell manual + + * doc/misc/eshell.texi (History): Fix a typo. Reported by Mak + Kolybabi . + +2017-01-20 Eli Zaretskii + + Improve documentation of hooks related to saving buffers + + * lisp/files.el (write-file-functions, write-contents-functions) + (before-save-hook, after-save-hook): Note that these are only used + by save-buffer. + + * doc/lispref/backups.texi (Auto-Saving): + * doc/lispref/files.texi (Saving Buffers): Mention that + save-related hooks are not run by auto-saving. (Bug#25460) + +2017-01-20 Eli Zaretskii + + Improve documentation of auto-save-visited-file-name + + * doc/emacs/files.texi (Auto Save Files): Mention subtle + differences between saving the buffer and auto-saving with + auto-save-visited-file-name set non-nil. (Bug#25478) + +2017-01-18 Tom Tromey + + fix typo in mailcap-mime-extensions + + * lisp/gnus/mailcap.el (mailcap-mime-extensions): Use "text/x-patch", + not "test/x-patch". (Bug#25472) + +2017-01-18 Lele Gaifax (tiny change) + + Fix typos in flymake.el + + * lisp/progmodes/flymake.el (flymake-check-patch-master-file-buffer): + Spelling fixes in the doc string. + +2017-01-17 Glenn Morris + + More NEWS checking for admin.el's set-version + + * admin/admin.el (set-version): Warn if temporary NEWS markup + still present in release candidates. + +2017-01-17 Michael Albinus + + Fix auto-save-file-name problem in Tramp on MS Windows. Do not merge + + * lisp/net/tramp.el (tramp-handle-make-auto-save-file-name): + Fix a problem when running on MS Windows. + +2017-01-16 Ian Dunn (tiny change) + + * lisp/net/eww.el (eww-tag-meta): Handle single quoted URLs (Bug#25445). + +2017-01-14 Stefan Monnier + + * lisp/progmodes/sql.el (sql-product-alist): Doc tweak + + `:sqli-comint-func' does not have to be a symbol. + +2017-01-14 Eli Zaretskii + + * lisp/progmodes/sql.el (sql-product-alist): Doc fix. (Bug#25440) + +2017-01-13 Eli Zaretskii + + Improve documentation of dabbrevs + + * doc/emacs/abbrevs.texi (Dynamic Abbrevs): Add a cross reference + to "Dabbrev Customization". + (Dabbrev Customization): More details about the default value of + dabbrev-abbrev-char-regexp and use cases when it might not be good + enough. (Bug#25432) + +2017-01-12 Noam Postavsky + + Clarify that easy-menu-add is a nop (Bug#25382) + + * lisp/emacs-lisp/easymenu.el (easy-menu-add): Make it into an alias of + `ignore', like `easy-menu-remove'. + +2017-01-12 Glenn Morris + + * lisp/textmodes/rst.el (rst-package-emacs-version-alist): Fix entry. + +2017-01-11 Eli Zaretskii + + Revert "Add DNS keywords and remove duplications" + + This reverts commit 1cb9aa5b14867983d0013a61709b4d0af18364ff. + +2017-01-11 Alexander Kuleshov + + Add DNS keywords and remove duplications + + * lisp/textmodes/dns-mode.el (dns-mode-types): Add two TLSA and + NSEC" DNS related keywords and remove duplication of "NSAP". + +2017-01-10 Eli Zaretskii + + Improve documentation of coding-systems + + * doc/lispref/nonascii.texi (Coding System Basics): Mention + 'prefer-utf-8'. Index it and 'undecided'. + (Encoding and I/O): Fix a typo. + (User-Chosen Coding Systems): Improve the documentation of + ACCEPT-DEFAULT-P argument to select-safe-coding-system. Document + select-safe-coding-system-function. + (Specifying Coding Systems): Document coding-system-require-warning. + +2017-01-09 Eli Zaretskii + + Improve definition of 'variable-pitch' face on MS-Windows + + * lisp/faces.el (variable-pitch): Don't specify too many + attributes of the font, otherwise faces that request different + weight or slant or size will not get them. + +2017-01-09 Eli Zaretskii + + Fix an error message in python.el + + * lisp/progmodes/python.el (python-shell-get-process-or-error): + Don't repeat the same key binding twice. (Bug#25405) + +2017-01-07 Noam Postavsky + + Clarify major mode switching + + * doc/emacs/modes.texi (Major Modes): + * doc/lispref/modes.texi (Modes, Major Modes): Explictly say that each + buffer has exactly one major mode and can't be "turned off", only + switched away from (Bug#25357). + +2017-01-07 Noam Postavsky + + Add helpful comment to compile-command's docstring + + * lisp/progmodes/compile.el (compile-command): Mention trailing space in + docstring (Bug#25337). + +2017-01-06 Eli Zaretskii + + Fix ':version' of 'select-enable-primary' + + * lisp/select.el (select-enable-primary): Fix a typo in + ':version'. (Bug#25375) + +2017-01-04 Glenn Morris + + Update remaining copyright years with admin.el M-x set-copyright + + * etc/refcards/ru-refcard.tex (cyear): Set to 2017. + +2017-01-04 Glenn Morris + + * lisp/ffap.el (ffap-lax-url): Bump :version after recent change. + +2017-01-03 Philipp Stephani + + Document that functions in 'ffap-alist' can use the match data + + * lisp/ffap.el (ffap-alist): Document that ffap sets the match data + while walking 'ffap-alist'. + +2017-01-01 Paul Eggert + + Fix copyright years by hand + + These are dates that admin/update-copyright did not update, or + updated incorrectly. + +2017-01-01 Paul Eggert + + Update copyright year to 2017 + + Run admin/update-copyright. + +2016-12-30 Nicolas Petton + + Bump Emacs version to 25.1.91 + + * README: + * configure.ac: + * msdos/sed2v2.inp: + * nt/README.W32: Bump Emacs version. + * lisp/ldefs-boot.el: Update. + 2016-12-30 Alan Mackenzie Backport: Remove an ambiguity from defvar's doc string. Fixes bug #25292. @@ -26508,7 +26836,7 @@ 2015-08-07 Phillip Lord - Improve error signaling for seq-subseq + Improve error signalling for seq-subseq * lisp/emacs-lisp/seq.el (seq-subseq): The existing behavior is to error when indexes are too large, but to silently ignore numbers which are too negative for lists. String and vector handling errors in @@ -35313,7 +35641,7 @@ This file records repository revisions from commit 9d56a21e6a696ad19ac65c4b405aeca44785884a (exclusive) to -commit e8f0d7dcadd2b35f62f7a14b96df15e5314d7f6e (inclusive). +commit ec4226d81074751c105264a3a3383c48d0a05e41 (inclusive). See ChangeLog.1 for earlier changes. ;; Local Variables: commit d7f4830215801c0c8d7fee0900ff99159b7a474d Author: Paul Eggert Date: Sun Mar 19 12:39:16 2017 -0700 Fixups after merge from emacs-25 * etc/NEWS: Remove stray entry. * etc/NEWS.25: Copy from Emacs emacs-25 etc/NEWS. * lisp/textmodes/rst.el (rst-package-emacs-version-alist): Make it nondecreasing. diff --git a/etc/NEWS b/etc/NEWS index f15635fb88..cd98f53399 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -21,12 +21,6 @@ Temporary note: --- means no change in the manuals is needed. When you add a new item, use the appropriate mark if you are sure it applies, -** The version number of CC Mode has been changed from 5.33 to -5.32.99, although the software itself hasn't changed. This aims to -reduce confusion with the standalone CC Mode 5.33 (available from -http://cc-mode.sourceforge.net), which is a more mature version than -the one included in Emacs 25.2. - * Installation Changes in Emacs 26.1 diff --git a/etc/NEWS.25 b/etc/NEWS.25 index c5e95d37c8..539e56e42a 100644 --- a/etc/NEWS.25 +++ b/etc/NEWS.25 @@ -17,38 +17,37 @@ with a prefix argument or by typing C-u C-h C-n. * Changes in Emacs 25.2 -This is a bug-fix release with (almost) no new features. ---- +This is mainly a bug-fix release, but there are some other changes. + ** 'find-library', 'help-function-def' and 'help-variable-def' now run 'find-function-after-hook'. -+++ ** New basic face 'fixed-pitch-serif', for a fixed-width font with serifs. -The 'Info-quoted' and 'tex-verbatim' faces now default to inheriting -from it. +The 'Info-quoted' and 'tex-verbatim' faces inherit from it by default. ---- -** New variable 'use-default-font-for-symbols' for backward compatibility. -This variable allows to get back pre-Emacs 25 behavior whereby the +** New variable 'use-default-font-for-symbols', for backward compatibility. +This variable allows you to get back pre-Emacs 25 behavior where the font for displaying symbol and punctuation characters was always -selected according to your fontset setup. Emacs 25 by default tries -to use the default face's font for such characters, disregarding the -fontsets if the default font supports these characters. Set this -variable to nil to disable the new behavior and get back the old -behavior. +selected according to your fontset setup. By default, Emacs 25 tries +to use the default face's font for such characters, if it supports +them, disregarding the fontsets. Set this variable to nil to disable +this and get back the old behavior. -+++ ** 'electric-quote-mode' is no longer suppressed in a buffer whose -whose coding system cannot represent curved quote characters. +coding system cannot represent curved quote characters. Instead, users can deal with the unrepresentable characters in the usual way when they save the buffer. ---- ** New variable 'inhibit-compacting-font-caches'. Set this variable to a non-nil value to speed up display of characters -using large fonts, at the price of a larger memory footprint of the -Emacs session. +using large fonts, at the price of a larger memory footprint. + +** The version number of CC Mode has been changed from 5.33 to +5.32.99, although the software itself hasn't changed. This aims to +reduce confusion with the standalone CC Mode 5.33 (available from +http://cc-mode.sourceforge.net), which is a more mature version than +the one included in Emacs 25.2. * Installation Changes in Emacs 25.1 diff --git a/lisp/textmodes/rst.el b/lisp/textmodes/rst.el index 9143f97dce..7fad83da6b 100644 --- a/lisp/textmodes/rst.el +++ b/lisp/textmodes/rst.el @@ -294,7 +294,7 @@ in parentheses follows the development revision and the time stamp.") ("1.3.1" . "24.3") ("1.4.0" . "24.3") ("1.4.1" . "25.1") - ("1.4.2" . "24.5") + ("1.4.2" . "25.1") ("1.5.0" . "26.1") ("1.5.1" . "26.2") ("1.5.2" . "26.2") commit 597598fff47f809c150e452d813c998b868376ec Merge: 679341efeb d71e071fcc Author: Paul Eggert Date: Sun Mar 19 12:34:05 2017 -0700 Merge from origin/emacs-25 d71e071 Improve documentation of interactive "r". commit 679341efebed30bfc939911e720e03204a1190b5 Merge: da17b70a99 129d30e980 Author: Paul Eggert Date: Sun Mar 19 12:34:05 2017 -0700 ; Merge from origin/emacs-25 The following commit was skipped: 129d30e Fix bug: Range-check integer ‘alpha’ frame parm value commit da17b70a997d3b1c38d9f3d7d8ab6c7dab273765 Merge: 640335361c a09473261c Author: Paul Eggert Date: Sun Mar 19 12:34:04 2017 -0700 Merge from origin/emacs-25 a094732 * etc/PROBLEMS: Say that HP-UX cc doesn't work. 1925dd9 Fix duplicate wording in Emacs manual 6de8429 * lisp/paren.el (show-paren--default, show-paren-function): A... 2d671fd Fix wording in Emacs manual a8766a2 Document how to customize input methods 6eb8995 * lisp/net/eww.el (eww-reload): Doc fix. (Bug#25981) aceac95 Fix warning message about native completion (Bug#25984) a314c1f Clarify documentation of 'raise' and 'height' display specs f366f6e Mention problems with GPaste in PROBLEMS 6e788ef ; etc/PROBLEMS: Explain about the python+libedit problem (Bug... 6406618 Fix doc strings in info.el c1ed152 ; * src/keyboard.c (Fposn_at_point): Fix last change. eed9677 Fix doc string of 'posn-at-point' 0d5957e Documentation fix in elisp reference manual commit 640335361ccc36945836b5e7de0dbbf984b332e8 Merge: 90f5282e20 fe91ff27c5 Author: Paul Eggert Date: Sun Mar 19 12:34:03 2017 -0700 ; Merge from origin/emacs-25 The following commits were skipped: fe91ff2 ; Update ldef-boot.el for Emacs 25.1 release 4210210 ; Update ChangeLog.2 and AUTHORS files commit 90f5282e20df79dedaa9d231a108f9a91222eca7 Merge: c4fca5cee2 ec4226d810 Author: Paul Eggert Date: Sun Mar 19 12:34:03 2017 -0700 Merge from origin/emacs-25 ec4226d * lisp/woman.el (woman): Fix docstring prefix arg description. 2b774fa Mention "editor" in Emacs man page header ae60d0c Document problems with nerd-fonts 2fdb5a9 ; Details about pinning Emacs to w32 task bar 5c3105e * doc/lispref/modes.texi (Derived Modes): Make example more i... 4c51ef4 Clarify what is the "cursor" 8303c32 ; * etc/NEWS: Copyedits. 3f7493e ; Fix a typo in comment c54cf8d Improve commentary in lisp.h 8b92f86 ; * admin/make-tarball.txt: Cross-reference admin/release-pro... 0ba9932 Disable native completion for ipython (Bug#25067) 38fc456 Fix a typo in ada-mode manual 00e75ba ; * src/coding.c (Fencode_coding_region): Fix a typo in the d... a541c21 Clarify documentation of 'bufferpos-to-filepos' and 'filepos-... # Conflicts: # etc/NEWS # etc/PROBLEMS commit c4fca5cee27e3bf399ad23bf42317bffcc80f160 Merge: bd4598a57e 5e92111268 Author: Paul Eggert Date: Sun Mar 19 12:29:09 2017 -0700 ; Merge from origin/emacs-25 The following commits were skipped: 5e92111 Bump Emacs version to 25.2 RC1 a51f11d ; Update ChangeLog.2 and AUTHORS files commit bd4598a57e4971f23f5ae8aaf34e6167f4c68c9e Merge: 94d41e9203 02d9ad8440 Author: Paul Eggert Date: Sun Mar 19 12:29:08 2017 -0700 Merge from origin/emacs-25 02d9ad8 * admin/make-tarball.txt: Add documentation regarding the rel... commit 94d41e9203f67181b6bd3065d7f3044afc948be7 Merge: 6be08305c4 73e62bbcdc Author: Paul Eggert Date: Sun Mar 19 12:29:08 2017 -0700 ; Merge from origin/emacs-25 The following commit was skipped: 73e62bb ; Update ChangeLog.2 and AUTHORS files commit 6be08305c404652d5bb977e8bce8f1019cda42c9 Merge: 2cb81869f8 e1171de6d1 Author: Paul Eggert Date: Sun Mar 19 12:29:07 2017 -0700 Merge from origin/emacs-25 e1171de * CONTRIBUTE (Documenting your changes): Index new vars/comma... commit 2cb81869f81a5774134b9c887a0c1b133d89876c Merge: e6fd84d2d5 6102d01eca Author: Paul Eggert Date: Sun Mar 19 12:29:07 2017 -0700 ; Merge from origin/emacs-25 The following commit was skipped: 6102d01 ; Update ChangeLog.2 and AUTHORS files commit e6fd84d2d5ca256797ff210c915a2fa773d4d742 Merge: d86bcedd88 ab0a60a1b3 Author: Paul Eggert Date: Sun Mar 19 12:29:06 2017 -0700 Merge from origin/emacs-25 ab0a60a ; * CONTRIBUTE (Generating ChangeLog entries): Drop duplicate... 7e02a47 Index byte-compile-debug 7c1e598 Document `byte-compile-debug' in the ELisp manual 4d81eb4 Document variable `byte-compile-debug' 72ef710 Fix call to debugger on assertion failure ae8264c Call modification hooks in org-src fontify buffers b3139da ; Fix last change in doc/lispref/strings.texi c331f39 Improve documentation of 'format' conversions 9f52f67 Remove stale functions from ert manual c416b14 Fix a typo in Eshell manual 06695a0 ; Fix a typo in ediff-merg.el 954e9e9 Improve documentation of hooks related to saving buffers 9fcab85 Improve documentation of auto-save-visited-file-name 2236c53 fix typo in mailcap-mime-extensions 85a3e4e Fix typos in flymake.el a1ef10e More NEWS checking for admin.el's set-version # Conflicts: # lisp/emacs-lisp/bytecomp.el commit d86bcedd880b3cb6383641082d406075aa6e70e2 Merge: 59ced4521e 3993dc500d Author: Paul Eggert Date: Sun Mar 19 12:27:56 2017 -0700 ; Merge from origin/emacs-25 The following commit was skipped: 3993dc5 Fix auto-save-file-name problem in Tramp on MS Windows. Do no... commit 59ced4521ebdadaf48b9c22b7cda46407a8b942b Merge: 8893d81fc3 5569e64444 Author: Paul Eggert Date: Sun Mar 19 12:27:55 2017 -0700 Merge from origin/emacs-25 5569e64 ; Spelling fixes 24a5f57 * lisp/net/eww.el (eww-tag-meta): Handle single quoted URLs (... 9b89896 * lisp/progmodes/sql.el (sql-product-alist): Doc tweak 69b50f5 * lisp/progmodes/sql.el (sql-product-alist): Doc fix. (Bug#2... 42eae54 Improve documentation of dabbrevs b0ade0d Clarify that easy-menu-add is a nop (Bug#25382) 3c69f2c * lisp/textmodes/rst.el (rst-package-emacs-version-alist): Fi... # Conflicts: # lisp/textmodes/rst.el commit 8893d81fc30c2fd9afceecb4e0325edc9c8b3f50 Merge: 468259c26e fdef18c3e3 Author: Paul Eggert Date: Sun Mar 19 12:24:52 2017 -0700 ; Merge from origin/emacs-25 The following commits were skipped: fdef18c Revert "Add DNS keywords and remove duplications" 1cb9aa5 Add DNS keywords and remove duplications commit 468259c26e79113b6208324305ffc22ad74a041e Merge: bb99241283 0e35405a92 Author: Paul Eggert Date: Sun Mar 19 12:24:51 2017 -0700 Merge from origin/emacs-25 0e35405 Improve documentation of coding-systems c2fd04c Improve definition of 'variable-pitch' face on MS-Windows 16fb50d Fix an error message in python.el a2a2073 Clarify major mode switching fc38671 Add helpful comment to compile-command's docstring ee65d85 Fix ':version' of 'select-enable-primary' commit bb9924128397d072c6997de1f0b77ee8ae671e0e Merge: 0d112c00ba 5a1908fbdd Author: Paul Eggert Date: Sun Mar 19 12:24:51 2017 -0700 ; Merge from origin/emacs-25 The following commit was skipped: 5a1908f ; Auto-commit of loaddefs files. commit 0d112c00ba0ec14bd3014efcd3430b9ddcfe1fc1 Author: Paul Pogonyshev Date: Sun Mar 12 09:51:23 2017 +0100 Fix bug in generator function with pcase (Bug#26068) * lisp/emacs-lisp/cl-macs.el (cl--sm-macroexpand): Remove some calls to symbol-name. diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 40342f3fe4..58bcdd52ac 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -2059,8 +2059,8 @@ except that it additionally expands symbol macros." (pcase exp ((pred symbolp) ;; Perform symbol-macro expansion. - (when (cdr (assq (symbol-name exp) env)) - (setq exp (cadr (assq (symbol-name exp) env))))) + (when (cdr (assq exp env)) + (setq exp (cadr (assq exp env))))) (`(setq . ,_) ;; Convert setq to setf if required by symbol-macro expansion. (let* ((args (mapcar (lambda (f) (cl--sm-macroexpand f env)) @@ -2078,7 +2078,7 @@ except that it additionally expands symbol macros." (let ((letf nil) (found nil) (nbs ())) (dolist (binding bindings) (let* ((var (if (symbolp binding) binding (car binding))) - (sm (assq (symbol-name var) env))) + (sm (assq var env))) (push (if (not (cdr sm)) binding (let ((nexp (cadr sm))) @@ -2149,7 +2149,7 @@ by EXPANSION, and (setq NAME ...) will act like (setf EXPANSION ...). (let ((expansion ;; FIXME: For N bindings, this will traverse `body' N times! (macroexpand-all (macroexp-progn body) - (cons (list (symbol-name (caar bindings)) + (cons (list (caar bindings) (cl-cadar bindings)) macroexpand-all-environment)))) (if (or (null (cdar bindings)) (cl-cddar bindings)) commit d602785139c57274e835e7b56305d42e72a28b0d Author: Alan Mackenzie Date: Sun Mar 19 17:09:27 2017 +0000 Fix chaotic indentation of C++ lambda. Enhance documentation thereof * lisp/progmodes/cc-engine.el (c-looking-at-inexpr-block): qualify an invocation of c-on-identifier with a check we're not at the _end_ of an identifier. * doc/misc/cc-mode.texi: (Tex title page): Remove @subtitlefont because the perl versions of texi2dvi haven't implemented it. (Syntactic Symbols): Note that `inlambda' is also used in C++ Mode, not just in Pike Mode. (Statement Block Symbols): Add a section illustrating a C++ lambda function. (FAQ): Add a question about "excessive" indentation of the contents of a C++ lambda function, and how to get rid of it. diff --git a/doc/misc/cc-mode.texi b/doc/misc/cc-mode.texi index 14981c9c58..a29873b03b 100644 --- a/doc/misc/cc-mode.texi +++ b/doc/misc/cc-mode.texi @@ -4255,8 +4255,8 @@ Analogous to the above, but for CORBA CIDL @code{composition} blocks. C++ template argument list continuations. @ref{Class Symbols}. @item inlambda Analogous to @code{inclass} syntactic symbol, but used inside lambda -(i.e., anonymous) functions. Only used in Pike mode. @ref{Statement -Block Symbols}. +(i.e., anonymous) functions. Used in C++ and Pike modes. +@ref{Statement Block Symbols}. @item lambda-intro-cont Lines continuing the header of a lambda function, i.e., between the @code{lambda} keyword and the function body. Only used in Pike mode. @@ -4993,6 +4993,21 @@ symbols they'd get in a normal block. Therefore, the indentation put on indentation. An @code{inexpr-statement} syntactic element doesn't contain an anchor position. +C++11's lambda expressions involve a block inside a statement. For +example: + +@example + 1: std::for_each(someList.begin(), someList.end(), [&total](int x) @{ + 2: total += x; + 3: @}); +@end example + +Here a lambda expressions begins at the open bracket on line 1 and +ends at the closing brace on line 3. Line 2, in addition to the +familiar @code{defun-block-intro} syntactic element, is also prefixed +by an @code{inlambda} element, which is typically used to indent the +entire lambda expression to under the opening bracket. + In Pike code, there are a few other situations where blocks occur inside statements, as illustrated here: @@ -7161,6 +7176,22 @@ too, add this to your @code{c-initialization-hook}: @xref{Getting Started}. This was a very common question. @item +@emph{How do I stop my C++ lambda expressions being indented way over +to the right?} + +Change the offset associated with @code{inlambda} from its default, +the function @code{c-lineup-inexpr-block}, to 0. For example, if you +are setting offsets in a hook function you might include the following +line: + +@example +(c-set-offset 'inlambda 0) +@end example + +For details of the different ways you can make this setting, +@ref{Config Basics}. + +@item @emph{How do I stop my code jumping all over the place when I type?} Deactivate ``electric minor mode'' with @kbd{C-c C-l}. @xref{Getting diff --git a/lisp/progmodes/cc-engine.el b/lisp/progmodes/cc-engine.el index a5ade09791..bdc77dc502 100644 --- a/lisp/progmodes/cc-engine.el +++ b/lisp/progmodes/cc-engine.el @@ -10661,7 +10661,8 @@ comment at the start of cc-engine.el for more info." (progn (c-backward-token-2 1 nil lim) (and - (not (c-on-identifier)) + (not (and (c-on-identifier) + (looking-at c-symbol-chars))) (not (looking-at c-opt-op-identifier-prefix))))))) (cons 'inlambda bracket-pos)) ((and c-recognize-paren-inexpr-blocks commit d71e071fcc8c72bfe9af02ef51233ad53d8e702b Author: Eli Zaretskii Date: Fri Mar 17 21:10:17 2017 +0200 Improve documentation of interactive "r". * doc/lispref/commands.texi (Interactive Codes): Mention that mark must be set for "r" to work. diff --git a/doc/lispref/commands.texi b/doc/lispref/commands.texi index b2dc49391b..3710ee4caf 100644 --- a/doc/lispref/commands.texi +++ b/doc/lispref/commands.texi @@ -484,7 +484,8 @@ I/O. @cindex region argument Point and the mark, as two numeric arguments, smallest first. This is the only code letter that specifies two successive arguments rather than -one. No I/O. +one. This will signal an error if the mark is not set in the buffer +which is current when the command is invoked. No I/O. @item s Arbitrary text, read in the minibuffer and returned as a string commit 129d30e980754547cf7264c93dabb883eaff7c63 Author: Thien-Thi Nguyen Date: Fri Mar 17 10:16:44 2017 +0100 Fix bug: Range-check integer ‘alpha’ frame parm value Typo introduced 2013-04-01, "Prefer < to > in range checks such as 0 <= i && i < N". * src/frame.c (x_set_alpha): Use ‘ialpha’, not ‘alpha’. diff --git a/src/frame.c b/src/frame.c index 74588cea70..4089ec94b9 100644 --- a/src/frame.c +++ b/src/frame.c @@ -4001,7 +4001,7 @@ x_set_alpha (struct frame *f, Lisp_Object arg, Lisp_Object oldval) else if (INTEGERP (item)) { EMACS_INT ialpha = XINT (item); - if (! (0 <= ialpha && alpha <= 100)) + if (! (0 <= ialpha && ialpha <= 100)) args_out_of_range (make_number (0), make_number (100)); alpha = ialpha / 100.0; } commit a09473261c8b11243e68d84c5dc2448d65a67e77 Author: Paul Eggert Date: Fri Mar 17 00:58:31 2017 -0700 * etc/PROBLEMS: Say that HP-UX cc doesn't work. diff --git a/etc/PROBLEMS b/etc/PROBLEMS index dbb313b06f..029f7560da 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS @@ -1955,6 +1955,13 @@ EOF This is a bug in HPUX; HPUX patch PHKL_16260 is said to fix it. +*** HP-UX 11.31 cc: Emacs does not build. + +HP-UX 11.31 cc has bugs in its implementation of flexible array +members, a C99 feature that Emacs relies on. To work around the +problem, install GCC and use it to build Emacs. For details, see: +http://lists.gnu.org/archive/html/bug-gnulib/2017-03/msg00066.html + ** AIX *** AIX: Trouble using ptys. commit 1925dd9a0378fc103b0133a777f30ecb94efb81d Author: Eli Zaretskii Date: Tue Mar 14 20:27:08 2017 +0200 Fix duplicate wording in Emacs manual * doc/emacs/programs.texi (Which Function): Delete duplicate wording. (Bug#26098) diff --git a/doc/emacs/programs.texi b/doc/emacs/programs.texi index 97751aa2fa..1533c7ee8b 100644 --- a/doc/emacs/programs.texi +++ b/doc/emacs/programs.texi @@ -327,7 +327,7 @@ as you move around in a buffer. @vindex which-func-modes To either enable or disable Which Function mode, use the command @kbd{M-x which-function-mode}. Which Function mode is a global minor -mode. By default, it takes effect in all major modes major modes that +mode. By default, it takes effect in all major modes that know how to support it (i.e., all the major modes that support Imenu). You can restrict it to a specific list of major modes by changing the value of the variable @code{which-func-modes} from commit 6de8429c2989d0fccab0a485c7f28e522e07fa92 Author: Hong Xu Date: Wed Nov 2 12:06:12 2016 -0700 * lisp/paren.el (show-paren--default, show-paren-function): Add docstring. diff --git a/lisp/paren.el b/lisp/paren.el index 4a83fa1cb4..562831dae9 100644 --- a/lisp/paren.el +++ b/lisp/paren.el @@ -181,6 +181,9 @@ if there's no opener/closer near point, or a list of the form Where HERE-BEG..HERE-END is expected to be near point.") (defun show-paren--default () + "Finds the opener/closer near point and its match. + +It is the default value of `show-paren-data-function'." (let* ((temp (show-paren--locate-near-paren)) (dir (car temp)) (outside (cdr temp)) @@ -233,9 +236,8 @@ Where HERE-BEG..HERE-END is expected to be near point.") (if (= dir 1) pos (1+ pos)) mismatch))))))) -;; Find the place to show, if there is one, -;; and show it until input arrives. (defun show-paren-function () + "Highlight the parentheses until the next input arrives." (let ((data (and show-paren-mode (funcall show-paren-data-function)))) (if (not data) (progn commit 2d671fda52ab8be4b1c7a990ffe2c82a1a6914fe Author: Eli Zaretskii Date: Mon Mar 13 22:31:33 2017 +0200 Fix wording in Emacs manual * doc/emacs/text.texi (Paragraphs): Fix a garbled sentence. (Bug#26086) diff --git a/doc/emacs/text.texi b/doc/emacs/text.texi index f06a0c8342..12606855ea 100644 --- a/doc/emacs/text.texi +++ b/doc/emacs/text.texi @@ -296,7 +296,7 @@ mark by one paragraph. The definition of a paragraph depends on the major mode. In Fundamental mode, as well as Text mode and related modes, a paragraph -is separated each neighboring paragraph another by one or more +is separated from neighboring paragraphs by one or more @dfn{blank lines}---lines that are either empty, or consist solely of space, tab and/or formfeed characters. In programming language modes, paragraphs are usually defined in a similar way, so that you can use commit a8766a2888369ddcde4129e0223c080721698145 Author: Eli Zaretskii Date: Sat Mar 11 17:56:15 2017 +0200 Document how to customize input methods * doc/emacs/mule.texi (Input Methods): Document how to customize input methods. diff --git a/doc/emacs/mule.texi b/doc/emacs/mule.texi index 76bc945fb2..13407f6f07 100644 --- a/doc/emacs/mule.texi +++ b/doc/emacs/mule.texi @@ -553,6 +553,15 @@ most input methods---some disable this feature). If possible characters to type next is displayed in the echo area (but not when you are in the minibuffer). +@vindex quail-activate-hook +@findex quail-translation-keymap + You can modify how an input method works by making your changes in a +function that you add to the hook variable @code{quail-activate-hook}. +@xref{Hooks}. For example, you can redefine some of the input +method's keys by defining key bindings in the keymap returned by the +function @code{quail-translation-keymap}, using @code{define-key}. +@xref{Init Rebinding}. + Another facility for typing characters not on your keyboard is by using @kbd{C-x 8 @key{RET}} (@code{insert-char}) to insert a single character based on its Unicode name or code-point; see @ref{Inserting commit 6eb899563aadc012acc716511baefb216da08d37 Author: Eli Zaretskii Date: Sat Mar 11 17:43:35 2017 +0200 * lisp/net/eww.el (eww-reload): Doc fix. (Bug#25981) diff --git a/lisp/net/eww.el b/lisp/net/eww.el index 29390eeebb..14de0ad15b 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el @@ -849,8 +849,9 @@ appears in a or tag." (defun eww-reload (&optional local encode) "Reload the current page. -If LOCAL (the command prefix), don't reload the page from the -network, but just re-display the HTML already fetched." +If LOCAL is non-nil (interactively, the command was invoked with +a prefix argument), don't reload the page from the network, but +just re-display the HTML already fetched." (interactive "P") (let ((url (plist-get eww-data :url))) (if local commit aceac954ed29c2653e2a0eb71b899be5c916edda Author: Noam Postavsky Date: Sun Mar 5 23:15:32 2017 -0500 Fix warning message about native completion (Bug#25984) * lisp/progmodes/python.el (python-shell-completion-native-turn-on-maybe): The relevant variable is `python-shell-completion-native-enable'. diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 2e08ab4f15..5713559bee 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -3452,7 +3452,7 @@ With argument MSG show activation/deactivation message." :warning (concat "Your `python-shell-interpreter' doesn't seem to " - "support readline, yet `python-shell-completion-native' " + "support readline, yet `python-shell-completion-native-enable' " (format "was t and %S is not part of the " (file-name-nondirectory python-shell-interpreter)) "`python-shell-completion-native-disabled-interpreters' " commit a314c1ff05741efe788a054a4661e80c624e3b71 Author: Eli Zaretskii Date: Sat Mar 4 17:58:03 2017 +0200 Clarify documentation of 'raise' and 'height' display specs * doc/lispref/display.texi (Other Display Specs): Clarify the effect of 'height' display spec on the following 'raise'. (Bug#25824) diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi index b8599abd14..84e7deb692 100644 --- a/doc/lispref/display.texi +++ b/doc/lispref/display.texi @@ -4666,16 +4666,21 @@ a form. Emacs evaluates it to get the new height, with the symbol @item (raise @var{factor}) This kind of display specification raises or lowers the text -it applies to, relative to the baseline of the line. - -@var{factor} must be a number, which is interpreted as a multiple of the -height of the affected text. If it is positive, that means to display -the characters raised. If it is negative, that means to display them -lower down. - -If the text also has a @code{height} display specification, that does -not affect the amount of raising or lowering, which is based on the -faces used for the text. +it applies to, relative to the baseline of the line. It is mainly +meant to support display of subscripts and superscripts. + +The @var{factor} must be a number, which is interpreted as a multiple +of the height of the affected text. If it is positive, that means to +display the characters raised. If it is negative, that means to +display them lower down. + +Note that if the text also has a @code{height} display specification, +which was specified before (i.e.@: to the left of) @code{raise}, the +latter will affect the amount of raising or lowering in pixels, +because that is based on the height of the text being raised. +Therefore, if you want to display a sub- or superscript that is +smaller than the normal text height, consider specifying @code{raise} +before @code{height}. @end table @c We put all the '@code{(when ...)}' on one line to encourage commit f366f6e6701fa12fd228614c39ab006caa6ac010 Author: Eli Zaretskii Date: Sat Mar 4 11:17:40 2017 +0200 Mention problems with GPaste in PROBLEMS * etc/PROBLEMS (GPaste): Mention the problem in yanking caused by GPaste, and its solution. (Bug#25902) diff --git a/etc/PROBLEMS b/etc/PROBLEMS index cd25cc8e8f..dbb313b06f 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS @@ -1057,6 +1057,13 @@ incompatibility of the Gnome terminal with Xterm, which also affects other programs using the Xterm mouse interface. A problem report has been filed. +*** Gnome: GPaste clipboard manager causes erratic behavior of 'yank' + +The symptom is that 'kill-line' followed by 'yank' often (but not +always) doesn't insert the whitespace of the killed and yanked line. + +The solution is to set the GPaste "trim items" option to OFF. + *** KDE: When running on KDE, colors or fonts are not as specified for Emacs, or messed up. commit 6e788ef0e262fafc014c21f4ad52cc5dc9f1715b Author: Noam Postavsky Date: Wed Mar 1 17:53:12 2017 -0500 ; etc/PROBLEMS: Explain about the python+libedit problem (Bug#25753). diff --git a/etc/PROBLEMS b/etc/PROBLEMS index bb7e1b6f9c..cd25cc8e8f 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS @@ -464,6 +464,23 @@ problem by adding this to your .cshrc file: stty -icrnl -onlcr -echo susp ^Z endif +*** In Inferior Python mode, input is echoed and native completion doesn't work. + + +This happens when python uses a libedit based readline module, which +is the default on macOS. This can be worked around by installing a +GNU readline based module instead, for example, using setuptools + + sudo easy_install gnureadline + +And then rename the system's readline so that it won't be loaded: + + cd /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload + mv readline.so readline.so.bak + +See for more details on +installation. + *** Emacs startup on GNU/Linux systems (and possibly other systems) is slow. This can happen if the system is misconfigured and Emacs can't get the commit 640661838dbba8185990e839712c91a14641ddf3 Author: Eli Zaretskii Date: Sat Feb 25 10:52:11 2017 +0200 Fix doc strings in info.el * lisp/info.el (Info-selection-hook, Info-mode-hook) (Info-edit-mode-hook): Doc fixes. (Bug#25794) diff --git a/lisp/info.el b/lisp/info.el index 3bbeb3de58..40b2f90ebd 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -367,17 +367,17 @@ with wrapping around the current Info node." ;; Try to obey obsolete Info-fontify settings. (unless (and (boundp 'Info-fontify) (null Info-fontify)) '(turn-on-font-lock)) - "Hooks run when `Info-mode' is called." + "Hook run when activating Info Mode." :type 'hook :group 'info) (defcustom Info-selection-hook nil - "Hooks run when `Info-select-node' is called." + "Hook run when an Info node is selected as the current node." :type 'hook :group 'info) (defvar Info-edit-mode-hook nil - "Hooks run when `Info-edit-mode' is called.") + "Hook run when `Info-edit-mode' is activated.") (make-obsolete-variable 'Info-edit-mode-hook "editing Info nodes by hand is not recommended." "24.4") commit c1ed1525c6a6eecd243e059b461f3793b55f3ebd Author: Eli Zaretskii Date: Sat Feb 25 10:41:21 2017 +0200 ; * src/keyboard.c (Fposn_at_point): Fix last change. diff --git a/src/keyboard.c b/src/keyboard.c index 3b6108bc99..1b8db6ae73 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -10711,7 +10711,7 @@ POS defaults to point in WINDOW; WINDOW defaults to the selected window. Return nil if POS is not visible in WINDOW. Otherwise, the return value is similar to that returned by `event-start' for a mouse click at the upper left corner of the glyph corresponding -to the POS: +to POS: (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW) IMAGE (DX . DY) (WIDTH . HEIGHT)) The `posn-' functions access elements of such lists. */) commit eed96776b1e8640cf6f77e8e3a3247dc4fa8a305 Author: Eli Zaretskii Date: Sat Feb 25 10:40:13 2017 +0200 Fix doc string of 'posn-at-point' * src/keyboard.c (Fposn_at_point): Clarify the doc string. (Bug#25796) diff --git a/src/keyboard.c b/src/keyboard.c index a772a6b678..3b6108bc99 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -10705,13 +10705,13 @@ The `posn-' functions access elements of such lists. */) } DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_point, 0, 2, 0, - doc: /* Return position information for buffer POS in WINDOW. + doc: /* Return position information for buffer position POS in WINDOW. POS defaults to point in WINDOW; WINDOW defaults to the selected window. -Return nil if position is not visible in window. Otherwise, +Return nil if POS is not visible in WINDOW. Otherwise, the return value is similar to that returned by `event-start' for a mouse click at the upper left corner of the glyph corresponding -to the given buffer position: +to the POS: (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW) IMAGE (DX . DY) (WIDTH . HEIGHT)) The `posn-' functions access elements of such lists. */) commit 0d5957ec6f10d2ab8eeaafb48eb032e8315aaff3 Author: Tino Calancha Date: Fri Feb 24 10:21:31 2017 +0900 Documentation fix in elisp reference manual * doc/lispref/macros.texi (Defining Macros): Drop redundant mention on 'declare' forms (Bug#25846). diff --git a/doc/lispref/macros.texi b/doc/lispref/macros.texi index 5638dfaecf..63a65a8130 100644 --- a/doc/lispref/macros.texi +++ b/doc/lispref/macros.texi @@ -255,10 +255,6 @@ of constants and nonconstant parts. To make this easier, use the @end example @end example - The body of a macro definition can include a @code{declare} form, -which specifies additional properties about the macro. @xref{Declare -Form}. - @node Problems with Macros @section Common Problems Using Macros @cindex macro caveats commit fe91ff27c54cc10b70a5c5d5bac4017922866717 (tag: refs/tags/emacs-25.2-rc2) Author: Nicolas Petton Date: Tue Feb 21 17:58:46 2017 +0100 ; Update ldef-boot.el for Emacs 25.1 release diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index e0b0b43739..0868e93c00 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el @@ -19123,8 +19123,8 @@ The default is 20. If LIMIT is negative, do not limit the listing. ;;;*** -;;;### (autoloads nil "mule-util" "international/mule-util.el" (22676 -;;;;;; 23208 715522 293000)) +;;;### (autoloads nil "mule-util" "international/mule-util.el" (22700 +;;;;;; 907 781538 432000)) ;;; Generated autoloads from international/mule-util.el (defsubst string-to-list (string) "\ @@ -19262,7 +19262,7 @@ QUALITY can be: `approximate', in which case we may cut some corners to avoid excessive work. `exact', in which case we may end up re-(en/de)coding a large - part of the file/buffer. + part of the file/buffer, this can be expensive and slow. nil, in which case we may return nil rather than an approximation. \(fn BYTE &optional QUALITY CODING-SYSTEM)" nil nil) @@ -19276,7 +19276,7 @@ QUALITY can be: `approximate', in which case we may cut some corners to avoid excessive work. `exact', in which case we may end up re-(en/de)coding a large - part of the file/buffer. + part of the file/buffer, this can be expensive and slow. nil, in which case we may return nil rather than an approximation. \(fn POSITION &optional QUALITY CODING-SYSTEM)" nil nil) @@ -22414,8 +22414,8 @@ Optional argument FACE specifies the face to do the highlighting. ;;;*** -;;;### (autoloads nil "python" "progmodes/python.el" (22676 23208 -;;;;;; 867521 672000)) +;;;### (autoloads nil "python" "progmodes/python.el" (22700 907 783538 +;;;;;; 423000)) ;;; Generated autoloads from progmodes/python.el (push (purecopy '(python 0 25 1)) package--builtin-versions) @@ -32293,7 +32293,7 @@ you can press `C-c ' (calling `winner-redo'). ;;;*** -;;;### (autoloads nil "woman" "woman.el" (22676 23208 936521 391000)) +;;;### (autoloads nil "woman" "woman.el" (22700 907 786538 408000)) ;;; Generated autoloads from woman.el (push (purecopy '(woman 0 551)) package--builtin-versions) @@ -32311,7 +32311,7 @@ The major browsing mode used is essentially the standard Man mode. Choose the filename for the man page using completion, based on the topic selected from the directories specified in `woman-manpath' and `woman-path'. The directory expansions and topics are cached for -speed, but a non-nil interactive argument forces the caches to be +speed. With a prefix argument, force the caches to be updated (e.g. to re-interpret the current directory). Used non-interactively, arguments are optional: if given then TOPIC @@ -32772,7 +32772,7 @@ Zone out, completely. ;;;;;; "vc/ediff-vers.el" "vc/ediff-wind.el" "vc/pcvs-info.el" "vc/pcvs-parse.el" ;;;;;; "vc/pcvs-util.el" "vc/vc-dav.el" "vc/vc-filewise.el" "vcursor.el" ;;;;;; "vt-control.el" "vt100-led.el" "w32-fns.el" "w32-vars.el" -;;;;;; "x-dnd.el") (22676 38554 103597 865000)) +;;;;;; "x-dnd.el") (22700 28147 844034 58000)) ;;;*** commit 42102109936dfdbaabcd5a0c8eddaca633d595e1 Author: Nicolas Petton Date: Tue Feb 21 17:37:43 2017 +0100 ; Update ChangeLog.2 and AUTHORS files diff --git a/ChangeLog.2 b/ChangeLog.2 index e6774826a3..a9e1dd2a11 100644 --- a/ChangeLog.2 +++ b/ChangeLog.2 @@ -1,3 +1,75 @@ +2017-02-18 Noam Postavsky + + * lisp/woman.el (woman): Fix docstring prefix arg description. + +2017-02-18 Eli Zaretskii + + Mention "editor" in Emacs man page header + + * doc/man/emacs.1.in: Mention "editor" in the header line. + (Bug#25771, Bug#25779) + +2017-02-18 Eli Zaretskii + + Document problems with nerd-fonts + + * etc/PROBLEMS (fonts): Describe the potential problems with + nerd-fonts that cause slow display. (Bug#25697) + +2017-02-13 Stefan Monnier + + * doc/lispref/modes.texi (Derived Modes): Make example more idiomatic + +2017-02-12 Eli Zaretskii + + Clarify what is the "cursor" + + * doc/lispref/windows.texi (Window Point): Clarify the notion of + "cursor". + +2017-02-10 Eli Zaretskii + + Improve commentary in lisp.h + + * src/lisp.h: Explain in the comment why enlarging a Lisp_Misc + object is discouraged. + +2017-02-08 Noam Postavsky + + Disable native completion for ipython (Bug#25067) + + * lisp/progmodes/python.el: + (python-shell-completion-native-disabled-interpreters): Add "ipython". + +2017-02-07 Eli Zaretskii + + Fix a typo in ada-mode manual + + * doc/misc/ada-mode.texi (Project file variables): Add a missing + right bracket. Reported by Jean-Christophe Helary + . + +2017-02-05 Eli Zaretskii + + Clarify documentation of 'bufferpos-to-filepos' and 'filepos-to-bufferpos' + + * doc/lispref/nonascii.texi (Text Representations): Clarify that + 'exact' value of QUALITY argument to 'bufferpos-to-filepos' and + 'filepos-to-bufferpos' can lead to expensive and slow processing. + + * lisp/international/mule-util.el (filepos-to-bufferpos) + (bufferpos-to-filepos): Doc fix. (Bug#25626) + +2017-02-03 Nicolas Petton + + Bump Emacs version to 25.2 RC1 + + * README: + * configure.ac: + * msdos/sed2v2.inp: + * nt/README.W32: Bump Emacs version. + * lisp/ldefs-boot.el: Update. + 2017-02-03 Nicolas Petton * admin/make-tarball.txt: Add documentation regarding the release banner. @@ -35569,7 +35641,7 @@ This file records repository revisions from commit 9d56a21e6a696ad19ac65c4b405aeca44785884a (exclusive) to -commit 02d9ad8440508b64233a4a38dae67c523139f7df (inclusive). +commit ec4226d81074751c105264a3a3383c48d0a05e41 (inclusive). See ChangeLog.1 for earlier changes. ;; Local Variables: diff --git a/etc/AUTHORS b/etc/AUTHORS index f993fde5dc..85439ac861 100644 --- a/etc/AUTHORS +++ b/etc/AUTHORS @@ -1252,7 +1252,7 @@ Eli Zaretskii: wrote [bidirectional display in xdisp.c] and changed xdisp.c msdos.c w32.c w32fns.c display.texi files.el simple.el fileio.c w32proc.c w32term.c keyboard.c emacs.c dispnew.c dispextern.h INSTALL config.bat sed1v2.inp src/Makefile.in term.c - frames.texi window.c and 1020 other files + frames.texi window.c and 1021 other files Emanuele Giaquinta: changed configure.ac rxvt.el charset.c etags.c fontset.c frame.el gnus-faq.texi loadup.el lread.c sh-script.el @@ -3356,7 +3356,7 @@ Nicolas Petton: wrote map-tests.el map.el seq-tests.el seq.el thunk-tests.el thunk.el and co-wrote auth-source-tests.el subr-tests.el and changed sequences.texi README configure.ac sed2v2.inp emacs.png - authors.el emacs23.png arc-mode.el cl-extra.el emacs.svg README.W32 + authors.el emacs23.png README.W32 arc-mode.el cl-extra.el emacs.svg Emacs.icns Makefile.in auth-source.el emacs.ico obarray.el data.c emacs-document.svg emacs-document23.svg emacs.texi emacs23.svg and 9 other files @@ -3395,10 +3395,10 @@ and changed rsz-mini.el emacs-buffer.gdb comint.el files.el Makefile Noah Lavine: changed tramp.el Noam Postavsky: changed search.c cl-preloaded.el debugging.texi - modes.texi simple.el w32.c cl-macs.el buffer.c buffers.texi category.c - cmdproxy.c cus-edit.el dired.c elisp-mode.el em-term.el - emacs-lisp-intro.texi etags.el eval.c files.el find-func.el help-fns.el - and 30 other files + modes.texi simple.el w32.c cl-macs.el progmodes/python.el buffer.c + buffers.texi category.c cmdproxy.c cus-edit.el dired.c elisp-mode.el + em-term.el emacs-lisp-intro.texi etags.el eval.c files.el find-func.el + and 31 other files Nobuyoshi Nakada: co-wrote ruby-mode.el commit ec4226d81074751c105264a3a3383c48d0a05e41 Author: Noam Postavsky Date: Sat Feb 18 13:34:37 2017 -0500 * lisp/woman.el (woman): Fix docstring prefix arg description. diff --git a/lisp/woman.el b/lisp/woman.el index 546a955dbe..894710f8df 100644 --- a/lisp/woman.el +++ b/lisp/woman.el @@ -1165,7 +1165,7 @@ The major browsing mode used is essentially the standard Man mode. Choose the filename for the man page using completion, based on the topic selected from the directories specified in `woman-manpath' and `woman-path'. The directory expansions and topics are cached for -speed, but a non-nil interactive argument forces the caches to be +speed. With a prefix argument, force the caches to be updated (e.g. to re-interpret the current directory). Used non-interactively, arguments are optional: if given then TOPIC commit 2b774fa873e2e16bf12c6aa4298588b3c8527d9d Author: Eli Zaretskii Date: Sat Feb 18 13:32:45 2017 +0200 Mention "editor" in Emacs man page header * doc/man/emacs.1.in: Mention "editor" in the header line. (Bug#25771, Bug#25779) diff --git a/doc/man/emacs.1.in b/doc/man/emacs.1.in index 5f1976a3c3..3637174d24 100644 --- a/doc/man/emacs.1.in +++ b/doc/man/emacs.1.in @@ -3,7 +3,7 @@ . . .SH NAME -emacs \- GNU project Emacs +emacs \- GNU project Emacs editor . . .SH SYNOPSIS commit ae60d0c051eab38d3f1f51a0570c31e914066c25 Author: Eli Zaretskii Date: Sat Feb 18 12:36:43 2017 +0200 Document problems with nerd-fonts * etc/PROBLEMS (fonts): Describe the potential problems with nerd-fonts that cause slow display. (Bug#25697) diff --git a/etc/PROBLEMS b/etc/PROBLEMS index be15afaa7c..bb7e1b6f9c 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS @@ -771,6 +771,10 @@ The solution is to install the appropriate fonts on your machine. For instance if you are editing a text with a lot of math symbols, then installing a font like 'Symbola' should solve this problem. +Another reason for slow display is reportedly the nerd-fonts +installation, even when Symbola is installed as well. Uninstalling +nerd-fonts was reported to solve the problem in that case. + * Internationalization problems ** M-{ does not work on a Spanish PC keyboard. commit 2fdb5a90bb80d527496ec873ec8ab3b229bd2035 Author: Eli Zaretskii Date: Sat Feb 18 12:25:38 2017 +0200 ; Details about pinning Emacs to w32 task bar * nt/README.W32: Describe how to set up the pinned task-bar shortcut for Emacs. (Bug#8268) diff --git a/nt/README.W32 b/nt/README.W32 index bdd8bd4cb9..7f929384ad 100644 --- a/nt/README.W32 +++ b/nt/README.W32 @@ -105,7 +105,9 @@ See the end of the file for license conditions. + runemacs.exe - A wrapper for running Emacs as a GUI application without popping up a command prompt window. If you create a desktop shortcut for invoking Emacs, make it point to this - executable, not to emacs.exe. + executable, not to emacs.exe. If you pin Emacs to the task bar, + edit the properties of the pinned shortcut (with Shift-right mouse + click) to point to this executable. + emacsclient.exe - A command-line client program that can communicate with a running Emacs process. See the `Emacs Server' commit 5c3105e55bd28f2d4786b798a11566f6876c237a Author: Stefan Monnier Date: Mon Feb 13 02:29:01 2017 -0500 * doc/lispref/modes.texi (Derived Modes): Make example more idiomatic diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi index 0015a9f318..132dda3fc6 100644 --- a/doc/lispref/modes.texi +++ b/doc/lispref/modes.texi @@ -806,14 +806,15 @@ this mode. (Not all major modes have one.) The command Here is a hypothetical example: @example +(defvar hypertext-mode-map + (let ((map (make-sparse-keymap))) + (define-key map [down-mouse-3] 'do-hyper-link) + map)) + (define-derived-mode hypertext-mode text-mode "Hypertext" - "Major mode for hypertext. -\\@{hypertext-mode-map@}" - (setq case-fold-search nil)) - -(define-key hypertext-mode-map - [down-mouse-3] 'do-hyper-link) + "Major mode for hypertext." + (setq-local case-fold-search nil)) @end example Do not write an @code{interactive} spec in the definition; commit 4c51ef4e803f9e956b2a1c1dc78ed50087c9507e Author: Eli Zaretskii Date: Sun Feb 12 17:56:14 2017 +0200 Clarify what is the "cursor" * doc/lispref/windows.texi (Window Point): Clarify the notion of "cursor". diff --git a/doc/lispref/windows.texi b/doc/lispref/windows.texi index d03e07e0a1..290fb98dcf 100644 --- a/doc/lispref/windows.texi +++ b/doc/lispref/windows.texi @@ -3062,9 +3062,13 @@ point and the buffer's point always move together; they remain equal. @end itemize @cindex cursor - As far as the user is concerned, point is where the cursor is, and -when the user switches to another buffer, the cursor jumps to the -position of point in that buffer. + Emacs displays the cursor, by default as a rectangular block, in +each window at the position of that window's point. When the user +switches to another buffer in a window, Emacs moves that window's +cursor to where point is in that buffer. If the exact position of +point is hidden behind some display element, such as a display string +or an image, Emacs displays the cursor immediately before or after +that display element. @defun window-point &optional window This function returns the current position of point in @var{window}. commit 8303c326d7532aba321de0158de997a6a20d848e Author: Glenn Morris Date: Sat Feb 11 17:19:59 2017 -0800 ; * etc/NEWS: Copyedits. diff --git a/etc/NEWS b/etc/NEWS index 58ac617a79..539e56e42a 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -17,45 +17,37 @@ with a prefix argument or by typing C-u C-h C-n. * Changes in Emacs 25.2 -This is a bug-fix release with (almost) no new features. ---- +This is mainly a bug-fix release, but there are some other changes. + ** 'find-library', 'help-function-def' and 'help-variable-def' now run 'find-function-after-hook'. -+++ ** New basic face 'fixed-pitch-serif', for a fixed-width font with serifs. -The 'Info-quoted' and 'tex-verbatim' faces now default to inheriting -from it. +The 'Info-quoted' and 'tex-verbatim' faces inherit from it by default. ---- -** New variable 'use-default-font-for-symbols' for backward compatibility. -This variable allows to get back pre-Emacs 25 behavior whereby the +** New variable 'use-default-font-for-symbols', for backward compatibility. +This variable allows you to get back pre-Emacs 25 behavior where the font for displaying symbol and punctuation characters was always -selected according to your fontset setup. Emacs 25 by default tries -to use the default face's font for such characters, disregarding the -fontsets if the default font supports these characters. Set this -variable to nil to disable the new behavior and get back the old -behavior. +selected according to your fontset setup. By default, Emacs 25 tries +to use the default face's font for such characters, if it supports +them, disregarding the fontsets. Set this variable to nil to disable +this and get back the old behavior. -+++ ** 'electric-quote-mode' is no longer suppressed in a buffer whose -whose coding system cannot represent curved quote characters. +coding system cannot represent curved quote characters. Instead, users can deal with the unrepresentable characters in the usual way when they save the buffer. ---- ** New variable 'inhibit-compacting-font-caches'. Set this variable to a non-nil value to speed up display of characters -using large fonts, at the price of a larger memory footprint of the -Emacs session. +using large fonts, at the price of a larger memory footprint. -+++ ** The version number of CC Mode has been changed from 5.33 to 5.32.99, although the software itself hasn't changed. This aims to reduce confusion with the standalone CC Mode 5.33 (available from http://cc-mode.sourceforge.net), which is a more mature version than -the one in Emacs 25.2. +the one included in Emacs 25.2. * Installation Changes in Emacs 25.1 commit 3f7493e27c57bec21806c579cdb6e419b9102bed Author: Tino Calancha Date: Fri Feb 10 20:05:11 2017 +0900 ; Fix a typo in comment * lisp/vc/ediff-wind.el (ediff-setup-windows-multiframe-merge): Fix a typo in comment. diff --git a/lisp/vc/ediff-wind.el b/lisp/vc/ediff-wind.el index cd10288643..eb76988293 100644 --- a/lisp/vc/ediff-wind.el +++ b/lisp/vc/ediff-wind.el @@ -556,7 +556,7 @@ into icons, regardless of the window manager." (if (and (window-live-p wind-A) (null use-same-frame) ; implies wind-A is suitable (null use-same-frame-for-AB)) - (progn ; bug A on its own + (progn ; buf A on its own ;; buffer buf-A is seen in live wind-A (select-window wind-A) (delete-other-windows) commit c54cf8dcfd016783bc4881eb218d7b556020a18c Author: Eli Zaretskii Date: Fri Feb 10 12:12:49 2017 +0200 Improve commentary in lisp.h * src/lisp.h: Explain in the comment why enlarging a Lisp_Misc object is discouraged. diff --git a/src/lisp.h b/src/lisp.h index b410ee45ae..5aee80cea1 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -511,10 +511,14 @@ enum Lisp_Fwd_Type to add a new Lisp_Misc, extend the Lisp_Misc_Type enumeration. For a Lisp_Misc, you will also need to add your entry to union - Lisp_Misc (but make sure the first word has the same structure as + Lisp_Misc, but make sure the first word has the same structure as the others, starting with a 16-bit member of the Lisp_Misc_Type - enumeration and a 1-bit GC markbit) and make sure the overall size - of the union is not increased by your addition. + enumeration and a 1-bit GC markbit. Also make sure the overall + size of the union is not increased by your addition. The latter + requirement is to keep Lisp_Misc objects small enough, so they + are handled faster: since all Lisp_Misc types use the same space, + enlarging any of them will affect all the rest. If you really + need a larger object, it is best to use Lisp_Vectorlike instead. For a new pseudovector, it's highly desirable to limit the size of your data type by VBLOCK_BYTES_MAX bytes (defined in alloc.c). commit 8b92f8672b5ed6fe38d10654962aa373e8e7bda8 Author: Glenn Morris Date: Wed Feb 8 12:48:34 2017 -0500 ; * admin/make-tarball.txt: Cross-reference admin/release-process. diff --git a/admin/make-tarball.txt b/admin/make-tarball.txt index 01dd63c9dd..03d7adad0b 100644 --- a/admin/make-tarball.txt +++ b/admin/make-tarball.txt @@ -55,9 +55,12 @@ General steps (for each step, check for possible errors): M-x set-version RET). For a pretest, start at version .90. After .99, use .990 (so that it sorts). - The final pretest should be a release candidate. Set the version - number to that of the actual release. Pick a date about a week - from now when you intend to make the release. Use M-x + The final pretest should be a release candidate. + Before a release candidate is made, the tasks listed in + admin/release-process must be completed. + + Set the version number to that of the actual release. Pick a date + about a week from now when you intend to make the release. Use M-x add-release-logs to add entries to etc/HISTORY and the ChangeLog file. It's best not to commit these files until the release is actually made. Merge the entries from (unversioned) ChangeLog commit 0ba9932d1446e91fcc96f1d3303fac5ca5029d71 Author: Noam Postavsky Date: Tue Feb 7 21:13:17 2017 -0500 Disable native completion for ipython (Bug#25067) * lisp/progmodes/python.el: (python-shell-completion-native-disabled-interpreters): Add "ipython". diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 306402d8e3..2e08ab4f15 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -3255,8 +3255,10 @@ the full statement in the case of imports." "Completion string code must work for (i)pdb.") (defcustom python-shell-completion-native-disabled-interpreters - ;; PyPy's readline cannot handle some escape sequences yet. - (list "pypy") + ;; PyPy's readline cannot handle some escape sequences yet. Native + ;; completion was found to be non-functional for IPython (see + ;; Bug#25067). + (list "pypy" "ipython") "List of disabled interpreters. When a match is found, native completion is disabled." :version "25.1" commit 38fc456d27973843685a1e51ea992641303e2145 Author: Eli Zaretskii Date: Tue Feb 7 18:29:02 2017 +0200 Fix a typo in ada-mode manual * doc/misc/ada-mode.texi (Project file variables): Add a missing right bracket. Reported by Jean-Christophe Helary . diff --git a/doc/misc/ada-mode.texi b/doc/misc/ada-mode.texi index 127a009417..2ea4c7f36b 100644 --- a/doc/misc/ada-mode.texi +++ b/doc/misc/ada-mode.texi @@ -540,7 +540,7 @@ Lisp variable: @code{ada-prj-default-bind-opt}. @item @code{build_dir} [default: @code{"."}] The compile commands will be issued in this directory. -@item @code{casing} [default: @code{("~/.emacs_case_exceptions")} +@item @code{casing} [default: @code{("~/.emacs_case_exceptions")}] List of files containing casing exceptions. See the help on @code{ada-case-exception-file} for more info. @c FIXME: section on case exceptions commit 00e75bab624bb00e1c72f354474df23423d528c4 Author: Eli Zaretskii Date: Sun Feb 5 21:55:21 2017 +0200 ; * src/coding.c (Fencode_coding_region): Fix a typo in the doc string. diff --git a/src/coding.c b/src/coding.c index 6d8e1998dc..55eb2ab97c 100644 --- a/src/coding.c +++ b/src/coding.c @@ -9391,8 +9391,8 @@ When called from a program, takes four arguments: START, END, CODING-SYSTEM and DESTINATION. START and END are buffer positions. -Optional 4th arguments DESTINATION specifies where the encoded text goes. -If nil, the region between START and END is replace by the encoded text. +Optional 4th argument DESTINATION specifies where the encoded text goes. +If nil, the region between START and END is replaced by the encoded text. If buffer, the encoded text is inserted in that buffer after point (point does not move). In those cases, the length of the encoded text is returned. commit a541c21e864112267126b1388d4d8553ec294b00 Author: Eli Zaretskii Date: Sun Feb 5 21:50:49 2017 +0200 Clarify documentation of 'bufferpos-to-filepos' and 'filepos-to-bufferpos' * doc/lispref/nonascii.texi (Text Representations): Clarify that 'exact' value of QUALITY argument to 'bufferpos-to-filepos' and 'filepos-to-bufferpos' can lead to expensive and slow processing. * lisp/international/mule-util.el (filepos-to-bufferpos) (bufferpos-to-filepos): Doc fix. (Bug#25626) diff --git a/doc/lispref/nonascii.texi b/doc/lispref/nonascii.texi index e3cb5d0d36..2c3e6ef2c6 100644 --- a/doc/lispref/nonascii.texi +++ b/doc/lispref/nonascii.texi @@ -142,7 +142,7 @@ be one of the following: @table @code @item exact The result must be accurate. The function may need to encode and -decode a large part of the buffer. +decode a large part of the buffer, which is expensive and can be slow. @item approximate The value can be an approximation. The function may avoid expensive processing and return an inexact result. diff --git a/lisp/international/mule-util.el b/lisp/international/mule-util.el index 06b63eae37..7657e40eed 100644 --- a/lisp/international/mule-util.el +++ b/lisp/international/mule-util.el @@ -352,7 +352,7 @@ QUALITY can be: `approximate', in which case we may cut some corners to avoid excessive work. `exact', in which case we may end up re-(en/de)coding a large - part of the file/buffer. + part of the file/buffer, this can be expensive and slow. nil, in which case we may return nil rather than an approximation." (unless coding-system (setq coding-system buffer-file-coding-system)) (let ((eol (coding-system-eol-type coding-system)) @@ -428,7 +428,7 @@ QUALITY can be: `approximate', in which case we may cut some corners to avoid excessive work. `exact', in which case we may end up re-(en/de)coding a large - part of the file/buffer. + part of the file/buffer, this can be expensive and slow. nil, in which case we may return nil rather than an approximation." (unless coding-system (setq coding-system buffer-file-coding-system)) (let* ((eol (coding-system-eol-type coding-system)) commit 5e921112680f96d3ed94faf7dcf257e07f92d74b (tag: refs/tags/emacs-25.2-rc1) Author: Nicolas Petton Date: Fri Feb 3 16:28:13 2017 +0100 Bump Emacs version to 25.2 RC1 * README: * configure.ac: * msdos/sed2v2.inp: * nt/README.W32: Bump Emacs version. * lisp/ldefs-boot.el: Update. diff --git a/configure.ac b/configure.ac index 4e80eed272..5853cbbac8 100644 --- a/configure.ac +++ b/configure.ac @@ -23,7 +23,7 @@ dnl along with GNU Emacs. If not, see . AC_PREREQ(2.65) dnl Note this is parsed by (at least) make-dist and lisp/cedet/ede/emacs.el. -AC_INIT(GNU Emacs, 25.1.91, bug-gnu-emacs@gnu.org) +AC_INIT(GNU Emacs, 25.2, bug-gnu-emacs@gnu.org) dnl Set emacs_config_options to the options of 'configure', quoted for the shell, dnl and then quoted again for a C string. Separate options with spaces. diff --git a/etc/HISTORY b/etc/HISTORY index 43790bb92b..df44f72168 100644 --- a/etc/HISTORY +++ b/etc/HISTORY @@ -209,6 +209,8 @@ GNU Emacs 24.5 (2015-04-10) emacs-24.5 GNU Emacs 25.1 (2016-09-16) emacs-25.1 +GNU Emacs 25.2 (2017-02-13) emacs-25.2 + ---------------------------------------------------------------------- This file is part of GNU Emacs. diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 537d280d2b..e0b0b43739 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el @@ -3,7 +3,7 @@ ;;; Code: -;;;### (autoloads nil "5x5" "play/5x5.el" (22388 6383 169254 278000)) +;;;### (autoloads nil "5x5" "play/5x5.el" (22676 23208 829521 828000)) ;;; Generated autoloads from play/5x5.el (autoload '5x5 "5x5" "\ @@ -65,8 +65,8 @@ should return a grid vector array that is the new solution. ;;;*** -;;;### (autoloads nil "ada-mode" "progmodes/ada-mode.el" (22388 6383 -;;;;;; 531257 838000)) +;;;### (autoloads nil "ada-mode" "progmodes/ada-mode.el" (22676 23208 +;;;;;; 836521 799000)) ;;; Generated autoloads from progmodes/ada-mode.el (autoload 'ada-add-extensions "ada-mode" "\ @@ -85,8 +85,8 @@ Ada mode is the major mode for editing Ada code. ;;;*** -;;;### (autoloads nil "ada-stmt" "progmodes/ada-stmt.el" (22388 6383 -;;;;;; 583258 350000)) +;;;### (autoloads nil "ada-stmt" "progmodes/ada-stmt.el" (22676 23208 +;;;;;; 836521 799000)) ;;; Generated autoloads from progmodes/ada-stmt.el (autoload 'ada-header "ada-stmt" "\ @@ -96,8 +96,8 @@ Insert a descriptive header at the top of the file. ;;;*** -;;;### (autoloads nil "ada-xref" "progmodes/ada-xref.el" (22388 6383 -;;;;;; 612258 635000)) +;;;### (autoloads nil "ada-xref" "progmodes/ada-xref.el" (22676 23208 +;;;;;; 837521 795000)) ;;; Generated autoloads from progmodes/ada-xref.el (autoload 'ada-find-file "ada-xref" "\ @@ -108,8 +108,8 @@ Completion is available. ;;;*** -;;;### (autoloads nil "add-log" "vc/add-log.el" (22388 6390 743328 -;;;;;; 764000)) +;;;### (autoloads nil "add-log" "vc/add-log.el" (22676 23208 919521 +;;;;;; 460000)) ;;; Generated autoloads from vc/add-log.el (put 'change-log-default-name 'safe-local-variable 'string-or-null-p) @@ -238,8 +238,8 @@ old-style time formats for entries are supported. ;;;*** -;;;### (autoloads nil "advice" "emacs-lisp/advice.el" (22388 6368 -;;;;;; 545110 460000)) +;;;### (autoloads nil "advice" "emacs-lisp/advice.el" (22676 23208 +;;;;;; 599522 767000)) ;;; Generated autoloads from emacs-lisp/advice.el (defvar ad-redefinition-action 'warn "\ @@ -374,7 +374,7 @@ usage: (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...) ;;;*** -;;;### (autoloads nil "align" "align.el" (22388 5702 14555 614000)) +;;;### (autoloads nil "align" "align.el" (22676 23208 539523 12000)) ;;; Generated autoloads from align.el (autoload 'align "align" "\ @@ -479,7 +479,7 @@ indented. ;;;*** -;;;### (autoloads nil "allout" "allout.el" (22388 5702 143556 882000)) +;;;### (autoloads nil "allout" "allout.el" (22676 23208 541523 4000)) ;;; Generated autoloads from allout.el (push (purecopy '(allout 2 3)) package--builtin-versions) @@ -839,8 +839,8 @@ for details on preparing Emacs for automatic allout activation. ;;;*** -;;;### (autoloads nil "allout-widgets" "allout-widgets.el" (22388 -;;;;;; 5702 56556 27000)) +;;;### (autoloads nil "allout-widgets" "allout-widgets.el" (22676 +;;;;;; 23208 540523 8000)) ;;; Generated autoloads from allout-widgets.el (push (purecopy '(allout-widgets 1 0)) package--builtin-versions) @@ -898,8 +898,8 @@ outline hot-spot navigation (see `allout-mode'). ;;;*** -;;;### (autoloads nil "ange-ftp" "net/ange-ftp.el" (22587 10177 785473 -;;;;;; 832000)) +;;;### (autoloads nil "ange-ftp" "net/ange-ftp.el" (22676 23208 761522 +;;;;;; 105000)) ;;; Generated autoloads from net/ange-ftp.el (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) @@ -920,8 +920,8 @@ directory, so that Emacs will know its current contents. ;;;*** -;;;### (autoloads nil "animate" "play/animate.el" (22388 6383 172254 -;;;;;; 308000)) +;;;### (autoloads nil "animate" "play/animate.el" (22676 23208 829521 +;;;;;; 828000)) ;;; Generated autoloads from play/animate.el (autoload 'animate-string "animate" "\ @@ -953,8 +953,8 @@ the buffer *Birthday-Present-for-Name*. ;;;*** -;;;### (autoloads nil "ansi-color" "ansi-color.el" (22388 5702 202557 -;;;;;; 463000)) +;;;### (autoloads nil "ansi-color" "ansi-color.el" (22676 23208 541523 +;;;;;; 4000)) ;;; Generated autoloads from ansi-color.el (push (purecopy '(ansi-color 3 4 2)) package--builtin-versions) @@ -980,8 +980,8 @@ This is a good function to put in `comint-output-filter-functions'. ;;;*** -;;;### (autoloads nil "antlr-mode" "progmodes/antlr-mode.el" (22388 -;;;;;; 6383 656259 67000)) +;;;### (autoloads nil "antlr-mode" "progmodes/antlr-mode.el" (22676 +;;;;;; 23208 837521 795000)) ;;; Generated autoloads from progmodes/antlr-mode.el (push (purecopy '(antlr-mode 2 2 3)) package--builtin-versions) @@ -1017,8 +1017,8 @@ Used in `antlr-mode'. Also a useful function in `java-mode-hook'. ;;;*** -;;;### (autoloads nil "appt" "calendar/appt.el" (22388 6367 808103 -;;;;;; 212000)) +;;;### (autoloads nil "appt" "calendar/appt.el" (22676 23208 557522 +;;;;;; 938000)) ;;; Generated autoloads from calendar/appt.el (autoload 'appt-add "appt" "\ @@ -1039,7 +1039,8 @@ ARG is positive, otherwise off. ;;;*** -;;;### (autoloads nil "apropos" "apropos.el" (22388 5702 277558 200000)) +;;;### (autoloads nil "apropos" "apropos.el" (22676 23208 541523 +;;;;;; 4000)) ;;; Generated autoloads from apropos.el (autoload 'apropos-read-pattern "apropos" "\ @@ -1155,8 +1156,8 @@ Returns list of symbols and documentation found. ;;;*** -;;;### (autoloads nil "arc-mode" "arc-mode.el" (22587 10177 755473 -;;;;;; 411000)) +;;;### (autoloads nil "arc-mode" "arc-mode.el" (22676 23208 542523 +;;;;;; 0)) ;;; Generated autoloads from arc-mode.el (autoload 'archive-mode "arc-mode" "\ @@ -1176,7 +1177,7 @@ archive. ;;;*** -;;;### (autoloads nil "array" "array.el" (22388 5702 287558 299000)) +;;;### (autoloads nil "array" "array.el" (22676 23208 542523 0)) ;;; Generated autoloads from array.el (autoload 'array-mode "array" "\ @@ -1247,8 +1248,8 @@ Entering array mode calls the function `array-mode-hook'. ;;;*** -;;;### (autoloads nil "artist" "textmodes/artist.el" (22388 6389 -;;;;;; 2311 642000)) +;;;### (autoloads nil "artist" "textmodes/artist.el" (22676 23208 +;;;;;; 896521 554000)) ;;; Generated autoloads from textmodes/artist.el (push (purecopy '(artist 1 2 6)) package--builtin-versions) @@ -1454,8 +1455,8 @@ Keymap summary ;;;*** -;;;### (autoloads nil "asm-mode" "progmodes/asm-mode.el" (22388 6383 -;;;;;; 682259 323000)) +;;;### (autoloads nil "asm-mode" "progmodes/asm-mode.el" (22676 23208 +;;;;;; 837521 795000)) ;;; Generated autoloads from progmodes/asm-mode.el (autoload 'asm-mode "asm-mode" "\ @@ -1482,8 +1483,8 @@ Special commands: ;;;*** -;;;### (autoloads nil "auth-source" "gnus/auth-source.el" (22587 -;;;;;; 10177 770473 621000)) +;;;### (autoloads nil "auth-source" "gnus/auth-source.el" (22676 +;;;;;; 23208 662522 509000)) ;;; Generated autoloads from gnus/auth-source.el (defvar auth-source-cache-expiry 7200 "\ @@ -1495,7 +1496,8 @@ let-binding.") ;;;*** -;;;### (autoloads nil "autoarg" "autoarg.el" (22388 5702 305558 475000)) +;;;### (autoloads nil "autoarg" "autoarg.el" (22676 23208 542523 +;;;;;; 0)) ;;; Generated autoloads from autoarg.el (defvar autoarg-mode nil "\ @@ -1557,8 +1559,8 @@ This is similar to `autoarg-mode' but rebinds the keypad keys ;;;*** -;;;### (autoloads nil "autoconf" "progmodes/autoconf.el" (22388 6383 -;;;;;; 698259 481000)) +;;;### (autoloads nil "autoconf" "progmodes/autoconf.el" (22676 23208 +;;;;;; 837521 795000)) ;;; Generated autoloads from progmodes/autoconf.el (autoload 'autoconf-mode "autoconf" "\ @@ -1568,8 +1570,8 @@ Major mode for editing Autoconf configure.ac files. ;;;*** -;;;### (autoloads nil "autoinsert" "autoinsert.el" (22388 5702 322558 -;;;;;; 643000)) +;;;### (autoloads nil "autoinsert" "autoinsert.el" (22676 23208 542523 +;;;;;; 0)) ;;; Generated autoloads from autoinsert.el (autoload 'auto-insert "autoinsert" "\ @@ -1608,8 +1610,8 @@ insert a template for the file depending on the mode of the buffer. ;;;*** -;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (22587 -;;;;;; 10177 765473 551000)) +;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (22676 +;;;;;; 23208 599522 767000)) ;;; Generated autoloads from emacs-lisp/autoload.el (put 'generated-autoload-file 'safe-local-variable 'stringp) @@ -1660,8 +1662,8 @@ should be non-nil). ;;;*** -;;;### (autoloads nil "autorevert" "autorevert.el" (22630 21356 354944 -;;;;;; 634000)) +;;;### (autoloads nil "autorevert" "autorevert.el" (22676 23208 542523 +;;;;;; 0)) ;;; Generated autoloads from autorevert.el (autoload 'auto-revert-mode "autorevert" "\ @@ -1759,7 +1761,7 @@ specifies in the mode line. ;;;*** -;;;### (autoloads nil "avoid" "avoid.el" (22388 5702 326558 682000)) +;;;### (autoloads nil "avoid" "avoid.el" (22676 23208 543522 995000)) ;;; Generated autoloads from avoid.el (defvar mouse-avoidance-mode nil "\ @@ -1797,8 +1799,8 @@ definition of \"random distance\".) ;;;*** -;;;### (autoloads nil "bat-mode" "progmodes/bat-mode.el" (22388 6383 -;;;;;; 700259 500000)) +;;;### (autoloads nil "bat-mode" "progmodes/bat-mode.el" (22676 23208 +;;;;;; 837521 795000)) ;;; Generated autoloads from progmodes/bat-mode.el (add-to-list 'auto-mode-alist '("\\.\\(bat\\|cmd\\)\\'" . bat-mode)) @@ -1816,8 +1818,8 @@ Run script using `bat-run' and `bat-run-args'. ;;;*** -;;;### (autoloads nil "battery" "battery.el" (22587 10177 756473 -;;;;;; 425000)) +;;;### (autoloads nil "battery" "battery.el" (22676 23208 543522 +;;;;;; 995000)) ;;; Generated autoloads from battery.el (put 'battery-mode-line-string 'risky-local-variable t) @@ -1853,8 +1855,8 @@ seconds. ;;;*** -;;;### (autoloads nil "benchmark" "emacs-lisp/benchmark.el" (22388 -;;;;;; 6368 596110 962000)) +;;;### (autoloads nil "benchmark" "emacs-lisp/benchmark.el" (22676 +;;;;;; 23208 600522 763000)) ;;; Generated autoloads from emacs-lisp/benchmark.el (autoload 'benchmark-run "benchmark" "\ @@ -1890,8 +1892,8 @@ For non-interactive use see also `benchmark-run' and ;;;*** -;;;### (autoloads nil "bibtex" "textmodes/bibtex.el" (22388 6389 -;;;;;; 163313 226000)) +;;;### (autoloads nil "bibtex" "textmodes/bibtex.el" (22676 23208 +;;;;;; 898521 546000)) ;;; Generated autoloads from textmodes/bibtex.el (autoload 'bibtex-initialize "bibtex" "\ @@ -1983,7 +1985,7 @@ A prefix arg negates the value of `bibtex-search-entry-globally'. ;;;*** ;;;### (autoloads nil "bibtex-style" "textmodes/bibtex-style.el" -;;;;;; (22388 6389 80312 409000)) +;;;;;; (22676 23208 897521 550000)) ;;; Generated autoloads from textmodes/bibtex-style.el (autoload 'bibtex-style-mode "bibtex-style" "\ @@ -1993,8 +1995,8 @@ Major mode for editing BibTeX style files. ;;;*** -;;;### (autoloads nil "binhex" "mail/binhex.el" (22388 6375 470178 -;;;;;; 563000)) +;;;### (autoloads nil "binhex" "mail/binhex.el" (22676 23208 738522 +;;;;;; 199000)) ;;; Generated autoloads from mail/binhex.el (defconst binhex-begin-line "^:...............................................................$" "\ @@ -2018,8 +2020,8 @@ Binhex decode region between START and END. ;;;*** -;;;### (autoloads nil "blackbox" "play/blackbox.el" (22388 6383 172254 -;;;;;; 308000)) +;;;### (autoloads nil "blackbox" "play/blackbox.el" (22676 23208 +;;;;;; 829521 828000)) ;;; Generated autoloads from play/blackbox.el (autoload 'blackbox "blackbox" "\ @@ -2138,8 +2140,8 @@ a reflection. ;;;*** -;;;### (autoloads nil "bookmark" "bookmark.el" (22388 5702 411559 -;;;;;; 518000)) +;;;### (autoloads nil "bookmark" "bookmark.el" (22676 23208 544522 +;;;;;; 991000)) ;;; Generated autoloads from bookmark.el (define-key ctl-x-r-map "b" 'bookmark-jump) (define-key ctl-x-r-map "m" 'bookmark-set) @@ -2363,8 +2365,8 @@ Incremental search of bookmarks, hiding the non-matches as we go. ;;;*** -;;;### (autoloads nil "browse-url" "net/browse-url.el" (22587 10177 -;;;;;; 785473 832000)) +;;;### (autoloads nil "browse-url" "net/browse-url.el" (22676 23208 +;;;;;; 761522 105000)) ;;; Generated autoloads from net/browse-url.el (defvar browse-url-browser-function 'browse-url-default-browser "\ @@ -2712,7 +2714,7 @@ from `browse-url-elinks-wrapper'. ;;;*** -;;;### (autoloads nil "bs" "bs.el" (22388 5702 452559 922000)) +;;;### (autoloads nil "bs" "bs.el" (22676 23208 544522 991000)) ;;; Generated autoloads from bs.el (push (purecopy '(bs 1 17)) package--builtin-versions) @@ -2753,8 +2755,8 @@ name of buffer configuration. ;;;*** -;;;### (autoloads nil "bubbles" "play/bubbles.el" (22388 6383 181254 -;;;;;; 396000)) +;;;### (autoloads nil "bubbles" "play/bubbles.el" (22676 23208 829521 +;;;;;; 828000)) ;;; Generated autoloads from play/bubbles.el (autoload 'bubbles "bubbles" "\ @@ -2776,7 +2778,7 @@ columns on its right towards the left. ;;;*** ;;;### (autoloads nil "bug-reference" "progmodes/bug-reference.el" -;;;;;; (22388 6383 700259 500000)) +;;;;;; (22676 23208 838521 791000)) ;;; 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))))) @@ -2796,8 +2798,8 @@ Like `bug-reference-mode', but only buttonize in comments and strings. ;;;*** -;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (22388 -;;;;;; 6368 704112 24000)) +;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (22676 +;;;;;; 23208 602522 754000)) ;;; 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) @@ -2917,16 +2919,16 @@ and corresponding effects. ;;;*** -;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (22388 -;;;;;; 6367 842103 547000)) +;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (22676 +;;;;;; 23208 557522 938000)) ;;; Generated autoloads from calendar/cal-china.el (put 'calendar-chinese-time-zone 'risky-local-variable t) ;;;*** -;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (22388 6367 -;;;;;; 847103 596000)) +;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (22676 23208 +;;;;;; 558522 934000)) ;;; Generated autoloads from calendar/cal-dst.el (put 'calendar-daylight-savings-starts 'risky-local-variable t) @@ -2937,8 +2939,8 @@ and corresponding effects. ;;;*** -;;;### (autoloads nil "cal-hebrew" "calendar/cal-hebrew.el" (22388 -;;;;;; 6367 866103 783000)) +;;;### (autoloads nil "cal-hebrew" "calendar/cal-hebrew.el" (22676 +;;;;;; 23208 558522 934000)) ;;; Generated autoloads from calendar/cal-hebrew.el (autoload 'calendar-hebrew-list-yahrzeits "cal-hebrew" "\ @@ -2950,7 +2952,7 @@ from the cursor position. ;;;*** -;;;### (autoloads nil "calc" "calc/calc.el" (22388 6367 620101 364000)) +;;;### (autoloads nil "calc" "calc/calc.el" (22676 23208 555522 946000)) ;;; Generated autoloads from calc/calc.el (define-key ctl-x-map "*" 'calc-dispatch) @@ -3036,8 +3038,8 @@ See Info node `(calc)Defining Functions'. ;;;*** -;;;### (autoloads nil "calc-undo" "calc/calc-undo.el" (22388 6367 -;;;;;; 444099 633000)) +;;;### (autoloads nil "calc-undo" "calc/calc-undo.el" (22676 23208 +;;;;;; 553522 955000)) ;;; Generated autoloads from calc/calc-undo.el (autoload 'calc-undo "calc-undo" "\ @@ -3047,8 +3049,8 @@ See Info node `(calc)Defining Functions'. ;;;*** -;;;### (autoloads nil "calculator" "calculator.el" (22388 5702 517560 -;;;;;; 561000)) +;;;### (autoloads nil "calculator" "calculator.el" (22676 23208 557522 +;;;;;; 938000)) ;;; Generated autoloads from calculator.el (autoload 'calculator "calculator" "\ @@ -3059,8 +3061,8 @@ See the documentation for `calculator-mode' for more information. ;;;*** -;;;### (autoloads nil "calendar" "calendar/calendar.el" (22489 43024 -;;;;;; 125096 768000)) +;;;### (autoloads nil "calendar" "calendar/calendar.el" (22676 23208 +;;;;;; 561522 922000)) ;;; Generated autoloads from calendar/calendar.el (autoload 'calendar "calendar" "\ @@ -3103,8 +3105,8 @@ This function is suitable for execution in an init file. ;;;*** -;;;### (autoloads nil "canlock" "gnus/canlock.el" (22388 6371 657141 -;;;;;; 65000)) +;;;### (autoloads nil "canlock" "gnus/canlock.el" (22676 23208 662522 +;;;;;; 509000)) ;;; Generated autoloads from gnus/canlock.el (autoload 'canlock-insert-header "canlock" "\ @@ -3121,8 +3123,8 @@ it fails. ;;;*** -;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (22388 -;;;;;; 6384 111263 543000)) +;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (22676 +;;;;;; 23208 842521 774000)) ;;; Generated autoloads from progmodes/cc-engine.el (autoload 'c-guess-basic-syntax "cc-engine" "\ @@ -3132,8 +3134,8 @@ Return the syntactic context of the current line. ;;;*** -;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (22388 6384 -;;;;;; 327265 667000)) +;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (22676 23208 +;;;;;; 843521 771000)) ;;; Generated autoloads from progmodes/cc-guess.el (defvar c-guess-guessed-offsets-alist nil "\ @@ -3231,8 +3233,8 @@ the absolute file name of the file if STYLE-NAME is nil. ;;;*** -;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (22388 6384 -;;;;;; 496267 328000)) +;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (22676 23208 +;;;;;; 844521 766000)) ;;; Generated autoloads from progmodes/cc-mode.el (autoload 'c-initialize-cc-mode "cc-mode" "\ @@ -3390,8 +3392,8 @@ Key bindings: ;;;*** -;;;### (autoloads nil "cc-styles" "progmodes/cc-styles.el" (22388 -;;;;;; 6384 576268 115000)) +;;;### (autoloads nil "cc-styles" "progmodes/cc-styles.el" (22676 +;;;;;; 23208 844521 766000)) ;;; Generated autoloads from progmodes/cc-styles.el (autoload 'c-set-style "cc-styles" "\ @@ -3442,8 +3444,8 @@ and exists only for compatibility reasons. ;;;*** -;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (22388 6384 -;;;;;; 657268 912000)) +;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (22676 23208 +;;;;;; 845521 762000)) ;;; Generated autoloads from progmodes/cc-vars.el (put 'c-basic-offset 'safe-local-variable 'integerp) (put 'c-backslash-column 'safe-local-variable 'integerp) @@ -3451,8 +3453,8 @@ and exists only for compatibility reasons. ;;;*** -;;;### (autoloads nil "ccl" "international/ccl.el" (22388 6374 281166 -;;;;;; 870000)) +;;;### (autoloads nil "ccl" "international/ccl.el" (22676 23208 711522 +;;;;;; 309000)) ;;; Generated autoloads from international/ccl.el (autoload 'ccl-compile "ccl" "\ @@ -3745,8 +3747,8 @@ See the documentation of `define-ccl-program' for the detail of CCL program. ;;;*** -;;;### (autoloads nil "cconv" "emacs-lisp/cconv.el" (22388 6368 788112 -;;;;;; 850000)) +;;;### (autoloads nil "cconv" "emacs-lisp/cconv.el" (22676 23208 +;;;;;; 602522 754000)) ;;; Generated autoloads from emacs-lisp/cconv.el (autoload 'cconv-closure-convert "cconv" "\ @@ -3765,15 +3767,15 @@ Add the warnings that closure conversion would encounter. ;;;*** -;;;### (autoloads nil "cedet" "cedet/cedet.el" (22388 6368 422109 -;;;;;; 251000)) +;;;### (autoloads nil "cedet" "cedet/cedet.el" (22676 23208 566522 +;;;;;; 902000)) ;;; Generated autoloads from cedet/cedet.el (push (purecopy '(cedet 2 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "cfengine" "progmodes/cfengine.el" (22388 6384 -;;;;;; 702269 354000)) +;;;### (autoloads nil "cfengine" "progmodes/cfengine.el" (22676 23208 +;;;;;; 845521 762000)) ;;; Generated autoloads from progmodes/cfengine.el (push (purecopy '(cfengine 1 4)) package--builtin-versions) @@ -3802,8 +3804,8 @@ Choose `cfengine2-mode' or `cfengine3-mode' by buffer contents. ;;;*** -;;;### (autoloads nil "char-fold" "char-fold.el" (22388 5702 541560 -;;;;;; 796000)) +;;;### (autoloads nil "char-fold" "char-fold.el" (22676 23208 588522 +;;;;;; 812000)) ;;; Generated autoloads from char-fold.el (autoload 'char-fold-to-regexp "char-fold" "\ @@ -3822,15 +3824,15 @@ from which to start. ;;;*** -;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (22388 6368 788112 -;;;;;; 850000)) +;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (22676 23208 +;;;;;; 602522 754000)) ;;; Generated autoloads from emacs-lisp/chart.el (push (purecopy '(chart 0 2)) package--builtin-versions) ;;;*** ;;;### (autoloads nil "check-declare" "emacs-lisp/check-declare.el" -;;;;;; (22388 6368 813113 96000)) +;;;;;; (22676 23208 602522 754000)) ;;; Generated autoloads from emacs-lisp/check-declare.el (autoload 'check-declare-file "check-declare" "\ @@ -3847,8 +3849,8 @@ Returns non-nil if any false statements are found. ;;;*** -;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (22388 -;;;;;; 6368 849113 450000)) +;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (22676 +;;;;;; 23208 603522 750000)) ;;; Generated autoloads from emacs-lisp/checkdoc.el (push (purecopy '(checkdoc 0 6 2)) package--builtin-versions) (put 'checkdoc-force-docstrings-flag 'safe-local-variable #'booleanp) @@ -4058,8 +4060,8 @@ Find package keywords that aren't in `finder-known-keywords'. ;;;*** -;;;### (autoloads nil "china-util" "language/china-util.el" (22388 -;;;;;; 6374 954173 489000)) +;;;### (autoloads nil "china-util" "language/china-util.el" (22676 +;;;;;; 23208 719522 277000)) ;;; Generated autoloads from language/china-util.el (autoload 'decode-hz-region "china-util" "\ @@ -4096,8 +4098,8 @@ Encode the text in the current buffer to HZ. ;;;*** -;;;### (autoloads nil "chistory" "chistory.el" (22587 10177 762473 -;;;;;; 509000)) +;;;### (autoloads nil "chistory" "chistory.el" (22676 23208 589522 +;;;;;; 807000)) ;;; Generated autoloads from chistory.el (autoload 'repeat-matching-complex-command "chistory" "\ @@ -4136,8 +4138,8 @@ and runs the normal hook `command-history-hook'. ;;;*** -;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (22388 -;;;;;; 6368 936114 306000)) +;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (22676 +;;;;;; 23208 604522 746000)) ;;; Generated autoloads from emacs-lisp/cl-indent.el (autoload 'common-lisp-indent-function "cl-indent" "\ @@ -4220,8 +4222,8 @@ instead. ;;;*** -;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (22388 6368 -;;;;;; 949114 434000)) +;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (22676 23208 +;;;;;; 605522 742000)) ;;; Generated autoloads from emacs-lisp/cl-lib.el (push (purecopy '(cl-lib 1 0)) package--builtin-versions) @@ -4239,8 +4241,8 @@ a future Emacs interpreter will be able to use it.") ;;;*** -;;;### (autoloads nil "cmacexp" "progmodes/cmacexp.el" (22388 6384 -;;;;;; 705269 384000)) +;;;### (autoloads nil "cmacexp" "progmodes/cmacexp.el" (22676 23208 +;;;;;; 846521 758000)) ;;; Generated autoloads from progmodes/cmacexp.el (autoload 'c-macro-expand "cmacexp" "\ @@ -4260,8 +4262,8 @@ For use inside Lisp programs, see also `c-macro-expansion'. ;;;*** -;;;### (autoloads nil "cmuscheme" "cmuscheme.el" (22388 5702 612561 -;;;;;; 495000)) +;;;### (autoloads nil "cmuscheme" "cmuscheme.el" (22676 23208 589522 +;;;;;; 807000)) ;;; Generated autoloads from cmuscheme.el (autoload 'run-scheme "cmuscheme" "\ @@ -4281,7 +4283,7 @@ is run). ;;;*** -;;;### (autoloads nil "color" "color.el" (22388 5702 628561 652000)) +;;;### (autoloads nil "color" "color.el" (22676 23208 589522 807000)) ;;; Generated autoloads from color.el (autoload 'color-name-to-rgb "color" "\ @@ -4300,7 +4302,7 @@ If FRAME cannot display COLOR, return nil. ;;;*** -;;;### (autoloads nil "comint" "comint.el" (22388 5702 673562 95000)) +;;;### (autoloads nil "comint" "comint.el" (22676 23208 590522 803000)) ;;; Generated autoloads from comint.el (defvar comint-output-filter-functions '(ansi-color-process-output comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\ @@ -4401,8 +4403,8 @@ REGEXP-GROUP is the regular expression group in REGEXP to use. ;;;*** -;;;### (autoloads nil "compare-w" "vc/compare-w.el" (22388 6390 746328 -;;;;;; 793000)) +;;;### (autoloads nil "compare-w" "vc/compare-w.el" (22676 23208 +;;;;;; 920521 456000)) ;;; Generated autoloads from vc/compare-w.el (autoload 'compare-windows "compare-w" "\ @@ -4438,8 +4440,8 @@ on third call it again advances points to the next difference and so on. ;;;*** -;;;### (autoloads nil "compile" "progmodes/compile.el" (22388 6384 -;;;;;; 791270 230000)) +;;;### (autoloads nil "compile" "progmodes/compile.el" (22676 23208 +;;;;;; 846521 758000)) ;;; Generated autoloads from progmodes/compile.el (defvar compilation-mode-hook nil "\ @@ -4509,7 +4511,9 @@ You might also use mode hooks to specify it in certain modes, like this: (concat \"make -k \" (if buffer-file-name (shell-quote-argument - (file-name-sans-extension buffer-file-name))))))))") + (file-name-sans-extension buffer-file-name)))))))) + +It's often useful to leave a space at the end of the value.") (custom-autoload 'compile-command "compile" t) (put 'compile-command 'safe-local-variable (lambda (a) (and (stringp a) (or (not (boundp 'compilation-read-command)) compilation-read-command)))) @@ -4620,8 +4624,8 @@ This is the value of `next-error-function' in Compilation buffers. ;;;*** -;;;### (autoloads nil "completion" "completion.el" (22388 5702 734562 -;;;;;; 695000)) +;;;### (autoloads nil "completion" "completion.el" (22676 23208 590522 +;;;;;; 803000)) ;;; Generated autoloads from completion.el (defvar dynamic-completion-mode nil "\ @@ -4644,8 +4648,8 @@ if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "conf-mode" "textmodes/conf-mode.el" (22388 -;;;;;; 6389 244314 22000)) +;;;### (autoloads nil "conf-mode" "textmodes/conf-mode.el" (22676 +;;;;;; 23208 898521 546000)) ;;; Generated autoloads from textmodes/conf-mode.el (autoload 'conf-mode "conf-mode" "\ @@ -4800,8 +4804,8 @@ For details see `conf-mode'. Example: ;;;*** -;;;### (autoloads nil "cookie1" "play/cookie1.el" (22388 6383 214254 -;;;;;; 721000)) +;;;### (autoloads nil "cookie1" "play/cookie1.el" (22676 23208 829521 +;;;;;; 828000)) ;;; Generated autoloads from play/cookie1.el (autoload 'cookie "cookie1" "\ @@ -4829,8 +4833,8 @@ and subsequent calls on the same file won't go to disk. ;;;*** -;;;### (autoloads nil "copyright" "emacs-lisp/copyright.el" (22388 -;;;;;; 6369 72115 643000)) +;;;### (autoloads nil "copyright" "emacs-lisp/copyright.el" (22676 +;;;;;; 23208 606522 738000)) ;;; Generated autoloads from emacs-lisp/copyright.el (put 'copyright-at-end-flag 'safe-local-variable 'booleanp) (put 'copyright-names-regexp 'safe-local-variable 'stringp) @@ -4868,8 +4872,8 @@ If FIX is non-nil, run `copyright-fix-years' instead. ;;;*** -;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (22388 -;;;;;; 6385 218274 429000)) +;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (22676 +;;;;;; 23208 848521 750000)) ;;; Generated autoloads from progmodes/cperl-mode.el (put 'cperl-indent-level 'safe-local-variable 'integerp) (put 'cperl-brace-offset 'safe-local-variable 'integerp) @@ -5067,8 +5071,8 @@ Run a `perldoc' on the word around point. ;;;*** -;;;### (autoloads nil "cpp" "progmodes/cpp.el" (22388 6385 395276 -;;;;;; 170000)) +;;;### (autoloads nil "cpp" "progmodes/cpp.el" (22676 23208 848521 +;;;;;; 750000)) ;;; Generated autoloads from progmodes/cpp.el (autoload 'cpp-highlight-buffer "cpp" "\ @@ -5086,8 +5090,8 @@ Edit display information for cpp conditionals. ;;;*** -;;;### (autoloads nil "crm" "emacs-lisp/crm.el" (22388 6369 74115 -;;;;;; 663000)) +;;;### (autoloads nil "crm" "emacs-lisp/crm.el" (22676 23208 607522 +;;;;;; 734000)) ;;; Generated autoloads from emacs-lisp/crm.el (autoload 'completing-read-multiple "crm" "\ @@ -5113,8 +5117,8 @@ with empty strings removed. ;;;*** -;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (22388 6389 -;;;;;; 247314 52000)) +;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (22676 23208 +;;;;;; 898521 546000)) ;;; Generated autoloads from textmodes/css-mode.el (autoload 'css-mode "css-mode" "\ @@ -5130,8 +5134,8 @@ Major mode to edit \"Sassy CSS\" files. ;;;*** -;;;### (autoloads nil "cua-base" "emulation/cua-base.el" (22388 6369 -;;;;;; 804122 842000)) +;;;### (autoloads nil "cua-base" "emulation/cua-base.el" (22676 23208 +;;;;;; 619522 685000)) ;;; Generated autoloads from emulation/cua-base.el (defvar cua-mode nil "\ @@ -5177,8 +5181,8 @@ Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings. ;;;*** -;;;### (autoloads nil "cua-rect" "emulation/cua-rect.el" (22388 6369 -;;;;;; 824123 38000)) +;;;### (autoloads nil "cua-rect" "emulation/cua-rect.el" (22676 23208 +;;;;;; 620522 681000)) ;;; Generated autoloads from emulation/cua-rect.el (autoload 'cua-rectangle-mark-mode "cua-rect" "\ @@ -5190,7 +5194,7 @@ Activates the region if needed. Only lasts until the region is deactivated. ;;;*** ;;;### (autoloads nil "cursor-sensor" "emacs-lisp/cursor-sensor.el" -;;;;;; (22630 21356 365944 788000)) +;;;;;; (22676 23208 607522 734000)) ;;; Generated autoloads from emacs-lisp/cursor-sensor.el (defvar cursor-sensor-inhibit nil) @@ -5212,8 +5216,8 @@ is entering the area covered by the text-property property or leaving it. ;;;*** -;;;### (autoloads nil "cus-edit" "cus-edit.el" (22630 21356 359944 -;;;;;; 704000)) +;;;### (autoloads nil "cus-edit" "cus-edit.el" (22676 23208 591522 +;;;;;; 799000)) ;;; Generated autoloads from cus-edit.el (defvar custom-browse-sort-alphabetically nil "\ @@ -5533,8 +5537,8 @@ The format is suitable for use with `easy-menu-define'. ;;;*** -;;;### (autoloads nil "cus-theme" "cus-theme.el" (22388 5702 879564 -;;;;;; 121000)) +;;;### (autoloads nil "cus-theme" "cus-theme.el" (22676 23208 592522 +;;;;;; 795000)) ;;; Generated autoloads from cus-theme.el (autoload 'customize-create-theme "cus-theme" "\ @@ -5567,8 +5571,8 @@ omitted, a buffer named *Custom Themes* is used. ;;;*** -;;;### (autoloads nil "cvs-status" "vc/cvs-status.el" (22388 6390 -;;;;;; 747328 803000)) +;;;### (autoloads nil "cvs-status" "vc/cvs-status.el" (22676 23208 +;;;;;; 920521 456000)) ;;; Generated autoloads from vc/cvs-status.el (autoload 'cvs-status-mode "cvs-status" "\ @@ -5578,8 +5582,8 @@ Mode used for cvs status output. ;;;*** -;;;### (autoloads nil "cwarn" "progmodes/cwarn.el" (22388 6385 438276 -;;;;;; 593000)) +;;;### (autoloads nil "cwarn" "progmodes/cwarn.el" (22676 23208 848521 +;;;;;; 750000)) ;;; Generated autoloads from progmodes/cwarn.el (push (purecopy '(cwarn 1 3 1)) package--builtin-versions) @@ -5624,8 +5628,8 @@ See `cwarn-mode' for more information on Cwarn mode. ;;;*** -;;;### (autoloads nil "cyril-util" "language/cyril-util.el" (22388 -;;;;;; 6374 956173 509000)) +;;;### (autoloads nil "cyril-util" "language/cyril-util.el" (22676 +;;;;;; 23208 719522 277000)) ;;; Generated autoloads from language/cyril-util.el (autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\ @@ -5653,8 +5657,8 @@ If the argument is nil, we return the display table to its standard state. ;;;*** -;;;### (autoloads nil "dabbrev" "dabbrev.el" (22587 10177 762473 -;;;;;; 509000)) +;;;### (autoloads nil "dabbrev" "dabbrev.el" (22676 23208 592522 +;;;;;; 795000)) ;;; Generated autoloads from dabbrev.el (put 'dabbrev-case-fold-search 'risky-local-variable t) (put 'dabbrev-case-replace 'risky-local-variable t) @@ -5703,8 +5707,8 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]. ;;;*** -;;;### (autoloads nil "data-debug" "cedet/data-debug.el" (22388 6368 -;;;;;; 422109 251000)) +;;;### (autoloads nil "data-debug" "cedet/data-debug.el" (22676 23208 +;;;;;; 567522 897000)) ;;; Generated autoloads from cedet/data-debug.el (autoload 'data-debug-new-buffer "data-debug" "\ @@ -5714,7 +5718,7 @@ Create a new data-debug buffer with NAME. ;;;*** -;;;### (autoloads nil "dbus" "net/dbus.el" (22388 6377 308196 639000)) +;;;### (autoloads nil "dbus" "net/dbus.el" (22676 23208 761522 105000)) ;;; Generated autoloads from net/dbus.el (autoload 'dbus-handle-event "dbus" "\ @@ -5727,8 +5731,8 @@ If the HANDLER returns a `dbus-error', it is propagated as return message. ;;;*** -;;;### (autoloads nil "dcl-mode" "progmodes/dcl-mode.el" (22388 6385 -;;;;;; 479276 996000)) +;;;### (autoloads nil "dcl-mode" "progmodes/dcl-mode.el" (22676 23208 +;;;;;; 849521 746000)) ;;; Generated autoloads from progmodes/dcl-mode.el (autoload 'dcl-mode "dcl-mode" "\ @@ -5854,8 +5858,8 @@ There is some minimal font-lock support (see vars ;;;*** -;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (22388 6369 75115 -;;;;;; 673000)) +;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (22676 23208 +;;;;;; 607522 734000)) ;;; Generated autoloads from emacs-lisp/debug.el (setq debugger 'debug) @@ -5898,8 +5902,8 @@ To specify a nil argument interactively, exit with an empty minibuffer. ;;;*** -;;;### (autoloads nil "decipher" "play/decipher.el" (22388 6383 232254 -;;;;;; 898000)) +;;;### (autoloads nil "decipher" "play/decipher.el" (22676 23208 +;;;;;; 830521 824000)) ;;; Generated autoloads from play/decipher.el (autoload 'decipher "decipher" "\ @@ -5927,8 +5931,8 @@ The most useful commands are: ;;;*** -;;;### (autoloads nil "delim-col" "delim-col.el" (22388 5703 6565 -;;;;;; 369000)) +;;;### (autoloads nil "delim-col" "delim-col.el" (22676 23208 592522 +;;;;;; 795000)) ;;; Generated autoloads from delim-col.el (push (purecopy '(delim-col 2 1)) package--builtin-versions) @@ -5953,7 +5957,7 @@ START and END delimits the corners of text rectangle. ;;;*** -;;;### (autoloads nil "delsel" "delsel.el" (22388 5703 9565 399000)) +;;;### (autoloads nil "delsel" "delsel.el" (22676 23208 593522 791000)) ;;; Generated autoloads from delsel.el (defalias 'pending-delete-mode 'delete-selection-mode) @@ -5986,8 +5990,8 @@ information on adapting behavior of commands in Delete Selection mode. ;;;*** -;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (22388 6369 -;;;;;; 111116 27000)) +;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (22676 23208 +;;;;;; 607522 734000)) ;;; Generated autoloads from emacs-lisp/derived.el (autoload 'define-derived-mode "derived" "\ @@ -6053,8 +6057,8 @@ the first time the mode is used. ;;;*** -;;;### (autoloads nil "descr-text" "descr-text.el" (22388 5703 27565 -;;;;;; 576000)) +;;;### (autoloads nil "descr-text" "descr-text.el" (22676 23208 593522 +;;;;;; 791000)) ;;; Generated autoloads from descr-text.el (autoload 'describe-text-properties "descr-text" "\ @@ -6103,8 +6107,8 @@ This function is meant to be used as a value of ;;;*** -;;;### (autoloads nil "desktop" "desktop.el" (22630 21356 360944 -;;;;;; 718000)) +;;;### (autoloads nil "desktop" "desktop.el" (22676 23208 593522 +;;;;;; 791000)) ;;; Generated autoloads from desktop.el (defvar desktop-save-mode nil "\ @@ -6332,8 +6336,8 @@ Revert to the last loaded desktop. ;;;*** -;;;### (autoloads nil "deuglify" "gnus/deuglify.el" (22388 6371 666141 -;;;;;; 154000)) +;;;### (autoloads nil "deuglify" "gnus/deuglify.el" (22676 23208 +;;;;;; 663522 505000)) ;;; Generated autoloads from gnus/deuglify.el (autoload 'gnus-article-outlook-unwrap-lines "deuglify" "\ @@ -6365,8 +6369,8 @@ Deuglify broken Outlook (Express) articles and redisplay. ;;;*** -;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (22388 -;;;;;; 6368 72105 809000)) +;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (22676 +;;;;;; 23208 562522 918000)) ;;; Generated autoloads from calendar/diary-lib.el (autoload 'diary "diary-lib" "\ @@ -6408,7 +6412,7 @@ Major mode for editing the diary file. ;;;*** -;;;### (autoloads nil "diff" "vc/diff.el" (22388 6390 787329 197000)) +;;;### (autoloads nil "diff" "vc/diff.el" (22676 23208 920521 456000)) ;;; Generated autoloads from vc/diff.el (defvar diff-switches (purecopy "-u") "\ @@ -6456,8 +6460,8 @@ This requires the external program `diff' to be in your `exec-path'. ;;;*** -;;;### (autoloads nil "diff-mode" "vc/diff-mode.el" (22388 6390 785329 -;;;;;; 177000)) +;;;### (autoloads nil "diff-mode" "vc/diff-mode.el" (22676 23208 +;;;;;; 920521 456000)) ;;; Generated autoloads from vc/diff-mode.el (autoload 'diff-mode "diff-mode" "\ @@ -6489,7 +6493,7 @@ the mode if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "dig" "net/dig.el" (22388 6377 355197 101000)) +;;;### (autoloads nil "dig" "net/dig.el" (22676 23208 761522 105000)) ;;; Generated autoloads from net/dig.el (autoload 'dig "dig" "\ @@ -6500,7 +6504,7 @@ Optional arguments are passed to `dig-invoke'. ;;;*** -;;;### (autoloads nil "dired" "dired.el" (22630 21356 363944 760000)) +;;;### (autoloads nil "dired" "dired.el" (22676 23208 596522 779000)) ;;; Generated autoloads from dired.el (defvar dired-listing-switches (purecopy "-al") "\ @@ -6626,8 +6630,8 @@ Keybindings: ;;;*** -;;;### (autoloads nil "dirtrack" "dirtrack.el" (22388 5703 290568 -;;;;;; 163000)) +;;;### (autoloads nil "dirtrack" "dirtrack.el" (22676 23208 596522 +;;;;;; 779000)) ;;; Generated autoloads from dirtrack.el (autoload 'dirtrack-mode "dirtrack" "\ @@ -6657,8 +6661,8 @@ from `default-directory'. ;;;*** -;;;### (autoloads nil "disass" "emacs-lisp/disass.el" (22388 6369 -;;;;;; 111116 27000)) +;;;### (autoloads nil "disass" "emacs-lisp/disass.el" (22676 23208 +;;;;;; 607522 734000)) ;;; Generated autoloads from emacs-lisp/disass.el (autoload 'disassemble "disass" "\ @@ -6672,8 +6676,8 @@ redefine OBJECT if it is a symbol. ;;;*** -;;;### (autoloads nil "disp-table" "disp-table.el" (22388 5703 328568 -;;;;;; 537000)) +;;;### (autoloads nil "disp-table" "disp-table.el" (22676 23208 596522 +;;;;;; 779000)) ;;; Generated autoloads from disp-table.el (autoload 'make-display-table "disp-table" "\ @@ -6794,8 +6798,8 @@ in `.emacs'. ;;;*** -;;;### (autoloads nil "dissociate" "play/dissociate.el" (22388 6383 -;;;;;; 236254 937000)) +;;;### (autoloads nil "dissociate" "play/dissociate.el" (22676 23208 +;;;;;; 830521 824000)) ;;; Generated autoloads from play/dissociate.el (autoload 'dissociated-press "dissociate" "\ @@ -6811,7 +6815,7 @@ Default is 2. ;;;*** -;;;### (autoloads nil "dnd" "dnd.el" (22388 5703 329568 547000)) +;;;### (autoloads nil "dnd" "dnd.el" (22676 23208 596522 779000)) ;;; 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)) "\ @@ -6831,8 +6835,8 @@ if some action was made, or nil if the URL is ignored.") ;;;*** -;;;### (autoloads nil "dns-mode" "textmodes/dns-mode.el" (22388 6389 -;;;;;; 248314 61000)) +;;;### (autoloads nil "dns-mode" "textmodes/dns-mode.el" (22676 23208 +;;;;;; 898521 546000)) ;;; Generated autoloads from textmodes/dns-mode.el (autoload 'dns-mode "dns-mode" "\ @@ -6855,8 +6859,8 @@ Locate SOA record and increment the serial field. ;;;*** -;;;### (autoloads nil "doc-view" "doc-view.el" (22388 5703 332568 -;;;;;; 576000)) +;;;### (autoloads nil "doc-view" "doc-view.el" (22676 23208 597522 +;;;;;; 775000)) ;;; Generated autoloads from doc-view.el (autoload 'doc-view-mode-p "doc-view" "\ @@ -6902,8 +6906,8 @@ See the command `doc-view-mode' for more information on this mode. ;;;*** -;;;### (autoloads nil "doctor" "play/doctor.el" (22388 6383 237254 -;;;;;; 947000)) +;;;### (autoloads nil "doctor" "play/doctor.el" (22676 23208 830521 +;;;;;; 824000)) ;;; Generated autoloads from play/doctor.el (autoload 'doctor "doctor" "\ @@ -6913,7 +6917,7 @@ Switch to *doctor* buffer and start giving psychotherapy. ;;;*** -;;;### (autoloads nil "double" "double.el" (22388 5703 374568 989000)) +;;;### (autoloads nil "double" "double.el" (22676 23208 597522 775000)) ;;; Generated autoloads from double.el (autoload 'double-mode "double" "\ @@ -6929,8 +6933,8 @@ strings when pressed twice. See `double-map' for details. ;;;*** -;;;### (autoloads nil "dunnet" "play/dunnet.el" (22388 6383 302255 -;;;;;; 586000)) +;;;### (autoloads nil "dunnet" "play/dunnet.el" (22676 23208 831521 +;;;;;; 819000)) ;;; Generated autoloads from play/dunnet.el (push (purecopy '(dunnet 2 2)) package--builtin-versions) @@ -6941,8 +6945,8 @@ Switch to *dungeon* buffer and start game. ;;;*** -;;;### (autoloads nil "easy-mmode" "emacs-lisp/easy-mmode.el" (22630 -;;;;;; 21356 366944 802000)) +;;;### (autoloads nil "easy-mmode" "emacs-lisp/easy-mmode.el" (22676 +;;;;;; 23208 607522 734000)) ;;; Generated autoloads from emacs-lisp/easy-mmode.el (defalias 'easy-mmode-define-minor-mode 'define-minor-mode) @@ -7085,8 +7089,8 @@ CSS contains a list of syntax specifications of the form (CHAR . SYNTAX). ;;;*** -;;;### (autoloads nil "easymenu" "emacs-lisp/easymenu.el" (22388 -;;;;;; 6369 115116 66000)) +;;;### (autoloads nil "easymenu" "emacs-lisp/easymenu.el" (22676 +;;;;;; 23208 608522 730000)) ;;; Generated autoloads from emacs-lisp/easymenu.el (autoload 'easy-menu-define "easymenu" "\ @@ -7224,8 +7228,8 @@ To implement dynamic menus, either call this from ;;;*** -;;;### (autoloads nil "ebnf2ps" "progmodes/ebnf2ps.el" (22388 6385 -;;;;;; 685279 22000)) +;;;### (autoloads nil "ebnf2ps" "progmodes/ebnf2ps.el" (22676 23208 +;;;;;; 851521 738000)) ;;; Generated autoloads from progmodes/ebnf2ps.el (push (purecopy '(ebnf2ps 4 4)) package--builtin-versions) @@ -7490,8 +7494,8 @@ See `ebnf-style-database' documentation. ;;;*** -;;;### (autoloads nil "ebrowse" "progmodes/ebrowse.el" (22388 6385 -;;;;;; 813280 281000)) +;;;### (autoloads nil "ebrowse" "progmodes/ebrowse.el" (22676 23208 +;;;;;; 852521 734000)) ;;; Generated autoloads from progmodes/ebrowse.el (autoload 'ebrowse-tree-mode "ebrowse" "\ @@ -7639,8 +7643,8 @@ Display statistics for a class tree. ;;;*** -;;;### (autoloads nil "ebuff-menu" "ebuff-menu.el" (22388 5703 376569 -;;;;;; 8000)) +;;;### (autoloads nil "ebuff-menu" "ebuff-menu.el" (22676 23208 598522 +;;;;;; 771000)) ;;; Generated autoloads from ebuff-menu.el (autoload 'electric-buffer-list "ebuff-menu" "\ @@ -7672,8 +7676,8 @@ Run hooks in `electric-buffer-menu-mode-hook' on entry. ;;;*** -;;;### (autoloads nil "echistory" "echistory.el" (22388 5703 407569 -;;;;;; 313000)) +;;;### (autoloads nil "echistory" "echistory.el" (22676 23208 598522 +;;;;;; 771000)) ;;; Generated autoloads from echistory.el (autoload 'Electric-command-history-redo-expression "echistory" "\ @@ -7684,8 +7688,8 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. ;;;*** -;;;### (autoloads nil "ecomplete" "gnus/ecomplete.el" (22388 6371 -;;;;;; 666141 154000)) +;;;### (autoloads nil "ecomplete" "gnus/ecomplete.el" (22676 23208 +;;;;;; 663522 505000)) ;;; Generated autoloads from gnus/ecomplete.el (autoload 'ecomplete-setup "ecomplete" "\ @@ -7695,7 +7699,7 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. ;;;*** -;;;### (autoloads nil "ede" "cedet/ede.el" (22388 6368 441109 438000)) +;;;### (autoloads nil "ede" "cedet/ede.el" (22676 23208 567522 897000)) ;;; Generated autoloads from cedet/ede.el (push (purecopy '(ede 1 2)) package--builtin-versions) @@ -7722,8 +7726,8 @@ an EDE controlled project. ;;;*** -;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (22388 6369 -;;;;;; 157116 479000)) +;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (22676 23208 +;;;;;; 608522 730000)) ;;; Generated autoloads from emacs-lisp/edebug.el (defvar edebug-all-defs nil "\ @@ -7787,7 +7791,7 @@ Toggle edebugging of all forms. ;;;*** -;;;### (autoloads nil "ediff" "vc/ediff.el" (22388 6391 36331 645000)) +;;;### (autoloads nil "ediff" "vc/ediff.el" (22676 23208 924521 440000)) ;;; Generated autoloads from vc/ediff.el (push (purecopy '(ediff 2 81 4)) package--builtin-versions) @@ -8059,8 +8063,8 @@ With optional NODE, goes to that node. ;;;*** -;;;### (autoloads nil "ediff-help" "vc/ediff-help.el" (22388 6390 -;;;;;; 831329 629000)) +;;;### (autoloads nil "ediff-help" "vc/ediff-help.el" (22676 23208 +;;;;;; 921521 452000)) ;;; Generated autoloads from vc/ediff-help.el (autoload 'ediff-customize "ediff-help" "\ @@ -8070,8 +8074,8 @@ With optional NODE, goes to that node. ;;;*** -;;;### (autoloads nil "ediff-mult" "vc/ediff-mult.el" (22388 6390 -;;;;;; 876330 72000)) +;;;### (autoloads nil "ediff-mult" "vc/ediff-mult.el" (22676 23208 +;;;;;; 922521 448000)) ;;; Generated autoloads from vc/ediff-mult.el (autoload 'ediff-show-registry "ediff-mult" "\ @@ -8083,8 +8087,8 @@ Display Ediff's registry. ;;;*** -;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (22630 21356 -;;;;;; 413945 462000)) +;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (22676 23208 +;;;;;; 923521 444000)) ;;; Generated autoloads from vc/ediff-util.el (autoload 'ediff-toggle-multiframe "ediff-util" "\ @@ -8103,7 +8107,8 @@ To change the default, set the variable `ediff-use-toolbar-p', which see. ;;;*** -;;;### (autoloads nil "edmacro" "edmacro.el" (22388 5703 410569 343000)) +;;;### (autoloads nil "edmacro" "edmacro.el" (22676 23208 598522 +;;;;;; 771000)) ;;; Generated autoloads from edmacro.el (push (purecopy '(edmacro 2 1)) package--builtin-versions) @@ -8152,8 +8157,8 @@ or nil, use a compact 80-column format. ;;;*** -;;;### (autoloads nil "edt" "emulation/edt.el" (22587 10177 767473 -;;;;;; 579000)) +;;;### (autoloads nil "edt" "emulation/edt.el" (22676 23208 621522 +;;;;;; 677000)) ;;; Generated autoloads from emulation/edt.el (autoload 'edt-set-scroll-margins "edt" "\ @@ -8170,7 +8175,7 @@ Turn on EDT Emulation. ;;;*** -;;;### (autoloads nil "ehelp" "ehelp.el" (22388 5703 411569 352000)) +;;;### (autoloads nil "ehelp" "ehelp.el" (22676 23208 598522 771000)) ;;; Generated autoloads from ehelp.el (autoload 'with-electric-help "ehelp" "\ @@ -8206,15 +8211,15 @@ BUFFER is put back into its original major mode. ;;;*** -;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (22388 6369 284117 -;;;;;; 728000)) +;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (22676 23208 +;;;;;; 610522 722000)) ;;; Generated autoloads from emacs-lisp/eieio.el (push (purecopy '(eieio 1 4)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (22587 -;;;;;; 10177 766473 565000)) +;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (22676 +;;;;;; 23208 609522 726000)) ;;; Generated autoloads from emacs-lisp/eieio-core.el (push (purecopy '(eieio-core 1 4)) package--builtin-versions) @@ -8230,8 +8235,8 @@ It creates an autoload function for CNAME's constructor. ;;;*** -;;;### (autoloads nil "elec-pair" "elec-pair.el" (22388 5703 414569 -;;;;;; 382000)) +;;;### (autoloads nil "elec-pair" "elec-pair.el" (22676 23208 598522 +;;;;;; 771000)) ;;; Generated autoloads from elec-pair.el (defvar electric-pair-text-pairs '((34 . 34)) "\ @@ -8273,8 +8278,8 @@ Toggle `electric-pair-mode' only in this buffer. ;;;*** -;;;### (autoloads nil "elide-head" "elide-head.el" (22388 5703 450569 -;;;;;; 736000)) +;;;### (autoloads nil "elide-head" "elide-head.el" (22676 23208 598522 +;;;;;; 771000)) ;;; Generated autoloads from elide-head.el (autoload 'elide-head "elide-head" "\ @@ -8289,8 +8294,8 @@ This is suitable as an entry on `find-file-hook' or appropriate mode hooks. ;;;*** -;;;### (autoloads nil "elint" "emacs-lisp/elint.el" (22388 6369 300117 -;;;;;; 885000)) +;;;### (autoloads nil "elint" "emacs-lisp/elint.el" (22676 23208 +;;;;;; 610522 722000)) ;;; Generated autoloads from emacs-lisp/elint.el (autoload 'elint-file "elint" "\ @@ -8325,8 +8330,8 @@ optional prefix argument REINIT is non-nil. ;;;*** -;;;### (autoloads nil "elp" "emacs-lisp/elp.el" (22388 6369 328118 -;;;;;; 161000)) +;;;### (autoloads nil "elp" "emacs-lisp/elp.el" (22676 23208 610522 +;;;;;; 722000)) ;;; Generated autoloads from emacs-lisp/elp.el (autoload 'elp-instrument-function "elp" "\ @@ -8360,8 +8365,8 @@ displayed. ;;;*** -;;;### (autoloads nil "emacs-lock" "emacs-lock.el" (22388 5703 453569 -;;;;;; 765000)) +;;;### (autoloads nil "emacs-lock" "emacs-lock.el" (22676 23208 619522 +;;;;;; 685000)) ;;; Generated autoloads from emacs-lock.el (autoload 'emacs-lock-mode "emacs-lock" "\ @@ -8388,8 +8393,8 @@ Other values are interpreted as usual. ;;;*** -;;;### (autoloads nil "emacsbug" "mail/emacsbug.el" (22587 10177 -;;;;;; 779473 747000)) +;;;### (autoloads nil "emacsbug" "mail/emacsbug.el" (22676 23208 +;;;;;; 739522 195000)) ;;; Generated autoloads from mail/emacsbug.el (autoload 'report-emacs-bug "emacsbug" "\ @@ -8402,7 +8407,8 @@ Prompts for bug subject. Leaves you in a mail buffer. ;;;*** -;;;### (autoloads nil "emerge" "vc/emerge.el" (22388 6391 68331 960000)) +;;;### (autoloads nil "emerge" "vc/emerge.el" (22387 39328 661703 +;;;;;; 831000)) ;;; Generated autoloads from vc/emerge.el (autoload 'emerge-files "emerge" "\ @@ -8462,8 +8468,8 @@ Emerge two RCS revisions of a file, with another revision as ancestor. ;;;*** -;;;### (autoloads nil "enriched" "textmodes/enriched.el" (22388 6389 -;;;;;; 248314 61000)) +;;;### (autoloads nil "enriched" "textmodes/enriched.el" (22676 23208 +;;;;;; 898521 546000)) ;;; Generated autoloads from textmodes/enriched.el (autoload 'enriched-mode "enriched" "\ @@ -8498,7 +8504,7 @@ Commands: ;;;*** -;;;### (autoloads nil "epa" "epa.el" (22388 5703 490570 130000)) +;;;### (autoloads nil "epa" "epa.el" (22676 23208 624522 665000)) ;;; Generated autoloads from epa.el (autoload 'epa-list-keys "epa" "\ @@ -8686,8 +8692,8 @@ Insert selected KEYS after the point. ;;;*** -;;;### (autoloads nil "epa-dired" "epa-dired.el" (22388 5703 456569 -;;;;;; 795000)) +;;;### (autoloads nil "epa-dired" "epa-dired.el" (22676 23208 624522 +;;;;;; 665000)) ;;; Generated autoloads from epa-dired.el (autoload 'epa-dired-do-decrypt "epa-dired" "\ @@ -8712,8 +8718,8 @@ Encrypt marked files. ;;;*** -;;;### (autoloads nil "epa-file" "epa-file.el" (22388 5703 456569 -;;;;;; 795000)) +;;;### (autoloads nil "epa-file" "epa-file.el" (22676 23208 624522 +;;;;;; 665000)) ;;; Generated autoloads from epa-file.el (autoload 'epa-file-handler "epa-file" "\ @@ -8733,8 +8739,8 @@ Encrypt marked files. ;;;*** -;;;### (autoloads nil "epa-mail" "epa-mail.el" (22388 5703 459569 -;;;;;; 824000)) +;;;### (autoloads nil "epa-mail" "epa-mail.el" (22676 23208 624522 +;;;;;; 665000)) ;;; Generated autoloads from epa-mail.el (autoload 'epa-mail-mode "epa-mail" "\ @@ -8812,7 +8818,7 @@ if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "epg" "epg.el" (22388 5703 495570 179000)) +;;;### (autoloads nil "epg" "epg.el" (22676 23208 625522 661000)) ;;; Generated autoloads from epg.el (push (purecopy '(epg 1 0 0)) package--builtin-versions) @@ -8823,8 +8829,8 @@ Return a context object. ;;;*** -;;;### (autoloads nil "epg-config" "epg-config.el" (22388 5703 494570 -;;;;;; 169000)) +;;;### (autoloads nil "epg-config" "epg-config.el" (22676 23208 624522 +;;;;;; 665000)) ;;; Generated autoloads from epg-config.el (autoload 'epg-find-configuration "epg-config" "\ @@ -8858,7 +8864,7 @@ Look at CONFIG and try to expand GROUP. ;;;*** -;;;### (autoloads nil "erc" "erc/erc.el" (22388 6370 962134 230000)) +;;;### (autoloads nil "erc" "erc/erc.el" (22676 23208 634522 624000)) ;;; Generated autoloads from erc/erc.el (push (purecopy '(erc 5 3)) package--builtin-versions) @@ -8907,36 +8913,36 @@ Otherwise, connect to HOST:PORT as USER and /join CHANNEL. ;;;*** -;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (22388 -;;;;;; 6370 614130 808000)) +;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (22676 +;;;;;; 23208 627522 652000)) ;;; Generated autoloads from erc/erc-autoaway.el (autoload 'erc-autoaway-mode "erc-autoaway") ;;;*** -;;;### (autoloads nil "erc-button" "erc/erc-button.el" (22388 6370 -;;;;;; 674131 398000)) +;;;### (autoloads nil "erc-button" "erc/erc-button.el" (22676 23208 +;;;;;; 628522 648000)) ;;; Generated autoloads from erc/erc-button.el (autoload 'erc-button-mode "erc-button" nil t) ;;;*** -;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (22388 6370 -;;;;;; 700131 653000)) +;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (22676 23208 +;;;;;; 628522 648000)) ;;; Generated autoloads from erc/erc-capab.el (autoload 'erc-capab-identify-mode "erc-capab" nil t) ;;;*** -;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (22388 6370 -;;;;;; 700131 653000)) +;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (22676 23208 +;;;;;; 628522 648000)) ;;; Generated autoloads from erc/erc-compat.el (autoload 'erc-define-minor-mode "erc-compat") ;;;*** -;;;### (autoloads nil "erc-dcc" "erc/erc-dcc.el" (22388 6370 705131 -;;;;;; 703000)) +;;;### (autoloads nil "erc-dcc" "erc/erc-dcc.el" (22676 23208 629522 +;;;;;; 644000)) ;;; Generated autoloads from erc/erc-dcc.el (autoload 'erc-dcc-mode "erc-dcc") @@ -8966,14 +8972,14 @@ that subcommand. ;;;*** ;;;### (autoloads nil "erc-desktop-notifications" "erc/erc-desktop-notifications.el" -;;;;;; (22388 6370 744132 87000)) +;;;;;; (22676 23208 629522 644000)) ;;; Generated autoloads from erc/erc-desktop-notifications.el (autoload 'erc-notifications-mode "erc-desktop-notifications" "" t) ;;;*** -;;;### (autoloads nil "erc-ezbounce" "erc/erc-ezbounce.el" (22388 -;;;;;; 6370 745132 97000)) +;;;### (autoloads nil "erc-ezbounce" "erc/erc-ezbounce.el" (22676 +;;;;;; 23208 629522 644000)) ;;; Generated autoloads from erc/erc-ezbounce.el (autoload 'erc-cmd-ezb "erc-ezbounce" "\ @@ -9035,8 +9041,8 @@ Add EZBouncer convenience functions to ERC. ;;;*** -;;;### (autoloads nil "erc-fill" "erc/erc-fill.el" (22388 6370 745132 -;;;;;; 97000)) +;;;### (autoloads nil "erc-fill" "erc/erc-fill.el" (22676 23208 630522 +;;;;;; 640000)) ;;; Generated autoloads from erc/erc-fill.el (autoload 'erc-fill-mode "erc-fill" nil t) @@ -9048,8 +9054,8 @@ You can put this on `erc-insert-modify-hook' and/or `erc-send-modify-hook'. ;;;*** -;;;### (autoloads nil "erc-identd" "erc/erc-identd.el" (22388 6370 -;;;;;; 750132 146000)) +;;;### (autoloads nil "erc-identd" "erc/erc-identd.el" (22676 23208 +;;;;;; 630522 640000)) ;;; Generated autoloads from erc/erc-identd.el (autoload 'erc-identd-mode "erc-identd") @@ -9070,8 +9076,8 @@ system. ;;;*** -;;;### (autoloads nil "erc-imenu" "erc/erc-imenu.el" (22388 6370 -;;;;;; 751132 156000)) +;;;### (autoloads nil "erc-imenu" "erc/erc-imenu.el" (22676 23208 +;;;;;; 630522 640000)) ;;; Generated autoloads from erc/erc-imenu.el (autoload 'erc-create-imenu-index "erc-imenu" "\ @@ -9081,22 +9087,22 @@ system. ;;;*** -;;;### (autoloads nil "erc-join" "erc/erc-join.el" (22388 6370 751132 -;;;;;; 156000)) +;;;### (autoloads nil "erc-join" "erc/erc-join.el" (22676 23208 630522 +;;;;;; 640000)) ;;; Generated autoloads from erc/erc-join.el (autoload 'erc-autojoin-mode "erc-join" nil t) ;;;*** -;;;### (autoloads nil "erc-list" "erc/erc-list.el" (22388 6370 758132 -;;;;;; 225000)) +;;;### (autoloads nil "erc-list" "erc/erc-list.el" (22676 23208 630522 +;;;;;; 640000)) ;;; Generated autoloads from erc/erc-list.el (autoload 'erc-list-mode "erc-list") ;;;*** -;;;### (autoloads nil "erc-log" "erc/erc-log.el" (22388 6370 777132 -;;;;;; 411000)) +;;;### (autoloads nil "erc-log" "erc/erc-log.el" (22676 23208 630522 +;;;;;; 640000)) ;;; Generated autoloads from erc/erc-log.el (autoload 'erc-log-mode "erc-log" nil t) @@ -9125,8 +9131,8 @@ You can save every individual message by putting this function on ;;;*** -;;;### (autoloads nil "erc-match" "erc/erc-match.el" (22388 6370 -;;;;;; 796132 598000)) +;;;### (autoloads nil "erc-match" "erc/erc-match.el" (22676 23208 +;;;;;; 630522 640000)) ;;; Generated autoloads from erc/erc-match.el (autoload 'erc-match-mode "erc-match") @@ -9172,15 +9178,15 @@ Delete dangerous-host interactively to `erc-dangerous-hosts'. ;;;*** -;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (22388 6370 796132 -;;;;;; 598000)) +;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (22676 23208 630522 +;;;;;; 640000)) ;;; Generated autoloads from erc/erc-menu.el (autoload 'erc-menu-mode "erc-menu" nil t) ;;;*** -;;;### (autoloads nil "erc-netsplit" "erc/erc-netsplit.el" (22388 -;;;;;; 6370 798132 618000)) +;;;### (autoloads nil "erc-netsplit" "erc/erc-netsplit.el" (22676 +;;;;;; 23208 631522 636000)) ;;; Generated autoloads from erc/erc-netsplit.el (autoload 'erc-netsplit-mode "erc-netsplit") @@ -9191,8 +9197,8 @@ Show who's gone. ;;;*** -;;;### (autoloads nil "erc-networks" "erc/erc-networks.el" (22388 -;;;;;; 6370 799132 627000)) +;;;### (autoloads nil "erc-networks" "erc/erc-networks.el" (22676 +;;;;;; 23208 631522 636000)) ;;; Generated autoloads from erc/erc-networks.el (autoload 'erc-determine-network "erc-networks" "\ @@ -9209,8 +9215,8 @@ Interactively select a server to connect to using `erc-server-alist'. ;;;*** -;;;### (autoloads nil "erc-notify" "erc/erc-notify.el" (22388 6370 -;;;;;; 837133 1000)) +;;;### (autoloads nil "erc-notify" "erc/erc-notify.el" (22676 23208 +;;;;;; 631522 636000)) ;;; Generated autoloads from erc/erc-notify.el (autoload 'erc-notify-mode "erc-notify" nil t) @@ -9228,36 +9234,36 @@ with args, toggle notify status of people. ;;;*** -;;;### (autoloads nil "erc-page" "erc/erc-page.el" (22388 6370 837133 -;;;;;; 1000)) +;;;### (autoloads nil "erc-page" "erc/erc-page.el" (22676 23208 631522 +;;;;;; 636000)) ;;; Generated autoloads from erc/erc-page.el (autoload 'erc-page-mode "erc-page") ;;;*** -;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (22388 -;;;;;; 6370 839133 21000)) +;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (22676 +;;;;;; 23208 631522 636000)) ;;; Generated autoloads from erc/erc-pcomplete.el (autoload 'erc-completion-mode "erc-pcomplete" nil t) ;;;*** -;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (22388 6370 -;;;;;; 839133 21000)) +;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (22676 23208 +;;;;;; 631522 636000)) ;;; Generated autoloads from erc/erc-replace.el (autoload 'erc-replace-mode "erc-replace") ;;;*** -;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (22388 6370 841133 -;;;;;; 40000)) +;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (22676 23208 631522 +;;;;;; 636000)) ;;; Generated autoloads from erc/erc-ring.el (autoload 'erc-ring-mode "erc-ring" nil t) ;;;*** -;;;### (autoloads nil "erc-services" "erc/erc-services.el" (22388 -;;;;;; 6370 841133 40000)) +;;;### (autoloads nil "erc-services" "erc/erc-services.el" (22676 +;;;;;; 23208 631522 636000)) ;;; Generated autoloads from erc/erc-services.el (autoload 'erc-services-mode "erc-services" nil t) @@ -9274,15 +9280,15 @@ When called interactively, read the password using `read-passwd'. ;;;*** -;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (22388 6370 -;;;;;; 843133 60000)) +;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (22676 23208 +;;;;;; 631522 636000)) ;;; Generated autoloads from erc/erc-sound.el (autoload 'erc-sound-mode "erc-sound") ;;;*** -;;;### (autoloads nil "erc-speedbar" "erc/erc-speedbar.el" (22388 -;;;;;; 6370 843133 60000)) +;;;### (autoloads nil "erc-speedbar" "erc/erc-speedbar.el" (22676 +;;;;;; 23208 632522 632000)) ;;; Generated autoloads from erc/erc-speedbar.el (autoload 'erc-speedbar-browser "erc-speedbar" "\ @@ -9293,22 +9299,22 @@ This will add a speedbar major display mode. ;;;*** -;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (22388 -;;;;;; 6370 844133 70000)) +;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (22676 +;;;;;; 23208 632522 632000)) ;;; Generated autoloads from erc/erc-spelling.el (autoload 'erc-spelling-mode "erc-spelling" nil t) ;;;*** -;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (22388 6370 -;;;;;; 857133 197000)) +;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (22676 23208 +;;;;;; 632522 632000)) ;;; Generated autoloads from erc/erc-stamp.el (autoload 'erc-timestamp-mode "erc-stamp" nil t) ;;;*** -;;;### (autoloads nil "erc-track" "erc/erc-track.el" (22388 6370 -;;;;;; 879133 414000)) +;;;### (autoloads nil "erc-track" "erc/erc-track.el" (22676 23208 +;;;;;; 632522 632000)) ;;; Generated autoloads from erc/erc-track.el (defvar erc-track-minor-mode nil "\ @@ -9334,8 +9340,8 @@ keybindings will not do anything useful. ;;;*** -;;;### (autoloads nil "erc-truncate" "erc/erc-truncate.el" (22388 -;;;;;; 6370 879133 414000)) +;;;### (autoloads nil "erc-truncate" "erc/erc-truncate.el" (22676 +;;;;;; 23208 632522 632000)) ;;; Generated autoloads from erc/erc-truncate.el (autoload 'erc-truncate-mode "erc-truncate" nil t) @@ -9354,8 +9360,8 @@ Meant to be used in hooks, like `erc-insert-post-hook'. ;;;*** -;;;### (autoloads nil "erc-xdcc" "erc/erc-xdcc.el" (22388 6370 880133 -;;;;;; 424000)) +;;;### (autoloads nil "erc-xdcc" "erc/erc-xdcc.el" (22676 23208 632522 +;;;;;; 632000)) ;;; Generated autoloads from erc/erc-xdcc.el (autoload 'erc-xdcc-mode "erc-xdcc") @@ -9366,8 +9372,8 @@ Add a file to `erc-xdcc-files'. ;;;*** -;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (22388 6369 379118 -;;;;;; 662000)) +;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (22676 23208 611522 +;;;;;; 718000)) ;;; Generated autoloads from emacs-lisp/ert.el (autoload 'ert-deftest "ert" "\ @@ -9436,8 +9442,8 @@ Display the documentation for TEST-OR-TEST-NAME (a symbol or ert-test). ;;;*** -;;;### (autoloads nil "ert-x" "emacs-lisp/ert-x.el" (22388 6369 330118 -;;;;;; 180000)) +;;;### (autoloads nil "ert-x" "emacs-lisp/ert-x.el" (22676 23208 +;;;;;; 611522 718000)) ;;; Generated autoloads from emacs-lisp/ert-x.el (put 'ert-with-test-buffer 'lisp-indent-function 1) @@ -9449,8 +9455,8 @@ Kill all test buffers that are still live. ;;;*** -;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (22587 10177 -;;;;;; 768473 593000)) +;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (22676 23208 +;;;;;; 638522 607000)) ;;; Generated autoloads from eshell/esh-mode.el (autoload 'eshell-mode "esh-mode" "\ @@ -9460,8 +9466,8 @@ Emacs shell interactive mode. ;;;*** -;;;### (autoloads nil "eshell" "eshell/eshell.el" (22388 6370 441129 -;;;;;; 106000)) +;;;### (autoloads nil "eshell" "eshell/eshell.el" (22676 23208 639522 +;;;;;; 603000)) ;;; Generated autoloads from eshell/eshell.el (push (purecopy '(eshell 2 4 2)) package--builtin-versions) @@ -9496,8 +9502,8 @@ corresponding to a successful execution. ;;;*** -;;;### (autoloads nil "etags" "progmodes/etags.el" (22489 43024 128096 -;;;;;; 697000)) +;;;### (autoloads nil "etags" "progmodes/etags.el" (22676 23208 853521 +;;;;;; 730000)) ;;; Generated autoloads from progmodes/etags.el (defvar tags-file-name nil "\ @@ -9810,8 +9816,8 @@ for \\[find-tag] (which see). ;;;*** -;;;### (autoloads nil "ethio-util" "language/ethio-util.el" (22388 -;;;;;; 6374 991173 853000)) +;;;### (autoloads nil "ethio-util" "language/ethio-util.el" (22676 +;;;;;; 23208 720522 273000)) ;;; Generated autoloads from language/ethio-util.el (autoload 'setup-ethiopic-environment-internal "ethio-util" "\ @@ -9979,7 +9985,7 @@ With ARG, insert that many delimiters. ;;;*** -;;;### (autoloads nil "eudc" "net/eudc.el" (22388 6377 395197 495000)) +;;;### (autoloads nil "eudc" "net/eudc.el" (22676 23208 763522 97000)) ;;; Generated autoloads from net/eudc.el (autoload 'eudc-set-server "eudc" "\ @@ -10033,8 +10039,8 @@ This does nothing except loading eudc by autoload side-effect. ;;;*** -;;;### (autoloads nil "eudc-bob" "net/eudc-bob.el" (22388 6377 358197 -;;;;;; 131000)) +;;;### (autoloads nil "eudc-bob" "net/eudc-bob.el" (22676 23208 762522 +;;;;;; 101000)) ;;; Generated autoloads from net/eudc-bob.el (autoload 'eudc-display-generic-binary "eudc-bob" "\ @@ -10069,8 +10075,8 @@ Display a button for the JPEG DATA. ;;;*** -;;;### (autoloads nil "eudc-export" "net/eudc-export.el" (22388 6377 -;;;;;; 358197 131000)) +;;;### (autoloads nil "eudc-export" "net/eudc-export.el" (22676 23208 +;;;;;; 762522 101000)) ;;; Generated autoloads from net/eudc-export.el (autoload 'eudc-insert-record-at-point-into-bbdb "eudc-export" "\ @@ -10086,8 +10092,8 @@ Call `eudc-insert-record-at-point-into-bbdb' if on a record. ;;;*** -;;;### (autoloads nil "eudc-hotlist" "net/eudc-hotlist.el" (22388 -;;;;;; 6377 361197 160000)) +;;;### (autoloads nil "eudc-hotlist" "net/eudc-hotlist.el" (22676 +;;;;;; 23208 762522 101000)) ;;; Generated autoloads from net/eudc-hotlist.el (autoload 'eudc-edit-hotlist "eudc-hotlist" "\ @@ -10097,8 +10103,8 @@ Edit the hotlist of directory servers in a specialized buffer. ;;;*** -;;;### (autoloads nil "ewoc" "emacs-lisp/ewoc.el" (22388 6369 386118 -;;;;;; 731000)) +;;;### (autoloads nil "ewoc" "emacs-lisp/ewoc.el" (22676 23208 612522 +;;;;;; 714000)) ;;; Generated autoloads from emacs-lisp/ewoc.el (autoload 'ewoc-create "ewoc" "\ @@ -10124,7 +10130,7 @@ fourth arg NOSEP non-nil inhibits this. ;;;*** -;;;### (autoloads nil "eww" "net/eww.el" (22388 6377 438197 918000)) +;;;### (autoloads nil "eww" "net/eww.el" (22676 23208 763522 97000)) ;;; Generated autoloads from net/eww.el (defvar eww-suggest-uris '(eww-links-at-point url-get-url-at-point eww-current-url) "\ @@ -10171,8 +10177,8 @@ Display the bookmarks. ;;;*** -;;;### (autoloads nil "executable" "progmodes/executable.el" (22388 -;;;;;; 6386 103283 133000)) +;;;### (autoloads nil "executable" "progmodes/executable.el" (22676 +;;;;;; 23208 853521 730000)) ;;; Generated autoloads from progmodes/executable.el (autoload 'executable-command-find-posix-p "executable" "\ @@ -10207,7 +10213,7 @@ file modes. ;;;*** -;;;### (autoloads nil "expand" "expand.el" (22388 5703 536570 582000)) +;;;### (autoloads nil "expand" "expand.el" (22676 23208 639522 603000)) ;;; Generated autoloads from expand.el (autoload 'expand-add-abbrevs "expand" "\ @@ -10256,8 +10262,8 @@ This is used only in conjunction with `expand-add-abbrevs'. ;;;*** -;;;### (autoloads nil "f90" "progmodes/f90.el" (22630 21356 405945 -;;;;;; 349000)) +;;;### (autoloads nil "f90" "progmodes/f90.el" (22676 23208 853521 +;;;;;; 730000)) ;;; Generated autoloads from progmodes/f90.el (autoload 'f90-mode "f90" "\ @@ -10324,8 +10330,8 @@ with no args, if that value is non-nil. ;;;*** -;;;### (autoloads nil "face-remap" "face-remap.el" (22388 5703 600571 -;;;;;; 211000)) +;;;### (autoloads nil "face-remap" "face-remap.el" (22676 23208 639522 +;;;;;; 603000)) ;;; Generated autoloads from face-remap.el (autoload 'face-remap-add-relative "face-remap" "\ @@ -10484,8 +10490,8 @@ Besides the choice of face, it is the same as `buffer-face-mode'. ;;;*** -;;;### (autoloads nil "feedmail" "mail/feedmail.el" (22388 6375 510178 -;;;;;; 957000)) +;;;### (autoloads nil "feedmail" "mail/feedmail.el" (22387 39327 +;;;;;; 901706 545000)) ;;; Generated autoloads from mail/feedmail.el (push (purecopy '(feedmail 11)) package--builtin-versions) @@ -10539,7 +10545,7 @@ you can set `feedmail-queue-reminder-alist' to nil. ;;;*** -;;;### (autoloads nil "ffap" "ffap.el" (22630 21356 368944 830000)) +;;;### (autoloads nil "ffap" "ffap.el" (22676 23208 645522 579000)) ;;; Generated autoloads from ffap.el (autoload 'ffap-next "ffap" "\ @@ -10602,8 +10608,8 @@ Evaluate the forms in variable `ffap-bindings'. ;;;*** -;;;### (autoloads nil "filecache" "filecache.el" (22388 5703 754572 -;;;;;; 726000)) +;;;### (autoloads nil "filecache" "filecache.el" (22676 23208 645522 +;;;;;; 579000)) ;;; Generated autoloads from filecache.el (autoload 'file-cache-add-directory "filecache" "\ @@ -10660,8 +10666,8 @@ the name is considered already unique; only the second substitution ;;;*** -;;;### (autoloads nil "filenotify" "filenotify.el" (22388 5703 780572 -;;;;;; 982000)) +;;;### (autoloads nil "filenotify" "filenotify.el" (22676 23208 645522 +;;;;;; 579000)) ;;; Generated autoloads from filenotify.el (autoload 'file-notify-handle-event "filenotify" "\ @@ -10676,7 +10682,8 @@ Otherwise, signal a `file-notify-error'. ;;;*** -;;;### (autoloads nil "files-x" "files-x.el" (22388 5703 781572 992000)) +;;;### (autoloads nil "files-x" "files-x.el" (22676 23208 645522 +;;;;;; 579000)) ;;; Generated autoloads from files-x.el (autoload 'add-file-local-variable "files-x" "\ @@ -10741,8 +10748,8 @@ Copy directory-local variables to the -*- line. ;;;*** -;;;### (autoloads nil "filesets" "filesets.el" (22388 5704 35575 -;;;;;; 489000)) +;;;### (autoloads nil "filesets" "filesets.el" (22676 23208 648522 +;;;;;; 567000)) ;;; Generated autoloads from filesets.el (autoload 'filesets-init "filesets" "\ @@ -10753,8 +10760,8 @@ Set up hooks, load the cache file -- if existing -- and build the menu. ;;;*** -;;;### (autoloads nil "find-cmd" "find-cmd.el" (22388 5704 81575 -;;;;;; 942000)) +;;;### (autoloads nil "find-cmd" "find-cmd.el" (22676 23208 648522 +;;;;;; 567000)) ;;; Generated autoloads from find-cmd.el (push (purecopy '(find-cmd 0 6)) package--builtin-versions) @@ -10774,8 +10781,8 @@ result is a string that should be ready for the command line. ;;;*** -;;;### (autoloads nil "find-dired" "find-dired.el" (22388 5704 84575 -;;;;;; 971000)) +;;;### (autoloads nil "find-dired" "find-dired.el" (22676 23208 648522 +;;;;;; 567000)) ;;; Generated autoloads from find-dired.el (autoload 'find-dired "find-dired" "\ @@ -10815,8 +10822,8 @@ use in place of \"-ls\" as the final argument. ;;;*** -;;;### (autoloads nil "find-file" "find-file.el" (22388 5704 85575 -;;;;;; 981000)) +;;;### (autoloads nil "find-file" "find-file.el" (22676 23208 649522 +;;;;;; 563000)) ;;; 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)))) "\ @@ -10906,8 +10913,8 @@ Visit the file you click on in another window. ;;;*** -;;;### (autoloads nil "find-func" "emacs-lisp/find-func.el" (22587 -;;;;;; 10177 766473 565000)) +;;;### (autoloads nil "find-func" "emacs-lisp/find-func.el" (22676 +;;;;;; 23208 612522 714000)) ;;; Generated autoloads from emacs-lisp/find-func.el (autoload 'find-library "find-func" "\ @@ -11077,8 +11084,8 @@ Define some key bindings for the find-function family of functions. ;;;*** -;;;### (autoloads nil "find-lisp" "find-lisp.el" (22388 5704 89576 -;;;;;; 20000)) +;;;### (autoloads nil "find-lisp" "find-lisp.el" (22676 23208 649522 +;;;;;; 563000)) ;;; Generated autoloads from find-lisp.el (autoload 'find-lisp-find-dired "find-lisp" "\ @@ -11098,7 +11105,7 @@ Change the filter on a `find-lisp-find-dired' buffer to REGEXP. ;;;*** -;;;### (autoloads nil "finder" "finder.el" (22388 5704 124576 364000)) +;;;### (autoloads nil "finder" "finder.el" (22676 23208 649522 563000)) ;;; Generated autoloads from finder.el (push (purecopy '(finder 1 0)) package--builtin-versions) @@ -11120,8 +11127,8 @@ Find packages matching a given keyword. ;;;*** -;;;### (autoloads nil "flow-ctrl" "flow-ctrl.el" (22388 5704 128576 -;;;;;; 404000)) +;;;### (autoloads nil "flow-ctrl" "flow-ctrl.el" (22676 23208 649522 +;;;;;; 563000)) ;;; Generated autoloads from flow-ctrl.el (autoload 'enable-flow-control "flow-ctrl" "\ @@ -11142,8 +11149,8 @@ to get the effect of a C-q. ;;;*** -;;;### (autoloads nil "flow-fill" "gnus/flow-fill.el" (22388 6371 -;;;;;; 667141 163000)) +;;;### (autoloads nil "flow-fill" "gnus/flow-fill.el" (22676 23208 +;;;;;; 663522 505000)) ;;; Generated autoloads from gnus/flow-fill.el (autoload 'fill-flowed-encode "flow-fill" "\ @@ -11158,8 +11165,8 @@ to get the effect of a C-q. ;;;*** -;;;### (autoloads nil "flymake" "progmodes/flymake.el" (22388 6386 -;;;;;; 215284 234000)) +;;;### (autoloads nil "flymake" "progmodes/flymake.el" (22676 23208 +;;;;;; 854521 726000)) ;;; Generated autoloads from progmodes/flymake.el (push (purecopy '(flymake 0 3)) package--builtin-versions) @@ -11189,8 +11196,8 @@ Turn flymake mode off. ;;;*** -;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (22388 6389 -;;;;;; 329314 858000)) +;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (22676 23208 +;;;;;; 899521 542000)) ;;; Generated autoloads from textmodes/flyspell.el (autoload 'flyspell-prog-mode "flyspell" "\ @@ -11260,13 +11267,14 @@ Flyspell whole buffer. ;;;*** -;;;### (autoloads nil "foldout" "foldout.el" (22388 5704 128576 404000)) +;;;### (autoloads nil "foldout" "foldout.el" (22676 23208 649522 +;;;;;; 563000)) ;;; Generated autoloads from foldout.el (push (purecopy '(foldout 1 10)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "follow" "follow.el" (22388 5704 168576 797000)) +;;;### (autoloads nil "follow" "follow.el" (22676 23208 650522 559000)) ;;; Generated autoloads from follow.el (autoload 'turn-on-follow-mode "follow" "\ @@ -11388,8 +11396,8 @@ selected if the original window is the first one in the frame. ;;;*** -;;;### (autoloads nil "footnote" "mail/footnote.el" (22388 6375 555179 -;;;;;; 400000)) +;;;### (autoloads nil "footnote" "mail/footnote.el" (22676 23208 +;;;;;; 739522 195000)) ;;; Generated autoloads from mail/footnote.el (push (purecopy '(footnote 0 19)) package--builtin-versions) @@ -11408,7 +11416,7 @@ play around with the following keys: ;;;*** -;;;### (autoloads nil "forms" "forms.el" (22388 5704 290577 997000)) +;;;### (autoloads nil "forms" "forms.el" (22676 23208 651522 554000)) ;;; Generated autoloads from forms.el (autoload 'forms-mode "forms" "\ @@ -11444,8 +11452,8 @@ Visit a file in Forms mode in other window. ;;;*** -;;;### (autoloads nil "fortran" "progmodes/fortran.el" (22388 6386 -;;;;;; 297285 40000)) +;;;### (autoloads nil "fortran" "progmodes/fortran.el" (22676 23208 +;;;;;; 854521 726000)) ;;; Generated autoloads from progmodes/fortran.el (autoload 'fortran-mode "fortran" "\ @@ -11522,8 +11530,8 @@ with no args, if that value is non-nil. ;;;*** -;;;### (autoloads nil "fortune" "play/fortune.el" (22388 6383 331255 -;;;;;; 871000)) +;;;### (autoloads nil "fortune" "play/fortune.el" (22676 23208 831521 +;;;;;; 819000)) ;;; Generated autoloads from play/fortune.el (autoload 'fortune-add-fortune "fortune" "\ @@ -11571,8 +11579,8 @@ and choose the directory as the fortune-file. ;;;*** -;;;### (autoloads nil "frameset" "frameset.el" (22388 5704 371578 -;;;;;; 794000)) +;;;### (autoloads nil "frameset" "frameset.el" (22676 23208 652522 +;;;;;; 550000)) ;;; Generated autoloads from frameset.el (defvar frameset-session-filter-alist '((name . :never) (left . frameset-filter-iconified) (minibuffer . frameset-filter-minibuffer) (top . frameset-filter-iconified)) "\ @@ -11758,15 +11766,15 @@ Interactively, reads the register using `register-read-with-preview'. ;;;*** -;;;### (autoloads nil "gamegrid" "play/gamegrid.el" (22388 6383 335255 -;;;;;; 911000)) +;;;### (autoloads nil "gamegrid" "play/gamegrid.el" (22676 23208 +;;;;;; 831521 819000)) ;;; Generated autoloads from play/gamegrid.el (push (purecopy '(gamegrid 1 2)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (22587 10177 -;;;;;; 798474 14000)) +;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (22676 23208 +;;;;;; 855521 721000)) ;;; Generated autoloads from progmodes/gdb-mi.el (defvar gdb-enable-debug nil "\ @@ -11848,8 +11856,8 @@ detailed description of this mode. ;;;*** -;;;### (autoloads nil "generic" "emacs-lisp/generic.el" (22388 6369 -;;;;;; 423119 95000)) +;;;### (autoloads nil "generic" "emacs-lisp/generic.el" (22676 23208 +;;;;;; 613522 710000)) ;;; Generated autoloads from emacs-lisp/generic.el (defvar generic-mode-list nil "\ @@ -11929,8 +11937,8 @@ regular expression that can be used as an element of ;;;*** -;;;### (autoloads nil "glasses" "progmodes/glasses.el" (22388 6386 -;;;;;; 507287 105000)) +;;;### (autoloads nil "glasses" "progmodes/glasses.el" (22676 23208 +;;;;;; 855521 721000)) ;;; Generated autoloads from progmodes/glasses.el (autoload 'glasses-mode "glasses" "\ @@ -11944,8 +11952,8 @@ add virtual separators (like underscores) at places they belong to. ;;;*** -;;;### (autoloads nil "gmm-utils" "gnus/gmm-utils.el" (22388 6371 -;;;;;; 667141 163000)) +;;;### (autoloads nil "gmm-utils" "gnus/gmm-utils.el" (22676 23208 +;;;;;; 664522 501000)) ;;; Generated autoloads from gnus/gmm-utils.el (autoload 'gmm-regexp-concat "gmm-utils" "\ @@ -11999,7 +12007,7 @@ DEFAULT-MAP specifies the default key map for ICON-LIST. ;;;*** -;;;### (autoloads nil "gnus" "gnus/gnus.el" (22388 6373 163155 876000)) +;;;### (autoloads nil "gnus" "gnus/gnus.el" (22676 23208 681522 432000)) ;;; Generated autoloads from gnus/gnus.el (push (purecopy '(gnus 5 13)) package--builtin-versions) (when (fboundp 'custom-autoload) @@ -12049,8 +12057,8 @@ prompt the user for the name of an NNTP server to use. ;;;*** -;;;### (autoloads nil "gnus-agent" "gnus/gnus-agent.el" (22388 6371 -;;;;;; 716141 645000)) +;;;### (autoloads nil "gnus-agent" "gnus/gnus-agent.el" (22676 23208 +;;;;;; 664522 501000)) ;;; Generated autoloads from gnus/gnus-agent.el (autoload 'gnus-unplugged "gnus-agent" "\ @@ -12140,8 +12148,8 @@ CLEAN is obsolete and ignored. ;;;*** -;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (22587 10177 -;;;;;; 773473 663000)) +;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (22676 23208 +;;;;;; 666522 493000)) ;;; Generated autoloads from gnus/gnus-art.el (autoload 'gnus-article-prepare-display "gnus-art" "\ @@ -12151,8 +12159,8 @@ Make the current buffer look like a nice article. ;;;*** -;;;### (autoloads nil "gnus-bookmark" "gnus/gnus-bookmark.el" (22388 -;;;;;; 6371 929143 740000)) +;;;### (autoloads nil "gnus-bookmark" "gnus/gnus-bookmark.el" (22676 +;;;;;; 23208 667522 489000)) ;;; Generated autoloads from gnus/gnus-bookmark.el (autoload 'gnus-bookmark-set "gnus-bookmark" "\ @@ -12175,8 +12183,8 @@ deletion, or > if it is flagged for displaying. ;;;*** -;;;### (autoloads nil "gnus-cache" "gnus/gnus-cache.el" (22388 6371 -;;;;;; 944143 887000)) +;;;### (autoloads nil "gnus-cache" "gnus/gnus-cache.el" (22676 23208 +;;;;;; 667522 489000)) ;;; Generated autoloads from gnus/gnus-cache.el (autoload 'gnus-jog-cache "gnus-cache" "\ @@ -12217,8 +12225,8 @@ supported. ;;;*** -;;;### (autoloads nil "gnus-delay" "gnus/gnus-delay.el" (22388 6372 -;;;;;; 21144 645000)) +;;;### (autoloads nil "gnus-delay" "gnus/gnus-delay.el" (22676 23208 +;;;;;; 668522 485000)) ;;; Generated autoloads from gnus/gnus-delay.el (autoload 'gnus-delay-article "gnus-delay" "\ @@ -12253,8 +12261,8 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil. ;;;*** -;;;### (autoloads nil "gnus-diary" "gnus/gnus-diary.el" (22388 6372 -;;;;;; 22144 655000)) +;;;### (autoloads nil "gnus-diary" "gnus/gnus-diary.el" (22676 23208 +;;;;;; 668522 485000)) ;;; Generated autoloads from gnus/gnus-diary.el (autoload 'gnus-user-format-function-d "gnus-diary" "\ @@ -12269,8 +12277,8 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil. ;;;*** -;;;### (autoloads nil "gnus-dired" "gnus/gnus-dired.el" (22388 6372 -;;;;;; 22144 655000)) +;;;### (autoloads nil "gnus-dired" "gnus/gnus-dired.el" (22676 23208 +;;;;;; 668522 485000)) ;;; Generated autoloads from gnus/gnus-dired.el (autoload 'turn-on-gnus-dired-mode "gnus-dired" "\ @@ -12280,8 +12288,8 @@ Convenience method to turn on gnus-dired-mode. ;;;*** -;;;### (autoloads nil "gnus-draft" "gnus/gnus-draft.el" (22388 6372 -;;;;;; 23144 664000)) +;;;### (autoloads nil "gnus-draft" "gnus/gnus-draft.el" (22676 23208 +;;;;;; 668522 485000)) ;;; Generated autoloads from gnus/gnus-draft.el (autoload 'gnus-draft-reminder "gnus-draft" "\ @@ -12291,8 +12299,8 @@ Reminder user if there are unsent drafts. ;;;*** -;;;### (autoloads nil "gnus-fun" "gnus/gnus-fun.el" (22388 6372 81145 -;;;;;; 235000)) +;;;### (autoloads nil "gnus-fun" "gnus/gnus-fun.el" (22676 23208 +;;;;;; 669522 481000)) ;;; Generated autoloads from gnus/gnus-fun.el (autoload 'gnus--random-face-with-type "gnus-fun" "\ @@ -12357,8 +12365,8 @@ Insert a random Face header from `gnus-face-directory'. ;;;*** -;;;### (autoloads nil "gnus-gravatar" "gnus/gnus-gravatar.el" (22388 -;;;;;; 6372 82145 245000)) +;;;### (autoloads nil "gnus-gravatar" "gnus/gnus-gravatar.el" (22676 +;;;;;; 23208 669522 481000)) ;;; Generated autoloads from gnus/gnus-gravatar.el (autoload 'gnus-treat-from-gravatar "gnus-gravatar" "\ @@ -12375,8 +12383,8 @@ If gravatars are already displayed, remove them. ;;;*** -;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (22388 6372 -;;;;;; 124145 658000)) +;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (22676 23208 +;;;;;; 670522 477000)) ;;; Generated autoloads from gnus/gnus-group.el (autoload 'gnus-fetch-group "gnus-group" "\ @@ -12393,8 +12401,8 @@ Pop up a frame and enter GROUP. ;;;*** -;;;### (autoloads nil "gnus-html" "gnus/gnus-html.el" (22388 6372 -;;;;;; 166146 71000)) +;;;### (autoloads nil "gnus-html" "gnus/gnus-html.el" (22676 23208 +;;;;;; 670522 477000)) ;;; Generated autoloads from gnus/gnus-html.el (autoload 'gnus-article-html "gnus-html" "\ @@ -12409,8 +12417,8 @@ Pop up a frame and enter GROUP. ;;;*** -;;;### (autoloads nil "gnus-kill" "gnus/gnus-kill.el" (22630 21356 -;;;;;; 373944 901000)) +;;;### (autoloads nil "gnus-kill" "gnus/gnus-kill.el" (22676 23208 +;;;;;; 671522 473000)) ;;; Generated autoloads from gnus/gnus-kill.el (defalias 'gnus-batch-kill 'gnus-batch-score) @@ -12423,8 +12431,8 @@ Usage: emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score ;;;*** -;;;### (autoloads nil "gnus-ml" "gnus/gnus-ml.el" (22388 6372 250146 -;;;;;; 897000)) +;;;### (autoloads nil "gnus-ml" "gnus/gnus-ml.el" (22676 23208 672522 +;;;;;; 469000)) ;;; Generated autoloads from gnus/gnus-ml.el (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" "\ @@ -12447,8 +12455,8 @@ Minor mode for providing mailing-list commands. ;;;*** -;;;### (autoloads nil "gnus-mlspl" "gnus/gnus-mlspl.el" (22388 6372 -;;;;;; 251146 907000)) +;;;### (autoloads nil "gnus-mlspl" "gnus/gnus-mlspl.el" (22676 23208 +;;;;;; 672522 469000)) ;;; Generated autoloads from gnus/gnus-mlspl.el (autoload 'gnus-group-split-setup "gnus-mlspl" "\ @@ -12548,8 +12556,8 @@ Calling (gnus-group-split-fancy nil nil \"mail.others\") returns: ;;;*** -;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (22388 6372 285147 -;;;;;; 241000)) +;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (22676 23208 +;;;;;; 672522 469000)) ;;; Generated autoloads from gnus/gnus-msg.el (autoload 'gnus-msg-mail "gnus-msg" "\ @@ -12576,7 +12584,7 @@ Like `message-reply'. ;;;*** ;;;### (autoloads nil "gnus-notifications" "gnus/gnus-notifications.el" -;;;;;; (22388 6372 289147 280000)) +;;;;;; (22676 23208 672522 469000)) ;;; Generated autoloads from gnus/gnus-notifications.el (autoload 'gnus-notifications "gnus-notifications" "\ @@ -12592,8 +12600,8 @@ This is typically a function to add in ;;;*** -;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (22388 6372 -;;;;;; 309147 477000)) +;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (22676 23208 +;;;;;; 672522 469000)) ;;; Generated autoloads from gnus/gnus-picon.el (autoload 'gnus-treat-from-picon "gnus-picon" "\ @@ -12616,8 +12624,8 @@ If picons are already displayed, remove them. ;;;*** -;;;### (autoloads nil "gnus-range" "gnus/gnus-range.el" (22388 6372 -;;;;;; 328147 664000)) +;;;### (autoloads nil "gnus-range" "gnus/gnus-range.el" (22676 23208 +;;;;;; 672522 469000)) ;;; Generated autoloads from gnus/gnus-range.el (autoload 'gnus-sorted-difference "gnus-range" "\ @@ -12684,8 +12692,8 @@ Add NUM into sorted LIST by side effect. ;;;*** -;;;### (autoloads nil "gnus-registry" "gnus/gnus-registry.el" (22388 -;;;;;; 6372 330147 684000)) +;;;### (autoloads nil "gnus-registry" "gnus/gnus-registry.el" (22676 +;;;;;; 23208 673522 465000)) ;;; Generated autoloads from gnus/gnus-registry.el (autoload 'gnus-registry-initialize "gnus-registry" "\ @@ -12700,8 +12708,8 @@ Install the registry hooks. ;;;*** -;;;### (autoloads nil "gnus-sieve" "gnus/gnus-sieve.el" (22388 6372 -;;;;;; 437148 736000)) +;;;### (autoloads nil "gnus-sieve" "gnus/gnus-sieve.el" (22676 23208 +;;;;;; 674522 460000)) ;;; Generated autoloads from gnus/gnus-sieve.el (autoload 'gnus-sieve-update "gnus-sieve" "\ @@ -12728,8 +12736,8 @@ See the documentation for these variables and functions for details. ;;;*** -;;;### (autoloads nil "gnus-spec" "gnus/gnus-spec.el" (22388 6372 -;;;;;; 457148 932000)) +;;;### (autoloads nil "gnus-spec" "gnus/gnus-spec.el" (22676 23208 +;;;;;; 674522 460000)) ;;; Generated autoloads from gnus/gnus-spec.el (autoload 'gnus-update-format "gnus-spec" "\ @@ -12739,8 +12747,8 @@ Update the format specification near point. ;;;*** -;;;### (autoloads nil "gnus-start" "gnus/gnus-start.el" (22388 6372 -;;;;;; 548149 827000)) +;;;### (autoloads nil "gnus-start" "gnus/gnus-start.el" (22676 23208 +;;;;;; 675522 456000)) ;;; Generated autoloads from gnus/gnus-start.el (autoload 'gnus-declare-backend "gnus-start" "\ @@ -12750,8 +12758,8 @@ Declare back end NAME with ABILITIES as a Gnus back end. ;;;*** -;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (22388 6372 777152 -;;;;;; 80000)) +;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (22676 23208 +;;;;;; 678522 444000)) ;;; Generated autoloads from gnus/gnus-sum.el (autoload 'gnus-summary-bookmark-jump "gnus-sum" "\ @@ -12762,8 +12770,8 @@ BOOKMARK is a bookmark name or a bookmark record. ;;;*** -;;;### (autoloads nil "gnus-sync" "gnus/gnus-sync.el" (22388 6372 -;;;;;; 949153 772000)) +;;;### (autoloads nil "gnus-sync" "gnus/gnus-sync.el" (22676 23208 +;;;;;; 678522 444000)) ;;; Generated autoloads from gnus/gnus-sync.el (autoload 'gnus-sync-initialize "gnus-sync" "\ @@ -12778,8 +12786,8 @@ Install the sync hooks. ;;;*** -;;;### (autoloads nil "gnus-win" "gnus/gnus-win.el" (22388 6373 115155 -;;;;;; 403000)) +;;;### (autoloads nil "gnus-win" "gnus/gnus-win.el" (22676 23208 +;;;;;; 681522 432000)) ;;; Generated autoloads from gnus/gnus-win.el (autoload 'gnus-add-configuration "gnus-win" "\ @@ -12789,8 +12797,8 @@ Add the window configuration CONF to `gnus-buffer-configuration'. ;;;*** -;;;### (autoloads nil "gnutls" "net/gnutls.el" (22388 6377 479198 -;;;;;; 321000)) +;;;### (autoloads nil "gnutls" "net/gnutls.el" (22676 23208 763522 +;;;;;; 97000)) ;;; Generated autoloads from net/gnutls.el (defvar gnutls-min-prime-bits 256 "\ @@ -12806,8 +12814,8 @@ A value of nil says to use the default GnuTLS value.") ;;;*** -;;;### (autoloads nil "gomoku" "play/gomoku.el" (22388 6383 373256 -;;;;;; 284000)) +;;;### (autoloads nil "gomoku" "play/gomoku.el" (22676 23208 831521 +;;;;;; 819000)) ;;; Generated autoloads from play/gomoku.el (autoload 'gomoku "gomoku" "\ @@ -12833,8 +12841,8 @@ Use \\[describe-mode] for more info. ;;;*** -;;;### (autoloads nil "goto-addr" "net/goto-addr.el" (22388 6377 -;;;;;; 479198 321000)) +;;;### (autoloads nil "goto-addr" "net/goto-addr.el" (22676 23208 +;;;;;; 764522 93000)) ;;; Generated autoloads from net/goto-addr.el (define-obsolete-function-alias 'goto-address-at-mouse 'goto-address-at-point "22.1") @@ -12875,8 +12883,8 @@ Like `goto-address-mode', but only for comments and strings. ;;;*** -;;;### (autoloads nil "gravatar" "gnus/gravatar.el" (22388 6373 208156 -;;;;;; 318000)) +;;;### (autoloads nil "gravatar" "gnus/gravatar.el" (22676 23208 +;;;;;; 682522 428000)) ;;; Generated autoloads from gnus/gravatar.el (autoload 'gravatar-retrieve "gravatar" "\ @@ -12892,8 +12900,8 @@ Retrieve MAIL-ADDRESS gravatar and returns it. ;;;*** -;;;### (autoloads nil "grep" "progmodes/grep.el" (22388 6386 514287 -;;;;;; 174000)) +;;;### (autoloads nil "grep" "progmodes/grep.el" (22676 23208 855521 +;;;;;; 721000)) ;;; Generated autoloads from progmodes/grep.el (defvar grep-window-height nil "\ @@ -13060,7 +13068,7 @@ file name to `*.gz', and sets `grep-highlight-matches' to `always'. ;;;*** -;;;### (autoloads nil "gs" "gs.el" (22388 5704 415579 226000)) +;;;### (autoloads nil "gs" "gs.el" (22676 23208 702522 346000)) ;;; Generated autoloads from gs.el (autoload 'gs-load-image "gs" "\ @@ -13073,8 +13081,8 @@ the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful. ;;;*** -;;;### (autoloads nil "gud" "progmodes/gud.el" (22431 53468 725634 -;;;;;; 240000)) +;;;### (autoloads nil "gud" "progmodes/gud.el" (22676 23208 856521 +;;;;;; 717000)) ;;; Generated autoloads from progmodes/gud.el (autoload 'gud-gdb "gud" "\ @@ -13176,8 +13184,8 @@ it if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (22489 43024 126096 -;;;;;; 745000)) +;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (22676 23208 613522 +;;;;;; 710000)) ;;; Generated autoloads from emacs-lisp/gv.el (autoload 'gv-get "gv" "\ @@ -13279,8 +13287,8 @@ binding mode. ;;;*** -;;;### (autoloads nil "handwrite" "play/handwrite.el" (22388 6383 -;;;;;; 391256 461000)) +;;;### (autoloads nil "handwrite" "play/handwrite.el" (22676 23208 +;;;;;; 832521 815000)) ;;; Generated autoloads from play/handwrite.el (autoload 'handwrite "handwrite" "\ @@ -13297,8 +13305,8 @@ Variables: `handwrite-linespace' (default 12) ;;;*** -;;;### (autoloads nil "hanoi" "play/hanoi.el" (22388 6383 415256 -;;;;;; 698000)) +;;;### (autoloads nil "hanoi" "play/hanoi.el" (22387 39328 264705 +;;;;;; 249000)) ;;; Generated autoloads from play/hanoi.el (autoload 'hanoi "hanoi" "\ @@ -13325,8 +13333,8 @@ to be updated. ;;;*** -;;;### (autoloads nil "hashcash" "mail/hashcash.el" (22388 6375 557179 -;;;;;; 420000)) +;;;### (autoloads nil "hashcash" "mail/hashcash.el" (22676 23208 +;;;;;; 739522 195000)) ;;; Generated autoloads from mail/hashcash.el (autoload 'hashcash-insert-payment "hashcash" "\ @@ -13368,8 +13376,8 @@ Prefix arg sets default accept amount temporarily. ;;;*** -;;;### (autoloads nil "help-at-pt" "help-at-pt.el" (22388 5704 419579 -;;;;;; 265000)) +;;;### (autoloads nil "help-at-pt" "help-at-pt.el" (22676 23208 702522 +;;;;;; 346000)) ;;; Generated autoloads from help-at-pt.el (autoload 'help-at-pt-string "help-at-pt" "\ @@ -13496,8 +13504,8 @@ different regions. With numeric argument ARG, behaves like ;;;*** -;;;### (autoloads nil "help-fns" "help-fns.el" (22587 10177 774473 -;;;;;; 677000)) +;;;### (autoloads nil "help-fns" "help-fns.el" (22676 23208 702522 +;;;;;; 346000)) ;;; Generated autoloads from help-fns.el (autoload 'describe-function "help-fns" "\ @@ -13585,8 +13593,8 @@ Produce a texinfo buffer with sorted doc-strings from the DOC file. ;;;*** -;;;### (autoloads nil "help-macro" "help-macro.el" (22388 5704 462579 -;;;;;; 689000)) +;;;### (autoloads nil "help-macro" "help-macro.el" (22676 23208 702522 +;;;;;; 346000)) ;;; Generated autoloads from help-macro.el (defvar three-step-help nil "\ @@ -13600,8 +13608,8 @@ gives the window that lists the options.") ;;;*** -;;;### (autoloads nil "help-mode" "help-mode.el" (22587 10177 774473 -;;;;;; 677000)) +;;;### (autoloads nil "help-mode" "help-mode.el" (22676 23208 702522 +;;;;;; 346000)) ;;; Generated autoloads from help-mode.el (autoload 'help-mode "help-mode" "\ @@ -13702,8 +13710,8 @@ BOOKMARK is a bookmark name or a bookmark record. ;;;*** -;;;### (autoloads nil "helper" "emacs-lisp/helper.el" (22388 6369 -;;;;;; 433119 193000)) +;;;### (autoloads nil "helper" "emacs-lisp/helper.el" (22676 23208 +;;;;;; 613522 710000)) ;;; Generated autoloads from emacs-lisp/helper.el (autoload 'Helper-describe-bindings "helper" "\ @@ -13718,7 +13726,7 @@ Provide help for current mode. ;;;*** -;;;### (autoloads nil "hexl" "hexl.el" (22388 5704 524580 299000)) +;;;### (autoloads nil "hexl" "hexl.el" (22676 23208 702522 346000)) ;;; Generated autoloads from hexl.el (autoload 'hexl-mode "hexl" "\ @@ -13812,7 +13820,8 @@ This discards the buffer's undo information. ;;;*** -;;;### (autoloads nil "hi-lock" "hi-lock.el" (22388 5704 575580 800000)) +;;;### (autoloads nil "hi-lock" "hi-lock.el" (22676 23208 703522 +;;;;;; 342000)) ;;; Generated autoloads from hi-lock.el (autoload 'hi-lock-mode "hi-lock" "\ @@ -13980,8 +13989,8 @@ be found in variable `hi-lock-interactive-patterns'. ;;;*** -;;;### (autoloads nil "hideif" "progmodes/hideif.el" (22388 6386 -;;;;;; 684288 846000)) +;;;### (autoloads nil "hideif" "progmodes/hideif.el" (22676 23208 +;;;;;; 857521 713000)) ;;; Generated autoloads from progmodes/hideif.el (autoload 'hide-ifdef-mode "hideif" "\ @@ -14028,8 +14037,8 @@ Several variables affect how the hiding is done: ;;;*** -;;;### (autoloads nil "hideshow" "progmodes/hideshow.el" (22388 6386 -;;;;;; 703289 33000)) +;;;### (autoloads nil "hideshow" "progmodes/hideshow.el" (22676 23208 +;;;;;; 857521 713000)) ;;; 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))) "\ @@ -14091,8 +14100,8 @@ Unconditionally turn off `hs-minor-mode'. ;;;*** -;;;### (autoloads nil "hilit-chg" "hilit-chg.el" (22388 5704 576580 -;;;;;; 810000)) +;;;### (autoloads nil "hilit-chg" "hilit-chg.el" (22676 23208 703522 +;;;;;; 342000)) ;;; Generated autoloads from hilit-chg.el (autoload 'highlight-changes-mode "hilit-chg" "\ @@ -14224,8 +14233,8 @@ See `highlight-changes-mode' for more information on Highlight-Changes mode. ;;;*** -;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (22388 5704 619581 -;;;;;; 232000)) +;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (22676 23208 703522 +;;;;;; 342000)) ;;; Generated autoloads from hippie-exp.el (push (purecopy '(hippie-exp 1 6)) package--builtin-versions) @@ -14257,7 +14266,8 @@ argument VERBOSE non-nil makes the function verbose. ;;;*** -;;;### (autoloads nil "hl-line" "hl-line.el" (22388 5704 621581 252000)) +;;;### (autoloads nil "hl-line" "hl-line.el" (22676 23208 703522 +;;;;;; 342000)) ;;; Generated autoloads from hl-line.el (autoload 'hl-line-mode "hl-line" "\ @@ -14307,8 +14317,8 @@ Global-Hl-Line mode uses the functions `global-hl-line-unhighlight' and ;;;*** -;;;### (autoloads nil "holidays" "calendar/holidays.el" (22388 6368 -;;;;;; 119106 271000)) +;;;### (autoloads nil "holidays" "calendar/holidays.el" (22676 23208 +;;;;;; 562522 918000)) ;;; Generated autoloads from calendar/holidays.el (defvar holiday-general-holidays (mapcar 'purecopy '((holiday-fixed 1 1 "New Year's Day") (holiday-float 1 1 3 "Martin Luther King Day") (holiday-fixed 2 2 "Groundhog Day") (holiday-fixed 2 14 "Valentine's Day") (holiday-float 2 1 3 "President's Day") (holiday-fixed 3 17 "St. Patrick's Day") (holiday-fixed 4 1 "April Fools' Day") (holiday-float 5 0 2 "Mother's Day") (holiday-float 5 1 -1 "Memorial Day") (holiday-fixed 6 14 "Flag Day") (holiday-float 6 0 3 "Father's Day") (holiday-fixed 7 4 "Independence Day") (holiday-float 9 1 1 "Labor Day") (holiday-float 10 1 2 "Columbus Day") (holiday-fixed 10 31 "Halloween") (holiday-fixed 11 11 "Veteran's Day") (holiday-float 11 4 4 "Thanksgiving"))) "\ @@ -14418,8 +14428,8 @@ The optional LABEL is used to label the buffer created. ;;;*** -;;;### (autoloads nil "html2text" "gnus/html2text.el" (22388 6373 -;;;;;; 233156 564000)) +;;;### (autoloads nil "html2text" "gnus/html2text.el" (22676 23208 +;;;;;; 682522 428000)) ;;; Generated autoloads from gnus/html2text.el (autoload 'html2text "html2text" "\ @@ -14429,8 +14439,8 @@ Convert HTML to plain text in the current buffer. ;;;*** -;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (22630 21356 -;;;;;; 376944 943000)) +;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (22676 23208 +;;;;;; 704522 338000)) ;;; Generated autoloads from htmlfontify.el (push (purecopy '(htmlfontify 0 21)) package--builtin-versions) @@ -14463,8 +14473,8 @@ You may also want to set `hfy-page-header' and `hfy-page-footer'. ;;;*** -;;;### (autoloads nil "ibuf-macs" "ibuf-macs.el" (22388 5704 724582 -;;;;;; 265000)) +;;;### (autoloads nil "ibuf-macs" "ibuf-macs.el" (22676 23208 705522 +;;;;;; 334000)) ;;; Generated autoloads from ibuf-macs.el (autoload 'define-ibuffer-column "ibuf-macs" "\ @@ -14566,7 +14576,8 @@ bound to the current value of the filter. ;;;*** -;;;### (autoloads nil "ibuffer" "ibuffer.el" (22388 5704 764582 658000)) +;;;### (autoloads nil "ibuffer" "ibuffer.el" (22676 23208 705522 +;;;;;; 334000)) ;;; Generated autoloads from ibuffer.el (autoload 'ibuffer-list-buffers "ibuffer" "\ @@ -14605,8 +14616,8 @@ FORMATS is the value to use for `ibuffer-formats'. ;;;*** -;;;### (autoloads nil "icalendar" "calendar/icalendar.el" (22587 -;;;;;; 10177 756473 425000)) +;;;### (autoloads nil "icalendar" "calendar/icalendar.el" (22676 +;;;;;; 23208 563522 913000)) ;;; Generated autoloads from calendar/icalendar.el (push (purecopy '(icalendar 0 19)) package--builtin-versions) @@ -14659,8 +14670,8 @@ buffer `*icalendar-errors*'. ;;;*** -;;;### (autoloads nil "icomplete" "icomplete.el" (22388 5704 805583 -;;;;;; 62000)) +;;;### (autoloads nil "icomplete" "icomplete.el" (22676 23208 705522 +;;;;;; 334000)) ;;; Generated autoloads from icomplete.el (defvar icomplete-mode nil "\ @@ -14700,8 +14711,8 @@ completions: ;;;*** -;;;### (autoloads nil "icon" "progmodes/icon.el" (22388 6386 724289 -;;;;;; 240000)) +;;;### (autoloads nil "icon" "progmodes/icon.el" (22676 23208 857521 +;;;;;; 713000)) ;;; Generated autoloads from progmodes/icon.el (autoload 'icon-mode "icon" "\ @@ -14741,8 +14752,8 @@ with no args, if that value is non-nil. ;;;*** -;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (22388 -;;;;;; 6386 833290 311000)) +;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (22676 +;;;;;; 23208 858521 709000)) ;;; Generated autoloads from progmodes/idlw-shell.el (autoload 'idlwave-shell "idlw-shell" "\ @@ -14767,8 +14778,8 @@ See also the variable `idlwave-shell-prompt-pattern'. ;;;*** -;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (22587 10177 -;;;;;; 800474 42000)) +;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (22676 23208 +;;;;;; 860521 701000)) ;;; Generated autoloads from progmodes/idlwave.el (push (purecopy '(idlwave 6 1 22)) package--builtin-versions) @@ -14897,7 +14908,7 @@ The main features of this mode are ;;;*** -;;;### (autoloads nil "ido" "ido.el" (22388 5704 862583 622000)) +;;;### (autoloads nil "ido" "ido.el" (22676 23208 706522 330000)) ;;; Generated autoloads from ido.el (defvar ido-mode nil "\ @@ -15159,7 +15170,7 @@ DEF, if non-nil, is the default value. ;;;*** -;;;### (autoloads nil "ielm" "ielm.el" (22388 5704 921584 203000)) +;;;### (autoloads nil "ielm" "ielm.el" (22676 23208 707522 326000)) ;;; Generated autoloads from ielm.el (autoload 'ielm "ielm" "\ @@ -15171,7 +15182,7 @@ See `inferior-emacs-lisp-mode' for details. ;;;*** -;;;### (autoloads nil "iimage" "iimage.el" (22388 5704 924584 232000)) +;;;### (autoloads nil "iimage" "iimage.el" (22676 23208 707522 326000)) ;;; Generated autoloads from iimage.el (define-obsolete-function-alias 'turn-on-iimage-mode 'iimage-mode "24.1") @@ -15187,7 +15198,7 @@ the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'. ;;;*** -;;;### (autoloads nil "image" "image.el" (22388 5705 444589 346000)) +;;;### (autoloads nil "image" "image.el" (22676 23208 708522 322000)) ;;; Generated autoloads from image.el (autoload 'image-type-from-data "image" "\ @@ -15380,8 +15391,8 @@ If Emacs is compiled without ImageMagick support, this does nothing. ;;;*** -;;;### (autoloads nil "image-dired" "image-dired.el" (22388 5705 -;;;;;; 150586 455000)) +;;;### (autoloads nil "image-dired" "image-dired.el" (22676 23208 +;;;;;; 707522 326000)) ;;; Generated autoloads from image-dired.el (push (purecopy '(image-dired 0 4 11)) package--builtin-versions) @@ -15518,8 +15529,8 @@ easy-to-use form. ;;;*** -;;;### (autoloads nil "image-file" "image-file.el" (22388 5705 201586 -;;;;;; 957000)) +;;;### (autoloads nil "image-file" "image-file.el" (22676 23208 707522 +;;;;;; 326000)) ;;; 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")) "\ @@ -15582,8 +15593,8 @@ An image file is one whose name has an extension in ;;;*** -;;;### (autoloads nil "image-mode" "image-mode.el" (22388 5705 201586 -;;;;;; 957000)) +;;;### (autoloads nil "image-mode" "image-mode.el" (22676 23208 708522 +;;;;;; 322000)) ;;; Generated autoloads from image-mode.el (autoload 'image-mode "image-mode" "\ @@ -15630,7 +15641,7 @@ on these modes. ;;;*** -;;;### (autoloads nil "imenu" "imenu.el" (22388 5705 445589 356000)) +;;;### (autoloads nil "imenu" "imenu.el" (22676 23208 708522 322000)) ;;; Generated autoloads from imenu.el (defvar imenu-sort-function nil "\ @@ -15768,8 +15779,8 @@ for more information. ;;;*** -;;;### (autoloads nil "ind-util" "language/ind-util.el" (22587 10177 -;;;;;; 779473 747000)) +;;;### (autoloads nil "ind-util" "language/ind-util.el" (22676 23208 +;;;;;; 724522 256000)) ;;; Generated autoloads from language/ind-util.el (autoload 'indian-compose-region "ind-util" "\ @@ -15799,8 +15810,8 @@ Convert old Emacs Devanagari characters to UCS. ;;;*** -;;;### (autoloads nil "inf-lisp" "progmodes/inf-lisp.el" (22388 6387 -;;;;;; 122293 154000)) +;;;### (autoloads nil "inf-lisp" "progmodes/inf-lisp.el" (22676 23208 +;;;;;; 861521 697000)) ;;; Generated autoloads from progmodes/inf-lisp.el (autoload 'inferior-lisp "inf-lisp" "\ @@ -15818,7 +15829,7 @@ of `inferior-lisp-program'). Runs the hooks from ;;;*** -;;;### (autoloads nil "info" "info.el" (22587 10177 776473 705000)) +;;;### (autoloads nil "info" "info.el" (22676 23208 710522 314000)) ;;; Generated autoloads from info.el (defcustom Info-default-directory-list (let* ((config-dir (file-name-as-directory (or (and (featurep 'ns) (let ((dir (expand-file-name "../info" data-directory))) (if (file-directory-p dir) dir))) configure-info-directory))) (prefixes (prune-directory-list '("/usr/local/" "/usr/" "/opt/" "/"))) (suffixes '("share/" "" "gnu/" "gnu/lib/" "gnu/lib/emacs/" "emacs/" "lib/" "lib/emacs/")) (standard-info-dirs (apply #'nconc (mapcar (lambda (pfx) (let ((dirs (mapcar (lambda (sfx) (concat pfx sfx "info/")) suffixes))) (prune-directory-list dirs))) prefixes))) (dirs (if (member config-dir standard-info-dirs) (nconc standard-info-dirs (list config-dir)) (cons config-dir standard-info-dirs)))) (if (not (eq system-type 'windows-nt)) dirs (let* ((instdir (file-name-directory invocation-directory)) (dir1 (expand-file-name "../info/" instdir)) (dir2 (expand-file-name "../../../info/" instdir))) (cond ((file-exists-p dir1) (append dirs (list dir1))) ((file-exists-p dir2) (append dirs (list dir2))) (t dirs))))) "\ @@ -16030,8 +16041,8 @@ completion alternatives to currently visited manuals. ;;;*** -;;;### (autoloads nil "info-look" "info-look.el" (22388 5705 484589 -;;;;;; 739000)) +;;;### (autoloads nil "info-look" "info-look.el" (22676 23208 709522 +;;;;;; 318000)) ;;; Generated autoloads from info-look.el (autoload 'info-lookup-reset "info-look" "\ @@ -16078,8 +16089,8 @@ Perform completion on file preceding point. ;;;*** -;;;### (autoloads nil "info-xref" "info-xref.el" (22388 5705 523590 -;;;;;; 123000)) +;;;### (autoloads nil "info-xref" "info-xref.el" (22676 23208 709522 +;;;;;; 318000)) ;;; Generated autoloads from info-xref.el (push (purecopy '(info-xref 3)) package--builtin-versions) @@ -16162,8 +16173,8 @@ the sources handy. ;;;*** -;;;### (autoloads nil "informat" "informat.el" (22388 5705 689591 -;;;;;; 755000)) +;;;### (autoloads nil "informat" "informat.el" (22676 23208 710522 +;;;;;; 314000)) ;;; Generated autoloads from informat.el (autoload 'Info-tagify "informat" "\ @@ -16208,8 +16219,8 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\" ;;;*** -;;;### (autoloads nil "inline" "emacs-lisp/inline.el" (22630 21356 -;;;;;; 366944 802000)) +;;;### (autoloads nil "inline" "emacs-lisp/inline.el" (22676 23208 +;;;;;; 613522 710000)) ;;; Generated autoloads from emacs-lisp/inline.el (autoload 'define-inline "inline" "\ @@ -16223,8 +16234,8 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\" ;;;*** -;;;### (autoloads nil "inversion" "cedet/inversion.el" (22388 6368 -;;;;;; 463109 654000)) +;;;### (autoloads nil "inversion" "cedet/inversion.el" (22676 23208 +;;;;;; 571522 881000)) ;;; Generated autoloads from cedet/inversion.el (push (purecopy '(inversion 1 3)) package--builtin-versions) @@ -16236,8 +16247,8 @@ Only checks one based on which kind of Emacs is being run. ;;;*** -;;;### (autoloads nil "isearch-x" "international/isearch-x.el" (22388 -;;;;;; 6374 396168 1000)) +;;;### (autoloads nil "isearch-x" "international/isearch-x.el" (22676 +;;;;;; 23208 711522 309000)) ;;; Generated autoloads from international/isearch-x.el (autoload 'isearch-toggle-specified-input-method "isearch-x" "\ @@ -16257,8 +16268,8 @@ Toggle input method in interactive search. ;;;*** -;;;### (autoloads nil "isearchb" "isearchb.el" (22388 5705 752592 -;;;;;; 375000)) +;;;### (autoloads nil "isearchb" "isearchb.el" (22676 23208 717522 +;;;;;; 285000)) ;;; Generated autoloads from isearchb.el (push (purecopy '(isearchb 1 5)) package--builtin-versions) @@ -16272,8 +16283,8 @@ accessed via isearchb. ;;;*** -;;;### (autoloads nil "iso-cvt" "international/iso-cvt.el" (22388 -;;;;;; 6374 400168 41000)) +;;;### (autoloads nil "iso-cvt" "international/iso-cvt.el" (22676 +;;;;;; 23208 712522 305000)) ;;; Generated autoloads from international/iso-cvt.el (autoload 'iso-spanish "iso-cvt" "\ @@ -16364,15 +16375,15 @@ Add submenus to the File menu, to convert to and from various formats. ;;;*** ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" -;;;;;; (22388 6374 403168 70000)) +;;;;;; (22676 23208 712522 305000)) ;;; Generated autoloads from international/iso-transl.el (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) (autoload 'iso-transl-ctl-x-8-map "iso-transl" "Keymap for C-x 8 prefix." t 'keymap) ;;;*** -;;;### (autoloads nil "ispell" "textmodes/ispell.el" (22388 6389 -;;;;;; 418315 733000)) +;;;### (autoloads nil "ispell" "textmodes/ispell.el" (22676 23208 +;;;;;; 900521 538000)) ;;; Generated autoloads from textmodes/ispell.el (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) @@ -16605,8 +16616,8 @@ You can bind this to the key C-c i in GNUS or mail by adding to ;;;*** -;;;### (autoloads nil "japan-util" "language/japan-util.el" (22388 -;;;;;; 6375 363177 511000)) +;;;### (autoloads nil "japan-util" "language/japan-util.el" (22676 +;;;;;; 23208 724522 256000)) ;;; Generated autoloads from language/japan-util.el (autoload 'setup-japanese-environment-internal "japan-util" "\ @@ -16683,8 +16694,8 @@ If non-nil, second arg INITIAL-INPUT is a string to insert before reading. ;;;*** -;;;### (autoloads nil "jka-compr" "jka-compr.el" (22388 5705 804592 -;;;;;; 887000)) +;;;### (autoloads nil "jka-compr" "jka-compr.el" (22676 23208 718522 +;;;;;; 281000)) ;;; Generated autoloads from jka-compr.el (defvar jka-compr-inhibit nil "\ @@ -16707,8 +16718,8 @@ by `jka-compr-installed'. ;;;*** -;;;### (autoloads nil "js" "progmodes/js.el" (22630 21356 407945 -;;;;;; 377000)) +;;;### (autoloads nil "js" "progmodes/js.el" (22676 23208 862521 +;;;;;; 693000)) ;;; Generated autoloads from progmodes/js.el (push (purecopy '(js 9)) package--builtin-versions) @@ -16735,14 +16746,14 @@ locally, like so: ;;;*** -;;;### (autoloads nil "json" "json.el" (22388 5705 807592 916000)) +;;;### (autoloads nil "json" "json.el" (22676 23208 718522 281000)) ;;; Generated autoloads from json.el (push (purecopy '(json 1 4)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "keypad" "emulation/keypad.el" (22388 6369 -;;;;;; 920123 983000)) +;;;### (autoloads nil "keypad" "emulation/keypad.el" (22676 23208 +;;;;;; 621522 677000)) ;;; Generated autoloads from emulation/keypad.el (defvar keypad-setup nil "\ @@ -16797,8 +16808,8 @@ the decimal key on the keypad is mapped to DECIMAL instead of `.' ;;;*** -;;;### (autoloads nil "kinsoku" "international/kinsoku.el" (22388 -;;;;;; 6374 423168 267000)) +;;;### (autoloads nil "kinsoku" "international/kinsoku.el" (22676 +;;;;;; 23208 712522 305000)) ;;; Generated autoloads from international/kinsoku.el (autoload 'kinsoku "kinsoku" "\ @@ -16819,8 +16830,8 @@ the context of text formatting. ;;;*** -;;;### (autoloads nil "kkc" "international/kkc.el" (22388 6374 436168 -;;;;;; 395000)) +;;;### (autoloads nil "kkc" "international/kkc.el" (22676 23208 713522 +;;;;;; 301000)) ;;; Generated autoloads from international/kkc.el (defvar kkc-after-update-conversion-functions nil "\ @@ -16842,7 +16853,7 @@ and the return value is the length of the conversion. ;;;*** -;;;### (autoloads nil "kmacro" "kmacro.el" (22388 5705 847593 309000)) +;;;### (autoloads nil "kmacro" "kmacro.el" (22676 23208 719522 277000)) ;;; Generated autoloads from kmacro.el (global-set-key "\C-x(" 'kmacro-start-macro) (global-set-key "\C-x)" 'kmacro-end-macro) @@ -16954,8 +16965,8 @@ If kbd macro currently being defined end it before activating it. ;;;*** -;;;### (autoloads nil "korea-util" "language/korea-util.el" (22388 -;;;;;; 6375 366177 541000)) +;;;### (autoloads nil "korea-util" "language/korea-util.el" (22676 +;;;;;; 23208 724522 256000)) ;;; Generated autoloads from language/korea-util.el (defvar default-korean-keyboard (purecopy (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "")) "\ @@ -16969,8 +16980,8 @@ The kind of Korean keyboard for Korean input method. ;;;*** -;;;### (autoloads nil "lao-util" "language/lao-util.el" (22388 6375 -;;;;;; 368177 560000)) +;;;### (autoloads nil "lao-util" "language/lao-util.el" (22676 23208 +;;;;;; 724522 256000)) ;;; Generated autoloads from language/lao-util.el (autoload 'lao-compose-string "lao-util" "\ @@ -17007,8 +17018,8 @@ Transcribe Romanized Lao string STR to Lao character string. ;;;*** -;;;### (autoloads nil "latexenc" "international/latexenc.el" (22388 -;;;;;; 6374 439168 424000)) +;;;### (autoloads nil "latexenc" "international/latexenc.el" (22676 +;;;;;; 23208 713522 301000)) ;;; 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))) "\ @@ -17040,7 +17051,7 @@ coding system names is determined from `latex-inputenc-coding-alist'. ;;;*** ;;;### (autoloads nil "latin1-disp" "international/latin1-disp.el" -;;;;;; (22388 6374 462168 650000)) +;;;;;; (22676 23208 713522 301000)) ;;; Generated autoloads from international/latin1-disp.el (defvar latin1-display nil "\ @@ -17081,8 +17092,8 @@ use either \\[customize] or the function `latin1-display'.") ;;;*** -;;;### (autoloads nil "ld-script" "progmodes/ld-script.el" (22388 -;;;;;; 6387 218294 98000)) +;;;### (autoloads nil "ld-script" "progmodes/ld-script.el" (22676 +;;;;;; 23208 862521 693000)) ;;; Generated autoloads from progmodes/ld-script.el (autoload 'ld-script-mode "ld-script" "\ @@ -17092,8 +17103,8 @@ A major mode to edit GNU ld script files ;;;*** -;;;### (autoloads nil "let-alist" "emacs-lisp/let-alist.el" (22388 -;;;;;; 6369 450119 360000)) +;;;### (autoloads nil "let-alist" "emacs-lisp/let-alist.el" (22676 +;;;;;; 23208 613522 710000)) ;;; Generated autoloads from emacs-lisp/let-alist.el (push (purecopy '(let-alist 1 0 4)) package--builtin-versions) @@ -17132,7 +17143,7 @@ displayed in the example above. ;;;*** -;;;### (autoloads nil "life" "play/life.el" (22388 6383 419256 737000)) +;;;### (autoloads nil "life" "play/life.el" (22676 23208 832521 815000)) ;;; Generated autoloads from play/life.el (autoload 'life "life" "\ @@ -17145,7 +17156,7 @@ generations (this defaults to 1). ;;;*** -;;;### (autoloads nil "linum" "linum.el" (22388 5706 317597 931000)) +;;;### (autoloads nil "linum" "linum.el" (22676 23208 737522 203000)) ;;; Generated autoloads from linum.el (push (purecopy '(linum 0 9 24)) package--builtin-versions) @@ -17183,8 +17194,8 @@ See `linum-mode' for more information on Linum mode. ;;;*** -;;;### (autoloads nil "loadhist" "loadhist.el" (22388 5706 319597 -;;;;;; 951000)) +;;;### (autoloads nil "loadhist" "loadhist.el" (22676 23208 737522 +;;;;;; 203000)) ;;; Generated autoloads from loadhist.el (autoload 'unload-feature "loadhist" "\ @@ -17215,7 +17226,7 @@ something strange, such as redefining an Emacs function. ;;;*** -;;;### (autoloads nil "locate" "locate.el" (22388 5706 360598 354000)) +;;;### (autoloads nil "locate" "locate.el" (22676 23208 738522 199000)) ;;; Generated autoloads from locate.el (defvar locate-ls-subdir-switches (purecopy "-al") "\ @@ -17267,8 +17278,8 @@ except that FILTER is not optional. ;;;*** -;;;### (autoloads nil "log-edit" "vc/log-edit.el" (22388 6391 125332 -;;;;;; 520000)) +;;;### (autoloads nil "log-edit" "vc/log-edit.el" (22676 23208 924521 +;;;;;; 440000)) ;;; Generated autoloads from vc/log-edit.el (autoload 'log-edit "log-edit" "\ @@ -17299,8 +17310,8 @@ done. Otherwise, it uses the current buffer. ;;;*** -;;;### (autoloads nil "log-view" "vc/log-view.el" (22388 6391 153332 -;;;;;; 797000)) +;;;### (autoloads nil "log-view" "vc/log-view.el" (22676 23208 924521 +;;;;;; 440000)) ;;; Generated autoloads from vc/log-view.el (autoload 'log-view-mode "log-view" "\ @@ -17310,7 +17321,7 @@ Major mode for browsing CVS log output. ;;;*** -;;;### (autoloads nil "lpr" "lpr.el" (22388 5706 361598 364000)) +;;;### (autoloads nil "lpr" "lpr.el" (22676 23208 738522 199000)) ;;; Generated autoloads from lpr.el (defvar lpr-windows-system (memq system-type '(ms-dos windows-nt)) "\ @@ -17405,8 +17416,8 @@ for further customization of the printer command. ;;;*** -;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (22587 10177 779473 -;;;;;; 747000)) +;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (22676 23208 738522 +;;;;;; 199000)) ;;; Generated autoloads from ls-lisp.el (defvar ls-lisp-support-shell-wildcards t "\ @@ -17417,8 +17428,8 @@ Otherwise they are treated as Emacs regexps (for backward compatibility).") ;;;*** -;;;### (autoloads nil "lunar" "calendar/lunar.el" (22388 6368 185106 -;;;;;; 920000)) +;;;### (autoloads nil "lunar" "calendar/lunar.el" (22676 23208 563522 +;;;;;; 913000)) ;;; Generated autoloads from calendar/lunar.el (autoload 'lunar-phases "lunar" "\ @@ -17430,8 +17441,8 @@ This function is suitable for execution in an init file. ;;;*** -;;;### (autoloads nil "m4-mode" "progmodes/m4-mode.el" (22388 6387 -;;;;;; 219294 107000)) +;;;### (autoloads nil "m4-mode" "progmodes/m4-mode.el" (22676 23208 +;;;;;; 862521 693000)) ;;; Generated autoloads from progmodes/m4-mode.el (autoload 'm4-mode "m4-mode" "\ @@ -17441,7 +17452,7 @@ A major mode to edit m4 macro files. ;;;*** -;;;### (autoloads nil "macros" "macros.el" (22388 5706 405598 797000)) +;;;### (autoloads nil "macros" "macros.el" (22676 23208 738522 199000)) ;;; Generated autoloads from macros.el (autoload 'name-last-kbd-macro "macros" "\ @@ -17530,8 +17541,8 @@ and then select the region of un-tablified names and use ;;;*** -;;;### (autoloads nil "mail-extr" "mail/mail-extr.el" (22388 6375 -;;;;;; 635180 186000)) +;;;### (autoloads nil "mail-extr" "mail/mail-extr.el" (22676 23208 +;;;;;; 739522 195000)) ;;; Generated autoloads from mail/mail-extr.el (autoload 'mail-extract-address-components "mail-extr" "\ @@ -17561,8 +17572,8 @@ Convert mail domain DOMAIN to the country it corresponds to. ;;;*** -;;;### (autoloads nil "mail-hist" "mail/mail-hist.el" (22388 6375 -;;;;;; 637180 206000)) +;;;### (autoloads nil "mail-hist" "mail/mail-hist.el" (22676 23208 +;;;;;; 739522 195000)) ;;; Generated autoloads from mail/mail-hist.el (autoload 'mail-hist-define-keys "mail-hist" "\ @@ -17591,8 +17602,8 @@ This function normally would be called when the message is sent. ;;;*** -;;;### (autoloads nil "mail-utils" "mail/mail-utils.el" (22388 6375 -;;;;;; 637180 206000)) +;;;### (autoloads nil "mail-utils" "mail/mail-utils.el" (22676 23208 +;;;;;; 740522 191000)) ;;; Generated autoloads from mail/mail-utils.el (defvar mail-use-rfc822 nil "\ @@ -17666,8 +17677,8 @@ matches may be returned from the message body. ;;;*** -;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (22388 6375 -;;;;;; 638180 216000)) +;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (22676 23208 +;;;;;; 740522 191000)) ;;; Generated autoloads from mail/mailabbrev.el (defvar mail-abbrevs-mode nil "\ @@ -17717,8 +17728,8 @@ double-quotes. ;;;*** -;;;### (autoloads nil "mailalias" "mail/mailalias.el" (22388 6375 -;;;;;; 639180 226000)) +;;;### (autoloads nil "mailalias" "mail/mailalias.el" (22676 23208 +;;;;;; 740522 191000)) ;;; Generated autoloads from mail/mailalias.el (defvar mail-complete-style 'angles "\ @@ -17771,8 +17782,8 @@ current header, calls `mail-complete-function' and passes prefix ARG if any. ;;;*** -;;;### (autoloads nil "mailclient" "mail/mailclient.el" (22388 6375 -;;;;;; 639180 226000)) +;;;### (autoloads nil "mailclient" "mail/mailclient.el" (22676 23208 +;;;;;; 740522 191000)) ;;; Generated autoloads from mail/mailclient.el (autoload 'mailclient-send-it "mailclient" "\ @@ -17784,8 +17795,8 @@ The mail client is taken to be the handler of mailto URLs. ;;;*** -;;;### (autoloads nil "make-mode" "progmodes/make-mode.el" (22388 -;;;;;; 6387 242294 334000)) +;;;### (autoloads nil "make-mode" "progmodes/make-mode.el" (22676 +;;;;;; 23208 862521 693000)) ;;; Generated autoloads from progmodes/make-mode.el (autoload 'makefile-mode "make-mode" "\ @@ -17902,7 +17913,8 @@ An adapted `makefile-mode' that knows about imake. ;;;*** -;;;### (autoloads nil "makesum" "makesum.el" (22388 5706 447599 210000)) +;;;### (autoloads nil "makesum" "makesum.el" (22676 23208 745522 +;;;;;; 171000)) ;;; Generated autoloads from makesum.el (autoload 'make-command-summary "makesum" "\ @@ -17913,7 +17925,7 @@ Previous contents of that buffer are killed first. ;;;*** -;;;### (autoloads nil "man" "man.el" (22587 10177 780473 761000)) +;;;### (autoloads nil "man" "man.el" (22676 23208 746522 166000)) ;;; Generated autoloads from man.el (defalias 'manual-entry 'man) @@ -17969,14 +17981,14 @@ Default bookmark handler for Man buffers. ;;;*** -;;;### (autoloads nil "map" "emacs-lisp/map.el" (22388 6369 508119 -;;;;;; 931000)) +;;;### (autoloads nil "map" "emacs-lisp/map.el" (22676 23208 614522 +;;;;;; 705000)) ;;; Generated autoloads from emacs-lisp/map.el (push (purecopy '(map 1 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "master" "master.el" (22388 5706 537600 95000)) +;;;### (autoloads nil "master" "master.el" (22676 23208 746522 166000)) ;;; Generated autoloads from master.el (push (purecopy '(master 1 0 2)) package--builtin-versions) @@ -17999,8 +18011,8 @@ yourself the value of `master-of' by calling `master-show-slave'. ;;;*** -;;;### (autoloads nil "mb-depth" "mb-depth.el" (22388 5706 539600 -;;;;;; 114000)) +;;;### (autoloads nil "mb-depth" "mb-depth.el" (22676 23208 746522 +;;;;;; 166000)) ;;; Generated autoloads from mb-depth.el (defvar minibuffer-depth-indicate-mode nil "\ @@ -18028,14 +18040,14 @@ recursion depth in the minibuffer prompt. This is only useful if ;;;*** -;;;### (autoloads nil "md4" "md4.el" (22388 5706 539600 114000)) +;;;### (autoloads nil "md4" "md4.el" (22676 23208 746522 166000)) ;;; Generated autoloads from md4.el (push (purecopy '(md4 1 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "message" "gnus/message.el" (22388 6373 395158 -;;;;;; 158000)) +;;;### (autoloads nil "message" "gnus/message.el" (22676 23208 685522 +;;;;;; 416000)) ;;; 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) @@ -18200,8 +18212,8 @@ which specify the range to operate on. ;;;*** -;;;### (autoloads nil "meta-mode" "progmodes/meta-mode.el" (22388 -;;;;;; 6387 280294 707000)) +;;;### (autoloads nil "meta-mode" "progmodes/meta-mode.el" (22676 +;;;;;; 23208 863521 689000)) ;;; Generated autoloads from progmodes/meta-mode.el (push (purecopy '(meta-mode 1 0)) package--builtin-versions) @@ -18217,8 +18229,8 @@ Major mode for editing MetaPost sources. ;;;*** -;;;### (autoloads nil "metamail" "mail/metamail.el" (22388 6375 640180 -;;;;;; 235000)) +;;;### (autoloads nil "metamail" "mail/metamail.el" (22676 23208 +;;;;;; 740522 191000)) ;;; Generated autoloads from mail/metamail.el (autoload 'metamail-interpret-header "metamail" "\ @@ -18261,8 +18273,8 @@ redisplayed as output is inserted. ;;;*** -;;;### (autoloads nil "mh-comp" "mh-e/mh-comp.el" (22388 6376 408187 -;;;;;; 788000)) +;;;### (autoloads nil "mh-comp" "mh-e/mh-comp.el" (22676 23208 751522 +;;;;;; 146000)) ;;; Generated autoloads from mh-e/mh-comp.el (autoload 'mh-smail "mh-comp" "\ @@ -18352,7 +18364,7 @@ delete the draft message. ;;;*** -;;;### (autoloads nil "mh-e" "mh-e/mh-e.el" (22388 6376 513188 821000)) +;;;### (autoloads nil "mh-e" "mh-e/mh-e.el" (22676 23208 752522 142000)) ;;; Generated autoloads from mh-e/mh-e.el (push (purecopy '(mh-e 8 6)) package--builtin-versions) @@ -18369,8 +18381,8 @@ Display version information about MH-E and the MH mail handling system. ;;;*** -;;;### (autoloads nil "mh-folder" "mh-e/mh-folder.el" (22388 6376 -;;;;;; 631189 982000)) +;;;### (autoloads nil "mh-folder" "mh-e/mh-folder.el" (22676 23208 +;;;;;; 752522 142000)) ;;; Generated autoloads from mh-e/mh-folder.el (autoload 'mh-rmail "mh-folder" "\ @@ -18451,8 +18463,8 @@ perform the operation on all messages in that region. ;;;*** -;;;### (autoloads nil "midnight" "midnight.el" (22388 5706 628600 -;;;;;; 990000)) +;;;### (autoloads nil "midnight" "midnight.el" (22676 23208 756522 +;;;;;; 126000)) ;;; Generated autoloads from midnight.el (defvar midnight-mode nil "\ @@ -18493,8 +18505,8 @@ to its second argument TM. ;;;*** -;;;### (autoloads nil "minibuf-eldef" "minibuf-eldef.el" (22388 5706 -;;;;;; 628600 990000)) +;;;### (autoloads nil "minibuf-eldef" "minibuf-eldef.el" (22676 23208 +;;;;;; 756522 126000)) ;;; Generated autoloads from minibuf-eldef.el (defvar minibuffer-electric-default-mode nil "\ @@ -18524,7 +18536,7 @@ is modified to remove the default indication. ;;;*** -;;;### (autoloads nil "misc" "misc.el" (22388 5706 864603 311000)) +;;;### (autoloads nil "misc" "misc.el" (22676 23208 757522 122000)) ;;; Generated autoloads from misc.el (autoload 'butterfly "misc" "\ @@ -18552,8 +18564,8 @@ The return value is always nil. ;;;*** -;;;### (autoloads nil "misearch" "misearch.el" (22388 5706 866603 -;;;;;; 331000)) +;;;### (autoloads nil "misearch" "misearch.el" (22676 23208 757522 +;;;;;; 122000)) ;;; Generated autoloads from misearch.el (add-hook 'isearch-mode-hook 'multi-isearch-setup) @@ -18641,8 +18653,8 @@ whose file names match the specified wildcard. ;;;*** -;;;### (autoloads nil "mixal-mode" "progmodes/mixal-mode.el" (22388 -;;;;;; 6387 283294 737000)) +;;;### (autoloads nil "mixal-mode" "progmodes/mixal-mode.el" (22676 +;;;;;; 23208 863521 689000)) ;;; Generated autoloads from progmodes/mixal-mode.el (push (purecopy '(mixal-mode 0 1)) package--builtin-versions) @@ -18653,8 +18665,8 @@ Major mode for the mixal asm language. ;;;*** -;;;### (autoloads nil "mm-encode" "gnus/mm-encode.el" (22388 6373 -;;;;;; 521159 397000)) +;;;### (autoloads nil "mm-encode" "gnus/mm-encode.el" (22676 23208 +;;;;;; 687522 407000)) ;;; Generated autoloads from gnus/mm-encode.el (autoload 'mm-default-file-encoding "mm-encode" "\ @@ -18664,8 +18676,8 @@ Return a default encoding for FILE. ;;;*** -;;;### (autoloads nil "mm-extern" "gnus/mm-extern.el" (22388 6373 -;;;;;; 524159 426000)) +;;;### (autoloads nil "mm-extern" "gnus/mm-extern.el" (22676 23208 +;;;;;; 687522 407000)) ;;; Generated autoloads from gnus/mm-extern.el (autoload 'mm-extern-cache-contents "mm-extern" "\ @@ -18683,8 +18695,8 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. ;;;*** -;;;### (autoloads nil "mm-partial" "gnus/mm-partial.el" (22388 6373 -;;;;;; 524159 426000)) +;;;### (autoloads nil "mm-partial" "gnus/mm-partial.el" (22676 23208 +;;;;;; 688522 403000)) ;;; Generated autoloads from gnus/mm-partial.el (autoload 'mm-inline-partial "mm-partial" "\ @@ -18697,8 +18709,8 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. ;;;*** -;;;### (autoloads nil "mm-url" "gnus/mm-url.el" (22388 6373 526159 -;;;;;; 446000)) +;;;### (autoloads nil "mm-url" "gnus/mm-url.el" (22676 23208 688522 +;;;;;; 403000)) ;;; Generated autoloads from gnus/mm-url.el (autoload 'mm-url-insert-file-contents "mm-url" "\ @@ -18714,8 +18726,8 @@ Insert file contents of URL using `mm-url-program'. ;;;*** -;;;### (autoloads nil "mm-uu" "gnus/mm-uu.el" (22388 6373 564159 -;;;;;; 819000)) +;;;### (autoloads nil "mm-uu" "gnus/mm-uu.el" (22676 23208 688522 +;;;;;; 403000)) ;;; Generated autoloads from gnus/mm-uu.el (autoload 'mm-uu-dissect "mm-uu" "\ @@ -18734,7 +18746,7 @@ Assume text has been decoded if DECODED is non-nil. ;;;*** -;;;### (autoloads nil "mml" "gnus/mml.el" (22388 6373 623160 399000)) +;;;### (autoloads nil "mml" "gnus/mml.el" (22676 23208 689522 399000)) ;;; Generated autoloads from gnus/mml.el (autoload 'mml-to-mime "mml" "\ @@ -18759,8 +18771,8 @@ body) or \"attachment\" (separate from the body). ;;;*** -;;;### (autoloads nil "mml1991" "gnus/mml1991.el" (22388 6373 653160 -;;;;;; 694000)) +;;;### (autoloads nil "mml1991" "gnus/mml1991.el" (22676 23208 689522 +;;;;;; 399000)) ;;; Generated autoloads from gnus/mml1991.el (autoload 'mml1991-encrypt "mml1991" "\ @@ -18775,8 +18787,8 @@ body) or \"attachment\" (separate from the body). ;;;*** -;;;### (autoloads nil "mml2015" "gnus/mml2015.el" (22388 6373 662160 -;;;;;; 783000)) +;;;### (autoloads nil "mml2015" "gnus/mml2015.el" (22676 23208 689522 +;;;;;; 399000)) ;;; Generated autoloads from gnus/mml2015.el (autoload 'mml2015-decrypt "mml2015" "\ @@ -18816,16 +18828,16 @@ body) or \"attachment\" (separate from the body). ;;;*** -;;;### (autoloads nil "mode-local" "cedet/mode-local.el" (22388 6368 -;;;;;; 463109 654000)) +;;;### (autoloads nil "mode-local" "cedet/mode-local.el" (22676 23208 +;;;;;; 571522 881000)) ;;; Generated autoloads from cedet/mode-local.el (put 'define-overloadable-function 'doc-string-elt 3) ;;;*** -;;;### (autoloads nil "modula2" "progmodes/modula2.el" (22388 6387 -;;;;;; 287294 776000)) +;;;### (autoloads nil "modula2" "progmodes/modula2.el" (22387 39328 +;;;;;; 369704 874000)) ;;; Generated autoloads from progmodes/modula2.el (defalias 'modula-2-mode 'm2-mode) @@ -18858,8 +18870,8 @@ followed by the first character of the construct. ;;;*** -;;;### (autoloads nil "morse" "play/morse.el" (22388 6383 419256 -;;;;;; 737000)) +;;;### (autoloads nil "morse" "play/morse.el" (22676 23208 832521 +;;;;;; 815000)) ;;; Generated autoloads from play/morse.el (autoload 'morse-region "morse" "\ @@ -18884,8 +18896,8 @@ Convert NATO phonetic alphabet in region to ordinary ASCII text. ;;;*** -;;;### (autoloads nil "mouse-drag" "mouse-drag.el" (22388 5706 883603 -;;;;;; 498000)) +;;;### (autoloads nil "mouse-drag" "mouse-drag.el" (22676 23208 758522 +;;;;;; 117000)) ;;; Generated autoloads from mouse-drag.el (autoload 'mouse-drag-throw "mouse-drag" "\ @@ -18932,7 +18944,7 @@ To test this function, evaluate: ;;;*** -;;;### (autoloads nil "mpc" "mpc.el" (22388 5707 75605 386000)) +;;;### (autoloads nil "mpc" "mpc.el" (22676 23208 759522 113000)) ;;; Generated autoloads from mpc.el (autoload 'mpc "mpc" "\ @@ -18942,7 +18954,7 @@ Main entry point for MPC. ;;;*** -;;;### (autoloads nil "mpuz" "play/mpuz.el" (22388 6383 433256 875000)) +;;;### (autoloads nil "mpuz" "play/mpuz.el" (22676 23208 832521 815000)) ;;; Generated autoloads from play/mpuz.el (autoload 'mpuz "mpuz" "\ @@ -18952,7 +18964,7 @@ Multiplication puzzle with GNU Emacs. ;;;*** -;;;### (autoloads nil "msb" "msb.el" (22388 5707 159606 212000)) +;;;### (autoloads nil "msb" "msb.el" (22676 23208 759522 113000)) ;;; Generated autoloads from msb.el (defvar msb-mode nil "\ @@ -18978,8 +18990,8 @@ different buffer menu using the function `msb'. ;;;*** -;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (22388 -;;;;;; 6374 566169 673000)) +;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (22676 +;;;;;; 23208 714522 297000)) ;;; Generated autoloads from international/mule-diag.el (autoload 'list-character-sets "mule-diag" "\ @@ -19111,8 +19123,8 @@ The default is 20. If LIMIT is negative, do not limit the listing. ;;;*** -;;;### (autoloads nil "mule-util" "international/mule-util.el" (22388 -;;;;;; 6374 605170 57000)) +;;;### (autoloads nil "mule-util" "international/mule-util.el" (22676 +;;;;;; 23208 715522 293000)) ;;; Generated autoloads from international/mule-util.el (defsubst string-to-list (string) "\ @@ -19271,8 +19283,8 @@ QUALITY can be: ;;;*** -;;;### (autoloads nil "net-utils" "net/net-utils.el" (22388 6377 -;;;;;; 599199 501000)) +;;;### (autoloads nil "net-utils" "net/net-utils.el" (22676 23208 +;;;;;; 765522 89000)) ;;; Generated autoloads from net/net-utils.el (autoload 'ifconfig "net-utils" "\ @@ -19366,7 +19378,8 @@ Open a network connection to HOST on PORT. ;;;*** -;;;### (autoloads nil "netrc" "net/netrc.el" (22388 6377 609199 599000)) +;;;### (autoloads nil "netrc" "net/netrc.el" (22676 23208 765522 +;;;;;; 89000)) ;;; Generated autoloads from net/netrc.el (autoload 'netrc-credentials "netrc" "\ @@ -19378,8 +19391,8 @@ listed in the PORTS list. ;;;*** -;;;### (autoloads nil "network-stream" "net/network-stream.el" (22388 -;;;;;; 6377 611199 619000)) +;;;### (autoloads nil "network-stream" "net/network-stream.el" (22676 +;;;;;; 23208 765522 89000)) ;;; Generated autoloads from net/network-stream.el (autoload 'open-network-stream "network-stream" "\ @@ -19475,8 +19488,8 @@ asynchronously, if possible. ;;;*** -;;;### (autoloads nil "newst-backend" "net/newst-backend.el" (22388 -;;;;;; 6377 707200 563000)) +;;;### (autoloads nil "newst-backend" "net/newst-backend.el" (22676 +;;;;;; 23208 766522 85000)) ;;; Generated autoloads from net/newst-backend.el (autoload 'newsticker-running-p "newst-backend" "\ @@ -19498,7 +19511,7 @@ Run `newsticker-start-hook' if newsticker was not running already. ;;;*** ;;;### (autoloads nil "newst-plainview" "net/newst-plainview.el" -;;;;;; (22388 6377 714200 632000)) +;;;;;; (22676 23208 766522 85000)) ;;; Generated autoloads from net/newst-plainview.el (autoload 'newsticker-plainview "newst-plainview" "\ @@ -19508,8 +19521,8 @@ Start newsticker plainview. ;;;*** -;;;### (autoloads nil "newst-reader" "net/newst-reader.el" (22388 -;;;;;; 6377 747200 956000)) +;;;### (autoloads nil "newst-reader" "net/newst-reader.el" (22676 +;;;;;; 23208 766522 85000)) ;;; Generated autoloads from net/newst-reader.el (autoload 'newsticker-show-news "newst-reader" "\ @@ -19519,8 +19532,8 @@ Start reading news. You may want to bind this to a key. ;;;*** -;;;### (autoloads nil "newst-ticker" "net/newst-ticker.el" (22388 -;;;;;; 6377 755201 35000)) +;;;### (autoloads nil "newst-ticker" "net/newst-ticker.el" (22676 +;;;;;; 23208 766522 85000)) ;;; Generated autoloads from net/newst-ticker.el (autoload 'newsticker-ticker-running-p "newst-ticker" "\ @@ -19540,8 +19553,8 @@ running already. ;;;*** -;;;### (autoloads nil "newst-treeview" "net/newst-treeview.el" (22388 -;;;;;; 6377 785201 330000)) +;;;### (autoloads nil "newst-treeview" "net/newst-treeview.el" (22676 +;;;;;; 23208 767522 81000)) ;;; Generated autoloads from net/newst-treeview.el (autoload 'newsticker-treeview "newst-treeview" "\ @@ -19551,8 +19564,8 @@ Start newsticker treeview. ;;;*** -;;;### (autoloads nil "nndiary" "gnus/nndiary.el" (22388 6373 720161 -;;;;;; 353000)) +;;;### (autoloads nil "nndiary" "gnus/nndiary.el" (22676 23208 690522 +;;;;;; 395000)) ;;; Generated autoloads from gnus/nndiary.el (autoload 'nndiary-generate-nov-databases "nndiary" "\ @@ -19562,8 +19575,8 @@ Generate NOV databases in all nndiary directories. ;;;*** -;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (22388 6373 725161 -;;;;;; 403000)) +;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (22676 23208 691522 +;;;;;; 391000)) ;;; Generated autoloads from gnus/nndoc.el (autoload 'nndoc-add-type "nndoc" "\ @@ -19577,8 +19590,8 @@ symbol in the alist. ;;;*** -;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (22388 6373 768161 -;;;;;; 825000)) +;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (22676 23208 +;;;;;; 691522 391000)) ;;; Generated autoloads from gnus/nnfolder.el (autoload 'nnfolder-generate-active-file "nnfolder" "\ @@ -19589,7 +19602,7 @@ This command does not work if you use short group names. ;;;*** -;;;### (autoloads nil "nnml" "gnus/nnml.el" (22388 6374 14164 244000)) +;;;### (autoloads nil "nnml" "gnus/nnml.el" (22676 23208 695522 375000)) ;;; Generated autoloads from gnus/nnml.el (autoload 'nnml-generate-nov-databases "nnml" "\ @@ -19599,7 +19612,7 @@ Generate NOV databases in all nnml directories. ;;;*** -;;;### (autoloads nil "novice" "novice.el" (22388 5707 314607 736000)) +;;;### (autoloads nil "novice" "novice.el" (22676 23208 777522 40000)) ;;; Generated autoloads from novice.el (define-obsolete-variable-alias 'disabled-command-hook 'disabled-command-function "22.1") @@ -19631,8 +19644,8 @@ future sessions. ;;;*** -;;;### (autoloads nil "nroff-mode" "textmodes/nroff-mode.el" (22388 -;;;;;; 6389 478316 324000)) +;;;### (autoloads nil "nroff-mode" "textmodes/nroff-mode.el" (22676 +;;;;;; 23208 900521 538000)) ;;; Generated autoloads from textmodes/nroff-mode.el (autoload 'nroff-mode "nroff-mode" "\ @@ -19646,14 +19659,14 @@ closing requests for requests that are used in matched pairs. ;;;*** -;;;### (autoloads nil "ntlm" "net/ntlm.el" (22388 6377 844201 910000)) +;;;### (autoloads nil "ntlm" "net/ntlm.el" (22676 23208 767522 81000)) ;;; Generated autoloads from net/ntlm.el (push (purecopy '(ntlm 2 0 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "nxml-glyph" "nxml/nxml-glyph.el" (22388 6379 -;;;;;; 155214 803000)) +;;;### (autoloads nil "nxml-glyph" "nxml/nxml-glyph.el" (22676 23208 +;;;;;; 777522 40000)) ;;; Generated autoloads from nxml/nxml-glyph.el (autoload 'nxml-glyph-display-string "nxml-glyph" "\ @@ -19665,8 +19678,8 @@ Return nil if the face cannot display a glyph for N. ;;;*** -;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (22388 6379 -;;;;;; 228215 522000)) +;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (22676 23208 +;;;;;; 778522 36000)) ;;; Generated autoloads from nxml/nxml-mode.el (autoload 'nxml-mode "nxml-mode" "\ @@ -19726,8 +19739,8 @@ Many aspects this mode can be customized using ;;;*** -;;;### (autoloads nil "nxml-uchnm" "nxml/nxml-uchnm.el" (22388 6379 -;;;;;; 309216 317000)) +;;;### (autoloads nil "nxml-uchnm" "nxml/nxml-uchnm.el" (22676 23208 +;;;;;; 779522 32000)) ;;; Generated autoloads from nxml/nxml-uchnm.el (autoload 'nxml-enable-unicode-char-name-sets "nxml-uchnm" "\ @@ -19739,8 +19752,8 @@ the variable `nxml-enabled-unicode-blocks'. ;;;*** -;;;### (autoloads nil "octave" "progmodes/octave.el" (22388 6387 -;;;;;; 328295 179000)) +;;;### (autoloads nil "octave" "progmodes/octave.el" (22676 23208 +;;;;;; 863521 689000)) ;;; Generated autoloads from progmodes/octave.el (autoload 'octave-mode "octave" "\ @@ -19777,8 +19790,8 @@ startup file, `~/.emacs-octave'. ;;;*** -;;;### (autoloads nil "opascal" "progmodes/opascal.el" (22388 6387 -;;;;;; 367295 563000)) +;;;### (autoloads nil "opascal" "progmodes/opascal.el" (22676 23208 +;;;;;; 864521 685000)) ;;; Generated autoloads from progmodes/opascal.el (define-obsolete-function-alias 'delphi-mode 'opascal-mode "24.4") @@ -19813,7 +19826,7 @@ Coloring: ;;;*** -;;;### (autoloads nil "org" "org/org.el" (22587 10177 795473 972000)) +;;;### (autoloads nil "org" "org/org.el" (22676 23208 820521 864000)) ;;; Generated autoloads from org/org.el (autoload 'org-babel-do-load-languages "org" "\ @@ -20034,8 +20047,8 @@ Call the customize function with org as argument. ;;;*** -;;;### (autoloads nil "org-agenda" "org/org-agenda.el" (22388 6380 -;;;;;; 492227 952000)) +;;;### (autoloads nil "org-agenda" "org/org-agenda.el" (22676 23208 +;;;;;; 804521 930000)) ;;; Generated autoloads from org/org-agenda.el (autoload 'org-toggle-sticky-agenda "org-agenda" "\ @@ -20308,8 +20321,8 @@ to override `appt-message-warning-time'. ;;;*** -;;;### (autoloads nil "org-capture" "org/org-capture.el" (22388 6380 -;;;;;; 765230 636000)) +;;;### (autoloads nil "org-capture" "org/org-capture.el" (22676 23208 +;;;;;; 805521 926000)) ;;; Generated autoloads from org/org-capture.el (autoload 'org-capture-string "org-capture" "\ @@ -20351,8 +20364,8 @@ Set `org-capture-templates' to be similar to `org-remember-templates'. ;;;*** -;;;### (autoloads nil "org-colview" "org/org-colview.el" (22388 6380 -;;;;;; 918232 141000)) +;;;### (autoloads nil "org-colview" "org/org-colview.el" (22676 23208 +;;;;;; 806521 921000)) ;;; Generated autoloads from org/org-colview.el (autoload 'org-columns-remove-overlays "org-colview" "\ @@ -20415,8 +20428,8 @@ Turn on or update column view in the agenda. ;;;*** -;;;### (autoloads nil "org-compat" "org/org-compat.el" (22388 6380 -;;;;;; 946232 416000)) +;;;### (autoloads nil "org-compat" "org/org-compat.el" (22676 23208 +;;;;;; 807521 917000)) ;;; Generated autoloads from org/org-compat.el (autoload 'org-check-version "org-compat" "\ @@ -20426,8 +20439,8 @@ Try very hard to provide sensible version strings. ;;;*** -;;;### (autoloads nil "org-macs" "org/org-macs.el" (22388 6381 325236 -;;;;;; 144000)) +;;;### (autoloads nil "org-macs" "org/org-macs.el" (22676 23208 812521 +;;;;;; 897000)) ;;; Generated autoloads from org/org-macs.el (autoload 'org-load-noerror-mustsuffix "org-macs" "\ @@ -20437,8 +20450,8 @@ Load FILE with optional arguments NOERROR and MUSTSUFFIX. Drop the MUSTSUFFIX a ;;;*** -;;;### (autoloads nil "org-version" "org/org-version.el" (22388 6381 -;;;;;; 568238 534000)) +;;;### (autoloads nil "org-version" "org/org-version.el" (22387 39328 +;;;;;; 229705 374000)) ;;; Generated autoloads from org/org-version.el (autoload 'org-release "org-version" "\ @@ -20455,8 +20468,8 @@ The Git version of org-mode. ;;;*** -;;;### (autoloads nil "outline" "outline.el" (22587 10177 795473 -;;;;;; 972000)) +;;;### (autoloads nil "outline" "outline.el" (22676 23208 827521 +;;;;;; 836000)) ;;; Generated autoloads from outline.el (put 'outline-regexp 'safe-local-variable 'stringp) (put 'outline-heading-end-regexp 'safe-local-variable 'stringp) @@ -20499,8 +20512,8 @@ See the command `outline-mode' for more information on this mode. ;;;*** -;;;### (autoloads nil "package" "emacs-lisp/package.el" (22420 38537 -;;;;;; 270424 442000)) +;;;### (autoloads nil "package" "emacs-lisp/package.el" (22676 23208 +;;;;;; 615522 701000)) ;;; Generated autoloads from emacs-lisp/package.el (push (purecopy '(package 1 1 0)) package--builtin-versions) @@ -20618,7 +20631,7 @@ The list is displayed in a buffer named `*Packages*'. ;;;*** -;;;### (autoloads nil "paren" "paren.el" (22388 5707 384608 424000)) +;;;### (autoloads nil "paren" "paren.el" (22676 23208 827521 836000)) ;;; Generated autoloads from paren.el (defvar show-paren-mode nil "\ @@ -20645,8 +20658,8 @@ matching parenthesis is highlighted in `show-paren-style' after ;;;*** -;;;### (autoloads nil "parse-time" "calendar/parse-time.el" (22388 -;;;;;; 6368 186106 930000)) +;;;### (autoloads nil "parse-time" "calendar/parse-time.el" (22676 +;;;;;; 23208 563522 913000)) ;;; Generated autoloads from calendar/parse-time.el (put 'parse-time-rules 'risky-local-variable t) @@ -20659,8 +20672,8 @@ unknown are returned as nil. ;;;*** -;;;### (autoloads nil "pascal" "progmodes/pascal.el" (22388 6387 -;;;;;; 391295 799000)) +;;;### (autoloads nil "pascal" "progmodes/pascal.el" (22676 23208 +;;;;;; 864521 685000)) ;;; Generated autoloads from progmodes/pascal.el (autoload 'pascal-mode "pascal" "\ @@ -20709,8 +20722,8 @@ See also the user variables `pascal-type-keywords', `pascal-start-keywords' and ;;;*** -;;;### (autoloads nil "password-cache" "password-cache.el" (22388 -;;;;;; 5707 386608 444000)) +;;;### (autoloads nil "password-cache" "password-cache.el" (22676 +;;;;;; 23208 827521 836000)) ;;; Generated autoloads from password-cache.el (defvar password-cache t "\ @@ -20731,8 +20744,8 @@ Check if KEY is in the cache. ;;;*** -;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (22388 6369 618121 -;;;;;; 13000)) +;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (22676 23208 +;;;;;; 615522 701000)) ;;; Generated autoloads from emacs-lisp/pcase.el (autoload 'pcase "pcase" "\ @@ -20852,8 +20865,8 @@ to this macro. ;;;*** -;;;### (autoloads nil "pcmpl-cvs" "pcmpl-cvs.el" (22388 5707 387608 -;;;;;; 454000)) +;;;### (autoloads nil "pcmpl-cvs" "pcmpl-cvs.el" (22676 23208 827521 +;;;;;; 836000)) ;;; Generated autoloads from pcmpl-cvs.el (autoload 'pcomplete/cvs "pcmpl-cvs" "\ @@ -20863,8 +20876,8 @@ Completion rules for the `cvs' command. ;;;*** -;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (22388 5707 389608 -;;;;;; 473000)) +;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (22676 23208 827521 +;;;;;; 836000)) ;;; Generated autoloads from pcmpl-gnu.el (autoload 'pcomplete/gzip "pcmpl-gnu" "\ @@ -20891,8 +20904,8 @@ Completion for the GNU tar utility. ;;;*** -;;;### (autoloads nil "pcmpl-linux" "pcmpl-linux.el" (22388 5707 -;;;;;; 397608 552000)) +;;;### (autoloads nil "pcmpl-linux" "pcmpl-linux.el" (22676 23208 +;;;;;; 828521 832000)) ;;; Generated autoloads from pcmpl-linux.el (autoload 'pcomplete/kill "pcmpl-linux" "\ @@ -20912,8 +20925,8 @@ Completion for GNU/Linux `mount'. ;;;*** -;;;### (autoloads nil "pcmpl-rpm" "pcmpl-rpm.el" (22388 5707 398608 -;;;;;; 562000)) +;;;### (autoloads nil "pcmpl-rpm" "pcmpl-rpm.el" (22676 23208 828521 +;;;;;; 832000)) ;;; Generated autoloads from pcmpl-rpm.el (autoload 'pcomplete/rpm "pcmpl-rpm" "\ @@ -20923,8 +20936,8 @@ Completion for the `rpm' command. ;;;*** -;;;### (autoloads nil "pcmpl-unix" "pcmpl-unix.el" (22388 5707 426608 -;;;;;; 837000)) +;;;### (autoloads nil "pcmpl-unix" "pcmpl-unix.el" (22676 23208 828521 +;;;;;; 832000)) ;;; Generated autoloads from pcmpl-unix.el (autoload 'pcomplete/cd "pcmpl-unix" "\ @@ -20979,7 +20992,8 @@ Includes files as well as host names followed by a colon. ;;;*** -;;;### (autoloads nil "pcmpl-x" "pcmpl-x.el" (22388 5707 427608 847000)) +;;;### (autoloads nil "pcmpl-x" "pcmpl-x.el" (22676 23208 828521 +;;;;;; 832000)) ;;; Generated autoloads from pcmpl-x.el (autoload 'pcomplete/tlmgr "pcmpl-x" "\ @@ -21003,8 +21017,8 @@ Completion for the `ag' command. ;;;*** -;;;### (autoloads nil "pcomplete" "pcomplete.el" (22388 5707 441608 -;;;;;; 985000)) +;;;### (autoloads nil "pcomplete" "pcomplete.el" (22676 23208 828521 +;;;;;; 832000)) ;;; Generated autoloads from pcomplete.el (autoload 'pcomplete "pcomplete" "\ @@ -21061,7 +21075,7 @@ Setup `shell-mode' to use pcomplete. ;;;*** -;;;### (autoloads nil "pcvs" "vc/pcvs.el" (22587 10177 812474 210000)) +;;;### (autoloads nil "pcvs" "vc/pcvs.el" (22676 23208 925521 436000)) ;;; Generated autoloads from vc/pcvs.el (autoload 'cvs-checkout "pcvs" "\ @@ -21136,8 +21150,8 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d ;;;*** -;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (22388 6391 155332 -;;;;;; 816000)) +;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (22676 23208 +;;;;;; 924521 440000)) ;;; 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)) "\ @@ -21145,8 +21159,8 @@ Global menu used by PCL-CVS.") ;;;*** -;;;### (autoloads nil "perl-mode" "progmodes/perl-mode.el" (22388 -;;;;;; 6387 473296 605000)) +;;;### (autoloads nil "perl-mode" "progmodes/perl-mode.el" (22676 +;;;;;; 23208 864521 685000)) ;;; Generated autoloads from progmodes/perl-mode.el (put 'perl-indent-level 'safe-local-variable 'integerp) (put 'perl-continued-statement-offset 'safe-local-variable 'integerp) @@ -21207,8 +21221,8 @@ Turning on Perl mode runs the normal hook `perl-mode-hook'. ;;;*** -;;;### (autoloads nil "picture" "textmodes/picture.el" (22388 6389 -;;;;;; 521316 747000)) +;;;### (autoloads nil "picture" "textmodes/picture.el" (22676 23208 +;;;;;; 901521 534000)) ;;; Generated autoloads from textmodes/picture.el (autoload 'picture-mode "picture" "\ @@ -21288,8 +21302,8 @@ they are not by default assigned to keys. ;;;*** -;;;### (autoloads nil "pinentry" "net/pinentry.el" (22388 6377 846201 -;;;;;; 930000)) +;;;### (autoloads nil "pinentry" "net/pinentry.el" (22676 23208 767522 +;;;;;; 81000)) ;;; Generated autoloads from net/pinentry.el (push (purecopy '(pinentry 0 1)) package--builtin-versions) @@ -21306,8 +21320,8 @@ will not be shown. ;;;*** -;;;### (autoloads nil "plstore" "gnus/plstore.el" (22388 6374 119165 -;;;;;; 277000)) +;;;### (autoloads nil "plstore" "gnus/plstore.el" (22676 23208 697522 +;;;;;; 367000)) ;;; Generated autoloads from gnus/plstore.el (autoload 'plstore-open "plstore" "\ @@ -21322,7 +21336,8 @@ Major mode for editing PLSTORE files. ;;;*** -;;;### (autoloads nil "po" "textmodes/po.el" (22388 6389 566317 189000)) +;;;### (autoloads nil "po" "textmodes/po.el" (22676 23208 901521 +;;;;;; 534000)) ;;; Generated autoloads from textmodes/po.el (autoload 'po-find-file-coding-system "po" "\ @@ -21333,7 +21348,7 @@ Called through `file-coding-system-alist', before the file is visited for real. ;;;*** -;;;### (autoloads nil "pong" "play/pong.el" (22388 6383 433256 875000)) +;;;### (autoloads nil "pong" "play/pong.el" (22676 23208 832521 815000)) ;;; Generated autoloads from play/pong.el (autoload 'pong "pong" "\ @@ -21349,7 +21364,7 @@ pong-mode keybindings:\\ ;;;*** -;;;### (autoloads nil "pop3" "gnus/pop3.el" (22388 6374 119165 277000)) +;;;### (autoloads nil "pop3" "gnus/pop3.el" (22676 23208 697522 367000)) ;;; Generated autoloads from gnus/pop3.el (autoload 'pop3-movemail "pop3" "\ @@ -21360,8 +21375,8 @@ Use streaming commands. ;;;*** -;;;### (autoloads nil "pp" "emacs-lisp/pp.el" (22388 6369 620121 -;;;;;; 33000)) +;;;### (autoloads nil "pp" "emacs-lisp/pp.el" (22676 23208 615522 +;;;;;; 701000)) ;;; Generated autoloads from emacs-lisp/pp.el (autoload 'pp-to-string "pp" "\ @@ -21411,8 +21426,8 @@ Ignores leading comment characters. ;;;*** -;;;### (autoloads nil "printing" "printing.el" (22587 10177 797474 -;;;;;; 0)) +;;;### (autoloads nil "printing" "printing.el" (22676 23208 834521 +;;;;;; 807000)) ;;; Generated autoloads from printing.el (push (purecopy '(printing 6 9 3)) package--builtin-versions) @@ -22000,7 +22015,7 @@ are both set to t. ;;;*** -;;;### (autoloads nil "proced" "proced.el" (22388 5707 663611 168000)) +;;;### (autoloads nil "proced" "proced.el" (22676 23208 835521 803000)) ;;; Generated autoloads from proced.el (autoload 'proced "proced" "\ @@ -22018,8 +22033,8 @@ Proced buffers. ;;;*** -;;;### (autoloads nil "profiler" "profiler.el" (22431 53468 722634 -;;;;;; 211000)) +;;;### (autoloads nil "profiler" "profiler.el" (22676 23208 835521 +;;;;;; 803000)) ;;; Generated autoloads from profiler.el (autoload 'profiler-start "profiler" "\ @@ -22047,8 +22062,8 @@ Open profile FILENAME. ;;;*** -;;;### (autoloads nil "project" "progmodes/project.el" (22388 6387 -;;;;;; 479296 664000)) +;;;### (autoloads nil "project" "progmodes/project.el" (22676 23208 +;;;;;; 865521 681000)) ;;; Generated autoloads from progmodes/project.el (autoload 'project-current "project" "\ @@ -22090,8 +22105,8 @@ recognized. ;;;*** -;;;### (autoloads nil "prolog" "progmodes/prolog.el" (22388 6387 -;;;;;; 512296 989000)) +;;;### (autoloads nil "prolog" "progmodes/prolog.el" (22676 23208 +;;;;;; 865521 681000)) ;;; Generated autoloads from progmodes/prolog.el (autoload 'prolog-mode "prolog" "\ @@ -22124,7 +22139,7 @@ With prefix argument ARG, restart the Prolog process if running before. ;;;*** -;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (22388 5707 728611 808000)) +;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (22676 23208 878521 628000)) ;;; 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")) "\ @@ -22135,8 +22150,8 @@ The default value is (\"/usr/local/share/emacs/fonts/bdf\").") ;;;*** -;;;### (autoloads nil "ps-mode" "progmodes/ps-mode.el" (22388 6387 -;;;;;; 553297 392000)) +;;;### (autoloads nil "ps-mode" "progmodes/ps-mode.el" (22676 23208 +;;;;;; 866521 676000)) ;;; Generated autoloads from progmodes/ps-mode.el (push (purecopy '(ps-mode 1 1 9)) package--builtin-versions) @@ -22182,8 +22197,8 @@ Typing \\\\[ps-run-goto-error] when the cursor is at the number ;;;*** -;;;### (autoloads nil "ps-print" "ps-print.el" (22388 5707 937613 -;;;;;; 863000)) +;;;### (autoloads nil "ps-print" "ps-print.el" (22676 23208 880521 +;;;;;; 619000)) ;;; Generated autoloads from ps-print.el (push (purecopy '(ps-print 7 3 5)) package--builtin-versions) @@ -22380,8 +22395,8 @@ If EXTENSION is any other symbol, it is ignored. ;;;*** -;;;### (autoloads nil "pulse" "cedet/pulse.el" (22388 6368 485109 -;;;;;; 870000)) +;;;### (autoloads nil "pulse" "cedet/pulse.el" (22676 23208 572522 +;;;;;; 877000)) ;;; Generated autoloads from cedet/pulse.el (push (purecopy '(pulse 1 0)) package--builtin-versions) @@ -22399,8 +22414,8 @@ Optional argument FACE specifies the face to do the highlighting. ;;;*** -;;;### (autoloads nil "python" "progmodes/python.el" (22587 10177 -;;;;;; 802474 70000)) +;;;### (autoloads nil "python" "progmodes/python.el" (22676 23208 +;;;;;; 867521 672000)) ;;; Generated autoloads from progmodes/python.el (push (purecopy '(python 0 25 1)) package--builtin-versions) @@ -22437,7 +22452,7 @@ Major mode for editing Python files. ;;;*** -;;;### (autoloads nil "qp" "gnus/qp.el" (22388 6374 122165 307000)) +;;;### (autoloads nil "qp" "gnus/qp.el" (22676 23208 697522 367000)) ;;; Generated autoloads from gnus/qp.el (autoload 'quoted-printable-decode-region "qp" "\ @@ -22456,8 +22471,8 @@ them into characters should be done separately. ;;;*** -;;;### (autoloads nil "quail" "international/quail.el" (22388 6374 -;;;;;; 689170 883000)) +;;;### (autoloads nil "quail" "international/quail.el" (22676 23208 +;;;;;; 716522 289000)) ;;; Generated autoloads from international/quail.el (autoload 'quail-title "quail" "\ @@ -22687,8 +22702,8 @@ of each directory. ;;;*** -;;;### (autoloads nil "quail/hangul" "leim/quail/hangul.el" (22388 -;;;;;; 7510 443340 205000)) +;;;### (autoloads nil "quail/hangul" "leim/quail/hangul.el" (22676 +;;;;;; 23208 733522 220000)) ;;; Generated autoloads from leim/quail/hangul.el (autoload 'hangul-input-method-activate "quail/hangul" "\ @@ -22701,7 +22716,7 @@ HELP-TEXT is a text set in `hangul-input-method-help-text'. ;;;*** ;;;### (autoloads nil "quail/uni-input" "leim/quail/uni-input.el" -;;;;;; (22388 7511 889354 425000)) +;;;;;; (22676 23208 737522 203000)) ;;; Generated autoloads from leim/quail/uni-input.el (autoload 'ucs-input-activate "quail/uni-input" "\ @@ -22715,8 +22730,8 @@ While this input method is active, the variable ;;;*** -;;;### (autoloads nil "quickurl" "net/quickurl.el" (22388 6377 884202 -;;;;;; 303000)) +;;;### (autoloads nil "quickurl" "net/quickurl.el" (22676 23208 767522 +;;;;;; 81000)) ;;; 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" "\ @@ -22787,7 +22802,8 @@ Display `quickurl-list' as a formatted list using `quickurl-list-mode'. ;;;*** -;;;### (autoloads nil "rcirc" "net/rcirc.el" (22388 6377 971203 159000)) +;;;### (autoloads nil "rcirc" "net/rcirc.el" (22676 23208 768522 +;;;;;; 77000)) ;;; Generated autoloads from net/rcirc.el (autoload 'rcirc "rcirc" "\ @@ -22826,8 +22842,8 @@ if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "re-builder" "emacs-lisp/re-builder.el" (22388 -;;;;;; 6369 628121 111000)) +;;;### (autoloads nil "re-builder" "emacs-lisp/re-builder.el" (22676 +;;;;;; 23208 616522 697000)) ;;; Generated autoloads from emacs-lisp/re-builder.el (defalias 'regexp-builder 're-builder) @@ -22845,7 +22861,8 @@ matching parts of the target buffer will be highlighted. ;;;*** -;;;### (autoloads nil "recentf" "recentf.el" (22388 5708 102615 486000)) +;;;### (autoloads nil "recentf" "recentf.el" (22676 23208 880521 +;;;;;; 619000)) ;;; Generated autoloads from recentf.el (defvar recentf-mode nil "\ @@ -22872,7 +22889,7 @@ were operated on recently. ;;;*** -;;;### (autoloads nil "rect" "rect.el" (22587 10177 803474 84000)) +;;;### (autoloads nil "rect" "rect.el" (22676 23208 880521 619000)) ;;; Generated autoloads from rect.el (autoload 'delete-rectangle "rect" "\ @@ -23012,8 +23029,8 @@ Activates the region if needed. Only lasts until the region is deactivated. ;;;*** -;;;### (autoloads nil "refill" "textmodes/refill.el" (22388 6389 -;;;;;; 566317 189000)) +;;;### (autoloads nil "refill" "textmodes/refill.el" (22676 23208 +;;;;;; 902521 530000)) ;;; Generated autoloads from textmodes/refill.el (autoload 'refill-mode "refill" "\ @@ -23033,8 +23050,8 @@ For true \"word wrap\" behavior, use `visual-line-mode' instead. ;;;*** -;;;### (autoloads nil "reftex" "textmodes/reftex.el" (22388 6389 -;;;;;; 951320 975000)) +;;;### (autoloads nil "reftex" "textmodes/reftex.el" (22676 23208 +;;;;;; 906521 513000)) ;;; Generated autoloads from textmodes/reftex.el (autoload 'reftex-citation "reftex-cite" nil t) (autoload 'reftex-all-document-files "reftex-parse") @@ -23087,8 +23104,8 @@ This enforces rescanning the buffer on next use. ;;;*** -;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (22388 -;;;;;; 6389 866320 139000)) +;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (22676 +;;;;;; 23208 905521 517000)) ;;; 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)))) @@ -23097,8 +23114,8 @@ This enforces rescanning the buffer on next use. ;;;*** -;;;### (autoloads nil "regexp-opt" "emacs-lisp/regexp-opt.el" (22489 -;;;;;; 43024 126096 745000)) +;;;### (autoloads nil "regexp-opt" "emacs-lisp/regexp-opt.el" (22676 +;;;;;; 23208 616522 697000)) ;;; Generated autoloads from emacs-lisp/regexp-opt.el (autoload 'regexp-opt "regexp-opt" "\ @@ -23153,15 +23170,15 @@ This means the number of non-shy regexp grouping constructs ;;;*** -;;;### (autoloads nil "regi" "emacs-lisp/regi.el" (22388 6369 632121 -;;;;;; 150000)) +;;;### (autoloads nil "regi" "emacs-lisp/regi.el" (22676 23208 616522 +;;;;;; 697000)) ;;; Generated autoloads from emacs-lisp/regi.el (push (purecopy '(regi 1 8)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "remember" "textmodes/remember.el" (22388 6389 -;;;;;; 996321 418000)) +;;;### (autoloads nil "remember" "textmodes/remember.el" (22676 23208 +;;;;;; 907521 509000)) ;;; Generated autoloads from textmodes/remember.el (push (purecopy '(remember 2 0)) package--builtin-versions) @@ -23215,7 +23232,7 @@ to turn the *scratch* buffer into your notes buffer. ;;;*** -;;;### (autoloads nil "repeat" "repeat.el" (22388 5708 226616 706000)) +;;;### (autoloads nil "repeat" "repeat.el" (22676 23208 881521 615000)) ;;; Generated autoloads from repeat.el (push (purecopy '(repeat 0 51)) package--builtin-versions) @@ -23238,8 +23255,8 @@ recently executed command not bound to an input event\". ;;;*** -;;;### (autoloads nil "reporter" "mail/reporter.el" (22388 6375 640180 -;;;;;; 235000)) +;;;### (autoloads nil "reporter" "mail/reporter.el" (22676 23208 +;;;;;; 741522 187000)) ;;; Generated autoloads from mail/reporter.el (autoload 'reporter-submit-bug-report "reporter" "\ @@ -23270,8 +23287,8 @@ mail-sending package is used for editing and sending the message. ;;;*** -;;;### (autoloads nil "reposition" "reposition.el" (22388 5708 409618 -;;;;;; 505000)) +;;;### (autoloads nil "reposition" "reposition.el" (22676 23208 881521 +;;;;;; 615000)) ;;; Generated autoloads from reposition.el (autoload 'reposition-window "reposition" "\ @@ -23297,7 +23314,7 @@ first comment line visible (if point is in a comment). ;;;*** -;;;### (autoloads nil "reveal" "reveal.el" (22388 5708 409618 505000)) +;;;### (autoloads nil "reveal" "reveal.el" (22676 23208 881521 615000)) ;;; Generated autoloads from reveal.el (autoload 'reveal-mode "reveal" "\ @@ -23333,8 +23350,8 @@ the mode if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "ring" "emacs-lisp/ring.el" (22388 6369 634121 -;;;;;; 170000)) +;;;### (autoloads nil "ring" "emacs-lisp/ring.el" (22676 23208 616522 +;;;;;; 697000)) ;;; Generated autoloads from emacs-lisp/ring.el (autoload 'ring-p "ring" "\ @@ -23349,8 +23366,8 @@ Make a ring that can contain SIZE elements. ;;;*** -;;;### (autoloads nil "rlogin" "net/rlogin.el" (22388 6377 978203 -;;;;;; 228000)) +;;;### (autoloads nil "rlogin" "net/rlogin.el" (22676 23208 768522 +;;;;;; 77000)) ;;; Generated autoloads from net/rlogin.el (autoload 'rlogin "rlogin" "\ @@ -23394,8 +23411,8 @@ variable. ;;;*** -;;;### (autoloads nil "rmail" "mail/rmail.el" (22388 6375 722181 -;;;;;; 42000)) +;;;### (autoloads nil "rmail" "mail/rmail.el" (22676 23208 742522 +;;;;;; 183000)) ;;; Generated autoloads from mail/rmail.el (defvar rmail-file-name (purecopy "~/RMAIL") "\ @@ -23592,8 +23609,8 @@ Set PASSWORD to be used for retrieving mail from a POP or IMAP server. ;;;*** -;;;### (autoloads nil "rmailout" "mail/rmailout.el" (22388 6375 836182 -;;;;;; 163000)) +;;;### (autoloads nil "rmailout" "mail/rmailout.el" (22676 23208 +;;;;;; 743522 179000)) ;;; Generated autoloads from mail/rmailout.el (put 'rmail-output-file-alist 'risky-local-variable t) @@ -23657,8 +23674,8 @@ than appending to it. Deletes the message after writing if ;;;*** -;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (22388 6379 -;;;;;; 311216 337000)) +;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (22676 23208 +;;;;;; 779522 32000)) ;;; Generated autoloads from nxml/rng-cmpct.el (autoload 'rng-c-load-schema "rng-cmpct" "\ @@ -23669,8 +23686,8 @@ Return a pattern. ;;;*** -;;;### (autoloads nil "rng-nxml" "nxml/rng-nxml.el" (22388 6379 395217 -;;;;;; 163000)) +;;;### (autoloads nil "rng-nxml" "nxml/rng-nxml.el" (22676 23208 +;;;;;; 780522 28000)) ;;; Generated autoloads from nxml/rng-nxml.el (autoload 'rng-nxml-mode-init "rng-nxml" "\ @@ -23682,8 +23699,8 @@ Validation will be enabled if `rng-nxml-auto-validate-flag' is non-nil. ;;;*** -;;;### (autoloads nil "rng-valid" "nxml/rng-valid.el" (22388 6379 -;;;;;; 440217 606000)) +;;;### (autoloads nil "rng-valid" "nxml/rng-valid.el" (22676 23208 +;;;;;; 780522 28000)) ;;; Generated autoloads from nxml/rng-valid.el (autoload 'rng-validate-mode "rng-valid" "\ @@ -23713,8 +23730,8 @@ to use for finding the schema. ;;;*** -;;;### (autoloads nil "rng-xsd" "nxml/rng-xsd.el" (22388 6379 480217 -;;;;;; 999000)) +;;;### (autoloads nil "rng-xsd" "nxml/rng-xsd.el" (22676 23208 781522 +;;;;;; 24000)) ;;; Generated autoloads from nxml/rng-xsd.el (put 'http://www\.w3\.org/2001/XMLSchema-datatypes 'rng-dt-compile 'rng-xsd-compile) @@ -23741,8 +23758,8 @@ must be equal. ;;;*** -;;;### (autoloads nil "robin" "international/robin.el" (22388 6374 -;;;;;; 714171 129000)) +;;;### (autoloads nil "robin" "international/robin.el" (22387 39327 +;;;;;; 617707 559000)) ;;; Generated autoloads from international/robin.el (autoload 'robin-define-package "robin" "\ @@ -23774,7 +23791,7 @@ Start using robin package NAME, which is a string. ;;;*** -;;;### (autoloads nil "rot13" "rot13.el" (22388 5708 410618 514000)) +;;;### (autoloads nil "rot13" "rot13.el" (22676 23208 881521 615000)) ;;; Generated autoloads from rot13.el (autoload 'rot13 "rot13" "\ @@ -23811,8 +23828,8 @@ Toggle the use of ROT13 encoding for the current window. ;;;*** -;;;### (autoloads nil "rst" "textmodes/rst.el" (22587 10177 810474 -;;;;;; 182000)) +;;;### (autoloads nil "rst" "textmodes/rst.el" (22676 23208 907521 +;;;;;; 509000)) ;;; Generated autoloads from textmodes/rst.el (add-to-list 'auto-mode-alist (purecopy '("\\.re?st\\'" . rst-mode))) @@ -23842,8 +23859,8 @@ for modes derived from Text mode, like Mail mode. ;;;*** -;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (22388 -;;;;;; 6387 729299 124000)) +;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (22676 +;;;;;; 23208 867521 672000)) ;;; Generated autoloads from progmodes/ruby-mode.el (push (purecopy '(ruby-mode 1 2)) package--builtin-versions) @@ -23860,8 +23877,8 @@ Major mode for editing Ruby code. ;;;*** -;;;### (autoloads nil "ruler-mode" "ruler-mode.el" (22388 5708 411618 -;;;;;; 524000)) +;;;### (autoloads nil "ruler-mode" "ruler-mode.el" (22676 23208 882521 +;;;;;; 611000)) ;;; Generated autoloads from ruler-mode.el (push (purecopy '(ruler-mode 1 6)) package--builtin-versions) @@ -23879,8 +23896,8 @@ if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "rx" "emacs-lisp/rx.el" (22388 6369 650121 -;;;;;; 327000)) +;;;### (autoloads nil "rx" "emacs-lisp/rx.el" (22676 23208 616522 +;;;;;; 697000)) ;;; Generated autoloads from emacs-lisp/rx.el (autoload 'rx-to-string "rx" "\ @@ -24191,15 +24208,15 @@ enclosed in `(and ...)'. ;;;*** -;;;### (autoloads nil "sasl-ntlm" "net/sasl-ntlm.el" (22388 6378 -;;;;;; 9203 533000)) +;;;### (autoloads nil "sasl-ntlm" "net/sasl-ntlm.el" (22676 23208 +;;;;;; 768522 77000)) ;;; Generated autoloads from net/sasl-ntlm.el (push (purecopy '(sasl 1 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "savehist" "savehist.el" (22388 5708 411618 -;;;;;; 524000)) +;;;### (autoloads nil "savehist" "savehist.el" (22676 23208 882521 +;;;;;; 611000)) ;;; Generated autoloads from savehist.el (push (purecopy '(savehist 24)) package--builtin-versions) @@ -24232,8 +24249,8 @@ histories, which is probably undesirable. ;;;*** -;;;### (autoloads nil "saveplace" "saveplace.el" (22388 5708 453618 -;;;;;; 938000)) +;;;### (autoloads nil "saveplace" "saveplace.el" (22676 23208 882521 +;;;;;; 611000)) ;;; Generated autoloads from saveplace.el (defvar save-place-mode nil "\ @@ -24271,8 +24288,8 @@ file: ;;;*** -;;;### (autoloads nil "scheme" "progmodes/scheme.el" (22388 6387 -;;;;;; 746299 291000)) +;;;### (autoloads nil "scheme" "progmodes/scheme.el" (22676 23208 +;;;;;; 868521 668000)) ;;; Generated autoloads from progmodes/scheme.el (autoload 'scheme-mode "scheme" "\ @@ -24311,8 +24328,8 @@ that variable's value is a string. ;;;*** -;;;### (autoloads nil "score-mode" "gnus/score-mode.el" (22388 6374 -;;;;;; 162165 700000)) +;;;### (autoloads nil "score-mode" "gnus/score-mode.el" (22676 23208 +;;;;;; 698522 362000)) ;;; Generated autoloads from gnus/score-mode.el (autoload 'gnus-score-mode "score-mode" "\ @@ -24325,8 +24342,8 @@ This mode is an extended emacs-lisp mode. ;;;*** -;;;### (autoloads nil "scroll-all" "scroll-all.el" (22388 5708 454618 -;;;;;; 948000)) +;;;### (autoloads nil "scroll-all" "scroll-all.el" (22676 23208 882521 +;;;;;; 611000)) ;;; Generated autoloads from scroll-all.el (defvar scroll-all-mode nil "\ @@ -24352,8 +24369,8 @@ one window apply to all visible windows in the same frame. ;;;*** -;;;### (autoloads nil "scroll-lock" "scroll-lock.el" (22388 5708 -;;;;;; 509619 488000)) +;;;### (autoloads nil "scroll-lock" "scroll-lock.el" (22676 23208 +;;;;;; 882521 611000)) ;;; Generated autoloads from scroll-lock.el (autoload 'scroll-lock-mode "scroll-lock" "\ @@ -24369,16 +24386,16 @@ vertically fixed relative to window boundaries during scrolling. ;;;*** -;;;### (autoloads nil "secrets" "net/secrets.el" (22388 6378 21203 -;;;;;; 651000)) +;;;### (autoloads nil "secrets" "net/secrets.el" (22676 23208 769522 +;;;;;; 73000)) ;;; Generated autoloads from net/secrets.el (when (featurep 'dbusbind) (autoload 'secrets-show-secrets "secrets" nil t)) ;;;*** -;;;### (autoloads nil "semantic" "cedet/semantic.el" (22388 6368 -;;;;;; 485109 870000)) +;;;### (autoloads nil "semantic" "cedet/semantic.el" (22676 23208 +;;;;;; 572522 877000)) ;;; Generated autoloads from cedet/semantic.el (push (purecopy '(semantic 2 2)) package--builtin-versions) @@ -24437,7 +24454,7 @@ Semantic mode. ;;;*** ;;;### (autoloads nil "semantic/bovine/grammar" "cedet/semantic/bovine/grammar.el" -;;;;;; (22388 11492 220498 203000)) +;;;;;; (22676 23208 574522 869000)) ;;; Generated autoloads from cedet/semantic/bovine/grammar.el (autoload 'bovine-grammar-mode "semantic/bovine/grammar" "\ @@ -24448,7 +24465,7 @@ Major mode for editing Bovine grammars. ;;;*** ;;;### (autoloads nil "semantic/wisent/grammar" "cedet/semantic/wisent/grammar.el" -;;;;;; (22388 11492 494500 898000)) +;;;;;; (22676 23208 585522 824000)) ;;; Generated autoloads from cedet/semantic/wisent/grammar.el (autoload 'wisent-grammar-mode "semantic/wisent/grammar" "\ @@ -24458,8 +24475,8 @@ Major mode for editing Wisent grammars. ;;;*** -;;;### (autoloads nil "sendmail" "mail/sendmail.el" (22630 21356 -;;;;;; 397945 237000)) +;;;### (autoloads nil "sendmail" "mail/sendmail.el" (22676 23208 +;;;;;; 744522 175000)) ;;; Generated autoloads from mail/sendmail.el (defvar mail-from-style 'default "\ @@ -24740,14 +24757,14 @@ Like `mail' command, but display mail buffer in another frame. ;;;*** -;;;### (autoloads nil "seq" "emacs-lisp/seq.el" (22489 43024 126096 -;;;;;; 745000)) +;;;### (autoloads nil "seq" "emacs-lisp/seq.el" (22676 23208 617522 +;;;;;; 693000)) ;;; Generated autoloads from emacs-lisp/seq.el (push (purecopy '(seq 2 3)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "server" "server.el" (22388 5708 590620 286000)) +;;;### (autoloads nil "server" "server.el" (22676 23208 883521 607000)) ;;; Generated autoloads from server.el (put 'server-host 'risky-local-variable t) @@ -24815,7 +24832,7 @@ only these files will be asked to be saved. ;;;*** -;;;### (autoloads nil "ses" "ses.el" (22457 44247 406108 197000)) +;;;### (autoloads nil "ses" "ses.el" (22676 23208 884521 603000)) ;;; Generated autoloads from ses.el (autoload 'ses-mode "ses" "\ @@ -24859,8 +24876,8 @@ formula: ;;;*** -;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (22388 -;;;;;; 6390 132322 756000)) +;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (22676 +;;;;;; 23208 908521 505000)) ;;; Generated autoloads from textmodes/sgml-mode.el (autoload 'sgml-mode "sgml-mode" "\ @@ -24925,8 +24942,8 @@ To work around that, do: ;;;*** -;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (22587 -;;;;;; 10177 803474 84000)) +;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (22676 +;;;;;; 23208 868521 668000)) ;;; Generated autoloads from progmodes/sh-script.el (push (purecopy '(sh-script 2 0 6)) package--builtin-versions) (put 'sh-shell 'safe-local-variable 'symbolp) @@ -24991,8 +25008,8 @@ with your script for an edit-interpret-debug cycle. ;;;*** -;;;### (autoloads nil "shadow" "emacs-lisp/shadow.el" (22388 6369 -;;;;;; 668121 504000)) +;;;### (autoloads nil "shadow" "emacs-lisp/shadow.el" (22676 23208 +;;;;;; 617522 693000)) ;;; Generated autoloads from emacs-lisp/shadow.el (autoload 'list-load-path-shadows "shadow" "\ @@ -25041,8 +25058,8 @@ function, `load-path-shadows-find'. ;;;*** -;;;### (autoloads nil "shadowfile" "shadowfile.el" (22388 5708 840622 -;;;;;; 743000)) +;;;### (autoloads nil "shadowfile" "shadowfile.el" (22676 23208 884521 +;;;;;; 603000)) ;;; Generated autoloads from shadowfile.el (autoload 'shadow-define-cluster "shadowfile" "\ @@ -25080,7 +25097,7 @@ Set up file shadowing. ;;;*** -;;;### (autoloads nil "shell" "shell.el" (22388 5708 884623 178000)) +;;;### (autoloads nil "shell" "shell.el" (22676 23208 884521 603000)) ;;; Generated autoloads from shell.el (defvar shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe") "\ @@ -25128,7 +25145,7 @@ Otherwise, one argument `-i' is passed to the shell. ;;;*** -;;;### (autoloads nil "shr" "net/shr.el" (22587 10177 786473 845000)) +;;;### (autoloads nil "shr" "net/shr.el" (22676 23208 770522 69000)) ;;; Generated autoloads from net/shr.el (autoload 'shr-render-region "shr" "\ @@ -25145,8 +25162,8 @@ DOM should be a parse tree as generated by ;;;*** -;;;### (autoloads nil "sieve" "gnus/sieve.el" (22388 6374 179165 -;;;;;; 867000)) +;;;### (autoloads nil "sieve" "gnus/sieve.el" (22676 23208 699522 +;;;;;; 358000)) ;;; Generated autoloads from gnus/sieve.el (autoload 'sieve-manage "sieve" "\ @@ -25171,8 +25188,8 @@ DOM should be a parse tree as generated by ;;;*** -;;;### (autoloads nil "sieve-mode" "gnus/sieve-mode.el" (22388 6374 -;;;;;; 173165 808000)) +;;;### (autoloads nil "sieve-mode" "gnus/sieve-mode.el" (22676 23208 +;;;;;; 699522 358000)) ;;; Generated autoloads from gnus/sieve-mode.el (autoload 'sieve-mode "sieve-mode" "\ @@ -25187,8 +25204,8 @@ Turning on Sieve mode runs `sieve-mode-hook'. ;;;*** -;;;### (autoloads nil "simula" "progmodes/simula.el" (22388 6387 -;;;;;; 879300 598000)) +;;;### (autoloads nil "simula" "progmodes/simula.el" (22676 23208 +;;;;;; 869521 664000)) ;;; Generated autoloads from progmodes/simula.el (autoload 'simula-mode "simula" "\ @@ -25236,8 +25253,8 @@ with no arguments, if that value is non-nil. ;;;*** -;;;### (autoloads nil "skeleton" "skeleton.el" (22630 21356 411945 -;;;;;; 433000)) +;;;### (autoloads nil "skeleton" "skeleton.el" (22676 23208 887521 +;;;;;; 591000)) ;;; Generated autoloads from skeleton.el (defvar skeleton-filter-function 'identity "\ @@ -25357,8 +25374,8 @@ twice for the others. ;;;*** -;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (22388 6391 -;;;;;; 279334 35000)) +;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (22676 23208 +;;;;;; 926521 431000)) ;;; Generated autoloads from vc/smerge-mode.el (autoload 'smerge-ediff "smerge-mode" "\ @@ -25385,8 +25402,8 @@ If no conflict maker is found, turn off `smerge-mode'. ;;;*** -;;;### (autoloads nil "smiley" "gnus/smiley.el" (22388 6374 180165 -;;;;;; 877000)) +;;;### (autoloads nil "smiley" "gnus/smiley.el" (22676 23208 699522 +;;;;;; 358000)) ;;; Generated autoloads from gnus/smiley.el (autoload 'smiley-region "smiley" "\ @@ -25403,8 +25420,8 @@ interactively. If there's no argument, do it at the current buffer. ;;;*** -;;;### (autoloads nil "smtpmail" "mail/smtpmail.el" (22388 6375 961183 -;;;;;; 392000)) +;;;### (autoloads nil "smtpmail" "mail/smtpmail.el" (22676 23208 +;;;;;; 744522 175000)) ;;; Generated autoloads from mail/smtpmail.el (autoload 'smtpmail-send-it "smtpmail" "\ @@ -25419,8 +25436,8 @@ Send mail that was queued as a result of setting `smtpmail-queue-mail'. ;;;*** -;;;### (autoloads nil "snake" "play/snake.el" (22388 6383 455257 -;;;;;; 91000)) +;;;### (autoloads nil "snake" "play/snake.el" (22676 23208 832521 +;;;;;; 815000)) ;;; Generated autoloads from play/snake.el (autoload 'snake "snake" "\ @@ -25443,8 +25460,8 @@ Snake mode keybindings: ;;;*** -;;;### (autoloads nil "snmp-mode" "net/snmp-mode.el" (22388 6378 -;;;;;; 107204 497000)) +;;;### (autoloads nil "snmp-mode" "net/snmp-mode.el" (22676 23208 +;;;;;; 770522 69000)) ;;; Generated autoloads from net/snmp-mode.el (autoload 'snmp-mode "snmp-mode" "\ @@ -25473,15 +25490,15 @@ then `snmpv2-mode-hook'. ;;;*** -;;;### (autoloads nil "soap-client" "net/soap-client.el" (22388 6378 -;;;;;; 185205 264000)) +;;;### (autoloads nil "soap-client" "net/soap-client.el" (22676 23208 +;;;;;; 771522 64000)) ;;; Generated autoloads from net/soap-client.el (push (purecopy '(soap-client 3 0 2)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "solar" "calendar/solar.el" (22630 21356 355944 -;;;;;; 648000)) +;;;### (autoloads nil "solar" "calendar/solar.el" (22676 23208 563522 +;;;;;; 913000)) ;;; Generated autoloads from calendar/solar.el (autoload 'sunrise-sunset "solar" "\ @@ -25496,8 +25513,8 @@ This function is suitable for execution in an init file. ;;;*** -;;;### (autoloads nil "solitaire" "play/solitaire.el" (22388 6383 -;;;;;; 455257 91000)) +;;;### (autoloads nil "solitaire" "play/solitaire.el" (22676 23208 +;;;;;; 833521 811000)) ;;; Generated autoloads from play/solitaire.el (autoload 'solitaire "solitaire" "\ @@ -25572,7 +25589,7 @@ Pick your favorite shortcuts: ;;;*** -;;;### (autoloads nil "sort" "sort.el" (22388 5709 370627 956000)) +;;;### (autoloads nil "sort" "sort.el" (22676 23208 887521 591000)) ;;; Generated autoloads from sort.el (put 'sort-fold-case 'safe-local-variable 'booleanp) @@ -25747,7 +25764,7 @@ is non-nil, it also prints a message describing the number of deletions. ;;;*** -;;;### (autoloads nil "spam" "gnus/spam.el" (22388 6374 263166 693000)) +;;;### (autoloads nil "spam" "gnus/spam.el" (22676 23208 700522 354000)) ;;; Generated autoloads from gnus/spam.el (autoload 'spam-initialize "spam" "\ @@ -25761,8 +25778,8 @@ installed through `spam-necessary-extra-headers'. ;;;*** -;;;### (autoloads nil "spam-report" "gnus/spam-report.el" (22388 -;;;;;; 6374 182165 897000)) +;;;### (autoloads nil "spam-report" "gnus/spam-report.el" (22676 +;;;;;; 23208 699522 358000)) ;;; Generated autoloads from gnus/spam-report.el (autoload 'spam-report-process-queue "spam-report" "\ @@ -25804,8 +25821,8 @@ Spam reports will be queued with the method used when ;;;*** -;;;### (autoloads nil "speedbar" "speedbar.el" (22388 5709 449628 -;;;;;; 733000)) +;;;### (autoloads nil "speedbar" "speedbar.el" (22676 23208 888521 +;;;;;; 587000)) ;;; Generated autoloads from speedbar.el (defalias 'speedbar 'speedbar-frame-mode) @@ -25829,8 +25846,8 @@ selected. If the speedbar frame is active, then select the attached frame. ;;;*** -;;;### (autoloads nil "spook" "play/spook.el" (22388 6383 458257 -;;;;;; 120000)) +;;;### (autoloads nil "spook" "play/spook.el" (22676 23208 833521 +;;;;;; 811000)) ;;; Generated autoloads from play/spook.el (autoload 'spook "spook" "\ @@ -25845,8 +25862,8 @@ Return a vector containing the lines from `spook-phrases-file'. ;;;*** -;;;### (autoloads nil "sql" "progmodes/sql.el" (22388 6387 963301 -;;;;;; 424000)) +;;;### (autoloads nil "sql" "progmodes/sql.el" (22676 23208 870521 +;;;;;; 660000)) ;;; Generated autoloads from progmodes/sql.el (push (purecopy '(sql 3 5)) package--builtin-versions) @@ -26312,15 +26329,15 @@ Run vsql as an inferior process. ;;;*** -;;;### (autoloads nil "srecode" "cedet/srecode.el" (22388 6368 506110 -;;;;;; 77000)) +;;;### (autoloads nil "srecode" "cedet/srecode.el" (22676 23208 586522 +;;;;;; 820000)) ;;; Generated autoloads from cedet/srecode.el (push (purecopy '(srecode 1 2)) package--builtin-versions) ;;;*** ;;;### (autoloads nil "srecode/srt-mode" "cedet/srecode/srt-mode.el" -;;;;;; (22388 7503 616273 65000)) +;;;;;; (22676 23208 588522 812000)) ;;; Generated autoloads from cedet/srecode/srt-mode.el (autoload 'srecode-template-mode "srecode/srt-mode" "\ @@ -26332,8 +26349,8 @@ Major-mode for writing SRecode macros. ;;;*** -;;;### (autoloads nil "starttls" "gnus/starttls.el" (22630 21356 -;;;;;; 375944 929000)) +;;;### (autoloads nil "starttls" "gnus/starttls.el" (22676 23208 +;;;;;; 700522 354000)) ;;; Generated autoloads from gnus/starttls.el (autoload 'starttls-open-stream "starttls" "\ @@ -26356,7 +26373,8 @@ GnuTLS requires a port number. ;;;*** -;;;### (autoloads nil "strokes" "strokes.el" (22388 5709 633630 542000)) +;;;### (autoloads nil "strokes" "strokes.el" (22676 23208 889521 +;;;;;; 583000)) ;;; Generated autoloads from strokes.el (autoload 'strokes-global-set-stroke "strokes" "\ @@ -26470,8 +26488,8 @@ Read a complex stroke and insert its glyph into the current buffer. ;;;*** -;;;### (autoloads nil "studly" "play/studly.el" (22388 6383 458257 -;;;;;; 120000)) +;;;### (autoloads nil "studly" "play/studly.el" (22387 39328 273705 +;;;;;; 217000)) ;;; Generated autoloads from play/studly.el (autoload 'studlify-region "studly" "\ @@ -26491,8 +26509,8 @@ Studlify-case the current buffer. ;;;*** -;;;### (autoloads nil "subword" "progmodes/subword.el" (22388 6388 -;;;;;; 3301 818000)) +;;;### (autoloads nil "subword" "progmodes/subword.el" (22676 23208 +;;;;;; 870521 660000)) ;;; Generated autoloads from progmodes/subword.el (define-obsolete-function-alias 'capitalized-words-mode 'subword-mode "25.1") @@ -26586,8 +26604,8 @@ See `superword-mode' for more information on Superword mode. ;;;*** -;;;### (autoloads nil "supercite" "mail/supercite.el" (22388 6376 -;;;;;; 4183 815000)) +;;;### (autoloads nil "supercite" "mail/supercite.el" (22676 23208 +;;;;;; 745522 171000)) ;;; Generated autoloads from mail/supercite.el (autoload 'sc-cite-original "supercite" "\ @@ -26619,7 +26637,8 @@ and `sc-post-hook' is run after the guts of this function. ;;;*** -;;;### (autoloads nil "t-mouse" "t-mouse.el" (22388 5709 919633 355000)) +;;;### (autoloads nil "t-mouse" "t-mouse.el" (22676 23208 890521 +;;;;;; 579000)) ;;; Generated autoloads from t-mouse.el (define-obsolete-function-alias 't-mouse-mode 'gpm-mouse-mode "23.1") @@ -26652,7 +26671,7 @@ GPM. This is due to limitations in GPM and the Linux kernel. ;;;*** -;;;### (autoloads nil "tabify" "tabify.el" (22388 5709 919633 355000)) +;;;### (autoloads nil "tabify" "tabify.el" (22676 23208 891521 574000)) ;;; Generated autoloads from tabify.el (autoload 'untabify "tabify" "\ @@ -26681,8 +26700,8 @@ The variable `tab-width' controls the spacing of tab stops. ;;;*** -;;;### (autoloads nil "table" "textmodes/table.el" (22388 6390 235323 -;;;;;; 768000)) +;;;### (autoloads nil "table" "textmodes/table.el" (22676 23208 909521 +;;;;;; 501000)) ;;; Generated autoloads from textmodes/table.el (autoload 'table-insert "table" "\ @@ -27253,7 +27272,7 @@ converts a table into plain text without frames. It is a companion to ;;;*** -;;;### (autoloads nil "talk" "talk.el" (22388 5709 921633 374000)) +;;;### (autoloads nil "talk" "talk.el" (22676 23208 891521 574000)) ;;; Generated autoloads from talk.el (autoload 'talk-connect "talk" "\ @@ -27268,8 +27287,8 @@ Connect to the Emacs talk group from the current X display or tty frame. ;;;*** -;;;### (autoloads nil "tar-mode" "tar-mode.el" (22388 5709 957633 -;;;;;; 728000)) +;;;### (autoloads nil "tar-mode" "tar-mode.el" (22676 23208 891521 +;;;;;; 574000)) ;;; Generated autoloads from tar-mode.el (autoload 'tar-mode "tar-mode" "\ @@ -27292,8 +27311,8 @@ See also: variables `tar-update-datestamp' and `tar-anal-blocksize'. ;;;*** -;;;### (autoloads nil "tcl" "progmodes/tcl.el" (22388 6388 41302 -;;;;;; 191000)) +;;;### (autoloads nil "tcl" "progmodes/tcl.el" (22676 23208 870521 +;;;;;; 660000)) ;;; Generated autoloads from progmodes/tcl.el (autoload 'tcl-mode "tcl" "\ @@ -27341,8 +27360,8 @@ Prefix argument means invert sense of `tcl-use-smart-word-finder'. ;;;*** -;;;### (autoloads nil "telnet" "net/telnet.el" (22388 6378 270206 -;;;;;; 100000)) +;;;### (autoloads nil "telnet" "net/telnet.el" (22676 23208 772522 +;;;;;; 60000)) ;;; Generated autoloads from net/telnet.el (autoload 'telnet "telnet" "\ @@ -27367,7 +27386,7 @@ Normally input is edited in Emacs and sent a line at a time. ;;;*** -;;;### (autoloads nil "term" "term.el" (22587 10177 808474 154000)) +;;;### (autoloads nil "term" "term.el" (22676 23208 892521 570000)) ;;; Generated autoloads from term.el (autoload 'make-term "term" "\ @@ -27409,8 +27428,8 @@ use in that buffer. ;;;*** -;;;### (autoloads nil "testcover" "emacs-lisp/testcover.el" (22388 -;;;;;; 6369 795122 753000)) +;;;### (autoloads nil "testcover" "emacs-lisp/testcover.el" (22676 +;;;;;; 23208 618522 689000)) ;;; Generated autoloads from emacs-lisp/testcover.el (autoload 'testcover-this-defun "testcover" "\ @@ -27420,8 +27439,8 @@ Start coverage on function under point. ;;;*** -;;;### (autoloads nil "tetris" "play/tetris.el" (22388 6383 460257 -;;;;;; 140000)) +;;;### (autoloads nil "tetris" "play/tetris.el" (22676 23208 833521 +;;;;;; 811000)) ;;; Generated autoloads from play/tetris.el (push (purecopy '(tetris 2 1)) package--builtin-versions) @@ -27446,8 +27465,8 @@ tetris-mode keybindings: ;;;*** -;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (22587 10177 -;;;;;; 811474 196000)) +;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (22676 23208 +;;;;;; 910521 497000)) ;;; Generated autoloads from textmodes/tex-mode.el (defvar tex-shell-file-name nil "\ @@ -27748,8 +27767,8 @@ Major mode to edit DocTeX files. ;;;*** -;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (22388 6390 -;;;;;; 408325 469000)) +;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (22676 23208 +;;;;;; 911521 493000)) ;;; Generated autoloads from textmodes/texinfmt.el (autoload 'texinfo-format-buffer "texinfmt" "\ @@ -27788,8 +27807,8 @@ if large. You can use `Info-split' to do this manually. ;;;*** -;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (22388 6390 -;;;;;; 440325 784000)) +;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (22676 23208 +;;;;;; 911521 493000)) ;;; Generated autoloads from textmodes/texinfo.el (defvar texinfo-open-quote (purecopy "``") "\ @@ -27873,8 +27892,8 @@ value of `texinfo-mode-hook'. ;;;*** -;;;### (autoloads nil "thai-util" "language/thai-util.el" (22388 -;;;;;; 6375 384177 718000)) +;;;### (autoloads nil "thai-util" "language/thai-util.el" (22676 +;;;;;; 23208 725522 252000)) ;;; Generated autoloads from language/thai-util.el (autoload 'thai-compose-region "thai-util" "\ @@ -27901,8 +27920,8 @@ Compose Thai characters in the current buffer. ;;;*** -;;;### (autoloads nil "thingatpt" "thingatpt.el" (22388 5710 166635 -;;;;;; 784000)) +;;;### (autoloads nil "thingatpt" "thingatpt.el" (22676 23208 913521 +;;;;;; 485000)) ;;; Generated autoloads from thingatpt.el (autoload 'forward-thing "thingatpt" "\ @@ -27966,7 +27985,7 @@ Return the Lisp list at point, or nil if none is found. ;;;*** -;;;### (autoloads nil "thumbs" "thumbs.el" (22388 5710 168635 803000)) +;;;### (autoloads nil "thumbs" "thumbs.el" (22676 23208 913521 485000)) ;;; Generated autoloads from thumbs.el (autoload 'thumbs-find-thumb "thumbs" "\ @@ -28000,15 +28019,15 @@ In dired, call the setroot program on the image at point. ;;;*** -;;;### (autoloads nil "thunk" "emacs-lisp/thunk.el" (22388 6369 797122 -;;;;;; 773000)) +;;;### (autoloads nil "thunk" "emacs-lisp/thunk.el" (22676 23208 +;;;;;; 618522 689000)) ;;; Generated autoloads from emacs-lisp/thunk.el (push (purecopy '(thunk 1 0)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "tibet-util" "language/tibet-util.el" (22388 -;;;;;; 6375 464178 504000)) +;;;### (autoloads nil "tibet-util" "language/tibet-util.el" (22676 +;;;;;; 23208 725522 252000)) ;;; Generated autoloads from language/tibet-util.el (autoload 'tibetan-char-p "tibet-util" "\ @@ -28081,8 +28100,8 @@ See also docstring of the function tibetan-compose-region. ;;;*** -;;;### (autoloads nil "tildify" "textmodes/tildify.el" (22388 6390 -;;;;;; 524326 610000)) +;;;### (autoloads nil "tildify" "textmodes/tildify.el" (22676 23208 +;;;;;; 912521 489000)) ;;; Generated autoloads from textmodes/tildify.el (push (purecopy '(tildify 4 6 1)) package--builtin-versions) @@ -28148,7 +28167,7 @@ variable will be set to the representation. ;;;*** -;;;### (autoloads nil "time" "time.el" (22630 21356 411945 433000)) +;;;### (autoloads nil "time" "time.el" (22676 23208 913521 485000)) ;;; Generated autoloads from time.el (defvar display-time-day-and-date nil "\ @@ -28211,8 +28230,8 @@ Return a string giving the duration of the Emacs initialization. ;;;*** -;;;### (autoloads nil "time-date" "calendar/time-date.el" (22388 -;;;;;; 6368 233107 392000)) +;;;### (autoloads nil "time-date" "calendar/time-date.el" (22676 +;;;;;; 23208 563522 913000)) ;;; Generated autoloads from calendar/time-date.el (autoload 'date-to-time "time-date" "\ @@ -28315,8 +28334,8 @@ Convert the time interval in seconds to a short string. ;;;*** -;;;### (autoloads nil "time-stamp" "time-stamp.el" (22388 5710 209636 -;;;;;; 207000)) +;;;### (autoloads nil "time-stamp" "time-stamp.el" (22676 23208 913521 +;;;;;; 485000)) ;;; 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) @@ -28356,8 +28375,8 @@ With ARG, turn time stamping on if and only if arg is positive. ;;;*** -;;;### (autoloads nil "timeclock" "calendar/timeclock.el" (22388 -;;;;;; 6368 236107 422000)) +;;;### (autoloads nil "timeclock" "calendar/timeclock.el" (22676 +;;;;;; 23208 564522 910000)) ;;; Generated autoloads from calendar/timeclock.el (push (purecopy '(timeclock 2 6 1)) package--builtin-versions) @@ -28468,7 +28487,7 @@ relative only to the time worked today, and not to past time. ;;;*** ;;;### (autoloads nil "titdic-cnv" "international/titdic-cnv.el" -;;;;;; (22388 6374 736171 345000)) +;;;;;; (22676 23208 716522 289000)) ;;; Generated autoloads from international/titdic-cnv.el (autoload 'titdic-convert "titdic-cnv" "\ @@ -28490,7 +28509,7 @@ To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\". ;;;*** -;;;### (autoloads nil "tmm" "tmm.el" (22388 5710 257636 679000)) +;;;### (autoloads nil "tmm" "tmm.el" (22676 23208 913521 485000)) ;;; Generated autoloads from tmm.el (define-key global-map "\M-`" 'tmm-menubar) (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse) @@ -28532,8 +28551,8 @@ Its value should be an event that has a binding in MENU. ;;;*** -;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (22420 -;;;;;; 38537 264424 383000)) +;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (22676 +;;;;;; 23208 565522 906000)) ;;; Generated autoloads from calendar/todo-mode.el (autoload 'todo-show "todo-mode" "\ @@ -28598,8 +28617,8 @@ Mode for displaying and reprioritizing top priority Todo. ;;;*** -;;;### (autoloads nil "tool-bar" "tool-bar.el" (22388 5710 258636 -;;;;;; 688000)) +;;;### (autoloads nil "tool-bar" "tool-bar.el" (22676 23208 913521 +;;;;;; 485000)) ;;; Generated autoloads from tool-bar.el (autoload 'toggle-tool-bar-mode-from-frame "tool-bar" "\ @@ -28669,8 +28688,8 @@ holds a keymap. ;;;*** -;;;### (autoloads nil "tq" "emacs-lisp/tq.el" (22388 6369 799122 -;;;;;; 793000)) +;;;### (autoloads nil "tq" "emacs-lisp/tq.el" (22676 23208 618522 +;;;;;; 689000)) ;;; Generated autoloads from emacs-lisp/tq.el (autoload 'tq-create "tq" "\ @@ -28683,8 +28702,8 @@ to a tcp server on another machine. ;;;*** -;;;### (autoloads nil "trace" "emacs-lisp/trace.el" (22388 6369 800122 -;;;;;; 802000)) +;;;### (autoloads nil "trace" "emacs-lisp/trace.el" (22676 23208 +;;;;;; 619522 685000)) ;;; Generated autoloads from emacs-lisp/trace.el (defvar trace-buffer "*trace-output*" "\ @@ -28729,8 +28748,8 @@ the output buffer or changing the window configuration. ;;;*** -;;;### (autoloads nil "tramp" "net/tramp.el" (22587 10177 789473 -;;;;;; 888000)) +;;;### (autoloads nil "tramp" "net/tramp.el" (22676 23208 776522 +;;;;;; 44000)) ;;; Generated autoloads from net/tramp.el (defvar tramp-mode t "\ @@ -28845,8 +28864,8 @@ Discard Tramp from loading remote files. ;;;*** -;;;### (autoloads nil "tramp-ftp" "net/tramp-ftp.el" (22388 6378 -;;;;;; 476208 126000)) +;;;### (autoloads nil "tramp-ftp" "net/tramp-ftp.el" (22676 23208 +;;;;;; 772522 60000)) ;;; Generated autoloads from net/tramp-ftp.el (autoload 'tramp-ftp-enable-ange-ftp "tramp-ftp" "\ @@ -28856,15 +28875,15 @@ Discard Tramp from loading remote files. ;;;*** -;;;### (autoloads nil "trampver" "net/trampver.el" (22587 10177 789473 -;;;;;; 888000)) +;;;### (autoloads nil "trampver" "net/trampver.el" (22676 23208 776522 +;;;;;; 44000)) ;;; Generated autoloads from net/trampver.el (push (purecopy '(tramp 2 2 13 25 2)) package--builtin-versions) ;;;*** -;;;### (autoloads nil "tutorial" "tutorial.el" (22388 5710 354637 -;;;;;; 632000)) +;;;### (autoloads nil "tutorial" "tutorial.el" (22676 23208 914521 +;;;;;; 481000)) ;;; Generated autoloads from tutorial.el (autoload 'help-with-tutorial "tutorial" "\ @@ -28888,8 +28907,8 @@ resumed later. ;;;*** -;;;### (autoloads nil "tv-util" "language/tv-util.el" (22388 6375 -;;;;;; 465178 514000)) +;;;### (autoloads nil "tv-util" "language/tv-util.el" (22387 39327 +;;;;;; 668707 377000)) ;;; Generated autoloads from language/tv-util.el (autoload 'tai-viet-composition-function "tv-util" "\ @@ -28899,8 +28918,8 @@ resumed later. ;;;*** -;;;### (autoloads nil "two-column" "textmodes/two-column.el" (22388 -;;;;;; 6390 530326 669000)) +;;;### (autoloads nil "two-column" "textmodes/two-column.el" (22676 +;;;;;; 23208 912521 489000)) ;;; Generated autoloads from textmodes/two-column.el (autoload '2C-command "two-column" () t 'keymap) (global-set-key "\C-x6" '2C-command) @@ -28947,8 +28966,8 @@ First column's text sSs Second column's text ;;;*** -;;;### (autoloads nil "type-break" "type-break.el" (22388 5710 396638 -;;;;;; 46000)) +;;;### (autoloads nil "type-break" "type-break.el" (22676 23208 915521 +;;;;;; 476000)) ;;; Generated autoloads from type-break.el (defvar type-break-mode nil "\ @@ -29081,7 +29100,7 @@ FRAC should be the inverse of the fractional value; for example, a value of ;;;*** -;;;### (autoloads nil "uce" "mail/uce.el" (22388 6376 94184 700000)) +;;;### (autoloads nil "uce" "mail/uce.el" (22676 23208 745522 171000)) ;;; Generated autoloads from mail/uce.el (autoload 'uce-reply-to-uce "uce" "\ @@ -29095,7 +29114,7 @@ You might need to set `uce-mail-reader' before using this. ;;;*** ;;;### (autoloads nil "ucs-normalize" "international/ucs-normalize.el" -;;;;;; (22587 10177 778473 733000)) +;;;;;; (22676 23208 716522 289000)) ;;; Generated autoloads from international/ucs-normalize.el (autoload 'ucs-normalize-NFD-region "ucs-normalize" "\ @@ -29160,8 +29179,8 @@ Normalize the string STR by the Unicode NFC and Mac OS's HFS Plus. ;;;*** -;;;### (autoloads nil "underline" "textmodes/underline.el" (22388 -;;;;;; 6390 530326 669000)) +;;;### (autoloads nil "underline" "textmodes/underline.el" (22676 +;;;;;; 23208 912521 489000)) ;;; Generated autoloads from textmodes/underline.el (autoload 'underline-region "underline" "\ @@ -29181,8 +29200,8 @@ which specify the range to operate on. ;;;*** -;;;### (autoloads nil "unrmail" "mail/unrmail.el" (22388 6376 95184 -;;;;;; 710000)) +;;;### (autoloads nil "unrmail" "mail/unrmail.el" (22676 23208 745522 +;;;;;; 171000)) ;;; Generated autoloads from mail/unrmail.el (autoload 'batch-unrmail "unrmail" "\ @@ -29202,8 +29221,8 @@ The variable `unrmail-mbox-format' controls which mbox format to use. ;;;*** -;;;### (autoloads nil "unsafep" "emacs-lisp/unsafep.el" (22388 6369 -;;;;;; 802122 822000)) +;;;### (autoloads nil "unsafep" "emacs-lisp/unsafep.el" (22676 23208 +;;;;;; 619522 685000)) ;;; Generated autoloads from emacs-lisp/unsafep.el (autoload 'unsafep "unsafep" "\ @@ -29215,7 +29234,7 @@ UNSAFEP-VARS is a list of symbols with local bindings. ;;;*** -;;;### (autoloads nil "url" "url/url.el" (22388 6390 706328 400000)) +;;;### (autoloads nil "url" "url/url.el" (22676 23208 919521 460000)) ;;; Generated autoloads from url/url.el (autoload 'url-retrieve "url" "\ @@ -29265,8 +29284,8 @@ to the server. ;;;*** -;;;### (autoloads nil "url-auth" "url/url-auth.el" (22388 6390 576327 -;;;;;; 121000)) +;;;### (autoloads nil "url-auth" "url/url-auth.el" (22676 23208 915521 +;;;;;; 476000)) ;;; Generated autoloads from url/url-auth.el (autoload 'url-get-authentication "url-auth" "\ @@ -29307,8 +29326,8 @@ RATING a rating between 1 and 10 of the strength of the authentication. ;;;*** -;;;### (autoloads nil "url-cache" "url/url-cache.el" (22388 6390 -;;;;;; 578327 141000)) +;;;### (autoloads nil "url-cache" "url/url-cache.el" (22676 23208 +;;;;;; 916521 472000)) ;;; Generated autoloads from url/url-cache.el (autoload 'url-store-in-cache "url-cache" "\ @@ -29329,8 +29348,8 @@ Extract FNAM from the local disk cache. ;;;*** -;;;### (autoloads nil "url-cid" "url/url-cid.el" (22388 6390 578327 -;;;;;; 141000)) +;;;### (autoloads nil "url-cid" "url/url-cid.el" (22676 23208 916521 +;;;;;; 472000)) ;;; Generated autoloads from url/url-cid.el (autoload 'url-cid "url-cid" "\ @@ -29340,8 +29359,8 @@ Extract FNAM from the local disk cache. ;;;*** -;;;### (autoloads nil "url-dav" "url/url-dav.el" (22388 6390 581327 -;;;;;; 171000)) +;;;### (autoloads nil "url-dav" "url/url-dav.el" (22676 23208 916521 +;;;;;; 472000)) ;;; Generated autoloads from url/url-dav.el (autoload 'url-dav-supported-p "url-dav" "\ @@ -29375,8 +29394,8 @@ added to this list, so most requests can just pass in nil. ;;;*** -;;;### (autoloads nil "url-file" "url/url-file.el" (22388 6390 611327 -;;;;;; 466000)) +;;;### (autoloads nil "url-file" "url/url-file.el" (22676 23208 916521 +;;;;;; 472000)) ;;; Generated autoloads from url/url-file.el (autoload 'url-file "url-file" "\ @@ -29386,8 +29405,8 @@ Handle file: and ftp: URLs. ;;;*** -;;;### (autoloads nil "url-gw" "url/url-gw.el" (22388 6390 617327 -;;;;;; 525000)) +;;;### (autoloads nil "url-gw" "url/url-gw.el" (22676 23208 916521 +;;;;;; 472000)) ;;; Generated autoloads from url/url-gw.el (autoload 'url-gateway-nslookup-host "url-gw" "\ @@ -29408,8 +29427,8 @@ overriding the value of `url-gateway-method'. ;;;*** -;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (22388 -;;;;;; 6390 619327 544000)) +;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (22676 +;;;;;; 23208 917521 468000)) ;;; Generated autoloads from url/url-handlers.el (defvar url-handler-mode nil "\ @@ -29471,8 +29490,8 @@ if it had been inserted from a file named URL. ;;;*** -;;;### (autoloads nil "url-http" "url/url-http.el" (22587 10177 811474 -;;;;;; 196000)) +;;;### (autoloads nil "url-http" "url/url-http.el" (22676 23208 917521 +;;;;;; 468000)) ;;; Generated autoloads from url/url-http.el (autoload 'url-default-expander "url-expand") @@ -29484,8 +29503,8 @@ if it had been inserted from a file named URL. ;;;*** -;;;### (autoloads nil "url-irc" "url/url-irc.el" (22388 6390 660327 -;;;;;; 948000)) +;;;### (autoloads nil "url-irc" "url/url-irc.el" (22676 23208 917521 +;;;;;; 468000)) ;;; Generated autoloads from url/url-irc.el (autoload 'url-irc "url-irc" "\ @@ -29495,8 +29514,8 @@ if it had been inserted from a file named URL. ;;;*** -;;;### (autoloads nil "url-ldap" "url/url-ldap.el" (22388 6390 660327 -;;;;;; 948000)) +;;;### (autoloads nil "url-ldap" "url/url-ldap.el" (22676 23208 917521 +;;;;;; 468000)) ;;; Generated autoloads from url/url-ldap.el (autoload 'url-ldap "url-ldap" "\ @@ -29509,8 +29528,8 @@ URL can be a URL string, or a URL vector of the type returned by ;;;*** -;;;### (autoloads nil "url-mailto" "url/url-mailto.el" (22388 6390 -;;;;;; 661327 958000)) +;;;### (autoloads nil "url-mailto" "url/url-mailto.el" (22676 23208 +;;;;;; 917521 468000)) ;;; Generated autoloads from url/url-mailto.el (autoload 'url-mail "url-mailto" "\ @@ -29525,8 +29544,8 @@ Handle the mailto: URL syntax. ;;;*** -;;;### (autoloads nil "url-misc" "url/url-misc.el" (22388 6390 663327 -;;;;;; 977000)) +;;;### (autoloads nil "url-misc" "url/url-misc.el" (22676 23208 918521 +;;;;;; 464000)) ;;; Generated autoloads from url/url-misc.el (autoload 'url-man "url-misc" "\ @@ -29557,8 +29576,8 @@ Fetch a data URL (RFC 2397). ;;;*** -;;;### (autoloads nil "url-news" "url/url-news.el" (22388 6390 663327 -;;;;;; 977000)) +;;;### (autoloads nil "url-news" "url/url-news.el" (22676 23208 918521 +;;;;;; 464000)) ;;; Generated autoloads from url/url-news.el (autoload 'url-news "url-news" "\ @@ -29573,8 +29592,8 @@ Fetch a data URL (RFC 2397). ;;;*** -;;;### (autoloads nil "url-ns" "url/url-ns.el" (22388 6390 665327 -;;;;;; 997000)) +;;;### (autoloads nil "url-ns" "url/url-ns.el" (22676 23208 918521 +;;;;;; 464000)) ;;; Generated autoloads from url/url-ns.el (autoload 'isPlainHostName "url-ns" "\ @@ -29614,8 +29633,8 @@ Fetch a data URL (RFC 2397). ;;;*** -;;;### (autoloads nil "url-parse" "url/url-parse.el" (22388 6390 -;;;;;; 681328 154000)) +;;;### (autoloads nil "url-parse" "url/url-parse.el" (22676 23208 +;;;;;; 918521 464000)) ;;; Generated autoloads from url/url-parse.el (autoload 'url-recreate-url "url-parse" "\ @@ -29666,8 +29685,8 @@ parses to ;;;*** -;;;### (autoloads nil "url-privacy" "url/url-privacy.el" (22388 6390 -;;;;;; 683328 174000)) +;;;### (autoloads nil "url-privacy" "url/url-privacy.el" (22676 23208 +;;;;;; 918521 464000)) ;;; Generated autoloads from url/url-privacy.el (autoload 'url-setup-privacy-info "url-privacy" "\ @@ -29677,8 +29696,8 @@ Setup variables that expose info about you and your system. ;;;*** -;;;### (autoloads nil "url-queue" "url/url-queue.el" (22388 6390 -;;;;;; 702328 361000)) +;;;### (autoloads nil "url-queue" "url/url-queue.el" (22676 23208 +;;;;;; 918521 464000)) ;;; Generated autoloads from url/url-queue.el (autoload 'url-queue-retrieve "url-queue" "\ @@ -29692,8 +29711,8 @@ The variable `url-queue-timeout' sets a timeout. ;;;*** -;;;### (autoloads nil "url-tramp" "url/url-tramp.el" (22388 6390 -;;;;;; 703328 370000)) +;;;### (autoloads nil "url-tramp" "url/url-tramp.el" (22676 23208 +;;;;;; 918521 464000)) ;;; Generated autoloads from url/url-tramp.el (defvar url-tramp-protocols '("ftp" "ssh" "scp" "rsync" "telnet") "\ @@ -29711,8 +29730,8 @@ would have been passed to OPERATION. ;;;*** -;;;### (autoloads nil "url-util" "url/url-util.el" (22388 6390 704328 -;;;;;; 380000)) +;;;### (autoloads nil "url-util" "url/url-util.el" (22676 23208 919521 +;;;;;; 460000)) ;;; Generated autoloads from url/url-util.el (defvar url-debug nil "\ @@ -29880,8 +29899,8 @@ This uses `url-current-object', set locally to the buffer. ;;;*** -;;;### (autoloads nil "userlock" "userlock.el" (22388 5710 439638 -;;;;;; 468000)) +;;;### (autoloads nil "userlock" "userlock.el" (22676 23208 919521 +;;;;;; 460000)) ;;; Generated autoloads from userlock.el (autoload 'ask-user-about-lock "userlock" "\ @@ -29909,8 +29928,8 @@ The buffer in question is current when this function is called. ;;;*** -;;;### (autoloads nil "utf-7" "international/utf-7.el" (22388 6374 -;;;;;; 952173 469000)) +;;;### (autoloads nil "utf-7" "international/utf-7.el" (22676 23208 +;;;;;; 717522 285000)) ;;; Generated autoloads from international/utf-7.el (autoload 'utf-7-post-read-conversion "utf-7" "\ @@ -29935,7 +29954,7 @@ The buffer in question is current when this function is called. ;;;*** -;;;### (autoloads nil "utf7" "gnus/utf7.el" (22388 6374 272166 782000)) +;;;### (autoloads nil "utf7" "gnus/utf7.el" (22676 23208 700522 354000)) ;;; Generated autoloads from gnus/utf7.el (autoload 'utf7-encode "utf7" "\ @@ -29945,8 +29964,8 @@ Encode UTF-7 STRING. Use IMAP modification if FOR-IMAP is non-nil. ;;;*** -;;;### (autoloads nil "uudecode" "mail/uudecode.el" (22388 6376 109184 -;;;;;; 848000)) +;;;### (autoloads nil "uudecode" "mail/uudecode.el" (22676 23208 +;;;;;; 745522 171000)) ;;; Generated autoloads from mail/uudecode.el (autoload 'uudecode-decode-region-external "uudecode" "\ @@ -29970,7 +29989,7 @@ If FILE-NAME is non-nil, save the result to FILE-NAME. ;;;*** -;;;### (autoloads nil "vc" "vc/vc.el" (22587 10177 813474 224000)) +;;;### (autoloads nil "vc" "vc/vc.el" (22676 23208 931521 411000)) ;;; Generated autoloads from vc/vc.el (defvar vc-checkout-hook nil "\ @@ -30290,8 +30309,8 @@ Return the branch part of a revision number REV. ;;;*** -;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (22388 6391 -;;;;;; 299334 232000)) +;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (22676 23208 +;;;;;; 926521 431000)) ;;; Generated autoloads from vc/vc-annotate.el (autoload 'vc-annotate "vc-annotate" "\ @@ -30330,8 +30349,8 @@ should be applied to the background or to the foreground. ;;;*** -;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (22388 6391 331334 -;;;;;; 546000)) +;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (22676 23208 926521 +;;;;;; 431000)) ;;; Generated autoloads from vc/vc-bzr.el (defconst vc-bzr-admin-dirname ".bzr" "\ @@ -30347,8 +30366,8 @@ Name of the format file in a .bzr directory.") ;;;*** -;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (22587 10177 812474 -;;;;;; 210000)) +;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (22676 23208 927521 +;;;;;; 428000)) ;;; Generated autoloads from vc/vc-cvs.el (defun vc-cvs-registered (f) "Return non-nil if file F is registered with CVS." @@ -30359,8 +30378,8 @@ Name of the format file in a .bzr directory.") ;;;*** -;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (22388 6391 424335 -;;;;;; 461000)) +;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (22676 23208 927521 +;;;;;; 428000)) ;;; Generated autoloads from vc/vc-dir.el (autoload 'vc-dir "vc-dir" "\ @@ -30384,8 +30403,8 @@ These are the commands available for use in the file status buffer: ;;;*** -;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (22388 -;;;;;; 6391 464335 854000)) +;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (22676 +;;;;;; 23208 928521 423000)) ;;; Generated autoloads from vc/vc-dispatcher.el (autoload 'vc-do-command "vc-dispatcher" "\ @@ -30408,8 +30427,8 @@ case, and the process object in the asynchronous case. ;;;*** -;;;### (autoloads nil "vc-git" "vc/vc-git.el" (22630 21356 413945 -;;;;;; 462000)) +;;;### (autoloads nil "vc-git" "vc/vc-git.el" (22676 23208 928521 +;;;;;; 423000)) ;;; Generated autoloads from vc/vc-git.el (defun vc-git-registered (file) "Return non-nil if FILE is registered with git." @@ -30420,7 +30439,7 @@ case, and the process object in the asynchronous case. ;;;*** -;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (22388 6391 556336 759000)) +;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (22676 23208 929521 419000)) ;;; Generated autoloads from vc/vc-hg.el (defun vc-hg-registered (file) "Return non-nil if FILE is registered with hg." @@ -30431,8 +30450,8 @@ case, and the process object in the asynchronous case. ;;;*** -;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (22388 6391 641337 -;;;;;; 595000)) +;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (22676 23208 929521 +;;;;;; 419000)) ;;; Generated autoloads from vc/vc-mtn.el (defconst vc-mtn-admin-dir "_MTN" "\ @@ -30448,8 +30467,8 @@ Name of the monotone directory's format file.") ;;;*** -;;;### (autoloads nil "vc-rcs" "vc/vc-rcs.el" (22388 6391 707338 -;;;;;; 244000)) +;;;### (autoloads nil "vc-rcs" "vc/vc-rcs.el" (22676 23208 929521 +;;;;;; 419000)) ;;; Generated autoloads from vc/vc-rcs.el (defvar vc-rcs-master-templates (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ @@ -30462,8 +30481,8 @@ For a description of possible values, see `vc-check-master-templates'.") ;;;*** -;;;### (autoloads nil "vc-sccs" "vc/vc-sccs.el" (22388 6391 745338 -;;;;;; 618000)) +;;;### (autoloads nil "vc-sccs" "vc/vc-sccs.el" (22676 23208 929521 +;;;;;; 419000)) ;;; Generated autoloads from vc/vc-sccs.el (defvar vc-sccs-master-templates (purecopy '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ @@ -30481,8 +30500,8 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) ;;;*** -;;;### (autoloads nil "vc-src" "vc/vc-src.el" (22388 6391 798339 -;;;;;; 139000)) +;;;### (autoloads nil "vc-src" "vc/vc-src.el" (22676 23208 930521 +;;;;;; 415000)) ;;; Generated autoloads from vc/vc-src.el (defvar vc-src-master-templates (purecopy '("%s.src/%s,v")) "\ @@ -30495,8 +30514,8 @@ For a description of possible values, see `vc-check-master-templates'.") ;;;*** -;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (22388 6391 799339 -;;;;;; 149000)) +;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (22676 23208 930521 +;;;;;; 415000)) ;;; Generated autoloads from vc/vc-svn.el (defun vc-svn-registered (f) (let ((admin-dir (cond ((and (eq system-type 'windows-nt) @@ -30509,8 +30528,8 @@ For a description of possible values, see `vc-check-master-templates'.") ;;;*** -;;;### (autoloads nil "vera-mode" "progmodes/vera-mode.el" (22388 -;;;;;; 6388 56302 339000)) +;;;### (autoloads nil "vera-mode" "progmodes/vera-mode.el" (22676 +;;;;;; 23208 871521 656000)) ;;; Generated autoloads from progmodes/vera-mode.el (push (purecopy '(vera-mode 2 28)) package--builtin-versions) (add-to-list 'auto-mode-alist (cons (purecopy "\\.vr[hi]?\\'") 'vera-mode)) @@ -30569,7 +30588,7 @@ Key bindings: ;;;*** ;;;### (autoloads nil "verilog-mode" "progmodes/verilog-mode.el" -;;;;;; (22388 6388 217303 922000)) +;;;;;; (22676 23208 873521 648000)) ;;; Generated autoloads from progmodes/verilog-mode.el (autoload 'verilog-mode "verilog-mode" "\ @@ -30708,8 +30727,8 @@ Key bindings specific to `verilog-mode-map' are: ;;;*** -;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (22388 -;;;;;; 6388 508306 784000)) +;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (22676 +;;;;;; 23208 877521 632000)) ;;; Generated autoloads from progmodes/vhdl-mode.el (autoload 'vhdl-mode "vhdl-mode" "\ @@ -31263,8 +31282,8 @@ Key bindings: ;;;*** -;;;### (autoloads nil "viet-util" "language/viet-util.el" (22388 -;;;;;; 6375 466178 524000)) +;;;### (autoloads nil "viet-util" "language/viet-util.el" (22676 +;;;;;; 23208 725522 252000)) ;;; Generated autoloads from language/viet-util.el (autoload 'viet-encode-viscii-char "viet-util" "\ @@ -31308,7 +31327,7 @@ Convert Vietnamese characters of the current buffer to `VIQR' mnemonics. ;;;*** -;;;### (autoloads nil "view" "view.el" (22388 5710 520639 265000)) +;;;### (autoloads nil "view" "view.el" (22676 23208 931521 411000)) ;;; Generated autoloads from view.el (defvar view-remove-frame-by-deleting t "\ @@ -31564,8 +31583,8 @@ Exit View mode and make the current buffer editable. ;;;*** -;;;### (autoloads nil "viper" "emulation/viper.el" (22388 6370 127126 -;;;;;; 18000)) +;;;### (autoloads nil "viper" "emulation/viper.el" (22676 23208 624522 +;;;;;; 665000)) ;;; Generated autoloads from emulation/viper.el (push (purecopy '(viper 3 14 1)) package--builtin-versions) @@ -31582,8 +31601,8 @@ Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Top'. ;;;*** -;;;### (autoloads nil "warnings" "emacs-lisp/warnings.el" (22388 -;;;;;; 6369 802122 822000)) +;;;### (autoloads nil "warnings" "emacs-lisp/warnings.el" (22676 +;;;;;; 23208 619522 685000)) ;;; Generated autoloads from emacs-lisp/warnings.el (defvar warning-prefix-function nil "\ @@ -31673,7 +31692,7 @@ this is equivalent to `display-warning', using ;;;*** -;;;### (autoloads nil "wdired" "wdired.el" (22388 5710 565639 708000)) +;;;### (autoloads nil "wdired" "wdired.el" (22676 23208 932521 407000)) ;;; Generated autoloads from wdired.el (push (purecopy '(wdired 2 0)) package--builtin-versions) @@ -31691,8 +31710,8 @@ See `wdired-mode'. ;;;*** -;;;### (autoloads nil "webjump" "net/webjump.el" (22388 6379 113214 -;;;;;; 390000)) +;;;### (autoloads nil "webjump" "net/webjump.el" (22676 23208 776522 +;;;;;; 44000)) ;;; Generated autoloads from net/webjump.el (autoload 'webjump "webjump" "\ @@ -31708,8 +31727,8 @@ Please submit bug reports and other feedback to the author, Neil W. Van Dyke ;;;*** -;;;### (autoloads nil "which-func" "progmodes/which-func.el" (22388 -;;;;;; 6388 697308 643000)) +;;;### (autoloads nil "which-func" "progmodes/which-func.el" (22676 +;;;;;; 23208 877521 632000)) ;;; Generated autoloads from progmodes/which-func.el (put 'which-func-format 'risky-local-variable t) (put 'which-func-current 'risky-local-variable t) @@ -31740,8 +31759,8 @@ in certain major modes. ;;;*** -;;;### (autoloads nil "whitespace" "whitespace.el" (22587 10177 814474 -;;;;;; 238000)) +;;;### (autoloads nil "whitespace" "whitespace.el" (22676 23208 932521 +;;;;;; 407000)) ;;; Generated autoloads from whitespace.el (push (purecopy '(whitespace 13 2 2)) package--builtin-versions) @@ -32119,8 +32138,8 @@ cleaning up these problems. ;;;*** -;;;### (autoloads nil "wid-browse" "wid-browse.el" (22388 5710 661640 -;;;;;; 652000)) +;;;### (autoloads nil "wid-browse" "wid-browse.el" (22676 23208 932521 +;;;;;; 407000)) ;;; Generated autoloads from wid-browse.el (autoload 'widget-browse-at "wid-browse" "\ @@ -32148,8 +32167,8 @@ if ARG is omitted or nil. ;;;*** -;;;### (autoloads nil "wid-edit" "wid-edit.el" (22388 5710 705641 -;;;;;; 84000)) +;;;### (autoloads nil "wid-edit" "wid-edit.el" (22676 23208 933521 +;;;;;; 403000)) ;;; Generated autoloads from wid-edit.el (autoload 'widgetp "wid-edit" "\ @@ -32191,8 +32210,8 @@ Setup current buffer so editing string widgets works. ;;;*** -;;;### (autoloads nil "windmove" "windmove.el" (22388 5710 791641 -;;;;;; 930000)) +;;;### (autoloads nil "windmove" "windmove.el" (22676 23208 933521 +;;;;;; 403000)) ;;; Generated autoloads from windmove.el (autoload 'windmove-left "windmove" "\ @@ -32244,7 +32263,7 @@ Default MODIFIER is `shift'. ;;;*** -;;;### (autoloads nil "winner" "winner.el" (22388 5711 24644 221000)) +;;;### (autoloads nil "winner" "winner.el" (22676 23208 935521 395000)) ;;; Generated autoloads from winner.el (defvar winner-mode nil "\ @@ -32274,7 +32293,7 @@ you can press `C-c ' (calling `winner-redo'). ;;;*** -;;;### (autoloads nil "woman" "woman.el" (22388 5711 111645 78000)) +;;;### (autoloads nil "woman" "woman.el" (22676 23208 936521 391000)) ;;; Generated autoloads from woman.el (push (purecopy '(woman 0 551)) package--builtin-versions) @@ -32323,7 +32342,7 @@ Default bookmark handler for Woman buffers. ;;;*** -;;;### (autoloads nil "xml" "xml.el" (22388 5711 194645 894000)) +;;;### (autoloads nil "xml" "xml.el" (22676 23208 937521 387000)) ;;; Generated autoloads from xml.el (autoload 'xml-parse-file "xml" "\ @@ -32379,8 +32398,8 @@ Both features can be combined by providing a cons cell ;;;*** -;;;### (autoloads nil "xmltok" "nxml/xmltok.el" (22388 6379 484218 -;;;;;; 39000)) +;;;### (autoloads nil "xmltok" "nxml/xmltok.el" (22676 23208 781522 +;;;;;; 24000)) ;;; Generated autoloads from nxml/xmltok.el (autoload 'xmltok-get-declared-encoding-position "xmltok" "\ @@ -32398,8 +32417,8 @@ If LIMIT is non-nil, then do not consider characters beyond LIMIT. ;;;*** -;;;### (autoloads nil "xref" "progmodes/xref.el" (22388 6388 698308 -;;;;;; 653000)) +;;;### (autoloads nil "xref" "progmodes/xref.el" (22676 23208 877521 +;;;;;; 632000)) ;;; Generated autoloads from progmodes/xref.el (autoload 'xref-find-backend "xref" "\ @@ -32466,8 +32485,8 @@ IGNORES is a list of glob patterns. ;;;*** -;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (22630 21356 414945 -;;;;;; 476000)) +;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (22676 23208 937521 +;;;;;; 387000)) ;;; Generated autoloads from xt-mouse.el (defvar xterm-mouse-mode nil "\ @@ -32497,7 +32516,8 @@ down the SHIFT key while pressing the mouse button. ;;;*** -;;;### (autoloads nil "xwidget" "xwidget.el" (22388 5711 213646 81000)) +;;;### (autoloads nil "xwidget" "xwidget.el" (22676 23208 937521 +;;;;;; 387000)) ;;; Generated autoloads from xwidget.el (autoload 'xwidget-webkit-browse-url "xwidget" "\ @@ -32509,7 +32529,7 @@ Interactively, URL defaults to the string looking like a url around point. ;;;*** -;;;### (autoloads nil "yenc" "gnus/yenc.el" (22388 6374 272166 782000)) +;;;### (autoloads nil "yenc" "gnus/yenc.el" (22676 23208 700522 354000)) ;;; Generated autoloads from gnus/yenc.el (autoload 'yenc-decode-region "yenc" "\ @@ -32524,7 +32544,7 @@ Extract file name from an yenc header. ;;;*** -;;;### (autoloads nil "zone" "play/zone.el" (22388 6383 476257 297000)) +;;;### (autoloads nil "zone" "play/zone.el" (22676 23208 833521 811000)) ;;; Generated autoloads from play/zone.el (autoload 'zone "zone" "\ @@ -32752,7 +32772,7 @@ Zone out, completely. ;;;;;; "vc/ediff-vers.el" "vc/ediff-wind.el" "vc/pcvs-info.el" "vc/pcvs-parse.el" ;;;;;; "vc/pcvs-util.el" "vc/vc-dav.el" "vc/vc-filewise.el" "vcursor.el" ;;;;;; "vt-control.el" "vt100-led.el" "w32-fns.el" "w32-vars.el" -;;;;;; "x-dnd.el") (22630 28319 171596 148000)) +;;;;;; "x-dnd.el") (22676 38554 103597 865000)) ;;;*** diff --git a/msdos/sed2v2.inp b/msdos/sed2v2.inp index 7d0d7e9623..cbe5bad384 100644 --- a/msdos/sed2v2.inp +++ b/msdos/sed2v2.inp @@ -66,7 +66,7 @@ /^#undef PACKAGE_TARNAME/s/^.*$/#define PACKAGE_TARNAME ""/ /^#undef PACKAGE_VERSION/s/^.*$/#define PACKAGE_VERSION VERSION/ /^#undef PENDING_OUTPUT_COUNT/s/^.*$/#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_ptr - (FILE)->_base)/ -/^#undef VERSION/s/^.*$/#define VERSION "25.1.91"/ +/^#undef VERSION/s/^.*$/#define VERSION "25.2"/ /^#undef SYSTEM_TYPE/s/^.*$/#define SYSTEM_TYPE "ms-dos"/ /^#undef HAVE_DECL_GETENV/s/^.*$/#define HAVE_DECL_GETENV 1/ /^#undef SYS_SIGLIST_DECLARED/s/^.*$/#define SYS_SIGLIST_DECLARED 1/ diff --git a/nt/README.W32 b/nt/README.W32 index 37183539f8..bdd8bd4cb9 100644 --- a/nt/README.W32 +++ b/nt/README.W32 @@ -1,7 +1,7 @@ Copyright (C) 2001-2017 Free Software Foundation, Inc. See the end of the file for license conditions. - Emacs version 25.1.91 for MS-Windows + Emacs version 25.2 for MS-Windows This README file describes how to set up and run a precompiled distribution of the latest version of GNU Emacs for MS-Windows. You commit a51f11df0d718005af77cdd5adcf1e3e470a582b Author: Nicolas Petton Date: Fri Feb 3 16:00:17 2017 +0100 ; Update ChangeLog.2 and AUTHORS files diff --git a/ChangeLog.2 b/ChangeLog.2 index 8f937b9ee8..e6774826a3 100644 --- a/ChangeLog.2 +++ b/ChangeLog.2 @@ -1,3 +1,7 @@ +2017-02-03 Nicolas Petton + + * admin/make-tarball.txt: Add documentation regarding the release banner. + 2017-02-03 Tino Calancha * CONTRIBUTE (Documenting your changes): Index new vars/commands in manual. @@ -35565,7 +35569,7 @@ This file records repository revisions from commit 9d56a21e6a696ad19ac65c4b405aeca44785884a (exclusive) to -commit e1171de6d1922af4bb8e9b4eae2becf1b7b597d4 (inclusive). +commit 02d9ad8440508b64233a4a38dae67c523139f7df (inclusive). See ChangeLog.1 for earlier changes. ;; Local Variables: diff --git a/etc/AUTHORS b/etc/AUTHORS index 32658f51a9..f993fde5dc 100644 --- a/etc/AUTHORS +++ b/etc/AUTHORS @@ -3359,7 +3359,7 @@ and changed sequences.texi README configure.ac sed2v2.inp emacs.png authors.el emacs23.png arc-mode.el cl-extra.el emacs.svg README.W32 Emacs.icns Makefile.in auth-source.el emacs.ico obarray.el data.c emacs-document.svg emacs-document23.svg emacs.texi emacs23.svg - and 8 other files + and 9 other files Nicolas Richard: wrote cl-seq-tests.el cmds-tests.el and changed ffap.el package.el help.el keyboard.c landmark.el org.el commit 02d9ad8440508b64233a4a38dae67c523139f7df Author: Nicolas Petton Date: Fri Feb 3 15:50:24 2017 +0100 * admin/make-tarball.txt: Add documentation regarding the release banner. diff --git a/admin/make-tarball.txt b/admin/make-tarball.txt index 77486cc639..01dd63c9dd 100644 --- a/admin/make-tarball.txt +++ b/admin/make-tarball.txt @@ -191,6 +191,10 @@ emacs.html (for a new major release, a more thorough update is needed) history.html add the new NEWS file as news/NEWS.xx.y +For every new release, a banner is displayed on top of the emacs.html +page. Uncomment and the release banner in emacs.html. Keep it on the +page for about a month, then comment it again. + Use M-x make-manuals from admin/admin.el to regenerate the html manuals in manual/. If there are new manuals, add appropriate index pages in manual/ and add them to manual/index.html. In the commit 73e62bbcdcb5b6e1f73fd086185796c9287a9949 Author: Nicolas Petton Date: Fri Feb 3 15:32:01 2017 +0100 ; Update ChangeLog.2 and AUTHORS files diff --git a/ChangeLog.2 b/ChangeLog.2 index e0e46efc0c..8f937b9ee8 100644 --- a/ChangeLog.2 +++ b/ChangeLog.2 @@ -1,3 +1,7 @@ +2017-02-03 Tino Calancha + + * CONTRIBUTE (Documenting your changes): Index new vars/commands in manual. + 2017-01-31 Eli Zaretskii Index byte-compile-debug @@ -35561,7 +35565,7 @@ This file records repository revisions from commit 9d56a21e6a696ad19ac65c4b405aeca44785884a (exclusive) to -commit ab0a60a1b334fafc7d805eb44e6069ea314ad486 (inclusive). +commit e1171de6d1922af4bb8e9b4eae2becf1b7b597d4 (inclusive). See ChangeLog.1 for earlier changes. ;; Local Variables: diff --git a/etc/AUTHORS b/etc/AUTHORS index d166b6d1fc..32658f51a9 100644 --- a/etc/AUTHORS +++ b/etc/AUTHORS @@ -4494,7 +4494,7 @@ Tim Van Holder: changed emacsclient.c Makefile.in configure.ac Tino Calancha: changed cl-macs.el cl.texi descr-text.el dired-aux.el find-func.el help-fns.el help-mode.el ibuf-ext.el ibuffer.el os.texi - simple.el vc.el + simple.el vc.el CONTRIBUTE Titus von der Malsburg: changed simple.el window.el @@ -4553,7 +4553,7 @@ and co-wrote package.el tcl.el and changed buffer.c lisp.h makefile.el window.c keyboard.c keymap.c xfns.c buffer.h bytecode.c callint.c callproc.c cmds.c composite.c configure.ac dispextern.h doc.c editfns.c fileio.c frame.c insdel.c - intervals.h and 139 other files + intervals.h and 140 other files Tom Willemse: changed elec-pair.el package.el prog-mode.el progmodes/python.el simple.el commit e1171de6d1922af4bb8e9b4eae2becf1b7b597d4 Author: Tino Calancha Date: Fri Feb 3 19:59:22 2017 +0900 * CONTRIBUTE (Documenting your changes): Index new vars/commands in manual. diff --git a/CONTRIBUTE b/CONTRIBUTE index 809b6e3208..e9a0341980 100644 --- a/CONTRIBUTE +++ b/CONTRIBUTE @@ -250,6 +250,13 @@ know it does not, mark the NEWS entry with "---". If you know that *all* the necessary documentation updates have been made, mark the entry with "+++". Otherwise do not mark it. +If your change requires updating the manuals to document new +functions/commands/variables/faces, then use the proper Texinfo +command to index them; for instance, use @vindex for variables and +@findex for functions/commands. For the full list of predefine indices, see +http://www.gnu.org/software/texinfo/manual/texinfo/html_node/Predefined-Indices.html +or run the shell command 'info "(texinfo)Predefined Indices"'. + For more specific tips on Emacs's doc style, see http://www.gnu.org/software/emacs/manual/html_node/elisp/Documentation-Tips.html Use 'checkdoc' to check for documentation errors before submitting a patch. commit 6102d01ecae664edf192bb25c01622df4518eb49 Author: Nicolas Petton Date: Fri Feb 3 11:39:48 2017 +0100 ; Update ChangeLog.2 and AUTHORS files diff --git a/ChangeLog.2 b/ChangeLog.2 index 0ad6b51f26..e0e46efc0c 100644 --- a/ChangeLog.2 +++ b/ChangeLog.2 @@ -1,3 +1,251 @@ +2017-01-31 Eli Zaretskii + + Index byte-compile-debug + + * doc/lispref/compile.texi (Compilation Functions): Index + byte-compile-debug. + +2017-01-31 Philipp Stephani + + Document `byte-compile-debug' in the ELisp manual + + * doc/lispref/compile.texi: Document variable `byte-compile-debug'. + +2017-01-31 Philipp Stephani + + Document variable `byte-compile-debug' + + * lisp/emacs-lisp/bytecomp.el (byte-compile-debug): Document variable. + +2017-01-31 Noam Postavsky + + Fix call to debugger on assertion failure + + * lisp/emacs-lisp/cl-preloaded.el (cl--assertion-failed): The first + argument must be `error', and the second is a list of arguments for + `signal'. + +2017-01-29 Noam Postavsky + + Call modification hooks in org-src fontify buffers + + * lisp/org/org-src.el (org-src-font-lock-fontify-block): Let-bind + `inhibit-modification-hooks' to nil, since this function can be called + from jit-lock-function which binds that variable to t (Bug#25132). + +2017-01-28 Eli Zaretskii + + Improve documentation of 'format' conversions + + * src/editfns.c (Fformat): More accurate description of %g and + effects of the various flags on it. More accurate description of + integer conversions. + + * doc/lispref/strings.texi (Formatting Strings): More accurate + description of %g and effects of the various flags on it. More + accurate description of integer conversions. (Bug#25557) + +2017-01-27 Vladimir Panteleev (tiny change) + + Remove stale functions from ert manual + + * doc/misc/ert.texi (Useful Techniques when Writing Tests): + Replace ert--mismatch references with its cl-lib replacement, + cl-mismatch. + +2017-01-27 Eli Zaretskii + + Fix a typo in Eshell manual + + * doc/misc/eshell.texi (History): Fix a typo. Reported by Mak + Kolybabi . + +2017-01-20 Eli Zaretskii + + Improve documentation of hooks related to saving buffers + + * lisp/files.el (write-file-functions, write-contents-functions) + (before-save-hook, after-save-hook): Note that these are only used + by save-buffer. + + * doc/lispref/backups.texi (Auto-Saving): + * doc/lispref/files.texi (Saving Buffers): Mention that + save-related hooks are not run by auto-saving. (Bug#25460) + +2017-01-20 Eli Zaretskii + + Improve documentation of auto-save-visited-file-name + + * doc/emacs/files.texi (Auto Save Files): Mention subtle + differences between saving the buffer and auto-saving with + auto-save-visited-file-name set non-nil. (Bug#25478) + +2017-01-18 Tom Tromey + + fix typo in mailcap-mime-extensions + + * lisp/gnus/mailcap.el (mailcap-mime-extensions): Use "text/x-patch", + not "test/x-patch". (Bug#25472) + +2017-01-18 Lele Gaifax (tiny change) + + Fix typos in flymake.el + + * lisp/progmodes/flymake.el (flymake-check-patch-master-file-buffer): + Spelling fixes in the doc string. + +2017-01-17 Glenn Morris + + More NEWS checking for admin.el's set-version + + * admin/admin.el (set-version): Warn if temporary NEWS markup + still present in release candidates. + +2017-01-17 Michael Albinus + + Fix auto-save-file-name problem in Tramp on MS Windows. Do not merge + + * lisp/net/tramp.el (tramp-handle-make-auto-save-file-name): + Fix a problem when running on MS Windows. + +2017-01-16 Ian Dunn (tiny change) + + * lisp/net/eww.el (eww-tag-meta): Handle single quoted URLs (Bug#25445). + +2017-01-14 Stefan Monnier + + * lisp/progmodes/sql.el (sql-product-alist): Doc tweak + + `:sqli-comint-func' does not have to be a symbol. + +2017-01-14 Eli Zaretskii + + * lisp/progmodes/sql.el (sql-product-alist): Doc fix. (Bug#25440) + +2017-01-13 Eli Zaretskii + + Improve documentation of dabbrevs + + * doc/emacs/abbrevs.texi (Dynamic Abbrevs): Add a cross reference + to "Dabbrev Customization". + (Dabbrev Customization): More details about the default value of + dabbrev-abbrev-char-regexp and use cases when it might not be good + enough. (Bug#25432) + +2017-01-12 Noam Postavsky + + Clarify that easy-menu-add is a nop (Bug#25382) + + * lisp/emacs-lisp/easymenu.el (easy-menu-add): Make it into an alias of + `ignore', like `easy-menu-remove'. + +2017-01-12 Glenn Morris + + * lisp/textmodes/rst.el (rst-package-emacs-version-alist): Fix entry. + +2017-01-11 Eli Zaretskii + + Revert "Add DNS keywords and remove duplications" + + This reverts commit 1cb9aa5b14867983d0013a61709b4d0af18364ff. + +2017-01-11 Alexander Kuleshov + + Add DNS keywords and remove duplications + + * lisp/textmodes/dns-mode.el (dns-mode-types): Add two TLSA and + NSEC" DNS related keywords and remove duplication of "NSAP". + +2017-01-10 Eli Zaretskii + + Improve documentation of coding-systems + + * doc/lispref/nonascii.texi (Coding System Basics): Mention + 'prefer-utf-8'. Index it and 'undecided'. + (Encoding and I/O): Fix a typo. + (User-Chosen Coding Systems): Improve the documentation of + ACCEPT-DEFAULT-P argument to select-safe-coding-system. Document + select-safe-coding-system-function. + (Specifying Coding Systems): Document coding-system-require-warning. + +2017-01-09 Eli Zaretskii + + Improve definition of 'variable-pitch' face on MS-Windows + + * lisp/faces.el (variable-pitch): Don't specify too many + attributes of the font, otherwise faces that request different + weight or slant or size will not get them. + +2017-01-09 Eli Zaretskii + + Fix an error message in python.el + + * lisp/progmodes/python.el (python-shell-get-process-or-error): + Don't repeat the same key binding twice. (Bug#25405) + +2017-01-07 Noam Postavsky + + Clarify major mode switching + + * doc/emacs/modes.texi (Major Modes): + * doc/lispref/modes.texi (Modes, Major Modes): Explictly say that each + buffer has exactly one major mode and can't be "turned off", only + switched away from (Bug#25357). + +2017-01-07 Noam Postavsky + + Add helpful comment to compile-command's docstring + + * lisp/progmodes/compile.el (compile-command): Mention trailing space in + docstring (Bug#25337). + +2017-01-06 Eli Zaretskii + + Fix ':version' of 'select-enable-primary' + + * lisp/select.el (select-enable-primary): Fix a typo in + ':version'. (Bug#25375) + +2017-01-04 Glenn Morris + + Update remaining copyright years with admin.el M-x set-copyright + + * etc/refcards/ru-refcard.tex (cyear): Set to 2017. + +2017-01-04 Glenn Morris + + * lisp/ffap.el (ffap-lax-url): Bump :version after recent change. + +2017-01-03 Philipp Stephani + + Document that functions in 'ffap-alist' can use the match data + + * lisp/ffap.el (ffap-alist): Document that ffap sets the match data + while walking 'ffap-alist'. + +2017-01-01 Paul Eggert + + Fix copyright years by hand + + These are dates that admin/update-copyright did not update, or + updated incorrectly. + +2017-01-01 Paul Eggert + + Update copyright year to 2017 + + Run admin/update-copyright. + +2016-12-30 Nicolas Petton + + Bump Emacs version to 25.1.91 + + * README: + * configure.ac: + * msdos/sed2v2.inp: + * nt/README.W32: Bump Emacs version. + * lisp/ldefs-boot.el: Update. + 2016-12-30 Alan Mackenzie Backport: Remove an ambiguity from defvar's doc string. Fixes bug #25292. @@ -35313,7 +35561,7 @@ This file records repository revisions from commit 9d56a21e6a696ad19ac65c4b405aeca44785884a (exclusive) to -commit e8f0d7dcadd2b35f62f7a14b96df15e5314d7f6e (inclusive). +commit ab0a60a1b334fafc7d805eb44e6069ea314ad486 (inclusive). See ChangeLog.1 for earlier changes. ;; Local Variables: diff --git a/etc/AUTHORS b/etc/AUTHORS index e53577140e..d166b6d1fc 100644 --- a/etc/AUTHORS +++ b/etc/AUTHORS @@ -66,9 +66,8 @@ and changed nsterm.m nsfns.m nsfont.m nsterm.h nsmenu.m configure.ac Agustín Martín: changed ispell.el flyspell.el fixit.texi Aidan Gauland: wrote em-tramp.el -and changed eshell.texi em-term.el em-unix.el erc-match.el - automated/eshell.el em-cmpl.el em-dirs.el em-ls.el em-script.el - esh-proc.el +and changed eshell.texi em-term.el em-unix.el erc-match.el em-cmpl.el + em-dirs.el em-ls.el em-script.el esh-proc.el automated/eshell.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 @@ -125,6 +124,8 @@ Alexander Klimov: changed files.el calc-graph.el files.texi man.el rx.el Alexander Kreuzer: changed nnrss.el +Alexander Kuleshov: changed dns-mode.el + Alexander L. Belikoff: wrote erc.el Alexander Pohoyda: co-wrote mail/rmailmm.el @@ -149,7 +150,7 @@ and changed emacs3.py vc-hooks.el vc.el xml.el Alex Coventry: changed files.el -Alex Dunn: changed subr-tests.el subr.el +Alex Dunn: changed subr.el subr-tests.el Alex Kosorukoff: changed org-capture.el @@ -352,10 +353,10 @@ Artem Chuprina: changed message.el Artur Malabarba: wrote char-fold-tests.el faces-tests.el isearch-tests.el let-alist.el simple-test.el sort-tests.el tabulated-list-test.el and changed package.el isearch.el lisp/char-fold.el files.el - tabulated-list.el package-test.el menu-bar.el replace.el bytecomp.el + tabulated-list.el menu-bar.el replace.el package-test.el bytecomp.el faces.el files-x.el test/automated/char-fold-tests.el custom.el - custom.texi help-fns.el simple.el subr-tests.el align.el bindings.el - cl-lib-tests.el cl-macs.el and 40 other files + custom.texi help-fns.el simple.el align.el bindings.el cl-macs.el + cus-edit.el keyboard.c and 40 other files Arun Persaud: changed org-agenda.el org-src.el @@ -369,8 +370,8 @@ Aubrey Jaffer: changed info.el unexelf.c Aurélien Aptel: changed alloc.c emacs-module.h lisp.h Makefile configure.ac cus-face.el data.c dispextern.h display.texi dynlib.c - dynlib.h emacs-module.c faces.el lread.c mod-test.c modhelp.py nsterm.m - ox-html.el print.c src/Makefile.in test.el and 5 other files + dynlib.h emacs-module.c faces.el lread.c modhelp.py nsterm.m ox-html.el + print.c src/Makefile.in url.texi w32term.c and 5 other files Axel Boldt: changed ehelp.el electric.el @@ -386,18 +387,18 @@ and changed c++-mode.el cplus-md1.el syntax.c syntax.h Barry Fishman: changed configure.ac gnu-linux.h image.c -Barry O'Reilly: changed simple.el lisp.h undo-tests.el keyboard.c - markers.texi alloc.c bytecode.c casetab.c data.c eval.c fileio.c fw.el - idle.el insdel.c lread.c pulse.el search.c subr.el text.texi - timer-tests.el undo.c +Barry O'Reilly: changed simple.el lisp.h keyboard.c markers.texi + undo-tests.el alloc.c bytecode.c casetab.c data.c eval.c fileio.c fw.el + idle.el insdel.c lread.c pulse.el search.c subr.el text.texi undo.c + timer-tests.el Bastien Guerry: wrote gnus-bookmark.el and co-wrote org-bibtex.el org-list.el org-protocol.el org-src.el and changed org.el org-agenda.el org.texi ox-html.el org-clock.el - org-capture.el org-table.el ox-latex.el org-exp.el ox-odt.el - org-compat.el ob.el org-mobile.el org-colview.el org-publish.el ox.el - org-macs.el org-pcomplete.el org-timer.el org-faces.el ox-ascii.el - and 119 other files + org-capture.el org-table.el ox-latex.el ox.el ox-odt.el org-compat.el + ox-publish.el ob.el org-mobile.el org-colview.el org-macs.el + org-pcomplete.el org-timer.el org-faces.el ox-ascii.el org-archive.el + and 116 other files Ben A. Mesander: co-wrote erc-dcc.el @@ -509,7 +510,7 @@ Boyd Lynn Gerber: changed configure.ac Bozhidar Batsov: changed ruby-mode.el subr-x.el subr.el bytecomp.el comint.el js.el lisp-mode.el package.el progmodes/python.el prolog.el - ruby-mode-tests.el scheme.el + scheme.el ruby-mode-tests.el Brad Howes: changed gnus-demon.el @@ -588,11 +589,11 @@ Carsten Dominik: wrote idlw-complete-structtag.el idlw-toolbar.el and co-wrote idlw-help.el idlw-shell.el idlwave.el org-bbdb.el org-bibtex.el org-entities.el org-gnus.el org-list.el org-pcomplete.el org-src.el ox-beamer.el ox-html.el ox-icalendar.el -and changed org-exp.el ox-latex.el org.texi org-publish.el - org-remember.el orgcard.tex org-export-latex.el org-docbook.el - ox-ascii.el org-attach.el org-protocol.el org-mouse.el org-jsinfo.el - org-mac-message.el org-wl.el org-crypt.el org-freemind.el idlw-rinfo.el - org-exp-blocks.el org-habit.el org-mhe.el and 35 other files +and changed ox.el ox-latex.el org.texi org-remember.el orgcard.tex + ox-publish.el org-docbook.el ox-ascii.el org-attach.el org-protocol.el + org-mouse.el org-mac-message.el org-wl.el ox-jsinfo.el org-crypt.el + org-freemind.el idlw-rinfo.el org-exp-blocks.el org-habit.el org-mhe.el + org-plot.el and 35 other files Caveh Jalali: changed configure.ac intel386.h sol2-4.h @@ -682,8 +683,8 @@ Christian Neukirchen: changed mm-util.el Christian Ohler: wrote ert-tests.el ert.el and co-wrote ert-x.el -and changed Makefile.in automated automated/Makefile.in configure.ac - ert-x-tests.el ert.texi misc/Makefile.in +and changed Makefile.in configure.ac ert.texi misc/Makefile.in automated + automated/Makefile.in ert-x-tests.el Christian Plate: changed nnmaildir.el sgml-mode.el @@ -711,7 +712,7 @@ Christopher Allan Webber: changed gamegrid.el org-agenda.el tetris.el Christopher Genovese: changed assoc.el help-fns.el -Christophe Rhodes: changed org-exp.el ox-latex.el +Christophe Rhodes: changed ox-latex.el ox.el Christopher J. Madsen: wrote decipher.el and changed replace.el files.el ispell.el time.el @@ -728,15 +729,15 @@ Christopher Schmidt: changed ibuffer.el org.el tips.texi calc-aent.el Christopher Wellons: changed emacs-lisp/cl-lib.el Christoph Scholtes: changed README.W32 progmodes/python.el stdint.h - INSTALL maintaining.texi INSTALL.REPO admin.el bookmark.el - configure.bat control.texi cua-base.el help-mode.el help.el ibuffer.el - ido.el make-dist makedist.bat menu.c minibuf.c process.c - progmodes/grep.el and 5 other files + INSTALL maintaining.texi admin.el bookmark.el configure.bat + control.texi cua-base.el help-mode.el help.el ibuffer.el ido.el + make-dist makedist.bat menu.c minibuf.c process.c progmodes/grep.el + replace.el and 5 other files Christoph Wedler: wrote antlr-mode.el and changed progmodes/python.el format.el gnus-art.el gnus-picon.el - message.el prog-mode.el python-tests.el register.el smiley.el - texinfmt.el + message.el prog-mode.el register.el smiley.el texinfmt.el + python-tests.el Chris Zheng: changed gnutls.c calculator.el w32-win.el @@ -781,8 +782,8 @@ Daiki Ueno: wrote epa-dired.el epa-file.el epa-hook.el epa-mail.el epa.el and co-wrote sasl-cram.el sasl-digest.el and changed mml2015.el epa.texi mml1991.el auth-source.el mml-smime.el package.el mml.el gnus.texi mm-decode.el mm-uu.el process.c subr.el - auth.texi epg-tests.el gnus-sum.el mm-view.el mml-sec.el processes.texi - archive-contents archive-contents.sig dbus.el and 45 other files + auth.texi gnus-sum.el mm-view.el mml-sec.el processes.texi dbus.el + dired.el dired.texi epa-file-hook.el and 45 other files Dale Gulledge: changed TUTORIAL.eo @@ -811,10 +812,10 @@ Dan Christensen: changed gnus-sum.el nndoc.el nnfolder.el gnus-art.el Dan Davison: wrote ob-matlab.el ob-octave.el and co-wrote ob-R.el ob-core.el ob-exp.el ob-lob.el ob-perl.el ob-python.el ob-ref.el org-src.el -and changed ob.el ob-sh.el org-exp.el org.el ox-latex.el ob-tangle.el - ob-C.el ob-asymptote.el ob-clojure.el ob-haskell.el ob-ruby.el - ob-scheme.el ob-table.el ob-ditaa.el ob-dot.el ob-gnuplot.el ob-js.el - ob-mscgen.el ob-ocaml.el ob-org.el ob-plantuml.el and 14 other files +and changed ob.el ob-sh.el org.el ox.el ox-latex.el ob-tangle.el ob-C.el + ob-asymptote.el ob-clojure.el ob-haskell.el ob-ruby.el ob-scheme.el + ob-table.el ob-ditaa.el ob-dot.el ob-gnuplot.el ob-js.el ob-mscgen.el + ob-ocaml.el ob-org.el ob-plantuml.el and 14 other files Daniel Bergey: changed indian.el @@ -827,11 +828,11 @@ Daniel Colascione: wrote finalizer-tests.el generator-tests.el and co-wrote js.el and changed w32fns.c alloc.c emacs.c cl-macs.el image.c keyboard.c lisp.h process.c sh-script.el configure.ac cygw32.c simple.el src/Makefile.in - w32term.h automated/cl-lib-tests.el cygw32.h dbusbind.c fns.c unexcw.c - unexw32.c w32.c and 155 other files + w32term.h cygw32.h dbusbind.c fns.c unexcw.c unexw32.c w32.c w32term.c + and 155 other files Daniel Dehennin: changed mml2015.el gnus-mlspl.el gnus-msg.el - mm-decode.el org-exp.el + mm-decode.el ox.el Daniel E. Doherty: changed calc.texi @@ -842,11 +843,10 @@ Daniel Engeler: changed sysdep.c elisp.texi emacs.texi internals.texi Daniel Hackney: wrote package-test.el and co-wrote package.el -and changed package-x.el ange-ftp.el automated/Makefile.in - automated/package-test.el browse-url.el dbus.el dired-x.el +and changed package-x.el ange-ftp.el browse-url.el dbus.el dired-x.el ediff-diff.el ediff-init.el ediff-merg.el ediff-mult.el ediff-util.el ediff-wind.el ediff.el emacsclient.c emerge.el eudc.el eudcb-ldap.el - eww.el finder.el imap.el and 7 other files + eww.el finder.el imap.el pcvs.el printing.el and 7 other files Daniel Jensen: changed apropos.el @@ -1013,9 +1013,9 @@ David Lawrence: changed comint.el simple.el files.el c++-mode.el David Lord: changed timeclock.el -David Maus: changed org.el org-agenda.el org-exp.el org-feed.el org-wl.el +David Maus: changed org.el org-agenda.el ox.el org-feed.el org-wl.el org-macs.el ox-html.el org-capture.el org.texi org-gnus.el org-bbdb.el - org-clock.el org-protocol.el org-publish.el ob-haskell.el ob.el + org-clock.el org-protocol.el ox-publish.el ob-haskell.el ob.el org-bibtex.el org-compat.el org-footnote.el org-id.el org-list.el and 20 other files @@ -1165,10 +1165,10 @@ Dmitry Gorbik: changed org.el Dmitry Gutov: wrote elisp-mode-tests.el json-tests.el vc-hg.el xref-tests.el -and changed ruby-mode.el xref.el elisp-mode.el etags.el - ruby-mode-tests.el vc-git.el project.el ruby.rb js.el package.el vc.el - log-edit.el symref/grep.el menu-bar.el package-test.el - progmodes/grep.el vc-svn.el find-func.el lisp.el minibuffer.el pulse.el +and changed ruby-mode.el xref.el elisp-mode.el etags.el vc-git.el + project.el js.el package.el ruby-mode-tests.el ruby.rb vc.el + log-edit.el symref/grep.el menu-bar.el progmodes/grep.el vc-svn.el + find-func.el lisp.el minibuffer.el pulse.el simple.el and 93 other files Dmitry Kurochkin: changed isearch.el @@ -1203,10 +1203,10 @@ Ed Swarthout: changed hexl.el textmodes/table.el Eduardo Muñoz: changed dired.el ls-lisp.el Eduard Wiebe: wrote flymake-tests.el -and changed dired.el flymake.texi Makefile browse-url.el flymake.el - footnote.el javascript.el jit-lock.el korean.el locate.el mule-conf.el - nxml-mode.texi objects.texi ps-print.el sysdep.c test.c test.pl - vc-rcs.el +and changed dired.el flymake.texi browse-url.el flymake.el footnote.el + javascript.el jit-lock.el korean.el locate.el mule-conf.el + nxml-mode.texi objects.texi ps-print.el sysdep.c vc-rcs.el Makefile + test.c test.pl Edward M. Reingold: wrote cal-china.el cal-coptic.el cal-french.el cal-islam.el cal-iso.el cal-julian.el cal-move.el cal-persia.el @@ -1252,7 +1252,7 @@ Eli Zaretskii: wrote [bidirectional display in xdisp.c] and changed xdisp.c msdos.c w32.c w32fns.c display.texi files.el simple.el fileio.c w32proc.c w32term.c keyboard.c emacs.c dispnew.c dispextern.h INSTALL config.bat sed1v2.inp src/Makefile.in term.c - frames.texi window.c and 1018 other files + frames.texi window.c and 1020 other files Emanuele Giaquinta: changed configure.ac rxvt.el charset.c etags.c fontset.c frame.el gnus-faq.texi loadup.el lread.c sh-script.el @@ -1346,7 +1346,7 @@ Eric Schulte: wrote ob-C.el ob-asymptote.el ob-awk.el ob-calc.el and co-wrote ob-R.el ob-clojure.el ob-core.el ob-exp.el ob-fortran.el ob-lisp.el ob-lob.el ob-maxima.el ob-perl.el ob-picolisp.el ob-python.el ob-ref.el ob-scheme.el org-bibtex.el -and changed org.texi org.el org-exp-blocks.el org-exp.el ox-latex.el +and changed org.texi org.el org-exp-blocks.el ox.el ox-latex.el org-src.el ob-plantuml.el ob-screen.el org-macs.el org-table.el org-agenda.el org-mouse.el orgcard.tex ob-lilypond.el ob-mscgen.el ob-octave.el org-clock.el org-compat.el org-footnote.el ox-ascii.el @@ -1435,8 +1435,7 @@ Felix S. T. Wu: co-wrote vi.el (public domain) Feng Li: changed calc-ext.el pascal.el which-func.el -Feng Shu: changed org.el org.texi org-exp.el ox-html.el ox-latex.el - ox-odt.el ox.el +Feng Shu: changed org.el org.texi ox.el ox-html.el ox-latex.el ox-odt.el Ferenc Wagner: changed nnweb.el @@ -1615,7 +1614,7 @@ and changed configure.ac Makefile.in src/Makefile.in calendar.el diary-lib.el lisp/Makefile.in files.el rmail.el progmodes/f90.el make-dist simple.el bytecomp.el emacs.texi misc/Makefile.in authors.el ack.texi lib-src/Makefile.in startup.el admin.el cal-menu.el - display.texi and 1602 other files + display.texi and 1603 other files Glynn Clements: wrote gamegrid.el snake.el tetris.el @@ -1702,14 +1701,14 @@ Harald Maier: changed w32heap.c Harald Meland: changed gnus-art.el gnus-salt.el gnus-score.el gnus-util.el gnus-win.el mail-source.el -Harri Kiiskinen: changed org-protocol.el org-publish.el +Harri Kiiskinen: changed org-protocol.el ox-publish.el H. Dieter Wilhelm: changed calc-help.el maintaining.texi Heiko Muenkel: changed b2m.c Helmut Eller: changed emacs-lisp/debug.el xref.el cl-indent.el cl-macs.el - elisp-mode.el etags.el eval.c lisp-mode.el process-tests.el process.c + elisp-mode.el etags.el eval.c lisp-mode.el process.c process-tests.el Helmut Waitzmann: changed gnus-sum.el gnus.texi @@ -1734,7 +1733,7 @@ Hideki Iwamoto: changed etags.c Hiroshi Fujishima: changed efaq.texi gnus-score.el mail-source.el spam-stat.el -Hiroshi Nakano: changed ralloc.c unexelf.c +Hiroshi Nakano: changed unexelf.c ralloc.c Hiroshi Oota: changed coding.c @@ -1768,6 +1767,8 @@ Hynek Schlawack: changed gnus-art.el gnus-sum.el Ian D: changed doc-view.el image-mode.el +Ian Dunn: changed eww.el + Ian Eure: changed sql.el url-util.el Ian Kelling: changed process.c ob-core.el @@ -1856,9 +1857,9 @@ Jack Duthen: changed which-func.el Jack Repenning: changed unexelfsgi.c -Jackson Ray Hamilton: changed js.el indent/js-indent-init-dynamic.js - indent/js-indent-init-t.js js-indent-init-dynamic.js js-jsx.js js.js - sgml-mode.el +Jackson Ray Hamilton: changed js.el sgml-mode.el + indent/js-indent-init-dynamic.js indent/js-indent-init-t.js + js-indent-init-dynamic.js js-jsx.js js.js Jack Twilley: changed message.el @@ -1872,7 +1873,7 @@ Jaeyoun Chung: changed hangul3.el hanja3.el gnus-mule.el hangul.el Jambunathan K: wrote ox-odt.el and co-wrote ox-html.el -and changed org-lparse.el org.el org-exp.el org.texi icomplete.el +and changed org-lparse.el org.el org.texi ox.el icomplete.el OrgOdtContentTemplate.xml OrgOdtStyles.xml hi-lock.el replace.el minibuffer.el org-footnote.el org-inlinetask.el register.el doc-view.el etags.el htmlfontify.el ido.el indian.el iswitchb.el org-bbdb.el @@ -1907,7 +1908,7 @@ James Wright: changed em-unix.el Jamie Zawinski: wrote mailabbrev.el tar-mode.el and co-wrote byte-opt.el byte-run.el bytecomp.el disass.el font-lock.el -and changed bytecode.c mail-extr.el subr.el +and changed mail-extr.el subr.el bytecode.c Jan Beich: changed configure.ac @@ -1927,14 +1928,14 @@ and changed dbus.el dbus.texi dbusbind.c eieio.el idle.el insert.el log-edit.el srecode/find.el wisent/python.el zeroconf.el Jan Nieuwenhuizen: changed gud.el info.el TUTORIAL.nl add-log.el - compilation.txt compile-tests.el emacs.c emacsclient.c gnus-start.el - nnmh.el progmodes/compile.el server.el startup.el + compilation.txt emacs.c emacsclient.c gnus-start.el nnmh.el + progmodes/compile.el server.el startup.el compile-tests.el Jan Rychter: changed gnus-msg.el Jan Schormann: wrote solitaire.el -Jan Seeger: changed org-publish.el parse-time.el +Jan Seeger: changed ox-publish.el parse-time.el Jan Tatarik: wrote gnus-icalendar.el and changed gnus-score.el gnus-logic.el @@ -2123,7 +2124,7 @@ João Cachopo: changed spam.el João Távora: wrote elec-pair.el electric-tests.el message-mode-tests.el and changed tex-mode.el message.el shr.el electric.el emacs.texi - lisp-mode.el progmodes/python.el python-tests.el simple.el tls.el vc.el + lisp-mode.el progmodes/python.el simple.el tls.el vc.el python-tests.el Jochen Hein: changed gnus-art.el @@ -2240,7 +2241,7 @@ John Williams: changed etags.el John Yates: changed hideshow.el -Jon Anders Skorpen: changed org-publish.el +Jon Anders Skorpen: changed ox-publish.el Jonas Bernoulli: changed eieio.el button.el ido.el lisp-mnt.el tabulated-list.el tips.texi @@ -2280,8 +2281,8 @@ Jorge A. Alfaro-Murillo: changed message.el Jorgen Schäfer: wrote erc-autoaway.el erc-goodies.el erc-spelling.el and changed erc.el erc-track.el erc-backend.el erc-match.el erc-stamp.el erc-button.el erc-fill.el erc-members.el erc-truncate.el erc-compat.el - package-test.el Makefile erc-dcc.el erc-ibuffer.el erc-macs.el - erc-page.el erc-pcomplete.el erc-sound.el minibuffer.el package.el + Makefile erc-dcc.el erc-ibuffer.el erc-macs.el erc-page.el + erc-pcomplete.el erc-sound.el minibuffer.el package.el package-test.el erc-bbdb.el and 13 other files Jose A. Ortega Ruiz: changed gnus-sum.el url-http.el @@ -2296,7 +2297,7 @@ and changed xterm.c xfns.c keyboard.c screen.c dispnew.c xdisp.c window.c process.c alloc.c buffer.h files.el screen.el insdel.c emacs.c and 106 other files -Joseph M. Kelsey: changed fileio.c skeleton.el +Joseph M. Kelsey: changed skeleton.el fileio.c Josh Elsasser: changed configure.ac @@ -2390,7 +2391,7 @@ and changed message.el gnus-agent.el gnus-sum.el files.el nnmail.el Kailash C. Chowksey: changed HELLO ind-util.el kannada.el knd-util.el lisp/Makefile.in loadup.el -Kai Tetzlaff: changed org-publish.el url-http.el +Kai Tetzlaff: changed ox-publish.el url-http.el Kalle Kankare: changed image.c @@ -2420,8 +2421,8 @@ Karl Eichwalder: changed Makefile.in add-log.el bookmark.el dired-aux.el Karl Fogel: wrote bookmark.el mail-hist.el saveplace.el and changed simple.el files.el doc-view.el image-mode.el info.el vc-svn.el CONTRIBUTE INSTALL autogen.sh isearch.el menu-bar.el - simple-test.el thingatpt.el INSTALL.REPO comint.el configure - configure.ac editfns.c git-workflow gnus-bookmark.el gnus-msg.el + thingatpt.el INSTALL.REPO comint.el configure configure.ac editfns.c + git-workflow gnus-bookmark.el gnus-msg.el gnus-sum.el and 15 other files Karl Heuer: changed keyboard.c lisp.h xdisp.c buffer.c xfns.c xterm.c @@ -2688,11 +2689,10 @@ Lasse Rasinen: changed gnus-start.el Laurent Martelli: changed mm-decode.el Lawrence Mitchell: wrote erc-backend.el erc-log.el -and changed erc.el ox-latex.el org.el erc-match.el erc-nets.el - erc-nickserv.el org-exp.el ox-html.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 Makefile cl-macs.el erc-autoaway.el erc-autojoin.el - and 26 other files +and changed erc.el ox-latex.el org.el ox.el erc-match.el erc-nets.el + erc-nickserv.el ox-html.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 Makefile + cl-macs.el erc-autoaway.el erc-autojoin.el and 25 other files Lawrence R. Dodd: co-wrote dired-x.el and changed fortran.el ispell.el sendmail.el cmuscheme.el comint.el @@ -2706,7 +2706,8 @@ Lee Duhem: changed eval.c Leigh Stoller: changed emacsclient.c server.el -Lele Gaifax: changed progmodes/python.el TUTORIAL.it python-tests.el +Lele Gaifax: changed progmodes/python.el TUTORIAL.it flymake.el + python-tests.el Lennart Borgman: co-wrote ert-x.el and changed nxml-mode.el tutorial.el window.el ada-xref.el buff-menu.el @@ -2773,7 +2774,7 @@ Lukas Huonker: changed tetris.el Łukasz Demianiuk: changed erc.el Łukasz Stelmach: changed cookie1.el gtkutil.c message.el org-agenda.el - org-bbdb.el org-exp.el org.el ox-html.el ps-print.el + org-bbdb.el org.el ox-html.el ox.el ps-print.el Luke Lee: changed hideif.el @@ -2801,7 +2802,7 @@ Malcolm Purvis: changed spam-stat.el Manoj Srivastava: wrote manoj-dark-theme.el -Manuel Giraud: changed ox-html.el org-publish.el org.texi +Manuel Giraud: changed ox-html.el ox-publish.el org.texi Manuel Gómez: changed speedbar.el @@ -3067,7 +3068,7 @@ Michael Albinus: wrote auto-revert-tests.el dbus-tests.el dbus.el tramp-tests.el url-tramp.el vc-tests.el xesam.el zeroconf.el and co-wrote tramp-cache.el tramp-sh.el tramp.el and changed tramp.texi dbusbind.c trampver.el trampver.texi tramp-adb.el - ange-ftp.el dbus.texi files.el autorevert.el tramp-fish.el files.texi + ange-ftp.el dbus.texi files.el tramp-fish.el autorevert.el files.texi tramp-imap.el notifications.el os.texi configure.ac lisp.h gfilenotify.c tramp-vc.el keyboard.c lisp/Makefile.in simple.el and 125 other files @@ -3325,7 +3326,7 @@ Nicholas Maniscalco: changed term.el Nick Alcock: changed gnus.el -Nick Dokos: changed org-exp.el org-table.el icalendar.el mh-search.el +Nick Dokos: changed org-table.el ox.el icalendar.el mh-search.el org-mobile.el org.el ox-ascii.el url-cache.el Nick Roberts: wrote gdb-mi.el t-mouse.el @@ -3344,20 +3345,20 @@ Nicolas Goaziou: wrote org-element.el org-macro.el ox-ascii.el ox-latex.el ox-md.el ox-org.el ox.el and co-wrote ox-beamer.el ox-icalendar.el ox-man.el and changed org-list.el org.el ox-html.el org-footnote.el ox-texinfo.el - org-exp.el org.texi ox-publish.el ox-odt.el org-inlinetask.el - org-indent.el org-docbook.el ob-exp.el org-agenda.el org-timer.el ob.el + org.texi ox-publish.el ox-odt.el org-inlinetask.el org-indent.el + org-docbook.el ob-exp.el org-agenda.el org-timer.el ob.el org-capture.el ob-asymptote.el org-clock.el org-macs.el - org-pcomplete.el and 25 other files + org-pcomplete.el org-table.el and 22 other files Nicolas Graner: changed message.el Nicolas Petton: wrote map-tests.el map.el seq-tests.el seq.el thunk-tests.el thunk.el and co-wrote auth-source-tests.el subr-tests.el -and changed sequences.texi README configure.ac emacs.png sed2v2.inp - authors.el emacs23.png arc-mode.el cl-extra.el emacs.svg Emacs.icns - Makefile.in README.W32 auth-source.el emacs.ico obarray-tests.el - obarray.el data.c emacs-document.svg emacs-document23.svg emacs.texi +and changed sequences.texi README configure.ac sed2v2.inp emacs.png + authors.el emacs23.png arc-mode.el cl-extra.el emacs.svg README.W32 + Emacs.icns Makefile.in auth-source.el emacs.ico obarray.el data.c + emacs-document.svg emacs-document23.svg emacs.texi emacs23.svg and 8 other files Nicolas Richard: wrote cl-seq-tests.el cmds-tests.el @@ -3393,11 +3394,11 @@ and changed rsz-mini.el emacs-buffer.gdb comint.el files.el Makefile Noah Lavine: changed tramp.el -Noam Postavsky: changed search.c cl-macs.el cl-preloaded.el - debugging.texi simple.el w32.c buffer-tests.el buffer.c buffers.texi - category.c cmdproxy.c cursor-sensor.el cus-edit.el dired.c - elisp-mode.el em-term.el emacs-lisp-intro.texi etags.el eval.c ffap.el - files.el and 27 other files +Noam Postavsky: changed search.c cl-preloaded.el debugging.texi + modes.texi simple.el w32.c cl-macs.el buffer.c buffers.texi category.c + cmdproxy.c cus-edit.el dired.c elisp-mode.el em-term.el + emacs-lisp-intro.texi etags.el eval.c files.el find-func.el help-fns.el + and 30 other files Nobuyoshi Nakada: co-wrote ruby-mode.el @@ -3663,15 +3664,15 @@ Philipp Haselwarter: changed gnus-agent.el gnus-sum.el gnus-sync.el Philipp Rumpf: changed electric.el Philipp Stephani: wrote xt-mouse-tests.el -and changed emacs-module.c lisp.h xt-mouse.el editfns.c eval.c mod-test.c - xterm.el Makefile alloc.c callproc.c cl.texi configure.ac dynlib.c - dynlib.h easy-mmode.el ediff.texi electric-tests.el emacs-module.h - fileio.c fns.c modhelp.py and 8 other files +and changed emacs-module.c lisp.h xt-mouse.el editfns.c eval.c xterm.el + Makefile alloc.c callproc.c configure.ac dynlib.c dynlib.h + emacs-module.h fileio.c fns.c mod-test.c modhelp.py mule.el + src/Makefile.in term.el unexmacosx.c and 11 other files Phillip Lord: changed undo.c simple.el viper-cmd.el keyboard.c cmds.c fileio.c README.W32 autoload.el automated/Makefile.in cl-extra.el ert.el files.texi htmlfontify.el insdel.c keyboard.h menu-bar.el org.el - seq-tests.el seq.el simple-test.el text.texi viper-init.el + seq.el text.texi viper-init.el seq-tests.el simple-test.el Phil Sainty: changed lisp.el package.el progmodes/grep.el simple.el subword.el @@ -3705,10 +3706,10 @@ Prestoo Ten: changed screen.el Primoz Peterlin: changed TUTORIAL.sl Przemysław Wojnowski: wrote obarray-tests.el sgml-mode-tests.el -and changed cl-lib-tests.el obarray.el sgml-mode.el +and changed obarray.el sgml-mode.el cl-lib-tests.el -Puneeth Chaganti: changed org.texi org-exp.el org-agenda.el - org-capture.el ox-html.el +Puneeth Chaganti: changed org.texi ox.el org-agenda.el org-capture.el + ox-html.el Rafael Laboissiere: changed org-remember.el org-bibtex.el org.el org.texi @@ -3896,10 +3897,10 @@ Rodrigo Real: changed pt-br-refcard.tex Roger Breitenstein: changed smtpmail.el -Roland B. Roberts: changed buffer.h callproc.c dired.c files.el - gnus-group.el gnus-sum.el process.c sort.el sysdep.c systty.h +Roland B. Roberts: changed gnus-group.el gnus-sum.el buffer.h callproc.c + dired.c files.el process.c sort.el sysdep.c systty.h -Roland Kaufmann: changed org-exp.el +Roland Kaufmann: changed ox.el Roland McGrath: wrote autoload.el etags.el map-ynp.el progmodes/grep.el and co-wrote find-dired.el progmodes/compile.el @@ -3976,9 +3977,9 @@ Saito Takuya: changed mule.el progmodes/compile.el Sam Dooley: changed keyboard.c -Samer Masterson: changed esh-arg.el startup.el CONTRIBUTE - automated/eshell.el em-hist.el em-pred.el em-term.el esh-io.el eshell - os.texi pcomplete.el url-handlers.el +Samer Masterson: changed esh-arg.el startup.el CONTRIBUTE em-hist.el + em-pred.el em-term.el esh-io.el eshell os.texi pcomplete.el + url-handlers.el automated/eshell.el Sam Falkner: changed nntp.el @@ -4056,7 +4057,7 @@ and co-wrote dired-x.el find-dired.el and changed add-log.el Sebastian Rose: co-wrote org-protocol.el -and changed org-publish.el ftfont.c org-jsinfo.el +and changed ox-publish.el ftfont.c ox-jsinfo.el Sebastian Tennant: changed desktop.el @@ -4132,12 +4133,12 @@ Shun-ichi Goto: changed url-http.el Shyam Karanatt: changed image-mode.el -Sidney Markowitz: changed doctor.el nsmenu.m +Sidney Markowitz: changed nsmenu.m doctor.el Sigbjorn Finne: changed gnus-srvr.el -Simen Heggestøyl: changed css-mode.el json-tests.el json.el - scss-mode.scss css-mode.css files.el js.el scheme.el +Simen Heggestøyl: changed css-mode.el json.el json-tests.el files.el + js.el scheme.el scss-mode.scss css-mode.css Simon Josefsson: wrote dig.el dns-mode.el flow-fill.el fringe.el imap.el mml-sec.el mml-smime.el password-cache.el rfc2104.el sieve-mode.el @@ -4254,8 +4255,7 @@ Stephen Leake: wrote elisp-mode-tests.el and changed ada-mode.el ada-xref.el elisp-mode.el mode-local.el xref.el CONTRIBUTE vc-mtn.el window.el ada-mode.texi ada-prj.el cedet-global.el ede/generic.el ada-stmt.el cl-generic.el ede/locate.el files.texi - project.el windows.texi INSTALL.REPO align.el auto.el - and 19 other files + project.el windows.texi align.el auto.el autoload.el and 19 other files Stephen Peters: changed icalendar.el @@ -4315,8 +4315,7 @@ and changed emacsclient.c server.el Sun Yijiang: changed TUTORIAL.cn -Suvayu Ali: changed org.texi org-exp.el org-inlinetask.el org-src.el - org.el +Suvayu Ali: changed org.texi org-inlinetask.el org-src.el org.el ox.el Svend Tollak Munkejord: changed deuglify.el @@ -4358,10 +4357,10 @@ and changed arc-mode.el Tassilo Horn: wrote doc-view.el and co-wrote org-gnus.el and changed reftex-vars.el tex-mode.el gnus.texi tsdh-dark-theme.el - gnus-sum.el reftex-cite.el tsdh-light-theme.el file-notify-tests.el - reftex.el misc.texi prog-mode.el subword.el image-mode.el lisp-mode.el - cc-cmds.el display.texi em-term.el emacsbug.el files.el gnus-art.el - nnimap.el and 72 other files + gnus-sum.el reftex-cite.el tsdh-light-theme.el reftex.el misc.texi + prog-mode.el subword.el image-mode.el lisp-mode.el cc-cmds.el + display.texi em-term.el emacsbug.el file-notify-tests.el files.el + gnus-art.el nnimap.el and 72 other files Tatsuya Ichikawa: changed gnus-agent.el gnus-cache.el @@ -4394,7 +4393,7 @@ Tetsuo Tsukamoto: changed nnrss.el Tetsurou Okazaki: changed Makefile.in byte-opt.el lib-src/Makefile.in log-edit.el lread.c xterm.c -T.F. Torrey: changed org-exp.el org-rmail.el +T.F. Torrey: changed org-rmail.el ox.el Thamer Mahmoud: changed arabic.el @@ -4695,6 +4694,8 @@ Vladimir Kazanov: changed java.srt Vladimir Lomov: changed ox-html.el +Vladimir Panteleev: changed ert.texi + Vladimir Volovich: changed smime.el Volker Sobek: changed programs.texi @@ -4772,16 +4773,16 @@ Wolfgang Glas: changed unexsgi.c Wolfgang Jenkner: wrote man-tests.el textprop-tests.el and changed gnus-agent.el image-mode.el man.el network-stream.el ansi-color.el comint.el gnus-spec.el gnus-sum.el gnus-util.el - automated/Makefile.in calc-store.el calc-tests.el calc-units.el - conf-mode.el dired-x.el editfns.c font-lock.el functions.texi gmalloc.c - gnus-group.el gnus-picon.el and 15 other files + calc-store.el calc-units.el conf-mode.el dired-x.el editfns.c + font-lock.el functions.texi gmalloc.c gnus-group.el gnus-picon.el + gnus-salt.el gnus-start.el and 15 other files Wolfgang Lux: changed nsterm.m keyboard.c Wolfgang Rupprecht: wrote float-sup.el floatfns.c sup-mouse.el -and changed process.c alloc.c callint.c config.in configure.ac data.c - fns.c lisp-mode.el lisp.h loadup.el lread.c net-utils.el nntp.el - print.c sort.el +and changed process.c config.in configure.ac net-utils.el nntp.el alloc.c + callint.c data.c fns.c lisp-mode.el lisp.h loadup.el lread.c print.c + sort.el Wolfgang Scherer: changed vc-cvs.el @@ -4815,7 +4816,7 @@ and changed macterm.c macfns.c mac-win.el mac.c macterm.h macmenu.c Yann Dirson: changed imenu.el -Yann Hodique: changed org-publish.el package.el rcirc.el +Yann Hodique: changed ox-publish.el package.el rcirc.el Yasushi Shoji: changed org-clock.el org.texi ox-ascii.el commit ab0a60a1b334fafc7d805eb44e6069ea314ad486 Author: Tino Calancha Date: Fri Feb 3 17:49:39 2017 +0900 ; * CONTRIBUTE (Generating ChangeLog entries): Drop duplicate word. diff --git a/CONTRIBUTE b/CONTRIBUTE index c12f0cc08d..809b6e3208 100644 --- a/CONTRIBUTE +++ b/CONTRIBUTE @@ -162,7 +162,7 @@ them right the first time, so here are guidelines for formatting them: - If you use Emacs VC, one way to format ChangeLog entries is to create a top-level ChangeLog file manually, and update it with 'C-x 4 a' as usual. Do not register the ChangeLog file under git; instead, use - 'C-c C-a' to insert its contents into into your *vc-log* buffer. + 'C-c C-a' to insert its contents into your *vc-log* buffer. Or if 'log-edit-hook' includes 'log-edit-insert-changelog' (which it does by default), they will be filled in for you automatically. commit 7e02a477bbcabb4e65aeecade79b67357c0b9dae Author: Eli Zaretskii Date: Tue Jan 31 22:36:02 2017 +0200 Index byte-compile-debug * doc/lispref/compile.texi (Compilation Functions): Index byte-compile-debug. diff --git a/doc/lispref/compile.texi b/doc/lispref/compile.texi index 441ee9afb2..201d9fc2fa 100644 --- a/doc/lispref/compile.texi +++ b/doc/lispref/compile.texi @@ -88,6 +88,7 @@ the @code{byte-compile} function. You can compile a whole file with @code{byte-compile-file}, or several files with @code{byte-recompile-directory} or @code{batch-byte-compile}. +@vindex byte-compile-debug Sometimes, the byte compiler produces warning and/or error messages (@pxref{Compiler Errors}, for details). These messages are normally recorded in a buffer called @file{*Compile-Log*}, which uses commit 7c1e598a0559db79a5166e34514413e3f524eeff Author: Philipp Stephani Date: Tue Jan 31 21:10:03 2017 +0100 Document `byte-compile-debug' in the ELisp manual * doc/lispref/compile.texi: Document variable `byte-compile-debug'. diff --git a/doc/lispref/compile.texi b/doc/lispref/compile.texi index b1cc04be09..441ee9afb2 100644 --- a/doc/lispref/compile.texi +++ b/doc/lispref/compile.texi @@ -89,9 +89,12 @@ the @code{byte-compile} function. You can compile a whole file with @code{byte-recompile-directory} or @code{batch-byte-compile}. Sometimes, the byte compiler produces warning and/or error messages -(@pxref{Compiler Errors}, for details). These messages are recorded -in a buffer called @file{*Compile-Log*}, which uses Compilation mode. -@xref{Compilation Mode,,,emacs, The GNU Emacs Manual}. +(@pxref{Compiler Errors}, for details). These messages are normally +recorded in a buffer called @file{*Compile-Log*}, which uses +Compilation mode. @xref{Compilation Mode,,,emacs, The GNU Emacs +Manual}. However, if the variable @code{byte-compile-debug} is +non-nil, error message will be signaled as Lisp errors instead +(@pxref{Errors}). @cindex macro compilation Be careful when writing macro calls in files that you intend to commit 4d81eb450ef5219b551e01e7df7f08784fdc3231 Author: Philipp Stephani Date: Tue Jan 31 19:04:36 2017 +0100 Document variable `byte-compile-debug' * lisp/emacs-lisp/bytecomp.el (byte-compile-debug): Document variable. diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index eb3f46d3d7..2c808a5b4b 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -411,7 +411,8 @@ specify different fields to sort on." :type '(choice (const name) (const callers) (const calls) (const calls+callers) (const nil))) -(defvar byte-compile-debug nil) +(defvar byte-compile-debug nil + "If non-nil, byte compile errors will be raised as signals instead of logged.") (defvar byte-compile-constants nil "List of all constants encountered during compilation of this form.") (defvar byte-compile-variables nil commit 72ef710f6e1c8e334fd50da9480a8cb151e823a2 Author: Noam Postavsky Date: Mon Jan 30 21:45:02 2017 -0500 Fix call to debugger on assertion failure * lisp/emacs-lisp/cl-preloaded.el (cl--assertion-failed): The first argument must be `error', and the second is a list of arguments for `signal'. diff --git a/lisp/emacs-lisp/cl-preloaded.el b/lisp/emacs-lisp/cl-preloaded.el index 0b07941000..4ae77a58ec 100644 --- a/lisp/emacs-lisp/cl-preloaded.el +++ b/lisp/emacs-lisp/cl-preloaded.el @@ -45,7 +45,7 @@ (defun cl--assertion-failed (form &optional string sargs args) (if debug-on-error - (funcall debugger `(cl-assertion-failed ,form ,string ,@sargs)) + (funcall debugger 'error `(cl-assertion-failed (,form ,string ,@sargs))) (if string (apply #'error string (append sargs args)) (signal 'cl-assertion-failed `(,form ,@sargs))))) commit ae8264c5cccf19d5b25a340a605bf2f07de1577e Author: Noam Postavsky Date: Sat Jan 7 16:05:19 2017 -0500 Call modification hooks in org-src fontify buffers * lisp/org/org-src.el (org-src-font-lock-fontify-block): Let-bind `inhibit-modification-hooks' to nil, since this function can be called from jit-lock-function which binds that variable to t (Bug#25132). diff --git a/lisp/org/org-src.el b/lisp/org/org-src.el index d01f1082f9..a02402cf60 100644 --- a/lisp/org/org-src.el +++ b/lisp/org/org-src.el @@ -913,16 +913,20 @@ fontification of code blocks see `org-src-fontify-block' and (with-current-buffer (get-buffer-create (concat " org-src-fontification:" (symbol-name lang-mode))) - (delete-region (point-min) (point-max)) - (insert string " ") ;; so there's a final property change - (unless (eq major-mode lang-mode) (funcall lang-mode)) - (org-font-lock-ensure) - (setq pos (point-min)) - (while (setq next (next-single-property-change pos 'face)) - (put-text-property - (+ start (1- pos)) (1- (+ start next)) 'face - (get-text-property pos 'face) org-buffer) - (setq pos next))) + ;; Make sure that modification hooks are not inhibited in + ;; the org-src-fontification buffer in case we're called + ;; from `jit-lock-function' (Bug#25132). + (let ((inhibit-modification-hooks nil)) + (delete-region (point-min) (point-max)) + (insert string " ") ;; so there's a final property change + (unless (eq major-mode lang-mode) (funcall lang-mode)) + (org-font-lock-ensure) + (setq pos (point-min)) + (while (setq next (next-single-property-change pos 'face)) + (put-text-property + (+ start (1- pos)) (1- (+ start next)) 'face + (get-text-property pos 'face) org-buffer) + (setq pos next)))) (add-text-properties start end '(font-lock-fontified t fontified t font-lock-multiline t)) commit b3139da0778739b88e17aa9d980e6025b811f928 Author: Eli Zaretskii Date: Sat Jan 28 11:14:28 2017 +0200 ; Fix last change in doc/lispref/strings.texi * doc/lispref/strings.texi (Formatting Strings): One more clarification to the last change. (Bug#25557) diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi index d5980f62bd..02dfdfb097 100644 --- a/doc/lispref/strings.texi +++ b/doc/lispref/strings.texi @@ -921,7 +921,10 @@ floating-point number. Replace the specification with notation for a floating-point number, using either exponential notation or decimal-point notation. The exponential notation is used if the exponent would be less than -4 or -greater than or equal to the precision (default: 6). +greater than or equal to the precision (default: 6). By default, +trailing zeros are removed from the fractional portion of the result +and a decimal-point character appears only if it is followed by a +digit. @item %% Replace the specification with a single @samp{%}. This format commit c331f393c120208983a4c9890cfd606635ef782a Author: Eli Zaretskii Date: Sat Jan 28 10:30:17 2017 +0200 Improve documentation of 'format' conversions * src/editfns.c (Fformat): More accurate description of %g and effects of the various flags on it. More accurate description of integer conversions. * doc/lispref/strings.texi (Formatting Strings): More accurate description of %g and effects of the various flags on it. More accurate description of integer conversions. (Bug#25557) diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi index d343bcf5ef..d5980f62bd 100644 --- a/doc/lispref/strings.texi +++ b/doc/lispref/strings.texi @@ -893,17 +893,18 @@ Functions}). Thus, strings are enclosed in @samp{"} characters, and @item %o @cindex integer to octal Replace the specification with the base-eight representation of an -integer. +unsigned integer. @item %d -Replace the specification with the base-ten representation of an +Replace the specification with the base-ten representation of a signed integer. @item %x @itemx %X @cindex integer to hexadecimal Replace the specification with the base-sixteen representation of an -integer. @samp{%x} uses lower case and @samp{%X} uses upper case. +unsigned integer. @samp{%x} uses lower case and @samp{%X} uses upper +case. @item %c Replace the specification with the character which is the value given. @@ -918,8 +919,9 @@ floating-point number. @item %g Replace the specification with notation for a floating-point number, -using either exponential notation or decimal-point notation, whichever -is shorter. +using either exponential notation or decimal-point notation. The +exponential notation is used if the exponent would be less than -4 or +greater than or equal to the precision (default: 6). @item %% Replace the specification with a single @samp{%}. This format @@ -1000,9 +1002,11 @@ both flags are used, @samp{+} takes precedence. The flag @samp{#} specifies an alternate form which depends on the format in use. For @samp{%o}, it ensures that the result begins with a @samp{0}. For @samp{%x} and @samp{%X}, it prefixes the result -with @samp{0x} or @samp{0X}. For @samp{%e}, @samp{%f}, and @samp{%g}, -the @samp{#} flag means include a decimal point even if the precision -is zero. +with @samp{0x} or @samp{0X}. For @samp{%e} and @samp{%f}, the +@samp{#} flag means include a decimal point even if the precision is +zero. For @samp{%g}, it always includes a decimal point, and also +forces any trailing zeros after the decimal point to be left in place +where they would otherwise be removed. The flag @samp{0} ensures that the padding consists of @samp{0} characters instead of spaces. This flag is ignored for non-numerical @@ -1033,10 +1037,14 @@ ignored. All the specification characters allow an optional @dfn{precision} before the character (after the width, if present). The precision is a decimal-point @samp{.} followed by a digit-string. For the -floating-point specifications (@samp{%e}, @samp{%f}, @samp{%g}), the -precision specifies how many decimal places to show; if zero, the -decimal-point itself is also omitted. For @samp{%s} and @samp{%S}, -the precision truncates the string to the given width, so @samp{%.3s} +floating-point specifications (@samp{%e} and @samp{%f}), the +precision specifies how many digits following the decimal point to +show; if zero, the decimal-point itself is also omitted. For +@samp{%g}, the precision specifies how many significant digits to show +(significant digits are the first digit before the decimal point and +all the digits after it). If the precision of %g is zero or +unspecified, it is treated as 1. For @samp{%s} and @samp{%S}, the +precision truncates the string to the given width, so @samp{%.3s} shows only the first three characters of the representation for @var{object}. For other specification characters, the effect of precision is what the local library functions of the @code{printf} diff --git a/src/editfns.c b/src/editfns.c index 395b3f3fae..18384a7d03 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -3823,12 +3823,14 @@ The format control string may contain %-sequences meaning to substitute the next available argument: %s means print a string argument. Actually, prints any object, with `princ'. -%d means print as number in decimal (%o octal, %x hex). +%d means print as signed number in decimal. +%o means print as unsigned number in octal, %x as unsigned number in hex. %X is like %x, but uses upper case. %e means print a number in exponential notation. %f means print a number in decimal-point notation. -%g means print a number in exponential notation - or decimal-point notation, whichever uses fewer characters. +%g means print a number in exponential notation if the exponent would be + less than -4 or greater than or equal to the precision (default: 6); + otherwise it prints in decimal-point notation. %c means print a number as a single character. %S means print any object as an s-expression (using `prin1'). @@ -3851,8 +3853,10 @@ The - and 0 flags affect the width specifier, as described below. The # flag means to use an alternate display form for %o, %x, %X, %e, %f, and %g sequences: for %o, it ensures that the result begins with \"0\"; for %x and %X, it prefixes the result with \"0x\" or \"0X\"; -for %e, %f, and %g, it causes a decimal point to be included even if -the precision is zero. +for %e and %f, it causes a decimal point to be included even if the +the precision is zero; for %g, it causes a decimal point to be +included even if the the precision is zero, and also forces trailing +zeros after the decimal point to be left in place. The width specifier supplies a lower limit for the length of the printed representation. The padding, if any, normally goes on the @@ -3861,10 +3865,12 @@ character is normally a space, but it is 0 if the 0 flag is present. The 0 flag is ignored if the - flag is present, or the format sequence is something other than %d, %e, %f, and %g. -For %e, %f, and %g sequences, the number after the "." in the -precision specifier says how many decimal places to show; if zero, the -decimal point itself is omitted. For %s and %S, the precision -specifier truncates the string to the given width. +For %e and %f sequences, the number after the "." in the precision +specifier says how many decimal places to show; if zero, the decimal +point itself is omitted. For %g, the precision specifies how many +significant digits to print; zero or omitted are treated as 1. +For %s and %S, the precision specifier truncates the string to the +given width. usage: (format STRING &rest OBJECTS) */) (ptrdiff_t nargs, Lisp_Object *args) commit 9f52f67a967819916eedfe55f4ea92f659133dc5 Author: Vladimir Panteleev Date: Fri Jan 27 11:49:42 2017 +0200 Remove stale functions from ert manual * doc/misc/ert.texi (Useful Techniques when Writing Tests): Replace ert--mismatch references with its cl-lib replacement, cl-mismatch. Copyright-paperwork-exempt: yes diff --git a/doc/misc/ert.texi b/doc/misc/ert.texi index b07cb0be49..4a2c29dcb9 100644 --- a/doc/misc/ert.texi +++ b/doc/misc/ert.texi @@ -551,15 +551,15 @@ on their environment is easy. Such tests often look like this: @lisp (ert-deftest ert-test-mismatch () - (should (eql (ert--mismatch "" "") nil)) - (should (eql (ert--mismatch "" "a") 0)) - (should (eql (ert--mismatch "a" "a") nil)) - (should (eql (ert--mismatch "ab" "a") 1)) - (should (eql (ert--mismatch "Aa" "aA") 0)) - (should (eql (ert--mismatch '(a b c) '(a b d)) 2))) + (should (eql (cl-mismatch "" "") nil)) + (should (eql (cl-mismatch "" "a") 0)) + (should (eql (cl-mismatch "a" "a") nil)) + (should (eql (cl-mismatch "ab" "a") 1)) + (should (eql (cl-mismatch "Aa" "aA") 0)) + (should (eql (cl-mismatch '(a b c) '(a b d)) 2))) @end lisp -This test calls the function @code{ert--mismatch} several times with +This test calls the function @code{cl-mismatch} several times with various combinations of arguments and compares the return value to the expected return value. (Some programmers prefer @code{(should (eql EXPECTED ACTUAL))} over the @code{(should (eql ACTUAL EXPECTED))} commit c416b141dda77101db7555fcc05243abe988eb11 Author: Eli Zaretskii Date: Fri Jan 27 11:42:59 2017 +0200 Fix a typo in Eshell manual * doc/misc/eshell.texi (History): Fix a typo. Reported by Mak Kolybabi . diff --git a/doc/misc/eshell.texi b/doc/misc/eshell.texi index bd89b9c5bf..a7651b21d6 100644 --- a/doc/misc/eshell.texi +++ b/doc/misc/eshell.texi @@ -493,7 +493,7 @@ History I-search. @itemx M-n Previous and next history line. If there is anything on the input line when you run these commands, they will instead jump to the -precious or next line that begins with that string. +previous or next line that begins with that string. @end table @node Completion commit 06695a02fd9afde4f39916d8bc359cf5eac8c053 Author: Tino Calancha Date: Sat Jan 21 00:31:40 2017 +0900 ; Fix a typo in ediff-merg.el * lisp/vc/ediff-merg.el (ediff-skip-merge-regions-that-differ-from-default): Fix a typo in docstring. diff --git a/lisp/vc/ediff-merg.el b/lisp/vc/ediff-merg.el index 2567818de6..d7fa74fff8 100644 --- a/lisp/vc/ediff-merg.el +++ b/lisp/vc/ediff-merg.el @@ -84,7 +84,7 @@ A region is considered to have been changed if it is different from the current default (`default-A', `default-B', `combined') and it hasn't been marked as `prefer-A' or `prefer-B'. A region is considered to have been changed also when it is marked as -as `prefer-A', but is different from the corresponding difference region in +`prefer-A', but is different from the corresponding difference region in Buffer A or if it is marked as `prefer-B' and is different from the region in Buffer B." :type 'boolean commit 954e9e983b7e446ebf4a7b4dfee0dca82b6b57f7 Author: Eli Zaretskii Date: Fri Jan 20 10:57:14 2017 +0200 Improve documentation of hooks related to saving buffers * lisp/files.el (write-file-functions, write-contents-functions) (before-save-hook, after-save-hook): Note that these are only used by save-buffer. * doc/lispref/backups.texi (Auto-Saving): * doc/lispref/files.texi (Saving Buffers): Mention that save-related hooks are not run by auto-saving. (Bug#25460) diff --git a/doc/lispref/backups.texi b/doc/lispref/backups.texi index 83d826018c..361fa81099 100644 --- a/doc/lispref/backups.texi +++ b/doc/lispref/backups.texi @@ -545,6 +545,11 @@ effect in an existing buffer until the next time auto-save mode is reenabled in it. If auto-save mode is already enabled, auto-saves continue to go in the same file name until @code{auto-save-mode} is called again. + +Note that setting this variable to a non-@code{nil} value does not +change the fact that auto-saving is different from saving the buffer; +e.g., the hooks described in @ref{Saving Buffers} are @emph{not} run +when a buffer is auto-saved. @end defopt @defun recent-auto-save-p diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi index 6f015e2d64..49cb150dc6 100644 --- a/doc/lispref/files.texi +++ b/doc/lispref/files.texi @@ -403,7 +403,11 @@ buffer name instead. @end deffn Saving a buffer runs several hooks. It also performs format -conversion (@pxref{Format Conversion}). +conversion (@pxref{Format Conversion}). Note that these hooks, +described below, are only run by @code{save-buffer}, they are not run +by other primitives and functions that write buffer text to files, and +in particular auto-saving (@pxref{Auto-Saving}) doesn't run these +hooks. @defvar write-file-functions The value of this variable is a list of functions to be called before diff --git a/lisp/files.el b/lisp/files.el index a6fe381a50..83ef4e271c 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -440,7 +440,8 @@ functions are called." (define-obsolete-variable-alias 'write-file-hooks 'write-file-functions "22.1") (defvar write-file-functions nil - "List of functions to be called before writing out a buffer to a file. + "List of functions to be called before saving a buffer to a file. +Only used by `save-buffer'. If one of them returns non-nil, the file is considered already written and the rest are not called. These hooks are considered to pertain to the visited file. @@ -465,6 +466,7 @@ updates before the buffer is saved, use `before-save-hook'.") 'write-contents-functions "22.1") (defvar write-contents-functions nil "List of functions to be called before writing out a buffer to a file. +Only used by `save-buffer'. If one of them returns non-nil, the file is considered already written and the rest are not called and neither are the functions in `write-file-functions'. @@ -4721,13 +4723,15 @@ the last real save, but optional arg FORCE non-nil means delete anyway." "Normal hook run just before auto-saving.") (defcustom before-save-hook nil - "Normal hook that is run before a buffer is saved to its file." + "Normal hook that is run before a buffer is saved to its file. +Only used by `save-buffer'." :options '(copyright-update time-stamp) :type 'hook :group 'files) (defcustom after-save-hook nil - "Normal hook that is run after a buffer is saved to its file." + "Normal hook that is run after a buffer is saved to its file. +Only used by `save-buffer'." :options '(executable-make-buffer-file-executable-if-script-p) :type 'hook :group 'files) commit 9fcab85efd10090786266610f4dbb83ee0da4b31 Author: Eli Zaretskii Date: Fri Jan 20 10:34:15 2017 +0200 Improve documentation of auto-save-visited-file-name * doc/emacs/files.texi (Auto Save Files): Mention subtle differences between saving the buffer and auto-saving with auto-save-visited-file-name set non-nil. (Bug#25478) diff --git a/doc/emacs/files.texi b/doc/emacs/files.texi index 47f92812be..efe4156c43 100644 --- a/doc/emacs/files.texi +++ b/doc/emacs/files.texi @@ -1038,8 +1038,10 @@ auto-save-mode}. If you want auto-saving to be done in the visited file rather than in a separate auto-save file, set the variable @code{auto-save-visited-file-name} to a non-@code{nil} value. In this -mode, there is no real difference between auto-saving and explicit -saving. +mode, auto-saving is very similar to explicit saving. However, +differences still exist, in particular for modes which modify the +buffer-saving process in non-trivial ways via various hooks +(@pxref{Saving Buffers,,, elisp, The Emacs Lisp Reference Manual}). @vindex delete-auto-save-files A buffer's auto-save file is deleted when you save the buffer in its commit 2236c53bbec60480f624b32171a77d79b488f2da Author: Tom Tromey Date: Tue Jan 17 21:58:09 2017 -0700 fix typo in mailcap-mime-extensions * lisp/net/mailcap.el (mailcap-mime-extensions): Use "text/x-patch", not "test/x-patch". (Bug#25472) diff --git a/lisp/gnus/mailcap.el b/lisp/gnus/mailcap.el index fc259d4309..0a339e8c11 100644 --- a/lisp/gnus/mailcap.el +++ b/lisp/gnus/mailcap.el @@ -818,7 +818,7 @@ If NO-DECODE is non-nil, don't decode STRING." (".css" . "text/css") (".dvi" . "application/x-dvi") (".diff" . "text/x-patch") - (".dpatch". "test/x-patch") + (".dpatch". "text/x-patch") (".el" . "application/emacs-lisp") (".eps" . "application/postscript") (".etx" . "text/x-setext") commit 85a3e4e486f5a717e1dd2ee902dedf5e59dccf9e Author: Lele Gaifax Date: Wed Jan 18 18:15:28 2017 +0200 Fix typos in flymake.el * lisp/progmodes/flymake.el (flymake-check-patch-master-file-buffer): Spelling fixes in the doc string. Copyright-paperwork-exempt: yes diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el index 11605bcf3a..03eb776a8d 100644 --- a/lisp/progmodes/flymake.el +++ b/lisp/progmodes/flymake.el @@ -361,7 +361,7 @@ instead of SOURCE-FILE-NAME. For example, foo.cpp is a master file if it includes foo.h. -Whether a buffer for MATER-FILE-NAME exists, use it as a source +When a buffer for MASTER-FILE-NAME exists, use it as a source instead of reading master file from disk." (let* ((source-file-nondir (file-name-nondirectory source-file-name)) (source-file-extension (file-name-extension source-file-nondir)) commit a1ef10e6a0a216e80551dd179fc511ea8fdc4c88 Author: Glenn Morris Date: Tue Jan 17 16:10:03 2017 -0500 More NEWS checking for admin.el's set-version * admin/admin.el (set-version): Warn if temporary NEWS markup still present in release candidates. diff --git a/admin/admin.el b/admin/admin.el index 4892045a69..7b9f01f64a 100644 --- a/admin/admin.el +++ b/admin/admin.el @@ -143,6 +143,13 @@ Root must be the root of an Emacs source tree." (not (equal (cadr oldversion) (cadr newversion))))) (newsfile (expand-file-name "etc/NEWS" root)) (oldnewsfile (expand-file-name (format "etc/NEWS.%s" oldmajor) root))) + (unless (> (length newversion) 2) ; pretest or release candidate? + (with-temp-buffer + (insert-file-contents newsfile) + (if (re-search-forward "^\\(+++ *\\|--- *\\)$" nil t) + (display-warning 'admin + "NEWS file still contains temporary markup. +Documentation changes might not have been completed!")))) (when (and majorbump (not (file-exists-p oldnewsfile))) (rename-file newsfile oldnewsfile) commit 3993dc500d9b56723ced7530ead8d11c0ae42319 Author: Michael Albinus Date: Tue Jan 17 17:23:46 2017 +0100 Fix auto-save-file-name problem in Tramp on MS Windows. Do not merge * lisp/net/tramp.el (tramp-handle-make-auto-save-file-name): Fix a problem when running on MS Windows. diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index b4242c0e6a..f350f2a40d 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el @@ -4102,7 +4102,11 @@ this file, if that variable is non-nil." (file-exists-p tramp-auto-save-directory)) (make-directory tramp-auto-save-directory t)) - (let ((system-type 'not-windows) + (let ((system-type + (if (and (stringp tramp-auto-save-directory) + (file-remote-p tramp-auto-save-directory)) + 'not-windows + system-type)) (auto-save-file-name-transforms (if (and (null tramp-auto-save-directory) (boundp 'auto-save-file-name-transforms)) commit 5569e644448eb84dce1ca9359ae33901347acac8 Author: Eli Zaretskii Date: Mon Jan 16 19:12:40 2017 +0200 ; Spelling fixes * src/buffer.c (delete_all_overlays, Fkill_buffer): Fix typos in comments. diff --git a/src/buffer.c b/src/buffer.c index d54d545cc3..c1c53dd220 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -874,7 +874,7 @@ drop_overlay (struct buffer *b, struct Lisp_Overlay *ov) } -/* Delete all overlays of B and reset it's overlay lists. */ +/* Delete all overlays of B and reset its overlay lists. */ void delete_all_overlays (struct buffer *b) @@ -1693,7 +1693,7 @@ cleaning up all windows currently displaying the buffer to be killed. */) if (EQ (buffer, XWINDOW (minibuf_window)->contents)) return Qnil; - /* When we kill an ordinary buffer which shares it's buffer text + /* When we kill an ordinary buffer which shares its buffer text with indirect buffer(s), we must kill indirect buffer(s) too. We do it at this stage so nothing terrible happens if they ask questions or their hooks get errors. */ commit 24a5f57ac3206c05e3a3c19837f96327f008c071 Author: Ian Dunn Date: Sun Jan 15 19:02:47 2017 -0500 * lisp/net/eww.el (eww-tag-meta): Handle single quoted URLs (Bug#25445). Copyright-paperwork-exempt: yes diff --git a/lisp/net/eww.el b/lisp/net/eww.el index fe9f40a58a..29390eeebb 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el @@ -477,6 +477,7 @@ Currently this means either text/html or application/xhtml+xml." (< eww-redirect-level 5)) (when-let (refresh (dom-attr dom 'content)) (when (or (string-match "^\\([0-9]+\\) *;.*url=\"\\([^\"]+\\)\"" refresh) + (string-match "^\\([0-9]+\\) *;.*url='\\([^']+\\)'" refresh) (string-match "^\\([0-9]+\\) *;.*url=\\([^ ]+\\)" refresh)) (let ((timeout (match-string 1 refresh)) (url (match-string 2 refresh)) commit 9b89896b7ad0d3d401e06b128d3b41634e7c0597 Author: Stefan Monnier Date: Sat Jan 14 11:50:11 2017 -0500 * lisp/progmodes/sql.el (sql-product-alist): Doc tweak `:sqli-comint-func' does not have to be a symbol. diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el index 3bbe42bd9d..78ae37a5a6 100644 --- a/lisp/progmodes/sql.el +++ b/lisp/progmodes/sql.el @@ -551,7 +551,7 @@ may be any one of the following: database and server) needed to connect to the database. - :sqli-comint-func name of a function of two arguments, PRODUCT + :sqli-comint-func function of two arguments, PRODUCT and OPTIONS, that will open a comint buffer and connect to the database. PRODUCT is the first argument to be passed to `sql-comint', commit 69b50f56ad1c684cd4690eef97ad44979b6ad3ca Author: Eli Zaretskii Date: Sat Jan 14 10:40:01 2017 +0200 * lisp/progmodes/sql.el (sql-product-alist): Doc fix. (Bug#25440) diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el index cea159ef3b..3bbe42bd9d 100644 --- a/lisp/progmodes/sql.el +++ b/lisp/progmodes/sql.el @@ -551,14 +551,17 @@ may be any one of the following: database and server) needed to connect to the database. - :sqli-comint-func name of a function which accepts no - parameters that will use the values of - `sql-user', `sql-password', - `sql-database', `sql-server' and - `sql-port' to open a comint buffer and - connect to the database. Do product + :sqli-comint-func name of a function of two arguments, PRODUCT + and OPTIONS, that will open a comint buffer + and connect to the database. PRODUCT is the + first argument to be passed to `sql-comint', + and OPTIONS should be included in its second + argument. The function should use the values + of `sql-user', `sql-password', `sql-database', + `sql-server' and `sql-port' to . Do product specific configuration of comint in this - function. + function. See `sql-comint-oracle' for an + example of such a function. :list-all Command string or function which produces a listing of all objects in the database. commit 42eae54207beb340ef2732c3d66e2e120a1c29f4 Author: Eli Zaretskii Date: Fri Jan 13 11:12:27 2017 +0200 Improve documentation of dabbrevs * doc/emacs/abbrevs.texi (Dynamic Abbrevs): Add a cross reference to "Dabbrev Customization". (Dabbrev Customization): More details about the default value of dabbrev-abbrev-char-regexp and use cases when it might not be good enough. (Bug#25432) diff --git a/doc/emacs/abbrevs.texi b/doc/emacs/abbrevs.texi index 8cb7a4838e..117d07e281 100644 --- a/doc/emacs/abbrevs.texi +++ b/doc/emacs/abbrevs.texi @@ -388,6 +388,9 @@ words that follow the expansion in its original context. Simply type @kbd{@key{SPC} M-/} for each additional word you want to copy. The spacing and punctuation between words is copied along with the words. + You can control the way @kbd{M-/} determines the word to expand and +how to expand it, see @ref{Dabbrev Customization}. + The command @kbd{C-M-/} (@code{dabbrev-completion}) performs completion of a dynamic abbrev. Instead of trying the possible expansions one by one, it finds all of them, then inserts the text @@ -437,12 +440,17 @@ copies the expansion verbatim including its case pattern. @vindex dabbrev-abbrev-char-regexp The variable @code{dabbrev-abbrev-char-regexp}, if non-@code{nil}, -controls which characters are considered part of a word, for dynamic expansion -purposes. The regular expression must match just one character, never -two or more. The same regular expression also determines which -characters are part of an expansion. The (default) value @code{nil} -has a special meaning: dynamic abbrevs are made of word characters, -but expansions are made of word and symbol characters. +controls which characters are considered part of a word, for dynamic +expansion purposes. The regular expression must match just one +character, never two or more. The same regular expression also +determines which characters are part of an expansion. The (default) +value @code{nil} has a special meaning: dynamic abbrevs (i.e.@: the +word at point) are made of word characters, but their expansions are +looked for as sequences of word and symbol characters. This is +generally appropriate for expanding symbols in a program source and +also for human-readable text in many languages, but may not be what +you want in a text buffer that includes unusual punctuation characters; +in that case, the value @code{"\\sw"} might produce better results. @vindex dabbrev-abbrev-skip-leading-regexp In shell scripts and makefiles, a variable name is sometimes prefixed commit b0ade0df21d4cde8537c29f81eb10bdcf1cdfbfc Author: Noam Postavsky Date: Sat Jan 7 09:26:08 2017 -0500 Clarify that easy-menu-add is a nop (Bug#25382) * lisp/emacs-lisp/easymenu.el (easy-menu-add): Make it into an alias of `ignore', like `easy-menu-remove'. diff --git a/lisp/emacs-lisp/easymenu.el b/lisp/emacs-lisp/easymenu.el index 603bbcd942..4fc9a783a5 100644 --- a/lisp/emacs-lisp/easymenu.el +++ b/lisp/emacs-lisp/easymenu.el @@ -489,7 +489,7 @@ To implement dynamic menus, either call this from ;; XEmacs needs the following two functions to add and remove menus. ;; In Emacs this is done automatically when switching keymaps, so -;; here easy-menu-remove is a noop. +;; here easy-menu-remove and easy-menu-add are a noops. (defalias 'easy-menu-remove 'ignore "Remove MENU from the current menu bar. Contrary to XEmacs, this is a nop on Emacs since menus are automatically @@ -497,15 +497,16 @@ Contrary to XEmacs, this is a nop on Emacs since menus are automatically \(fn MENU)") -(defun easy-menu-add (_menu &optional _map) +(defalias 'easy-menu-add #'ignore "Add the menu to the menubar. -On Emacs, menus are already automatically activated when the -corresponding keymap is activated. On XEmacs this is needed to -actually add the menu to the current menubar. +On Emacs this is a nop, because menus are already automatically +activated when the corresponding keymap is activated. On XEmacs +this is needed to actually add the menu to the current menubar. You should call this once the menu and keybindings are set up -completely and menu filter functions can be expected to work." - ) +completely and menu filter functions can be expected to work. + +\(fn MENU &optional MAP)") (defun add-submenu (menu-path submenu &optional before in-menu) "Add submenu SUBMENU in the menu at MENU-PATH. commit 3c69f2c5bb1ec7775b0ac1b18550affbc249586a Author: Glenn Morris Date: Wed Jan 11 18:23:17 2017 -0500 * lisp/textmodes/rst.el (rst-package-emacs-version-alist): Fix entry. diff --git a/lisp/textmodes/rst.el b/lisp/textmodes/rst.el index 0755d5fc81..7fbacbe358 100644 --- a/lisp/textmodes/rst.el +++ b/lisp/textmodes/rst.el @@ -267,7 +267,7 @@ in parentheses follows the development revision and the time stamp.") ("1.3.0" . "24.3") ("1.3.1" . "24.3") ("1.4.0" . "24.3") - ("1.4.1" . "24.5") + ("1.4.1" . "25.1") )) (unless (assoc rst-official-version rst-package-emacs-version-alist) commit fdef18c3e3b258e77124c5648c3d62e3c6981e17 Author: Eli Zaretskii Date: Wed Jan 11 20:52:26 2017 +0200 Revert "Add DNS keywords and remove duplications" This reverts commit 1cb9aa5b14867983d0013a61709b4d0af18364ff. diff --git a/lisp/textmodes/dns-mode.el b/lisp/textmodes/dns-mode.el index 02cb2a2876..8d3e55a9bd 100644 --- a/lisp/textmodes/dns-mode.el +++ b/lisp/textmodes/dns-mode.el @@ -32,9 +32,6 @@ ;; RFC 1034, "DOMAIN NAMES - CONCEPTS AND FACILITIES", P. Mockapetris. ;; RFC 1035, "DOMAIN NAMES - IMPLEMENTATION AND SPECIFICATION", P. Mockapetris. -;; RFC 5155, "DNS Security (DNSSEC) Hashed Authenticated Denial of Existence" -;; RFC 6698, "The DNS-Based Authentication of Named Entities (DANE) -;; Transport Layer Security (TLS) Protocol: TLSA" ;;; Release history: @@ -53,13 +50,13 @@ (defconst dns-mode-types '("A" "NS" "MD" "MF" "CNAME" "SOA" "MB" "MG" "MR" "NULL" "WKS" "PTR" "HINFO" "MINFO" "MX" "TXT" - "RP" "AFSDB" "X25" "ISDN" "RT" "NSAP" + "RP" "AFSDB" "X25" "ISDN" "RT" "NSAP" "NSAP" "SIG" "KEY" "PX" "GPOS" "AAAA" "LOC" "NXT" "EID" "NIMLOC" "SRV" "ATMA" "NAPTR" "KX" "CERT" "A6" "DNAME" "SINK" "OPT" "APL" "DS" "SSHFP" "RRSIG" "NSEC" "DNSKEY" "UINFO" "UID" "GID" "UNSPEC" "TKEY" "TSIG" "IXFR" "AXFR" "MAILB" - "MAILA" "TLSA" "NSEC3") + "MAILA") "List of strings with known DNS types.") ;; Font lock. commit 1cb9aa5b14867983d0013a61709b4d0af18364ff Author: Alexander Kuleshov Date: Fri Dec 23 16:53:41 2016 +0600 Add DNS keywords and remove duplications * lisp/textmodes/dns-mode.el (dns-mode-types): Add two TLSA and NSEC" DNS related keywords and remove duplication of "NSAP". diff --git a/lisp/textmodes/dns-mode.el b/lisp/textmodes/dns-mode.el index 8d3e55a9bd..02cb2a2876 100644 --- a/lisp/textmodes/dns-mode.el +++ b/lisp/textmodes/dns-mode.el @@ -32,6 +32,9 @@ ;; RFC 1034, "DOMAIN NAMES - CONCEPTS AND FACILITIES", P. Mockapetris. ;; RFC 1035, "DOMAIN NAMES - IMPLEMENTATION AND SPECIFICATION", P. Mockapetris. +;; RFC 5155, "DNS Security (DNSSEC) Hashed Authenticated Denial of Existence" +;; RFC 6698, "The DNS-Based Authentication of Named Entities (DANE) +;; Transport Layer Security (TLS) Protocol: TLSA" ;;; Release history: @@ -50,13 +53,13 @@ (defconst dns-mode-types '("A" "NS" "MD" "MF" "CNAME" "SOA" "MB" "MG" "MR" "NULL" "WKS" "PTR" "HINFO" "MINFO" "MX" "TXT" - "RP" "AFSDB" "X25" "ISDN" "RT" "NSAP" "NSAP" + "RP" "AFSDB" "X25" "ISDN" "RT" "NSAP" "SIG" "KEY" "PX" "GPOS" "AAAA" "LOC" "NXT" "EID" "NIMLOC" "SRV" "ATMA" "NAPTR" "KX" "CERT" "A6" "DNAME" "SINK" "OPT" "APL" "DS" "SSHFP" "RRSIG" "NSEC" "DNSKEY" "UINFO" "UID" "GID" "UNSPEC" "TKEY" "TSIG" "IXFR" "AXFR" "MAILB" - "MAILA") + "MAILA" "TLSA" "NSEC3") "List of strings with known DNS types.") ;; Font lock. commit 0e35405a92be502ab3851890fc4eb660842fd3a9 Author: Eli Zaretskii Date: Tue Jan 10 20:02:37 2017 +0200 Improve documentation of coding-systems * doc/lispref/nonascii.texi (Coding System Basics): Mention 'prefer-utf-8'. Index it and 'undecided'. (Encoding and I/O): Fix a typo. (User-Chosen Coding Systems): Improve the documentation of ACCEPT-DEFAULT-P argument to select-safe-coding-system. Document select-safe-coding-system-function. (Specifying Coding Systems): Document coding-system-require-warning. diff --git a/doc/lispref/nonascii.texi b/doc/lispref/nonascii.texi index ab8f2fc94f..e3cb5d0d36 100644 --- a/doc/lispref/nonascii.texi +++ b/doc/lispref/nonascii.texi @@ -1002,10 +1002,14 @@ alternative encodings for the same characters; for example, there are three coding systems for the Cyrillic (Russian) alphabet: ISO, Alternativnyj, and KOI8. +@vindex undecided@r{ coding system} +@vindex prefer-utf-8@r{ coding system} Every coding system specifies a particular set of character code conversions, but the coding system @code{undecided} is special: it leaves the choice unspecified, to be chosen heuristically for each -file, based on the file's data. +file, based on the file's data. The coding system @code{prefer-utf-8} +is like @code{undecided}, but it prefers to choose @code{utf-8} when +possible. In general, a coding system doesn't guarantee roundtrip identity: decoding a byte sequence using coding system, then encoding the @@ -1109,7 +1113,7 @@ encode the buffer contents. (@pxref{Specifying Coding Systems}), or implicitly using a default mechanism (@pxref{Default Coding Systems}). But these methods may not completely specify what to do. For example, they may choose a coding -system such as @code{undefined} which leaves the character code +system such as @code{undecided} which leaves the character code conversion to be determined from the data. In these cases, the I/O operation finishes the job of choosing a coding system. Very often you will want to find out afterwards which coding system was chosen. @@ -1411,19 +1415,21 @@ Otherwise, it asks the user to choose from a list of coding systems which can encode all the text, and returns the user's choice. @var{default-coding-system} can also be a list whose first element is -t and whose other elements are coding systems. Then, if no coding +@code{t} and whose other elements are coding systems. Then, if no coding system in the list can handle the text, @code{select-safe-coding-system} queries the user immediately, without trying any of the three -alternatives described above. - -The optional argument @var{accept-default-p}, if non-@code{nil}, -should be a function to determine whether a coding system selected -without user interaction is acceptable. @code{select-safe-coding-system} -calls this function with one argument, the base coding system of the -selected coding system. If @var{accept-default-p} returns @code{nil}, -@code{select-safe-coding-system} rejects the silently selected coding -system, and asks the user to select a coding system from a list of -possible candidates. +alternatives described above. This is handy for checking only the +coding systems in the list. + +The optional argument @var{accept-default-p} determines whether a +coding system selected without user interaction is acceptable. If +it's omitted or @code{nil}, such a silent selection is always +acceptable. If it is non-@code{nil}, it should be a function; +@code{select-safe-coding-system} calls this function with one +argument, the base coding system of the selected coding system. If +the function returns @code{nil}, @code{select-safe-coding-system} +rejects the silently selected coding system, and asks the user to +select a coding system from a list of possible candidates. @vindex select-safe-coding-system-accept-default-p If the variable @code{select-safe-coding-system-accept-default-p} is @@ -1444,6 +1450,18 @@ similar functions). If it detects an apparent inconsistency, coding system. @end defun +@defvar select-safe-coding-system-function +This variable names the function to be called to request the user to +select a proper coding system for encoding text when the default +coding system for an output operation cannot safely encode that text. +The default value of this variable is @code{select-safe-coding-system}. +Emacs primitives that write text to files, such as +@code{write-region}, or send text to other processes, such as +@code{process-send-region}, normally call the value of this variable, +unless @code{coding-system-for-write} is bound to a non-@code{nil} +value (@pxref{Specifying Coding Systems}). +@end defvar + Here are two functions you can use to let the user specify a coding system, with completion. @xref{Completion}. @@ -1704,7 +1722,9 @@ including @code{file-coding-system-alist}, @defvar coding-system-for-write This works much like @code{coding-system-for-read}, except that it applies to output rather than input. It affects writing to files, -as well as sending output to subprocesses and net connections. +as well as sending output to subprocesses and net connections. It +also applies to encoding command-line arguments with which Emacs +invokes subprocesses. When a single operation does both input and output, as do @code{call-process-region} and @code{start-process}, both @@ -1712,6 +1732,23 @@ When a single operation does both input and output, as do affect it. @end defvar +@defvar coding-system-require-warning +Binding @code{coding-system-for-write} to a non-@code{nil} value +prevents output primitives from calling the function specified by +@code{select-safe-coding-system-function} (@pxref{User-Chosen Coding +Systems}). This is because @kbd{C-x RET c} +(@code{universal-coding-system-argument}) works by binding +@code{coding-system-for-write}, and Emacs should obey user selection. +If a Lisp program binds @code{coding-system-for-write} to a value that +might not be safe for encoding the text to be written, it can also bind +@code{coding-system-require-warning} to a non-@code{nil} value, which +will force the output primitives to check the encoding by calling the +value of @code{select-safe-coding-system-function} even though +@code{coding-system-for-write} is non-@code{nil}. Alternatively, call +@code{select-safe-coding-system} explicitly before using the specified +encoding. +@end defvar + @defopt inhibit-eol-conversion When this variable is non-@code{nil}, no end-of-line conversion is done, no matter which coding system is specified. This applies to all the commit c2fd04c8d504b601471fe7c13011bc39abc6b921 Author: Eli Zaretskii Date: Mon Jan 9 18:00:33 2017 +0200 Improve definition of 'variable-pitch' face on MS-Windows * lisp/faces.el (variable-pitch): Don't specify too many attributes of the font, otherwise faces that request different weight or slant or size will not get them. diff --git a/lisp/faces.el b/lisp/faces.el index 2d1c4ce472..d779543469 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -2311,10 +2311,13 @@ If you set `term-file-prefix' to nil, this function does nothing." (defface variable-pitch '((((type w32)) - ;; This is a kludgy workaround for an issue discussed in + ;; This is a workaround for an issue discussed in ;; http://lists.gnu.org/archive/html/emacs-devel/2016-04/msg00746.html. - :font "-outline-Arial-normal-normal-normal-sans-*-*-*-*-p-*-iso8859-1") - (t :family "Sans Serif")) + ;; We need (a) the splash screen not to pick up bold-italics variant of + ;; the font, and (b) still be able to request bold/italic/larger size + ;; variants in the likes of EWW. + :family "Arial" :foundry "outline") + (t :family "Sans Serif")) "The basic variable-pitch face." :group 'basic-faces) commit 16fb50db11a186ab9ab4d847c5b5136ba708ee71 Author: Eli Zaretskii Date: Mon Jan 9 17:28:17 2017 +0200 Fix an error message in python.el * lisp/progmodes/python.el (python-shell-get-process-or-error): Don't repeat the same key binding twice. (Bug#25405) diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index f9956e1599..306402d8e3 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -2826,8 +2826,7 @@ of `error' with a user-friendly message." (or (python-shell-get-process) (if interactivep (user-error - "Start a Python process first with `%s' or `%s'." - (substitute-command-keys "\\[run-python]") + "Start a Python process first with `M-x run-python' or `%s'." ;; Get the binding. (key-description (where-is-internal commit a2a20739331a216826b9c76d49b0aa2abd68deee Author: Noam Postavsky Date: Wed Jan 4 20:35:13 2017 -0500 Clarify major mode switching * doc/emacs/modes.texi (Major Modes): * doc/lispref/modes.texi (Modes, Major Modes): Explictly say that each buffer has exactly one major mode and can't be "turned off", only switched away from (Bug#25357). diff --git a/doc/emacs/modes.texi b/doc/emacs/modes.texi index 0acb82dc91..be89340301 100644 --- a/doc/emacs/modes.texi +++ b/doc/emacs/modes.texi @@ -66,7 +66,10 @@ process (@pxref{Interactive Shell}). first visit a file or create a buffer (@pxref{Choosing Modes}). You can explicitly select a new major mode by using an @kbd{M-x} command. Take the name of the mode and add @code{-mode} to get the name of the -command to select that mode (e.g., @kbd{M-x lisp-mode} enters Lisp mode). +command to select that mode (e.g., @kbd{M-x lisp-mode} enters Lisp +mode). Since every buffer has exactly one major mode, there is no way +to ``turn off'' a major mode; instead you must switch to a different +one. @vindex major-mode The value of the buffer-local variable @code{major-mode} is a symbol diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi index b24ab3603d..0015a9f318 100644 --- a/doc/lispref/modes.texi +++ b/doc/lispref/modes.texi @@ -7,11 +7,12 @@ @chapter Major and Minor Modes @cindex mode - A @dfn{mode} is a set of definitions that customize Emacs and can be -turned on and off while you edit. There are two varieties of modes: -@dfn{major modes}, which are mutually exclusive and used for editing -particular kinds of text, and @dfn{minor modes}, which provide features -that users can enable individually. + A @dfn{mode} is a set of definitions that customize Emacs behavior +in useful ways. There are two varieties of modes: @dfn{minor modes}, +which provide features that users can turn on and off while editing; +and @dfn{major modes}, which are used for editing or interacting with +a particular kind of text. Each buffer has exactly one @dfn{major +mode} at a time. This chapter describes how to write both major and minor modes, how to indicate them in the mode line, and how they run hooks supplied by the @@ -196,12 +197,15 @@ from the buffer-local hook list instead of from the global hook list. @cindex major mode @cindex major mode command - Major modes specialize Emacs for editing particular kinds of text. -Each buffer has one major mode at a time. Every major mode is -associated with a @dfn{major mode command}, whose name should end in -@samp{-mode}. This command takes care of switching to that mode in the -current buffer, by setting various buffer-local variables such as a -local keymap. @xref{Major Mode Conventions}. + Major modes specialize Emacs for editing or interacting with +particular kinds of text. Each buffer has exactly one major mode at a +time. Every major mode is associated with a @dfn{major mode command}, +whose name should end in @samp{-mode}. This command takes care of +switching to that mode in the current buffer, by setting various +buffer-local variables such as a local keymap. @xref{Major Mode +Conventions}. Note that unlike minor modes there is no way to ``turn +off'' a major mode, instead the buffer must be switched to a different +one. The least specialized major mode is called @dfn{Fundamental mode}, which has no mode-specific definitions or variable settings. commit fc38671988d2d9c3ddb865bdc3a44e827fdb23ed Author: Noam Postavsky Date: Wed Jan 4 19:35:04 2017 -0500 Add helpful comment to compile-command's docstring * lisp/progmodes/compile.el (compile-command): Mention trailing space in docstring (Bug#25337). diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index e62e017aa0..0cb3f3bfdd 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -680,7 +680,9 @@ You might also use mode hooks to specify it in certain modes, like this: (concat \"make -k \" (if buffer-file-name (shell-quote-argument - (file-name-sans-extension buffer-file-name))))))))" + (file-name-sans-extension buffer-file-name)))))))) + +It's often useful to leave a space at the end of the value." :type 'string :group 'compilation) ;;;###autoload(put 'compile-command 'safe-local-variable (lambda (a) (and (stringp a) (or (not (boundp 'compilation-read-command)) compilation-read-command)))) commit ee65d858c7ace0656ea40808a8485e7faae884d7 Author: Eli Zaretskii Date: Fri Jan 6 15:23:17 2017 +0200 Fix ':version' of 'select-enable-primary' * lisp/select.el (select-enable-primary): Fix a typo in ':version'. (Bug#25375) diff --git a/lisp/select.el b/lisp/select.el index a4a79255a9..4849d7d515 100644 --- a/lisp/select.el +++ b/lisp/select.el @@ -103,7 +103,7 @@ The existence of a primary selection depends on the underlying GUI you use. E.g. it doesn't exist under MS-Windows." :type 'boolean :group 'killing - :version "24.1") + :version "25.1") (define-obsolete-variable-alias 'x-select-enable-primary 'select-enable-primary "25.1") commit 5a1908fbdd80f20b1e4abb980d140ffaba91b916 Author: Glenn Morris Date: Wed Jan 4 14:21:38 2017 -0500 ; Auto-commit of loaddefs files. diff --git a/lisp/dired.el b/lisp/dired.el index 13d2a5c894..39dc29eaf5 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -3919,7 +3919,7 @@ Ask means pop up a menu for the user to select one of copy, move or link." ;;; Start of automatically extracted autoloads. -;;;### (autoloads nil "dired-aux" "dired-aux.el" "daa0a32a5bdfcf4de80c31cf7833b26d") +;;;### (autoloads nil "dired-aux" "dired-aux.el" "e9e4ada4d5bc5d9e319610983ace2260") ;;; Generated autoloads from dired-aux.el (autoload 'dired-diff "dired-aux" "\ @@ -4454,7 +4454,7 @@ instead. ;;;*** -;;;### (autoloads nil "dired-x" "dired-x.el" "d9ad5b70efdb3d840b8248d4043563b5") +;;;### (autoloads nil "dired-x" "dired-x.el" "167f862d52f8581579680caf3ef662ea") ;;; Generated autoloads from dired-x.el (autoload 'dired-jump "dired-x" "\ diff --git a/lisp/emacs-lisp/eieio-core.el b/lisp/emacs-lisp/eieio-core.el index 7471b6f73b..111fbca3aa 100644 --- a/lisp/emacs-lisp/eieio-core.el +++ b/lisp/emacs-lisp/eieio-core.el @@ -1101,7 +1101,7 @@ method invocation orders of the involved classes." (list eieio--generic-subclass-generalizer)) -;;;### (autoloads nil "eieio-compat" "eieio-compat.el" "dba4205b1a0d7133f1311d975b4d0ebe") +;;;### (autoloads nil "eieio-compat" "eieio-compat.el" "e91175056972ff549f07b83740ad04eb") ;;; Generated autoloads from eieio-compat.el (autoload 'eieio--defalias "eieio-compat" "\ diff --git a/lisp/emacs-lisp/eieio.el b/lisp/emacs-lisp/eieio.el index 0903e03b81..1a1ad88f97 100644 --- a/lisp/emacs-lisp/eieio.el +++ b/lisp/emacs-lisp/eieio.el @@ -973,7 +973,7 @@ variable PRINT-FUNCTION. Optional argument NOESCAPE is passed to ;;; Start of automatically extracted autoloads. -;;;### (autoloads nil "eieio-custom" "eieio-custom.el" "e8d466f8eee341f3da967c2931b28043") +;;;### (autoloads nil "eieio-custom" "eieio-custom.el" "5a754881773067a24cfcfc6dcff91995") ;;; Generated autoloads from eieio-custom.el (autoload 'customize-object "eieio-custom" "\ @@ -984,7 +984,7 @@ Optional argument GROUP is the sub-group of slots to display. ;;;*** -;;;### (autoloads nil "eieio-opt" "eieio-opt.el" "0b9c6be48520da2085812f6e7fed9792") +;;;### (autoloads nil "eieio-opt" "eieio-opt.el" "04b22dbeb00abbaba0b1ae17b1935a36") ;;; Generated autoloads from eieio-opt.el (autoload 'eieio-browse "eieio-opt" "\ diff --git a/lisp/htmlfontify.el b/lisp/htmlfontify.el index 5c85da30dd..bab3dc7631 100644 --- a/lisp/htmlfontify.el +++ b/lisp/htmlfontify.el @@ -2418,7 +2418,7 @@ You may also want to set `hfy-page-header' and `hfy-page-footer'." (load file 'NOERROR nil nil) )) -;;;### (autoloads nil "hfy-cmap" "hfy-cmap.el" "e644ddae915ddb98c9b2f16ffa5a74b2") +;;;### (autoloads nil "hfy-cmap" "hfy-cmap.el" "0a78ea95dcdd0c5e9632dfca6f86abdb") ;;; Generated autoloads from hfy-cmap.el (autoload 'htmlfontify-load-rgb-file "hfy-cmap" "\ diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el index 05b881b37d..e0282f9c93 100644 --- a/lisp/ibuffer.el +++ b/lisp/ibuffer.el @@ -2614,7 +2614,7 @@ will be inserted before the group at point." ;;; Start of automatically extracted autoloads. -;;;### (autoloads nil "ibuf-ext" "ibuf-ext.el" "9521139d5f2ba7c870e3101fd73bb3ce") +;;;### (autoloads nil "ibuf-ext" "ibuf-ext.el" "a615eb339f6c496844c1f46bf414df21") ;;; Generated autoloads from ibuf-ext.el (autoload 'ibuffer-auto-mode "ibuf-ext" "\ diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index a771fe0c4c..c42e966b14 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -4733,7 +4733,7 @@ Argument MIME is non-nil if this is a mime message." ;;; Start of automatically extracted autoloads. -;;;### (autoloads nil "rmailedit" "rmailedit.el" "03eb8c36b3c57d58eecedb9eeffa623e") +;;;### (autoloads nil "rmailedit" "rmailedit.el" "280dc76b727e2c11f2e684c7e83866a7") ;;; Generated autoloads from rmailedit.el (autoload 'rmail-edit-current-message "rmailedit" "\ @@ -4743,7 +4743,7 @@ Edit the contents of this message. ;;;*** -;;;### (autoloads nil "rmailkwd" "rmailkwd.el" "4e1b251929961e2b9d3b126301d697d0") +;;;### (autoloads nil "rmailkwd" "rmailkwd.el" "84ad7fa4353f0bdb27dfc17fc51fbfb1") ;;; Generated autoloads from rmailkwd.el (autoload 'rmail-add-label "rmailkwd" "\ @@ -4786,7 +4786,7 @@ With prefix argument N moves forward N messages with these labels. ;;;*** -;;;### (autoloads nil "rmailmm" "rmailmm.el" "7ab6ab96dfdeeec6bc8f4620295b7119") +;;;### (autoloads nil "rmailmm" "rmailmm.el" "1acb5ffd91105979cabded62bef9e9be") ;;; Generated autoloads from rmailmm.el (autoload 'rmail-mime "rmailmm" "\ @@ -4812,7 +4812,7 @@ The arguments ARG and STATE have no effect in this case. ;;;*** -;;;### (autoloads nil "rmailmsc" "rmailmsc.el" "471c370ff9f183806c8d749961ec9d79") +;;;### (autoloads nil "rmailmsc" "rmailmsc.el" "2d388653d3d4a618c5ea10fb21c75f94") ;;; Generated autoloads from rmailmsc.el (autoload 'set-rmail-inbox-list "rmailmsc" "\ @@ -4826,7 +4826,7 @@ This applies only to the current session. ;;;*** -;;;### (autoloads nil "rmailsort" "rmailsort.el" "2c8e39f7bae6fcc465a83ebccd46c8a4") +;;;### (autoloads nil "rmailsort" "rmailsort.el" "015a417a36d56dd9dec9e727388f556d") ;;; Generated autoloads from rmailsort.el (autoload 'rmail-sort-by-date "rmailsort" "\ @@ -4883,7 +4883,7 @@ If prefix argument REVERSE is non-nil, sorts in reverse order. ;;;*** -;;;### (autoloads nil "rmailsum" "rmailsum.el" "8205e67c8188aa5c01715e79e10667c1") +;;;### (autoloads nil "rmailsum" "rmailsum.el" "cca84314782ca3b70b167c44e6e4a37a") ;;; Generated autoloads from rmailsum.el (autoload 'rmail-summary "rmailsum" "\ @@ -4930,7 +4930,7 @@ SENDERS is a regular expression. ;;;*** -;;;### (autoloads nil "undigest" "undigest.el" "20561f083496eb113fa9e501902bfcc3") +;;;### (autoloads nil "undigest" "undigest.el" "0195b65e1ab2131717dcd62b6f2f2390") ;;; Generated autoloads from undigest.el (autoload 'undigestify-rmail-message "undigest" "\ diff --git a/lisp/ps-print.el b/lisp/ps-print.el index 1fde5e25eb..4c64437d1e 100644 --- a/lisp/ps-print.el +++ b/lisp/ps-print.el @@ -6593,7 +6593,7 @@ If FACE is not a valid face name, use default face." ;; To make this file smaller, some commands go in a separate file. ;; But autoload them here to make the separation invisible. -;;;### (autoloads nil "ps-mule" "ps-mule.el" "4a263b7a727e853f2e6672922c4e5755") +;;;### (autoloads nil "ps-mule" "ps-mule.el" "fa9f1f29406ac0f720bbf6bb9fbec420") ;;; Generated autoloads from ps-mule.el (defvar ps-multibyte-buffer nil "\ diff --git a/lisp/textmodes/reftex.el b/lisp/textmodes/reftex.el index 97e68286b2..5437881e2e 100644 --- a/lisp/textmodes/reftex.el +++ b/lisp/textmodes/reftex.el @@ -2397,7 +2397,7 @@ Your bug report will be posted to the AUCTeX bug reporting list. ;;; Start of automatically extracted autoloads. -;;;### (autoloads nil "reftex-auc" "reftex-auc.el" "32dc44348a7eaf247f63c81b3ead2ba4") +;;;### (autoloads nil "reftex-auc" "reftex-auc.el" "afa9d79b344b5c24497ae5dfa9c93c42") ;;; Generated autoloads from reftex-auc.el (autoload 'reftex-arg-label "reftex-auc" "\ @@ -2465,7 +2465,7 @@ of ENTRY-LIST is a list of cons cells (\"MACRONAME\" . LEVEL). See ;;;*** -;;;### (autoloads nil "reftex-cite" "reftex-cite.el" "7ee48dcf194ffd3cce3b7a2eb990e300") +;;;### (autoloads nil "reftex-cite" "reftex-cite.el" "3551569ca138ec69e6759cd26f8e529d") ;;; Generated autoloads from reftex-cite.el (autoload 'reftex-default-bibliography "reftex-cite" "\ @@ -2567,7 +2567,7 @@ created files in the variables `reftex-create-bibtex-header' or ;;;*** -;;;### (autoloads nil "reftex-dcr" "reftex-dcr.el" "8a1cb9d9c9190eefd4e22ab89d278e03") +;;;### (autoloads nil "reftex-dcr" "reftex-dcr.el" "ed2b6bd7485f1d0c36c76e40b5493bf0") ;;; Generated autoloads from reftex-dcr.el (autoload 'reftex-view-crossref "reftex-dcr" "\ @@ -2615,7 +2615,7 @@ Calling this function several times find successive citation locations. ;;;*** -;;;### (autoloads nil "reftex-global" "reftex-global.el" "a7a6a1872e4509da5b211972c2a588ad") +;;;### (autoloads nil "reftex-global" "reftex-global.el" "cc21fc5ee6275154dd57e24b0f5e643b") ;;; Generated autoloads from reftex-global.el (autoload 'reftex-create-tags-file "reftex-global" "\ @@ -2695,7 +2695,7 @@ With no argument, this command toggles ;;;*** -;;;### (autoloads nil "reftex-index" "reftex-index.el" "0e0eef2a199fb9de6f13b5eef601843f") +;;;### (autoloads nil "reftex-index" "reftex-index.el" "a3e1ce5ba2b769a6a3a8f3a60ac87397") ;;; Generated autoloads from reftex-index.el (autoload 'reftex-index-selection-or-word "reftex-index" "\ @@ -2793,7 +2793,7 @@ Here are all local bindings. ;;;*** -;;;### (autoloads nil "reftex-parse" "reftex-parse.el" "9015d91c86a135c850f92b828eca6b62") +;;;### (autoloads nil "reftex-parse" "reftex-parse.el" "2818075c906b05c307e008d92e913281") ;;; Generated autoloads from reftex-parse.el (autoload 'reftex-parse-one "reftex-parse" "\ @@ -2951,7 +2951,7 @@ When LEVEL is non-nil, increase section numbers on that level. ;;;*** -;;;### (autoloads nil "reftex-ref" "reftex-ref.el" "b2ce366d12050904d89cc38b96b8058a") +;;;### (autoloads nil "reftex-ref" "reftex-ref.el" "e451b141e229c3b5a02cb82ac45a8c94") ;;; Generated autoloads from reftex-ref.el (autoload 'reftex-label-location "reftex-ref" "\ @@ -3012,7 +3012,7 @@ Optional prefix argument OTHER-WINDOW goes to the label in another window. ;;;*** -;;;### (autoloads nil "reftex-sel" "reftex-sel.el" "b5e68431056b461d8a0562e9e685a5f1") +;;;### (autoloads nil "reftex-sel" "reftex-sel.el" "a01544ca4bc0f41a1f9b8e993b1773e6") ;;; Generated autoloads from reftex-sel.el (autoload 'reftex-select-label-mode "reftex-sel" "\ @@ -3065,7 +3065,7 @@ During a selection process, these are the local bindings. ;;;*** -;;;### (autoloads nil "reftex-toc" "reftex-toc.el" "af8f426ef3a0607322ca4c9742e177a8") +;;;### (autoloads nil "reftex-toc" "reftex-toc.el" "449ebfd38bdfaa2b8493c3e08a5a9ab3") ;;; Generated autoloads from reftex-toc.el (autoload 'reftex-toc "reftex-toc" "\