diff options
| author | Paul Eggert | 2011-10-31 13:03:15 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-10-31 13:03:15 -0700 |
| commit | 5b0d046d5b6a6743be6888d02352b878151e1d6c (patch) | |
| tree | b7ea751ee33c18d1b5f7fa9b94a5a9fe010c8468 | |
| parent | 1fa2385302f5b2e5bb17c8aad3cb4e320512ca46 (diff) | |
| parent | 07f3add98f088ff068aacb0429210900e95b90c3 (diff) | |
| download | emacs-5b0d046d5b6a6743be6888d02352b878151e1d6c.tar.gz emacs-5b0d046d5b6a6743be6888d02352b878151e1d6c.zip | |
Merge from trunk.
43 files changed, 1852 insertions, 1511 deletions
| @@ -1,3 +1,10 @@ | |||
| 1 | 2011-10-31 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * config.bat: Use config.in and Makefile.in from src/ and lib/, if | ||
| 4 | they exist there, else from autogen/. | ||
| 5 | |||
| 6 | * make-dist (msdos): Add depfiles.bat and inttypes.h. | ||
| 7 | |||
| 1 | 2011-10-25 Nali Toja <nalitoja@gmail.com> (tiny change) | 8 | 2011-10-25 Nali Toja <nalitoja@gmail.com> (tiny change) |
| 2 | 9 | ||
| 3 | * configure.in (HAVE_GNU_MAKE): Respect MAKE env-var. (Bug#9868) | 10 | * configure.in (HAVE_GNU_MAKE): Respect MAKE env-var. (Bug#9868) |
| @@ -2,7 +2,7 @@ Copyright (C) 2001-2011 Free Software Foundation, Inc. | |||
| 2 | See the end of the file for license conditions. | 2 | See the end of the file for license conditions. |
| 3 | 3 | ||
| 4 | 4 | ||
| 5 | This directory tree holds version 24.0.90 of GNU Emacs, the extensible, | 5 | This directory tree holds version 24.0.91 of GNU Emacs, the extensible, |
| 6 | customizable, self-documenting real-time display editor. | 6 | customizable, self-documenting real-time display editor. |
| 7 | 7 | ||
| 8 | The file INSTALL in this directory says how to build and install GNU | 8 | The file INSTALL in this directory says how to build and install GNU |
diff --git a/admin/ChangeLog b/admin/ChangeLog index 7c2f1a743b2..f91d53194ce 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-10-31 David Engster <deng@randomsample.de> | ||
| 2 | |||
| 3 | * grammars/bovine-grammar.el: Avoid using old-style backquotes. | ||
| 4 | |||
| 1 | 2011-10-28 Eli Zaretskii <eliz@gnu.org> | 5 | 2011-10-28 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * nt/README-ftp-server: Mention UNICOWS.DLL as prerequisite for | 7 | * nt/README-ftp-server: Mention UNICOWS.DLL as prerequisite for |
diff --git a/admin/grammars/bovine-grammar.el b/admin/grammars/bovine-grammar.el index 5a948608671..0e8756e1c5b 100644 --- a/admin/grammars/bovine-grammar.el +++ b/admin/grammars/bovine-grammar.el | |||
| @@ -109,6 +109,14 @@ NAME, ALIASCLASS, DEFINITION and ATTRIBUTES." | |||
| 109 | ;; Cache of macro definitions currently in use. | 109 | ;; Cache of macro definitions currently in use. |
| 110 | (defvar bovine--grammar-macros nil) | 110 | (defvar bovine--grammar-macros nil) |
| 111 | 111 | ||
| 112 | ;; Detect if we have an Emacs with newstyle unquotes allowed outside | ||
| 113 | ;; of backquote. | ||
| 114 | ;; This should probably be changed to a test to (= emacs-major-version 24) | ||
| 115 | ;; when it is released, but at the moment it might be possible that people | ||
| 116 | ;; are using an older snapshot. | ||
| 117 | (defvar bovine--grammar-newstyle-unquote | ||
| 118 | (equal '(, test) (read ",test"))) | ||
| 119 | |||
| 112 | (defun bovine-grammar-expand-form (form quotemode &optional inplace) | 120 | (defun bovine-grammar-expand-form (form quotemode &optional inplace) |
| 113 | "Expand FORM into a new one suitable to the bovine parser. | 121 | "Expand FORM into a new one suitable to the bovine parser. |
| 114 | FORM is a list in which we are substituting. | 122 | FORM is a list in which we are substituting. |
| @@ -142,6 +150,17 @@ expanded from elsewhere." | |||
| 142 | (while form | 150 | (while form |
| 143 | (setq first (car form) | 151 | (setq first (car form) |
| 144 | form (cdr form)) | 152 | form (cdr form)) |
| 153 | ;; Hack for dealing with new reading of unquotes outside of | ||
| 154 | ;; backquote (introduced in rev. 102591 in emacs-bzr). | ||
| 155 | (when (and bovine--grammar-newstyle-unquote | ||
| 156 | (listp first) | ||
| 157 | (or (equal (car first) '\,) | ||
| 158 | (equal (car first) '\,@))) | ||
| 159 | (if (listp (cadr first)) | ||
| 160 | (setq form (append (cdr first) form) | ||
| 161 | first (car first)) | ||
| 162 | (setq first (intern (concat (symbol-name (car first)) | ||
| 163 | (symbol-name (cadr first))))))) | ||
| 145 | (cond | 164 | (cond |
| 146 | ((eq first nil) | 165 | ((eq first nil) |
| 147 | (when (and (not inlist) (not inplace)) | 166 | (when (and (not inlist) (not inplace)) |
diff --git a/autogen/configure b/autogen/configure index 5e31231ac3d..88a63c8b4f7 100755 --- a/autogen/configure +++ b/autogen/configure | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | #! /bin/sh | 1 | #! /bin/sh |
| 2 | # Guess values for system-dependent variables and create Makefiles. | 2 | # Guess values for system-dependent variables and create Makefiles. |
| 3 | # Generated by GNU Autoconf 2.65 for emacs 24.0.90. | 3 | # Generated by GNU Autoconf 2.65 for emacs 24.0.91. |
| 4 | # | 4 | # |
| 5 | # | 5 | # |
| 6 | # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, | 6 | # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, |
| @@ -549,8 +549,8 @@ MAKEFLAGS= | |||
| 549 | # Identity of this package. | 549 | # Identity of this package. |
| 550 | PACKAGE_NAME='emacs' | 550 | PACKAGE_NAME='emacs' |
| 551 | PACKAGE_TARNAME='emacs' | 551 | PACKAGE_TARNAME='emacs' |
| 552 | PACKAGE_VERSION='24.0.90' | 552 | PACKAGE_VERSION='24.0.91' |
| 553 | PACKAGE_STRING='emacs 24.0.90' | 553 | PACKAGE_STRING='emacs 24.0.91' |
| 554 | PACKAGE_BUGREPORT='' | 554 | PACKAGE_BUGREPORT='' |
| 555 | PACKAGE_URL='' | 555 | PACKAGE_URL='' |
| 556 | 556 | ||
| @@ -1884,7 +1884,7 @@ if test "$ac_init_help" = "long"; then | |||
| 1884 | # Omit some internal or obsolete options to make the list less imposing. | 1884 | # Omit some internal or obsolete options to make the list less imposing. |
| 1885 | # This message is too long to be a string in the A/UX 3.1 sh. | 1885 | # This message is too long to be a string in the A/UX 3.1 sh. |
| 1886 | cat <<_ACEOF | 1886 | cat <<_ACEOF |
| 1887 | \`configure' configures emacs 24.0.90 to adapt to many kinds of systems. | 1887 | \`configure' configures emacs 24.0.91 to adapt to many kinds of systems. |
| 1888 | 1888 | ||
| 1889 | Usage: $0 [OPTION]... [VAR=VALUE]... | 1889 | Usage: $0 [OPTION]... [VAR=VALUE]... |
| 1890 | 1890 | ||
| @@ -1958,7 +1958,7 @@ fi | |||
| 1958 | 1958 | ||
| 1959 | if test -n "$ac_init_help"; then | 1959 | if test -n "$ac_init_help"; then |
| 1960 | case $ac_init_help in | 1960 | case $ac_init_help in |
| 1961 | short | recursive ) echo "Configuration of emacs 24.0.90:";; | 1961 | short | recursive ) echo "Configuration of emacs 24.0.91:";; |
| 1962 | esac | 1962 | esac |
| 1963 | cat <<\_ACEOF | 1963 | cat <<\_ACEOF |
| 1964 | 1964 | ||
| @@ -2121,7 +2121,7 @@ fi | |||
| 2121 | test -n "$ac_init_help" && exit $ac_status | 2121 | test -n "$ac_init_help" && exit $ac_status |
| 2122 | if $ac_init_version; then | 2122 | if $ac_init_version; then |
| 2123 | cat <<\_ACEOF | 2123 | cat <<\_ACEOF |
| 2124 | emacs configure 24.0.90 | 2124 | emacs configure 24.0.91 |
| 2125 | generated by GNU Autoconf 2.65 | 2125 | generated by GNU Autoconf 2.65 |
| 2126 | 2126 | ||
| 2127 | Copyright (C) 2009 Free Software Foundation, Inc. | 2127 | Copyright (C) 2009 Free Software Foundation, Inc. |
| @@ -2843,7 +2843,7 @@ cat >config.log <<_ACEOF | |||
| 2843 | This file contains any messages produced by compilers while | 2843 | This file contains any messages produced by compilers while |
| 2844 | running configure, to aid debugging if configure makes a mistake. | 2844 | running configure, to aid debugging if configure makes a mistake. |
| 2845 | 2845 | ||
| 2846 | It was created by emacs $as_me 24.0.90, which was | 2846 | It was created by emacs $as_me 24.0.91, which was |
| 2847 | generated by GNU Autoconf 2.65. Invocation command line was | 2847 | generated by GNU Autoconf 2.65. Invocation command line was |
| 2848 | 2848 | ||
| 2849 | $ $0 $@ | 2849 | $ $0 $@ |
| @@ -3676,7 +3676,7 @@ fi | |||
| 3676 | 3676 | ||
| 3677 | # Define the identity of the package. | 3677 | # Define the identity of the package. |
| 3678 | PACKAGE='emacs' | 3678 | PACKAGE='emacs' |
| 3679 | VERSION='24.0.90' | 3679 | VERSION='24.0.91' |
| 3680 | 3680 | ||
| 3681 | 3681 | ||
| 3682 | cat >>confdefs.h <<_ACEOF | 3682 | cat >>confdefs.h <<_ACEOF |
| @@ -23098,7 +23098,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 | |||
| 23098 | # report actual input values of CONFIG_FILES etc. instead of their | 23098 | # report actual input values of CONFIG_FILES etc. instead of their |
| 23099 | # values after options handling. | 23099 | # values after options handling. |
| 23100 | ac_log=" | 23100 | ac_log=" |
| 23101 | This file was extended by emacs $as_me 24.0.90, which was | 23101 | This file was extended by emacs $as_me 24.0.91, which was |
| 23102 | generated by GNU Autoconf 2.65. Invocation command line was | 23102 | generated by GNU Autoconf 2.65. Invocation command line was |
| 23103 | 23103 | ||
| 23104 | CONFIG_FILES = $CONFIG_FILES | 23104 | CONFIG_FILES = $CONFIG_FILES |
| @@ -23164,7 +23164,7 @@ _ACEOF | |||
| 23164 | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 | 23164 | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 |
| 23165 | ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" | 23165 | ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" |
| 23166 | ac_cs_version="\\ | 23166 | ac_cs_version="\\ |
| 23167 | emacs config.status 24.0.90 | 23167 | emacs config.status 24.0.91 |
| 23168 | configured by $0, generated by GNU Autoconf 2.65, | 23168 | configured by $0, generated by GNU Autoconf 2.65, |
| 23169 | with options \\"\$ac_cs_config\\" | 23169 | with options \\"\$ac_cs_config\\" |
| 23170 | 23170 | ||
diff --git a/config.bat b/config.bat index cbbcf0cfcd5..aa2a3a4f905 100644 --- a/config.bat +++ b/config.bat | |||
| @@ -156,9 +156,11 @@ rm -f epaths.tmp | |||
| 156 | 156 | ||
| 157 | rem Create "config.h" | 157 | rem Create "config.h" |
| 158 | rm -f config.h2 config.tmp | 158 | rm -f config.h2 config.tmp |
| 159 | sed -e '' ../autogen/config.in > config.tmp | 159 | if exist config.in sed -e '' config.in > config.tmp |
| 160 | if exist ..\autogen\config.in sed -e '' ../autogen/config.in > config.tmp | ||
| 160 | if "%X11%" == "" goto src4 | 161 | if "%X11%" == "" goto src4 |
| 161 | sed -f ../msdos/sed2x.inp < ..\autogen\config.in > config.tmp | 162 | if exist config.in sed -f ../msdos/sed2x.inp < config.in > config.tmp |
| 163 | if exist ..\autogen\config.in sed -f ../msdos/sed2x.inp < ..\autogen\config.in > config.tmp | ||
| 162 | :src4 | 164 | :src4 |
| 163 | sed -f ../msdos/sed2v2.inp <config.tmp >config.h2 | 165 | sed -f ../msdos/sed2v2.inp <config.tmp >config.h2 |
| 164 | Rem See if DECL_ALIGN can be supported with this GCC | 166 | Rem See if DECL_ALIGN can be supported with this GCC |
| @@ -290,7 +292,8 @@ If Exist stdlib.in.h update stdlib.in.h stdlib.in-h | |||
| 290 | If Exist sys_stat.in.h update sys_stat.in.h sys_stat.in-h | 292 | If Exist sys_stat.in.h update sys_stat.in.h sys_stat.in-h |
| 291 | If Exist time.in.h update time.in.h time.in-h | 293 | If Exist time.in.h update time.in.h time.in-h |
| 292 | If Exist unistd.in.h update unistd.in.h unistd.in-h | 294 | If Exist unistd.in.h update unistd.in.h unistd.in-h |
| 293 | sed -f ../msdos/sedlibcf.inp < ..\autogen\Makefile.in > makefile.tmp | 295 | If Exist Makefile.in sed -f ../msdos/sedlibcf.inp < Makefile.in > makefile.tmp |
| 296 | If Exist ..\autogen\Makefile.in sed -f ../msdos/sedlibcf.inp < ..\autogen\Makefile.in > makefile.tmp | ||
| 294 | sed -f ../msdos/sedlibmk.inp < makefile.tmp > Makefile | 297 | sed -f ../msdos/sedlibmk.inp < makefile.tmp > Makefile |
| 295 | rm -f makefile.tmp | 298 | rm -f makefile.tmp |
| 296 | Rem Create .Po files for new files in lib/ | 299 | Rem Create .Po files for new files in lib/ |
diff --git a/configure.in b/configure.in index ee52bc9e976..54fba2553bb 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -22,7 +22,7 @@ dnl You should have received a copy of the GNU General Public License | |||
| 22 | dnl along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. | 22 | dnl along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
| 23 | 23 | ||
| 24 | AC_PREREQ(2.65) | 24 | AC_PREREQ(2.65) |
| 25 | AC_INIT(emacs, 24.0.90) | 25 | AC_INIT(emacs, 24.0.91) |
| 26 | AC_CONFIG_HEADER(src/config.h:src/config.in) | 26 | AC_CONFIG_HEADER(src/config.h:src/config.in) |
| 27 | AC_CONFIG_SRCDIR(src/lisp.h) | 27 | AC_CONFIG_SRCDIR(src/lisp.h) |
| 28 | AC_CONFIG_AUX_DIR(build-aux) | 28 | AC_CONFIG_AUX_DIR(build-aux) |
diff --git a/doc/emacs/emacsver.texi b/doc/emacs/emacsver.texi index 9df86fd9275..87f9dddbba8 100644 --- a/doc/emacs/emacsver.texi +++ b/doc/emacs/emacsver.texi | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | @c It would be nicer to generate this using configure and @version@. | 1 | @c It would be nicer to generate this using configure and @version@. |
| 2 | @c However, that would mean emacsver.texi would always be newer | 2 | @c However, that would mean emacsver.texi would always be newer |
| 3 | @c then the info files in release tarfiles. | 3 | @c then the info files in release tarfiles. |
| 4 | @set EMACSVER 24.0.90 | 4 | @set EMACSVER 24.0.91 |
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index acc334ea000..1e86e07998c 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-10-30 Martin Rudalics <rudalics@gmx.at> | ||
| 2 | |||
| 3 | * windows.texi (Windows and Frames): Remove "iso-" infix from | ||
| 4 | documentation of window-iso-combined-p. | ||
| 5 | |||
| 1 | 2011-10-26 Chong Yidong <cyd@gnu.org> | 6 | 2011-10-26 Chong Yidong <cyd@gnu.org> |
| 2 | 7 | ||
| 3 | * modes.texi (Running Hooks): Document with-wrapper-hook. | 8 | * modes.texi (Running Hooks): Document with-wrapper-hook. |
diff --git a/doc/lispref/windows.texi b/doc/lispref/windows.texi index 9dd03027ee2..37679aa4a0b 100644 --- a/doc/lispref/windows.texi +++ b/doc/lispref/windows.texi | |||
| @@ -309,7 +309,7 @@ W4)} is @code{W6}. | |||
| 309 | The following function is useful to determine whether a window is part | 309 | The following function is useful to determine whether a window is part |
| 310 | of a vertical or horizontal combination. | 310 | of a vertical or horizontal combination. |
| 311 | 311 | ||
| 312 | @defun window-iso-combined-p &optional window horizontal | 312 | @defun window-combined-p &optional window horizontal |
| 313 | This function returns non-@code{nil} if and only if @var{window} is | 313 | This function returns non-@code{nil} if and only if @var{window} is |
| 314 | vertically combined. The argument @var{window} can specify any window | 314 | vertically combined. The argument @var{window} can specify any window |
| 315 | and defaults to the selected one. The actual return value is the first | 315 | and defaults to the selected one. The actual return value is the first |
diff --git a/doc/man/emacs.1 b/doc/man/emacs.1 index 60dfe3806c0..91ef4189b79 100644 --- a/doc/man/emacs.1 +++ b/doc/man/emacs.1 | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | .\" See section COPYING for copyright and redistribution information. | 1 | .\" See section COPYING for copyright and redistribution information. |
| 2 | .TH EMACS 1 "2007 April 13" "GNU Emacs 24.0.90" | 2 | .TH EMACS 1 "2007 April 13" "GNU Emacs 24.0.91" |
| 3 | . | 3 | . |
| 4 | . | 4 | . |
| 5 | .SH NAME | 5 | .SH NAME |
diff --git a/etc/AUTHORS b/etc/AUTHORS index dc6321270c6..f214d5e5515 100644 --- a/etc/AUTHORS +++ b/etc/AUTHORS | |||
| @@ -3,6 +3,8 @@ Foundation's distribution of GNU Emacs. To show our appreciation for | |||
| 3 | their public spirit, we list here in alphabetical order a condensed | 3 | their public spirit, we list here in alphabetical order a condensed |
| 4 | list of their contributions. | 4 | list of their contributions. |
| 5 | 5 | ||
| 6 | Aaa Bbb: changed org-archive.el | ||
| 7 | |||
| 6 | Aaron Ecay: changed nsterm.m | 8 | Aaron Ecay: changed nsterm.m |
| 7 | 9 | ||
| 8 | Aaron Larson: co-wrote bibtex.el | 10 | Aaron Larson: co-wrote bibtex.el |
| @@ -24,10 +26,10 @@ Adam Gołębiowski: changed Makefile.in | |||
| 24 | Adam Hupp: changed emacs.py emacs2.py emacs3.py gud.el | 26 | Adam Hupp: changed emacs.py emacs2.py emacs3.py gud.el |
| 25 | progmodes/python.el | 27 | progmodes/python.el |
| 26 | 28 | ||
| 27 | Adam Sjøgren: changed blink.xpm braindamaged.xpm cry.xpm dead.xpm | 29 | Adam Sjøgren: changed spam.el blink.xpm braindamaged.xpm cry.xpm dead.xpm |
| 28 | evil.xpm forced.xpm frown.xpm grin.xpm indifferent.xpm | 30 | evil.xpm forced.xpm frown.xpm grin.xpm indifferent.xpm |
| 29 | reverse-smile.xpm sad.xpm smile.xpm spam.el wry.xpm gnus-html.el | 31 | reverse-smile.xpm sad.xpm smile.xpm wry.xpm xterm.c gnus-html.el |
| 30 | gnus-start.el gnus-sum.el gnus.el shr.el | 32 | gnus-start.el gnus-sum.el gnus.el gtkutil.c shr.el xterm.h |
| 31 | 33 | ||
| 32 | Aditya Siram: changed ob.el | 34 | Aditya Siram: changed ob.el |
| 33 | 35 | ||
| @@ -43,13 +45,13 @@ Adrian Robert: co-wrote ns-win.el | |||
| 43 | and changed nsterm.m nsfns.m nsfont.m nsterm.h Makefile.in nsmenu.m | 45 | and changed nsterm.m nsfns.m nsfont.m nsterm.h Makefile.in nsmenu.m |
| 44 | configure.in README config.in emacs.c font.c keyboard.c nsgui.h | 46 | configure.in README config.in emacs.c font.c keyboard.c nsgui.h |
| 45 | nsimage.m xdisp.c image.c lisp.h macos.texi menu.c Info-gnustep.plist | 47 | nsimage.m xdisp.c image.c lisp.h macos.texi menu.c Info-gnustep.plist |
| 46 | darwin.h and 84 other files | 48 | darwin.h and 82 other files |
| 47 | 49 | ||
| 48 | Ævar Arnfjörð Bjarmason: changed rcirc.el | 50 | Ævar Arnfjörð Bjarmason: changed rcirc.el |
| 49 | 51 | ||
| 50 | AgustÃn MartÃn: changed ispell.el flyspell.el fixit.texi | 52 | AgustÃn MartÃn: changed ispell.el flyspell.el fixit.texi |
| 51 | 53 | ||
| 52 | AgustÃn MartÃn Domingo: changed ispell.el | 54 | AgustÃn MartÃn Domingo: changed flyspell.el ispell.el |
| 53 | 55 | ||
| 54 | Aidan Kehoe: changed ipa.el lread.c mm-util.el erc-log.el erc.el | 56 | Aidan Kehoe: changed ipa.el lread.c mm-util.el erc-log.el erc.el |
| 55 | gnus-sum.el gnus-util.el latin-ltx.el nnfolder.el ob-tangle.el | 57 | gnus-sum.el gnus-util.el latin-ltx.el nnfolder.el ob-tangle.el |
| @@ -193,7 +195,7 @@ Andreas Rottmann: changed emacsclient.1 emacsclient.c misc.texi server.el | |||
| 193 | Andreas Schwab: changed Makefile.in configure.in lisp.h xdisp.c alloc.c | 195 | Andreas Schwab: changed Makefile.in configure.in lisp.h xdisp.c alloc.c |
| 194 | process.c coding.c files.el xterm.c editfns.c fns.c keyboard.c print.c | 196 | process.c coding.c files.el xterm.c editfns.c fns.c keyboard.c print.c |
| 195 | emacs.c eval.c fileio.c lread.c sysdep.c dired.el xfns.c buffer.c | 197 | emacs.c eval.c fileio.c lread.c sysdep.c dired.el xfns.c buffer.c |
| 196 | and 567 other files | 198 | and 568 other files |
| 197 | 199 | ||
| 198 | Andreas Seltenreich: changed nnweb.el gnus.texi message.el gnus-sum.el | 200 | Andreas Seltenreich: changed nnweb.el gnus.texi message.el gnus-sum.el |
| 199 | gnus.el nnslashdot.el gnus-srvr.el gnus-util.el mm-url.el mm-uu.el | 201 | gnus.el nnslashdot.el gnus-srvr.el gnus-util.el mm-url.el mm-uu.el |
| @@ -201,6 +203,8 @@ Andreas Seltenreich: changed nnweb.el gnus.texi message.el gnus-sum.el | |||
| 201 | gnus-art.el gnus-cite.el gnus-draft.el gnus-group.el gnus-ml.el | 203 | gnus-art.el gnus-cite.el gnus-draft.el gnus-group.el gnus-ml.el |
| 202 | and 7 other files | 204 | and 7 other files |
| 203 | 205 | ||
| 206 | Andreas Vögele: changed pgg-def.el | ||
| 207 | |||
| 204 | Andrew Choi: changed macterm.c darwin.h mac-win.el sysdep.c emacs.c mac.c | 208 | Andrew Choi: changed macterm.c darwin.h mac-win.el sysdep.c emacs.c mac.c |
| 205 | macfns.c fontset.c frame.c keyboard.c xfaces.c dispextern.h macmenu.c | 209 | macfns.c fontset.c frame.c keyboard.c xfaces.c dispextern.h macmenu.c |
| 206 | unexmacosx.c Makefile.in configure.in frame.h macterm.h titdic-cnv.el | 210 | unexmacosx.c Makefile.in configure.in frame.h macterm.h titdic-cnv.el |
| @@ -491,10 +495,10 @@ Chip Coldwell: changed font.c | |||
| 491 | Chong Yidong: wrote compile-tests.el dichromacy-theme.el | 495 | Chong Yidong: wrote compile-tests.el dichromacy-theme.el |
| 492 | font-parse-tests.el redisplay-testsuite.el tabulated-list.el | 496 | font-parse-tests.el redisplay-testsuite.el tabulated-list.el |
| 493 | and co-wrote longlines.el tango-dark-theme.el tango-theme.el | 497 | and co-wrote longlines.el tango-dark-theme.el tango-theme.el |
| 494 | and changed xdisp.c simple.el files.el display.texi cus-edit.el | 498 | and changed xdisp.c simple.el files.el display.texi frames.texi |
| 495 | frames.texi keyboard.c files.texi startup.el emacs.texi package.el | 499 | cus-edit.el files.texi keyboard.c startup.el package.el custom.el |
| 496 | xterm.c custom.el image.c faces.el mouse.el misc.texi subr.el xfns.c | 500 | emacs.texi xterm.c subr.el faces.el image.c mouse.el misc.texi |
| 497 | progmodes/compile.el text.texi and 765 other files | 501 | text.texi progmodes/compile.el xfns.c and 826 other files |
| 498 | 502 | ||
| 499 | Chris Chase: co-wrote idlw-shell.el idlwave.el | 503 | Chris Chase: co-wrote idlw-shell.el idlwave.el |
| 500 | 504 | ||
| @@ -550,17 +554,17 @@ Christian Plate: changed nnmaildir.el sgml-mode.el | |||
| 550 | 554 | ||
| 551 | Christian Plaunt: wrote soundex.el | 555 | Christian Plaunt: wrote soundex.el |
| 552 | 556 | ||
| 553 | Christian von Roques: changed epg.el gnus-start.el mml2015.el | 557 | Christian von Roques: changed mml2015.el epg.el gnus-start.el |
| 554 | 558 | ||
| 555 | Christoph Bauer: changed configure.in | 559 | Christoph Bauer: changed configure.in |
| 556 | 560 | ||
| 557 | Christoph Conrad: changed gnus-agent.el gnus-score.el makefile.w32-in | 561 | Christoph Conrad: changed gnus-agent.el gnus-score.el makefile.w32-in |
| 558 | qp.el | 562 | qp.el |
| 559 | 563 | ||
| 560 | Christoph Scholtes: changed makefile.w32-in progmodes/python.el | 564 | Christoph Scholtes: changed makefile.w32-in progmodes/python.el INSTALL |
| 561 | README.W32 maintaining.texi zipdist.bat INSTALL admin.el bookmark.el | 565 | README.W32 maintaining.texi zipdist.bat admin.el bookmark.el |
| 562 | configure.bat help-mode.el help.el ido.el makedist.bat menu.c minibuf.c | 566 | configure.bat cua-base.el help-mode.el help.el ido.el makedist.bat |
| 563 | process.c progmodes/grep.el stdint.h vc.el window.c | 567 | menu.c minibuf.c process.c progmodes/grep.el stdint.h vc.el window.c |
| 564 | 568 | ||
| 565 | Christoph Wedler: wrote antlr-mode.el | 569 | Christoph Wedler: wrote antlr-mode.el |
| 566 | and changed format.el gnus-art.el gnus-picon.el message.el register.el | 570 | and changed format.el gnus-art.el gnus-picon.el message.el register.el |
| @@ -614,8 +618,8 @@ Daiki Ueno: wrote epa-dired.el epa-file.el epa-hook.el epa-mail.el epa.el | |||
| 614 | and co-wrote sasl-cram.el sasl-digest.el | 618 | and co-wrote sasl-cram.el sasl-digest.el |
| 615 | and changed mml2015.el mml1991.el epa.texi auth-source.el gnus.texi | 619 | and changed mml2015.el mml1991.el epa.texi auth-source.el gnus.texi |
| 616 | mm-uu.el mml-smime.el Makefile.in auth.texi gnus-sum.el mm-decode.el | 620 | mm-uu.el mml-smime.el Makefile.in auth.texi gnus-sum.el mm-decode.el |
| 617 | mm-view.el mml-sec.el dired.el dired.texi epa-file-hook.el epa-setup.el | 621 | mm-view.el mml-sec.el mml.el dired.el dired.texi epa-file-hook.el |
| 618 | epg-package-info.el faces.el files.el gnus-agent.el and 17 other files | 622 | epa-setup.el epg-package-info.el faces.el files.el and 17 other files |
| 619 | 623 | ||
| 620 | Dale Gulledge: changed TUTORIAL.eo | 624 | Dale Gulledge: changed TUTORIAL.eo |
| 621 | 625 | ||
| @@ -634,7 +638,7 @@ Damyan Pepper: changed font.c font.h ftfont.c w32font.c | |||
| 634 | 638 | ||
| 635 | Dan Christensen: changed gnus-sum.el nndoc.el nnfolder.el gnus-art.el | 639 | Dan Christensen: changed gnus-sum.el nndoc.el nnfolder.el gnus-art.el |
| 636 | gnus-group.el gnus-registry.el gnus-score.el gnus-util.el nnmail.el | 640 | gnus-group.el gnus-registry.el gnus-score.el gnus-util.el nnmail.el |
| 637 | time-date.el | 641 | spam.el time-date.el |
| 638 | 642 | ||
| 639 | Dan Davison: wrote ob-matlab.el ob-octave.el | 643 | Dan Davison: wrote ob-matlab.el ob-octave.el |
| 640 | and co-wrote ob-R.el ob-exp.el ob-lob.el ob-perl.el ob-python.el | 644 | and co-wrote ob-R.el ob-exp.el ob-lob.el ob-perl.el ob-python.el |
| @@ -715,7 +719,8 @@ Darren Stalder: changed gnus-util.el | |||
| 715 | 719 | ||
| 716 | Darrin B. Jewell: changed etags.c lisp.h | 720 | Darrin B. Jewell: changed etags.c lisp.h |
| 717 | 721 | ||
| 718 | Dave Abrahams: changed gnus-sum.el gnus.texi nnimap.el | 722 | Dave Abrahams: changed gnus-registry.el gnus-sum.el gnus.texi nnimap.el |
| 723 | nnir.el nnmairix.el nnregistry.el | ||
| 719 | 724 | ||
| 720 | Dave Detlefs: co-wrote cc-align.el cc-cmds.el cc-defs.el cc-engine.el | 725 | Dave Detlefs: co-wrote cc-align.el cc-cmds.el cc-defs.el cc-engine.el |
| 721 | cc-langs.el cc-menus.el cc-mode.el cc-styles.el cc-vars.el | 726 | cc-langs.el cc-menus.el cc-mode.el cc-styles.el cc-vars.el |
| @@ -754,9 +759,9 @@ David Edmondson: changed message.el gnus-cite.el imap.el mm-view.el | |||
| 754 | mml2015.el nnfolder.el nnimap.el nnml.el | 759 | mml2015.el nnfolder.el nnimap.el nnml.el |
| 755 | 760 | ||
| 756 | David Engster: wrote mairix.el nnmairix.el | 761 | David Engster: wrote mairix.el nnmairix.el |
| 757 | and changed gnus.texi registry.el gnus-msg.el display.texi files.el | 762 | and changed gnus.texi registry.el gnus-msg.el bovine-grammar.el |
| 758 | gnus-registry.el gnus-sum.el hideshow.el mairix-el.texi mm-view.el | 763 | display.texi files.el gnus-registry.el gnus-sum.el hideshow.el |
| 759 | mml-smime.el nnimap.el | 764 | mairix-el.texi mm-view.el mml-smime.el nnimap.el |
| 760 | 765 | ||
| 761 | David Gillespie: wrote calc-aent.el calc-alg.el calc-arith.el calc-bin.el | 766 | David Gillespie: wrote calc-aent.el calc-alg.el calc-arith.el calc-bin.el |
| 762 | calc-comb.el calc-cplx.el calc-embed.el calc-ext.el calc-fin.el | 767 | calc-comb.el calc-cplx.el calc-embed.el calc-ext.el calc-fin.el |
| @@ -811,7 +816,7 @@ David M. Koppelman: wrote hi-lock.el | |||
| 811 | and changed display.texi | 816 | and changed display.texi |
| 812 | 817 | ||
| 813 | David M. Smith: wrote ielm.el | 818 | David M. Smith: wrote ielm.el |
| 814 | and changed imenu.el xterm.c | 819 | and changed imenu.el pgg-def.el xterm.c |
| 815 | 820 | ||
| 816 | David Maus: co-wrote org-wl.el | 821 | David Maus: co-wrote org-wl.el |
| 817 | and changed org.el org-feed.el org-html.el org-agenda.el org-exp.el | 822 | and changed org.el org-feed.el org-html.el org-agenda.el org-exp.el |
| @@ -934,8 +939,9 @@ Dirk-Jan C. Binnema: changed org-agenda.el | |||
| 934 | 939 | ||
| 935 | Dmitri Paduchikh: changed advice.el | 940 | Dmitri Paduchikh: changed advice.el |
| 936 | 941 | ||
| 937 | Dmitry Antipov: changed alloc.c keyboard.c buffer.c ccl.c emacs.c | 942 | Dmitry Antipov: changed alloc.c keyboard.c buffer.c ccl.c editfns.c |
| 938 | fontset.c lisp.h lread.c macmenu.c w32menu.c xmenu.c | 943 | emacs.c fontset.c lisp.h lread.c lwlib-Xaw.c lwlib-Xm.c lwlib-utils.c |
| 944 | lwlib.c macmenu.c w32menu.c xlwmenu.c xmenu.c | ||
| 939 | 945 | ||
| 940 | Dmitry Bolshakov: changed hideshow.el | 946 | Dmitry Bolshakov: changed hideshow.el |
| 941 | 947 | ||
| @@ -1010,10 +1016,10 @@ Eli Tziperman: wrote rmail-spam-filter.el | |||
| 1010 | 1016 | ||
| 1011 | Eli Zaretskii: wrote [bidirectional display in xdisp.c] bidi.c rxvt.el | 1017 | Eli Zaretskii: wrote [bidirectional display in xdisp.c] bidi.c rxvt.el |
| 1012 | tty-colors.el | 1018 | tty-colors.el |
| 1013 | and changed makefile.w32-in msdos.c xdisp.c Makefile.in files.el fileio.c | 1019 | and changed makefile.w32-in msdos.c xdisp.c Makefile.in files.el |
| 1014 | config.bat msdos.h info.el mainmake.v2 sed1v2.inp simple.el rmail.el | 1020 | config.bat fileio.c msdos.h simple.el mainmake.v2 sed1v2.inp info.el |
| 1015 | w32.c display.texi process.c pc-win.el startup.el dired.c dispextern.h | 1021 | rmail.el w32.c display.texi process.c pc-win.el startup.el dired.c |
| 1016 | term.c and 691 other files | 1022 | dispextern.h emacs.c and 695 other files |
| 1017 | 1023 | ||
| 1018 | Elias Oltmanns: changed tls.el gnus-agent.el gnus-int.el gnus-srvr.el | 1024 | Elias Oltmanns: changed tls.el gnus-agent.el gnus-int.el gnus-srvr.el |
| 1019 | gnus.el | 1025 | gnus.el |
| @@ -1311,11 +1317,11 @@ Giuliano Procida: changed perl-mode.el | |||
| 1311 | Giuseppe Scrivano: changed browse-url.el buffer.c configure.in sysdep.c | 1317 | Giuseppe Scrivano: changed browse-url.el buffer.c configure.in sysdep.c |
| 1312 | xsmfns.c | 1318 | xsmfns.c |
| 1313 | 1319 | ||
| 1314 | Glenn Morris: wrote check-declare.el | 1320 | Glenn Morris: wrote check-declare.el f90.el vc-bzr.el |
| 1315 | and changed Makefile.in configure.in calendar.el diary-lib.el f90.el | 1321 | and changed Makefile.in configure.in calendar.el diary-lib.el rmail.el |
| 1316 | rmail.el files.el cal-menu.el appt.el cal-hebrew.el fortran.el | 1322 | files.el cal-menu.el appt.el cal-hebrew.el fortran.el bytecomp.el |
| 1317 | bytecomp.el holidays.el make-dist calendar.texi emacs.texi sed1v2.inp | 1323 | holidays.el make-dist calendar.texi emacs.texi sed1v2.inp simple.el |
| 1318 | simple.el cal-islam.el cal-bahai.el startup.el and 1199 other files | 1324 | cal-islam.el cal-bahai.el startup.el ack.texi and 1202 other files |
| 1319 | 1325 | ||
| 1320 | Glynn Clements: wrote gamegrid.el snake.el tetris.el | 1326 | Glynn Clements: wrote gamegrid.el snake.el tetris.el |
| 1321 | 1327 | ||
| @@ -1505,8 +1511,8 @@ Jacques Duthen: co-wrote ps-print.el ps-samp.el | |||
| 1505 | 1511 | ||
| 1506 | Jaeyoun Chung: changed hangul3.el hanja3.el gnus-mule.el hangul.el | 1512 | Jaeyoun Chung: changed hangul3.el hanja3.el gnus-mule.el hangul.el |
| 1507 | 1513 | ||
| 1508 | Jambunathan K: changed org.el org-exp.el org.texi org-footnote.el | 1514 | Jambunathan K: changed org.el org-exp.el org.texi indian.el |
| 1509 | org-html.el package-x.el tar-mode.el | 1515 | org-footnote.el org-html.el package-x.el tar-mode.el |
| 1510 | 1516 | ||
| 1511 | James Clark: wrote nxml-enc.el nxml-glyph.el nxml-maint.el nxml-mode.el | 1517 | James Clark: wrote nxml-enc.el nxml-glyph.el nxml-maint.el nxml-mode.el |
| 1512 | nxml-ns.el nxml-outln.el nxml-parse.el nxml-rap.el nxml-uchnm.el | 1518 | nxml-ns.el nxml-outln.el nxml-parse.el nxml-rap.el nxml-uchnm.el |
| @@ -1856,7 +1862,7 @@ and changed ob-octave.el | |||
| 1856 | 1862 | ||
| 1857 | Juanma Barranquero: wrote emacs-lock.el | 1863 | Juanma Barranquero: wrote emacs-lock.el |
| 1858 | and changed makefile.w32-in subr.el w32fns.c files.el server.el bs.el | 1864 | and changed makefile.w32-in subr.el w32fns.c files.el server.el bs.el |
| 1859 | help-fns.el emacsclient.c faces.el org.el simple.el buffer.c xdisp.c | 1865 | emacsclient.c help-fns.el faces.el org.el simple.el buffer.c xdisp.c |
| 1860 | keyboard.c process.c w32term.c desktop.el ido.el eval.c mule-cmds.el | 1866 | keyboard.c process.c w32term.c desktop.el ido.el eval.c mule-cmds.el |
| 1861 | w32.c and 1036 other files | 1867 | w32.c and 1036 other files |
| 1862 | 1868 | ||
| @@ -2050,7 +2056,7 @@ and changed makefile.nt dispnew.c addpm.c config.nt config.w95 | |||
| 2050 | 2056 | ||
| 2051 | Kevin Greiner: wrote legacy-gnus-agent.el | 2057 | Kevin Greiner: wrote legacy-gnus-agent.el |
| 2052 | and changed gnus-agent.el gnus-sum.el gnus-start.el gnus-int.el nntp.el | 2058 | and changed gnus-agent.el gnus-sum.el gnus-start.el gnus-int.el nntp.el |
| 2053 | gnus.el gnus-util.el gnus-cus.el gnus-group.el gnus-art.el | 2059 | gnus-util.el gnus.el gnus-cus.el gnus-group.el gnus-art.el |
| 2054 | gnus-cache.el gnus-range.el gnus-draft.el gnus-srvr.el gnus.texi | 2060 | gnus-cache.el gnus-range.el gnus-draft.el gnus-srvr.el gnus.texi |
| 2055 | nnagent.el nnheader.el gnus-async.el gnus-registry.el gnus-salt.el | 2061 | nnagent.el nnheader.el gnus-async.el gnus-registry.el gnus-salt.el |
| 2056 | gnus-uu.el and 3 other files | 2062 | gnus-uu.el and 3 other files |
| @@ -2073,7 +2079,7 @@ Kim F. Storm: wrote bindat.el cua-base.el cua-gmrk.el cua-rect.el ido.el | |||
| 2073 | keypad.el kmacro.el | 2079 | keypad.el kmacro.el |
| 2074 | and changed xdisp.c dispextern.h process.c simple.el window.c keyboard.c | 2080 | and changed xdisp.c dispextern.h process.c simple.el window.c keyboard.c |
| 2075 | xterm.c dispnew.c subr.el w32term.c lisp.h fringe.c display.texi | 2081 | xterm.c dispnew.c subr.el w32term.c lisp.h fringe.c display.texi |
| 2076 | macterm.c fns.c alloc.c xfaces.c keymap.c xfns.c xterm.h .gdbinit | 2082 | macterm.c alloc.c fns.c xfaces.c keymap.c xfns.c xterm.h .gdbinit |
| 2077 | and 250 other files | 2083 | and 250 other files |
| 2078 | 2084 | ||
| 2079 | Kim-Minh Kaplan: changed gnus-picon.el gnus-sum.el gnus-start.el | 2085 | Kim-Minh Kaplan: changed gnus-picon.el gnus-sum.el gnus-start.el |
| @@ -2160,10 +2166,10 @@ and co-wrote gnus-kill.el gnus-mh.el gnus-msg.el gnus-score.el | |||
| 2160 | mm-encode.el mm-util.el nnbabyl.el nndoc.el nneething.el nnfolder.el | 2166 | mm-encode.el mm-util.el nnbabyl.el nndoc.el nneething.el nnfolder.el |
| 2161 | nnheader.el nnimap.el nnmbox.el nnmh.el nnml.el nnspool.el nnvirtual.el | 2167 | nnheader.el nnimap.el nnmbox.el nnmh.el nnml.el nnspool.el nnvirtual.el |
| 2162 | rfc2047.el time-date.el | 2168 | rfc2047.el time-date.el |
| 2163 | and changed gnus.texi gnus-cite.el gnus-xmas.el pop3.el smtpmail.el | 2169 | and changed gnus.texi gnus-cite.el pop3.el gnus-xmas.el smtpmail.el |
| 2164 | proto-stream.el auth-source.el xml.c dired.el editfns.c nnultimate.el | 2170 | proto-stream.el auth-source.el xml.c dired.el editfns.c nnultimate.el |
| 2165 | gnus-nocem.el gnutls.c imap.el nnkiboze.el nnrss.el nnslashdot.el | 2171 | subr.el gnus-nocem.el gnutls.c imap.el nnkiboze.el nnrss.el |
| 2166 | spam-report.el subr.el gnus-cus.el simple.el and 204 other files | 2172 | nnslashdot.el spam-report.el gnus-cus.el simple.el and 205 other files |
| 2167 | 2173 | ||
| 2168 | Lars Rasmusson: changed ebrowse.c | 2174 | Lars Rasmusson: changed ebrowse.c |
| 2169 | 2175 | ||
| @@ -2196,8 +2202,8 @@ Lennart Staflin: changed dired.el diary-ins.el diary-lib.el tq.el xdisp.c | |||
| 2196 | 2202 | ||
| 2197 | Leo Liu: changed rcirc.el ido.el makefile.w32-in abbrev.el Makefile.in | 2203 | Leo Liu: changed rcirc.el ido.el makefile.w32-in abbrev.el Makefile.in |
| 2198 | deps.mk fns.c gl-comp.m4 gnulib.mk minibuffer.el register.el replace.el | 2204 | deps.mk fns.c gl-comp.m4 gnulib.mk minibuffer.el register.el replace.el |
| 2199 | abbrevlist.el ansi-color.el bindings.el bookmark.el cl-macs.el diff.el | 2205 | subr.el abbrevlist.el ansi-color.el bindings.el bookmark.el cl-macs.el |
| 2200 | editfns.c files.el footnote.el and 21 other files | 2206 | diff.el editfns.c files.el and 22 other files |
| 2201 | 2207 | ||
| 2202 | Leonard H. Tower Jr.: changed rnews.el rnewspost.el emacsbug.el | 2208 | Leonard H. Tower Jr.: changed rnews.el rnewspost.el emacsbug.el |
| 2203 | rmailout.el sendmail.el | 2209 | rmailout.el sendmail.el |
| @@ -2317,7 +2323,7 @@ Mark Hood: changed gnus-uu.el | |||
| 2317 | 2323 | ||
| 2318 | Mark Lambert: changed process.c process.h | 2324 | Mark Lambert: changed process.c process.h |
| 2319 | 2325 | ||
| 2320 | Mark Lillibridge: changed mail-utils.el | 2326 | Mark Lillibridge: changed mail-utils.el rmail.el |
| 2321 | 2327 | ||
| 2322 | Mark Mitchell: changed font-lock.el | 2328 | Mark Mitchell: changed font-lock.el |
| 2323 | 2329 | ||
| @@ -2384,9 +2390,9 @@ Martin Neitzel: changed supercite.el | |||
| 2384 | Martin Pohlack: changed iimage.el pc-select.el | 2390 | Martin Pohlack: changed iimage.el pc-select.el |
| 2385 | 2391 | ||
| 2386 | Martin Rudalics: changed window.el window.c windows.texi frame.c buffer.c | 2392 | Martin Rudalics: changed window.el window.c windows.texi frame.c buffer.c |
| 2387 | frame.el cus-edit.el cus-start.el files.el help.el window.h dired.el | 2393 | frame.el help.el cus-edit.el cus-start.el files.el window.h |
| 2388 | subr.el add-log.el buffers.texi xdisp.c font-lock.el help-fns.el lisp.h | 2394 | buffers.texi dired.el subr.el add-log.el xdisp.c font-lock.el |
| 2389 | wid-edit.el display.texi and 132 other files | 2395 | help-fns.el lisp.h mouse.el wid-edit.el and 135 other files |
| 2390 | 2396 | ||
| 2391 | Martin Stjernholm: wrote cc-bytecomp.el | 2397 | Martin Stjernholm: wrote cc-bytecomp.el |
| 2392 | and co-wrote cc-align.el cc-cmds.el cc-compat.el cc-defs.el cc-engine.el | 2398 | and co-wrote cc-align.el cc-cmds.el cc-compat.el cc-defs.el cc-engine.el |
| @@ -2644,6 +2650,8 @@ Nakaji Hiroyuki: changed mm-util.el amdx86-64.h configure.in smiley.el | |||
| 2644 | 2650 | ||
| 2645 | Nakamura Toshikazu: changed w32fns.c | 2651 | Nakamura Toshikazu: changed w32fns.c |
| 2646 | 2652 | ||
| 2653 | Nali Toja: changed configure.in | ||
| 2654 | |||
| 2647 | Naohiro Aota: changed fontset.c ftfont.c gnus-art.el mm-view.el tls.el | 2655 | Naohiro Aota: changed fontset.c ftfont.c gnus-art.el mm-view.el tls.el |
| 2648 | xftfont.c | 2656 | xftfont.c |
| 2649 | 2657 | ||
| @@ -2795,9 +2803,9 @@ and changed imenu.el make-mode.el | |||
| 2795 | 2803 | ||
| 2796 | Paul Eggert: wrote rcs2log vcdiff | 2804 | Paul Eggert: wrote rcs2log vcdiff |
| 2797 | and co-wrote cal-dst.el | 2805 | and co-wrote cal-dst.el |
| 2798 | and changed lisp.h Makefile.in editfns.c xdisp.c alloc.c image.c | 2806 | and changed lisp.h Makefile.in editfns.c alloc.c xdisp.c configure.in |
| 2799 | configure.in fileio.c process.c fns.c xterm.c keyboard.c data.c | 2807 | image.c fileio.c process.c fns.c xterm.c keyboard.c data.c dispextern.h |
| 2800 | sysdep.c xfns.c dispextern.h eval.c lread.c emacs.c config.in print.c | 2808 | lread.c sysdep.c xfns.c eval.c emacs.c config.in print.c |
| 2801 | and 563 other files | 2809 | and 563 other files |
| 2802 | 2810 | ||
| 2803 | Paul Fisher: changed fns.c | 2811 | Paul Fisher: changed fns.c |
| @@ -2860,8 +2868,8 @@ and co-wrote erc-dcc.el | |||
| 2860 | 2868 | ||
| 2861 | Per Starbäck: changed ispell.el dired.el gnus-start.el BUGS apropos.el | 2869 | Per Starbäck: changed ispell.el dired.el gnus-start.el BUGS apropos.el |
| 2862 | bytecomp.el characters.el charset.h coding.c doctor.el emacs.c | 2870 | bytecomp.el characters.el charset.h coding.c doctor.el emacs.c |
| 2863 | european.el iso-transl.el replace.el startup.el trouble.texi vc.el | 2871 | european.el iso-transl.el pcmpl-gnu.el replace.el startup.el |
| 2864 | xdisp.c | 2872 | trouble.texi vc.el xdisp.c |
| 2865 | 2873 | ||
| 2866 | Pete Kazmier: changed gnus-art.el | 2874 | Pete Kazmier: changed gnus-art.el |
| 2867 | 2875 | ||
| @@ -3153,6 +3161,8 @@ Rupert Swarbrick: changed gnus-score.el | |||
| 3153 | 3161 | ||
| 3154 | Russ Allbery: changed message.el | 3162 | Russ Allbery: changed message.el |
| 3155 | 3163 | ||
| 3164 | Ryan Barrett: changed dirtrack.el | ||
| 3165 | |||
| 3156 | Ryan C. Thompson: changed savehist.el | 3166 | Ryan C. Thompson: changed savehist.el |
| 3157 | 3167 | ||
| 3158 | Ryan Twitchell: changed ido.el | 3168 | Ryan Twitchell: changed ido.el |
| @@ -3374,8 +3384,8 @@ Stephen A. Wood: changed fortran.el | |||
| 3374 | 3384 | ||
| 3375 | Stephen Berman: changed diary-lib.el todo-mode.el allout.el dframe.el | 3385 | Stephen Berman: changed diary-lib.el todo-mode.el allout.el dframe.el |
| 3376 | dired-aux.el dired.el files.el find-dired.el frame.c gnus-group.el | 3386 | dired-aux.el dired.el files.el find-dired.el frame.c gnus-group.el |
| 3377 | gtkutil.c info.el newcomment.el page.el proced.el recentf.el rfc822.el | 3387 | gtkutil.c info.el minibuffer.el newcomment.el page.el proced.el |
| 3378 | subr.el | 3388 | recentf.el rfc822.el subr.el |
| 3379 | 3389 | ||
| 3380 | Stephen C. Gilardi: changed configure.in | 3390 | Stephen C. Gilardi: changed configure.in |
| 3381 | 3391 | ||
| @@ -3513,7 +3523,7 @@ Teodor Zlatanov: wrote auth-source.el gnus-registry.el gnus-sync.el | |||
| 3513 | and changed spam.el gnus.el nnimap.el gnus.texi gnus-sum.el auth.texi | 3523 | and changed spam.el gnus.el nnimap.el gnus.texi gnus-sum.el auth.texi |
| 3514 | gnus-util.el netrc.el gnus-start.el gnutls.c message.el spam-stat.el | 3524 | gnus-util.el netrc.el gnus-start.el gnutls.c message.el spam-stat.el |
| 3515 | encrypt.el nnmail.el imap.el mail-source.el Makefile.in gnus-encrypt.el | 3525 | encrypt.el nnmail.el imap.el mail-source.el Makefile.in gnus-encrypt.el |
| 3516 | gnus-html.el gnus-int.el gnutls.h and 95 other files | 3526 | gnus-html.el gnus-int.el gnutls.h and 97 other files |
| 3517 | 3527 | ||
| 3518 | Terje Rosten: changed xfns.c version.el xterm.c xterm.h | 3528 | Terje Rosten: changed xfns.c version.el xterm.c xterm.h |
| 3519 | 3529 | ||
| @@ -3538,9 +3548,9 @@ and changed ewoc.el vc.el zone.el info.el Makefile.in processes.texi | |||
| 3538 | 3548 | ||
| 3539 | Thierry Emery: changed kinsoku.el timezone.el url-http.el wid-edit.el | 3549 | Thierry Emery: changed kinsoku.el timezone.el url-http.el wid-edit.el |
| 3540 | 3550 | ||
| 3541 | Thierry Volpiatto: changed bookmark.el gnus-sum.el image-mode.el info.el | 3551 | Thierry Volpiatto: changed bookmark.el eshell.el gnus-sum.el |
| 3542 | man.el woman.el dired-aux.el dired.el doc-view.el files.el gnus-art.el | 3552 | image-mode.el info.el man.el woman.el dired-aux.el dired.el doc-view.el |
| 3543 | image-dired.el vc-rcs.el | 3553 | files.el gnus-art.el image-dired.el vc-rcs.el |
| 3544 | 3554 | ||
| 3545 | Thomas Baumann: wrote org-mhe.el | 3555 | Thomas Baumann: wrote org-mhe.el |
| 3546 | and co-wrote org-bbdb.el | 3556 | and co-wrote org-bbdb.el |
| @@ -3668,9 +3678,9 @@ Tsuchiya Masatoshi: changed gnus-art.el mm-view.el gnus-sum.el | |||
| 3668 | nnmaildir.el pgg.el rfc2047.el | 3678 | nnmaildir.el pgg.el rfc2047.el |
| 3669 | 3679 | ||
| 3670 | Tsugutomo Enami: changed frame.c keyboard.c configure.in dispnew.c | 3680 | Tsugutomo Enami: changed frame.c keyboard.c configure.in dispnew.c |
| 3671 | fileio.c process.c simple.el xdisp.c add-log.el bytecomp.el editfns.c | 3681 | fileio.c process.c simple.el sysdep.c xdisp.c add-log.el bytecomp.el |
| 3672 | emacs.c frame.h gnus-group.el netbsd.h nnheader.el perl-mode.el regex.c | 3682 | editfns.c emacs.c frame.h gnus-group.el netbsd.h nnheader.el |
| 3673 | regex.h rmailsum.el sysdep.c and 4 other files | 3683 | perl-mode.el regex.c regex.h rmailsum.el and 4 other files |
| 3674 | 3684 | ||
| 3675 | Tsuyoshi Akiho: changed gnus-sum.el nnrss.el | 3685 | Tsuyoshi Akiho: changed gnus-sum.el nnrss.el |
| 3676 | 3686 | ||
| @@ -3680,13 +3690,13 @@ Uday S Reddy: changed etags.el fill.el | |||
| 3680 | 3690 | ||
| 3681 | Ulf Jasper: wrote bubbles.el icalendar-tests.el icalendar.el | 3691 | Ulf Jasper: wrote bubbles.el icalendar-tests.el icalendar.el |
| 3682 | newst-backend.el newst-plainview.el newst-reader.el newst-ticker.el | 3692 | newst-backend.el newst-plainview.el newst-reader.el newst-ticker.el |
| 3683 | newst-treeview.el newsticker-testsuite.el newsticker.el | 3693 | newst-treeview.el newsticker-tests.el newsticker.el |
| 3684 | and changed icalendar-testsuite.el calendar.texi newsticker-plainview.el | 3694 | and changed icalendar-testsuite.el calendar.texi newsticker-plainview.el |
| 3685 | newsticker-treeview.el newsticker.texi newsticker-backend.el | 3695 | newsticker-treeview.el newsticker.texi newsticker-backend.el |
| 3686 | newsticker-reader.el newsticker-ticker.el Makefile.in README | 3696 | newsticker-reader.el newsticker-ticker.el Makefile.in README |
| 3687 | browse-url.xpm get-all.xpm mark-immortal.xpm mark-read.xpm narrow.xpm | 3697 | browse-url.xpm get-all.xpm mark-immortal.xpm mark-read.xpm narrow.xpm |
| 3688 | newsticker next-feed.xpm next-item.xpm prev-feed.xpm prev-item.xpm | 3698 | newsticker newsticker-testsuite.el next-feed.xpm next-item.xpm |
| 3689 | update.xpm xml.el | 3699 | prev-feed.xpm prev-item.xpm and 3 other files |
| 3690 | 3700 | ||
| 3691 | Ulf Stegemann: co-wrote org-entities.el | 3701 | Ulf Stegemann: co-wrote org-entities.el |
| 3692 | and changed org-gnus.el smime.el | 3702 | and changed org-gnus.el smime.el |
| @@ -3696,7 +3706,7 @@ Ulrich Leodolter: changed w32proc.c | |||
| 3696 | Ulrich Mueller: changed configure.in Makefile.in files.el gud.el | 3706 | Ulrich Mueller: changed configure.in Makefile.in files.el gud.el |
| 3697 | server.el ChgPane.c ChgSel.c HELLO INSTALL XMakeAssoc.c authors.el | 3707 | server.el ChgPane.c ChgSel.c HELLO INSTALL XMakeAssoc.c authors.el |
| 3698 | bytecomp.el calc-units.el case-table.el configure doctor.el em-ls.el | 3708 | bytecomp.el calc-units.el case-table.el configure doctor.el em-ls.el |
| 3699 | emacs.1 emacs.c emacs.desktop emacsclient.c and 25 other files | 3709 | emacs.1 emacs.c emacs.desktop emacsclient.c and 26 other files |
| 3700 | 3710 | ||
| 3701 | Ulrich Neumerkel: changed xterm.c | 3711 | Ulrich Neumerkel: changed xterm.c |
| 3702 | 3712 | ||
| @@ -3756,6 +3766,7 @@ and changed Makefile.in TUTORIAL.de calc.texi chinese.el czech.el emacs.1 | |||
| 3756 | Werner Meisner: changed lwlib-Xm.c | 3766 | Werner Meisner: changed lwlib-Xm.c |
| 3757 | 3767 | ||
| 3758 | Wes Hardaker: changed gnus-score.el gnus-art.el gnus-sum.el gnus-win.el | 3768 | Wes Hardaker: changed gnus-score.el gnus-art.el gnus-sum.el gnus-win.el |
| 3769 | spam.el | ||
| 3759 | 3770 | ||
| 3760 | Wilfred Hughes: changed vc-git.el | 3771 | Wilfred Hughes: changed vc-git.el |
| 3761 | 3772 | ||
diff --git a/etc/images/icons/allout-widgets/light-bg/locked-encrypted.png b/etc/images/icons/allout-widgets/light-bg/locked-encrypted.png index a6bc3e99a7a..a6bc3e99a7a 100644..100755 --- a/etc/images/icons/allout-widgets/light-bg/locked-encrypted.png +++ b/etc/images/icons/allout-widgets/light-bg/locked-encrypted.png | |||
| Binary files differ | |||
diff --git a/etc/images/icons/allout-widgets/light-bg/unlocked-encrypted.png b/etc/images/icons/allout-widgets/light-bg/unlocked-encrypted.png index e70d075690a..e70d075690a 100644..100755 --- a/etc/images/icons/allout-widgets/light-bg/unlocked-encrypted.png +++ b/etc/images/icons/allout-widgets/light-bg/unlocked-encrypted.png | |||
| Binary files differ | |||
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 614094aa334..97ae0232d55 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,57 @@ | |||
| 1 | 2011-10-31 Andreas Schwab <schwab@linux-m68k.org> | ||
| 2 | |||
| 3 | * subr.el (keymap--menu-item-with-binding): Ignore item if not a | ||
| 4 | menu-item. | ||
| 5 | |||
| 6 | 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br> | ||
| 7 | |||
| 8 | * whitespace.el: New version 13.2.2. | ||
| 9 | (whitespace-newline-mode): Disable properly. Reported by Sarah | ||
| 10 | <EmacsWiki>. | ||
| 11 | |||
| 12 | 2011-10-30 Ulf Jasper <ulf.jasper@web.de> | ||
| 13 | |||
| 14 | * net/newst-treeview.el: Remove "Time-stamp". | ||
| 15 | (newsticker--group-manage-orphan-feeds): Do not call | ||
| 16 | newsticker--treeview-tree-update. | ||
| 17 | (newsticker-treeview-update, newsticker-treeview): Call | ||
| 18 | newsticker--treeview-tree-update if necessary. | ||
| 19 | |||
| 20 | 2011-10-30 Martin Rudalics <rudalics@gmx.at> | ||
| 21 | |||
| 22 | * window.el (window-iso-combination-p, window-iso-combined-p) | ||
| 23 | (window-iso-combinations): Remove "iso-" infix. Suggested by | ||
| 24 | Chong Yidong. | ||
| 25 | (window-min-size-1, window-size-fixed-1, window-min-delta-1) | ||
| 26 | (window-max-delta-1, window-resize, window--resize-siblings) | ||
| 27 | (window--resize-this-window, adjust-window-trailing-edge) | ||
| 28 | (split-window, balance-windows-1) | ||
| 29 | (shrink-window-if-larger-than-buffer): | ||
| 30 | * calendar/calendar.el (calendar-generate-window): | ||
| 31 | * help.el (resize-temp-buffer-window): Adjust callers | ||
| 32 | accordingly. | ||
| 33 | |||
| 34 | 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 35 | |||
| 36 | * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list | ||
| 37 | in place (bug#9907). | ||
| 38 | (eshell-subcommand-arg-values, eshell-rewrite-named-command) | ||
| 39 | (eshell-rewrite-if-command, eshell-rewrite-for-command) | ||
| 40 | (eshell-structure-basic-command, eshell-rewrite-while-command) | ||
| 41 | (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command) | ||
| 42 | (eshell-parse-subcommand-argument, eshell-parse-lisp-argument) | ||
| 43 | (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval) | ||
| 44 | (eshell-do-pipelines-synchronously, eshell-eval-command): | ||
| 45 | Use backquotes and prefer setq to set. | ||
| 46 | (eshell-lookup-function, function-p-func, eshell-functionp): Remove. | ||
| 47 | (eshell-macrop): Use functionp. | ||
| 48 | (eshell-do-eval): Handle multiple expressions in `while' body. | ||
| 49 | |||
| 50 | 2011-10-30 Chong Yidong <cyd@gnu.org> | ||
| 51 | |||
| 52 | * emulation/viper-cmd.el (viper-exec-change): Use push-mark | ||
| 53 | instead of set-mark (Bug#9810). | ||
| 54 | |||
| 1 | 2011-10-30 Chong Yidong <cyd@gnu.org> | 55 | 2011-10-30 Chong Yidong <cyd@gnu.org> |
| 2 | 56 | ||
| 3 | * window.el (split-window-below, split-window-right): Rename from | 57 | * window.el (split-window-below, split-window-right): Rename from |
diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el index 6fa924dd788..a59e28811d3 100644 --- a/lisp/calendar/calendar.el +++ b/lisp/calendar/calendar.el | |||
| @@ -1373,7 +1373,7 @@ Optional integers MON and YR are used instead of today's date." | |||
| 1373 | ;; Don't do any window-related stuff if we weren't called from a | 1373 | ;; Don't do any window-related stuff if we weren't called from a |
| 1374 | ;; window displaying the calendar. | 1374 | ;; window displaying the calendar. |
| 1375 | (when in-calendar-window | 1375 | (when in-calendar-window |
| 1376 | (if (window-iso-combined-p) | 1376 | (if (window-combined-p) |
| 1377 | ;; Adjust the window to exactly fit the displayed calendar. | 1377 | ;; Adjust the window to exactly fit the displayed calendar. |
| 1378 | (fit-window-to-buffer nil nil calendar-minimum-window-height) | 1378 | (fit-window-to-buffer nil nil calendar-minimum-window-height) |
| 1379 | ;; For a full height window or a window that is horizontally | 1379 | ;; For a full height window or a window that is horizontally |
diff --git a/lisp/emulation/viper-cmd.el b/lisp/emulation/viper-cmd.el index 9d0eb6c0d14..359b3ff751d 100644 --- a/lisp/emulation/viper-cmd.el +++ b/lisp/emulation/viper-cmd.el | |||
| @@ -1387,7 +1387,7 @@ as a Meta key and any number of multiple escapes are allowed." | |||
| 1387 | (insert " ")(backward-char 1))) | 1387 | (insert " ")(backward-char 1))) |
| 1388 | (if (= viper-com-point (point)) | 1388 | (if (= viper-com-point (point)) |
| 1389 | (viper-forward-char-carefully)) | 1389 | (viper-forward-char-carefully)) |
| 1390 | (set-mark viper-com-point) | 1390 | (push-mark viper-com-point) |
| 1391 | (if (eq m-com 'viper-next-line-at-bol) | 1391 | (if (eq m-com 'viper-next-line-at-bol) |
| 1392 | (viper-enlarge-region (mark t) (point))) | 1392 | (viper-enlarge-region (mark t) (point))) |
| 1393 | (if (< (point) (mark t)) | 1393 | (if (< (point) (mark t)) |
| @@ -1396,8 +1396,7 @@ as a Meta key and any number of multiple escapes are allowed." | |||
| 1396 | (viper-backward-char-carefully)) ; give back the newline | 1396 | (viper-backward-char-carefully)) ; give back the newline |
| 1397 | (if (eq viper-intermediate-command 'viper-repeat) | 1397 | (if (eq viper-intermediate-command 'viper-repeat) |
| 1398 | (viper-change-subr (mark t) (point)) | 1398 | (viper-change-subr (mark t) (point)) |
| 1399 | (viper-change (mark t) (point)) | 1399 | (viper-change (mark t) (point)))) |
| 1400 | )) | ||
| 1401 | 1400 | ||
| 1402 | ;; this is invoked by viper-substitute-line | 1401 | ;; this is invoked by viper-substitute-line |
| 1403 | (defun viper-exec-Change (m-com com) | 1402 | (defun viper-exec-Change (m-com com) |
diff --git a/lisp/eshell/esh-cmd.el b/lisp/eshell/esh-cmd.el index bdcdc453272..52c8c2ddc20 100644 --- a/lisp/eshell/esh-cmd.el +++ b/lisp/eshell/esh-cmd.el | |||
| @@ -356,35 +356,32 @@ hooks should be run before and after the command." | |||
| 356 | (mapcar | 356 | (mapcar |
| 357 | (function | 357 | (function |
| 358 | (lambda (cmd) | 358 | (lambda (cmd) |
| 359 | (if (or (not (car sep-terms)) | 359 | (setq cmd |
| 360 | (string= (car sep-terms) ";")) | 360 | (if (or (not (car sep-terms)) |
| 361 | (setq cmd | 361 | (string= (car sep-terms) ";")) |
| 362 | (eshell-parse-pipeline cmd (not (car sep-terms)))) | 362 | (eshell-parse-pipeline cmd (not (car sep-terms))) |
| 363 | (setq cmd | 363 | `(eshell-do-subjob |
| 364 | (list 'eshell-do-subjob | 364 | (list ,(eshell-parse-pipeline cmd))))) |
| 365 | (list 'list (eshell-parse-pipeline cmd))))) | ||
| 366 | (setq sep-terms (cdr sep-terms)) | 365 | (setq sep-terms (cdr sep-terms)) |
| 367 | (if eshell-in-pipeline-p | 366 | (if eshell-in-pipeline-p |
| 368 | cmd | 367 | cmd |
| 369 | (list 'eshell-trap-errors cmd)))) | 368 | `(eshell-trap-errors ,cmd)))) |
| 370 | (eshell-separate-commands terms "[&;]" nil 'sep-terms)))) | 369 | (eshell-separate-commands terms "[&;]" nil 'sep-terms)))) |
| 371 | (let ((cmd commands)) | 370 | (let ((cmd commands)) |
| 372 | (while cmd | 371 | (while cmd |
| 373 | (if (cdr cmd) | 372 | (if (cdr cmd) |
| 374 | (setcar cmd (list 'eshell-commands (car cmd)))) | 373 | (setcar cmd `(eshell-commands ,(car cmd)))) |
| 375 | (setq cmd (cdr cmd)))) | 374 | (setq cmd (cdr cmd)))) |
| 376 | (setq commands | 375 | (setq commands |
| 377 | (append (list 'progn) | 376 | `(progn |
| 378 | (if top-level | 377 | ,@(if top-level |
| 379 | (list '(run-hooks 'eshell-pre-command-hook))) | 378 | '((run-hooks 'eshell-pre-command-hook))) |
| 380 | (if (not top-level) | 379 | ,@(if (not top-level) |
| 381 | commands | 380 | commands |
| 382 | (list | 381 | `((catch 'top-level (progn ,@commands)) |
| 383 | (list 'catch (quote 'top-level) | 382 | (run-hooks 'eshell-post-command-hook))))) |
| 384 | (append (list 'progn) commands)) | ||
| 385 | '(run-hooks 'eshell-post-command-hook))))) | ||
| 386 | (if top-level | 383 | (if top-level |
| 387 | (list 'eshell-commands commands) | 384 | `(eshell-commands ,commands) |
| 388 | commands))) | 385 | commands))) |
| 389 | 386 | ||
| 390 | (defun eshell-debug-command (tag subform) | 387 | (defun eshell-debug-command (tag subform) |
| @@ -417,9 +414,8 @@ hooks should be run before and after the command." | |||
| 417 | (while terms | 414 | (while terms |
| 418 | (if (and (listp (car terms)) | 415 | (if (and (listp (car terms)) |
| 419 | (eq (caar terms) 'eshell-as-subcommand)) | 416 | (eq (caar terms) 'eshell-as-subcommand)) |
| 420 | (setcar terms (list 'eshell-convert | 417 | (setcar terms `(eshell-convert |
| 421 | (list 'eshell-command-to-value | 418 | (eshell-command-to-value ,(car terms))))) |
| 422 | (car terms))))) | ||
| 423 | (setq terms (cdr terms)))) | 419 | (setq terms (cdr terms)))) |
| 424 | 420 | ||
| 425 | (defun eshell-rewrite-sexp-command (terms) | 421 | (defun eshell-rewrite-sexp-command (terms) |
| @@ -443,7 +439,7 @@ hooks should be run before and after the command." | |||
| 443 | (cmd (car terms)) | 439 | (cmd (car terms)) |
| 444 | (args (cdr terms))) | 440 | (args (cdr terms))) |
| 445 | (if args | 441 | (if args |
| 446 | (list sym cmd (append (list 'list) (cdr terms))) | 442 | (list sym cmd `(list ,@(cdr terms))) |
| 447 | (list sym cmd)))) | 443 | (list sym cmd)))) |
| 448 | 444 | ||
| 449 | (defvar eshell-command-body) | 445 | (defvar eshell-command-body) |
| @@ -469,62 +465,43 @@ the second is ignored." | |||
| 469 | (eq (car (cadr arg)) 'eshell-command-to-value)) | 465 | (eq (car (cadr arg)) 'eshell-command-to-value)) |
| 470 | (if share-output | 466 | (if share-output |
| 471 | (cadr (cadr arg)) | 467 | (cadr (cadr arg)) |
| 472 | (list 'eshell-commands (cadr (cadr arg)) | 468 | `(eshell-commands ,(cadr (cadr arg)) ,silent)) |
| 473 | silent)) | ||
| 474 | arg)) | 469 | arg)) |
| 475 | 470 | ||
| 471 | (defvar eshell-last-command-status) ;Define in esh-io.el. | ||
| 472 | |||
| 476 | (defun eshell-rewrite-for-command (terms) | 473 | (defun eshell-rewrite-for-command (terms) |
| 477 | "Rewrite a `for' command into its equivalent Eshell command form. | 474 | "Rewrite a `for' command into its equivalent Eshell command form. |
| 478 | Because the implementation of `for' relies upon conditional evaluation | 475 | Because the implementation of `for' relies upon conditional evaluation |
| 479 | of its argument (i.e., use of a Lisp special form), it must be | 476 | of its argument (i.e., use of a Lisp special form), it must be |
| 480 | implemented via rewriting, rather than as a function." | 477 | implemented via rewriting, rather than as a function." |
| 481 | (if (and (stringp (car terms)) | 478 | (if (and (equal (car terms) "for") |
| 482 | (string= (car terms) "for") | 479 | (equal (nth 2 terms) "in")) |
| 483 | (stringp (nth 2 terms)) | ||
| 484 | (string= (nth 2 terms) "in")) | ||
| 485 | (let ((body (car (last terms)))) | 480 | (let ((body (car (last terms)))) |
| 486 | (setcdr (last terms 2) nil) | 481 | (setcdr (last terms 2) nil) |
| 487 | (list | 482 | `(let ((for-items |
| 488 | 'let (list (list 'for-items | 483 | ;; Apparently, eshell-do-eval only works for immutable |
| 489 | (append | 484 | ;; let-bindings, i.e. we cannot use `setq' on `for-items'. |
| 490 | (list 'append) | 485 | ;; Instead we store the list in the car of a cons-cell (which |
| 491 | (mapcar | 486 | ;; acts as a ref-cell) so we can setcar instead of setq. |
| 492 | (function | 487 | (list |
| 493 | (lambda (elem) | 488 | (append |
| 494 | (if (listp elem) | 489 | ,@(mapcar |
| 495 | elem | 490 | (lambda (elem) |
| 496 | (list 'list elem)))) | 491 | (if (listp elem) |
| 497 | (cdr (cddr terms))))) | 492 | elem |
| 498 | (list 'eshell-command-body | 493 | `(list ,elem))) |
| 499 | (list 'quote (list nil))) | 494 | (cdr (cddr terms)))))) |
| 500 | (list 'eshell-test-body | 495 | (eshell-command-body '(nil)) |
| 501 | (list 'quote (list nil)))) | 496 | (eshell-test-body '(nil))) |
| 502 | (list | 497 | (while (consp (car for-items)) |
| 503 | 'progn | 498 | (let ((,(intern (cadr terms)) (caar for-items))) |
| 504 | (list | 499 | (eshell-protect |
| 505 | 'while (list 'car (list 'symbol-value | 500 | ,(eshell-invokify-arg body t))) |
| 506 | (list 'quote 'for-items))) | 501 | (setcar for-items (cdar for-items))) |
| 507 | (list | 502 | (eshell-close-handles |
| 508 | 'progn | 503 | eshell-last-command-status |
| 509 | (list 'let | 504 | (list 'quote eshell-last-command-result)))))) |
| 510 | (list (list (intern (cadr terms)) | ||
| 511 | (list 'car | ||
| 512 | (list 'symbol-value | ||
| 513 | (list 'quote 'for-items))))) | ||
| 514 | (list 'eshell-protect | ||
| 515 | (eshell-invokify-arg body t))) | ||
| 516 | (list 'setcar 'for-items | ||
| 517 | (list 'cadr | ||
| 518 | (list 'symbol-value | ||
| 519 | (list 'quote 'for-items)))) | ||
| 520 | (list 'setcdr 'for-items | ||
| 521 | (list 'cddr | ||
| 522 | (list 'symbol-value | ||
| 523 | (list 'quote 'for-items)))))) | ||
| 524 | (list 'eshell-close-handles | ||
| 525 | 'eshell-last-command-status | ||
| 526 | (list 'list (quote 'quote) | ||
| 527 | 'eshell-last-command-result))))))) | ||
| 528 | 505 | ||
| 529 | (defun eshell-structure-basic-command (func names keyword test body | 506 | (defun eshell-structure-basic-command (func names keyword test body |
| 530 | &optional else vocal-test) | 507 | &optional else vocal-test) |
| @@ -540,8 +517,8 @@ shown, as well as output from the body." | |||
| 540 | ;; that determine the truth of the statement. | 517 | ;; that determine the truth of the statement. |
| 541 | (unless (eq (car test) 'eshell-convert) | 518 | (unless (eq (car test) 'eshell-convert) |
| 542 | (setq test | 519 | (setq test |
| 543 | (list 'progn test | 520 | `(progn ,test |
| 544 | (list 'eshell-exit-success-p)))) | 521 | (eshell-exit-success-p)))) |
| 545 | 522 | ||
| 546 | ;; should we reverse the sense of the test? This depends | 523 | ;; should we reverse the sense of the test? This depends |
| 547 | ;; on the `names' parameter. If it's the symbol nil, yes. | 524 | ;; on the `names' parameter. If it's the symbol nil, yes. |
| @@ -551,20 +528,16 @@ shown, as well as output from the body." | |||
| 551 | (if (or (eq names nil) | 528 | (if (or (eq names nil) |
| 552 | (and (listp names) | 529 | (and (listp names) |
| 553 | (string= keyword (cadr names)))) | 530 | (string= keyword (cadr names)))) |
| 554 | (setq test (list 'not test))) | 531 | (setq test `(not ,test))) |
| 555 | 532 | ||
| 556 | ;; finally, create the form that represents this structured | 533 | ;; finally, create the form that represents this structured |
| 557 | ;; command | 534 | ;; command |
| 558 | (list | 535 | `(let ((eshell-command-body '(nil)) |
| 559 | 'let (list (list 'eshell-command-body | 536 | (eshell-test-body '(nil))) |
| 560 | (list 'quote (list nil))) | 537 | (,func ,test ,body ,else) |
| 561 | (list 'eshell-test-body | 538 | (eshell-close-handles |
| 562 | (list 'quote (list nil)))) | 539 | eshell-last-command-status |
| 563 | (list func test body else) | 540 | (list 'quote eshell-last-command-result)))) |
| 564 | (list 'eshell-close-handles | ||
| 565 | 'eshell-last-command-status | ||
| 566 | (list 'list (quote 'quote) | ||
| 567 | 'eshell-last-command-result)))) | ||
| 568 | 541 | ||
| 569 | (defun eshell-rewrite-while-command (terms) | 542 | (defun eshell-rewrite-while-command (terms) |
| 570 | "Rewrite a `while' command into its equivalent Eshell command form. | 543 | "Rewrite a `while' command into its equivalent Eshell command form. |
| @@ -576,8 +549,8 @@ must be implemented via rewriting, rather than as a function." | |||
| 576 | (eshell-structure-basic-command | 549 | (eshell-structure-basic-command |
| 577 | 'while '("while" "until") (car terms) | 550 | 'while '("while" "until") (car terms) |
| 578 | (eshell-invokify-arg (cadr terms) nil t) | 551 | (eshell-invokify-arg (cadr terms) nil t) |
| 579 | (list 'eshell-protect | 552 | `(eshell-protect |
| 580 | (eshell-invokify-arg (car (last terms)) t))))) | 553 | ,(eshell-invokify-arg (car (last terms)) t))))) |
| 581 | 554 | ||
| 582 | (defun eshell-rewrite-if-command (terms) | 555 | (defun eshell-rewrite-if-command (terms) |
| 583 | "Rewrite an `if' command into its equivalent Eshell command form. | 556 | "Rewrite an `if' command into its equivalent Eshell command form. |
| @@ -589,15 +562,14 @@ must be implemented via rewriting, rather than as a function." | |||
| 589 | (eshell-structure-basic-command | 562 | (eshell-structure-basic-command |
| 590 | 'if '("if" "unless") (car terms) | 563 | 'if '("if" "unless") (car terms) |
| 591 | (eshell-invokify-arg (cadr terms) nil t) | 564 | (eshell-invokify-arg (cadr terms) nil t) |
| 592 | (list 'eshell-protect | 565 | `(eshell-protect |
| 593 | (eshell-invokify-arg | 566 | ,(eshell-invokify-arg (car (last terms (if (= (length terms) 4) 2))) |
| 594 | (if (= (length terms) 4) | 567 | t)) |
| 595 | (car (last terms 2)) | ||
| 596 | (car (last terms))) t)) | ||
| 597 | (if (= (length terms) 4) | 568 | (if (= (length terms) 4) |
| 598 | (list 'eshell-protect | 569 | `(eshell-protect |
| 599 | (eshell-invokify-arg | 570 | ,(eshell-invokify-arg (car (last terms)))) t)))) |
| 600 | (car (last terms)))) t)))) | 571 | |
| 572 | (defvar eshell-last-command-result) ;Defined in esh-io.el. | ||
| 601 | 573 | ||
| 602 | (defun eshell-exit-success-p () | 574 | (defun eshell-exit-success-p () |
| 603 | "Return non-nil if the last command was \"successful\". | 575 | "Return non-nil if the last command was \"successful\". |
| @@ -634,8 +606,7 @@ For an external command, it means an exit code of 0." | |||
| 634 | (if (<= (length pieces) 1) | 606 | (if (<= (length pieces) 1) |
| 635 | (car pieces) | 607 | (car pieces) |
| 636 | (assert (not eshell-in-pipeline-p)) | 608 | (assert (not eshell-in-pipeline-p)) |
| 637 | (list 'eshell-execute-pipeline | 609 | `(eshell-execute-pipeline (quote ,pieces)))))) |
| 638 | (list 'quote pieces)))))) | ||
| 639 | (setq bp (cdr bp)))) | 610 | (setq bp (cdr bp)))) |
| 640 | ;; `results' might be empty; this happens in the case of | 611 | ;; `results' might be empty; this happens in the case of |
| 641 | ;; multi-line input | 612 | ;; multi-line input |
| @@ -648,8 +619,8 @@ For an external command, it means an exit code of 0." | |||
| 648 | (assert (car sep-terms)) | 619 | (assert (car sep-terms)) |
| 649 | (setq final (eshell-structure-basic-command | 620 | (setq final (eshell-structure-basic-command |
| 650 | 'if (string= (car sep-terms) "&&") "if" | 621 | 'if (string= (car sep-terms) "&&") "if" |
| 651 | (list 'eshell-protect (car results)) | 622 | `(eshell-protect ,(car results)) |
| 652 | (list 'eshell-protect final) | 623 | `(eshell-protect ,final) |
| 653 | nil t) | 624 | nil t) |
| 654 | results (cdr results) | 625 | results (cdr results) |
| 655 | sep-terms (cdr sep-terms))) | 626 | sep-terms (cdr sep-terms))) |
| @@ -667,8 +638,8 @@ For an external command, it means an exit code of 0." | |||
| 667 | (throw 'eshell-incomplete ?\{) | 638 | (throw 'eshell-incomplete ?\{) |
| 668 | (when (eshell-arg-delimiter (1+ end)) | 639 | (when (eshell-arg-delimiter (1+ end)) |
| 669 | (prog1 | 640 | (prog1 |
| 670 | (list 'eshell-as-subcommand | 641 | `(eshell-as-subcommand |
| 671 | (eshell-parse-command (cons (1+ (point)) end))) | 642 | ,(eshell-parse-command (cons (1+ (point)) end))) |
| 672 | (goto-char (1+ end)))))))) | 643 | (goto-char (1+ end)))))))) |
| 673 | 644 | ||
| 674 | (defun eshell-parse-lisp-argument () | 645 | (defun eshell-parse-lisp-argument () |
| @@ -683,8 +654,8 @@ For an external command, it means an exit code of 0." | |||
| 683 | (end-of-file | 654 | (end-of-file |
| 684 | (throw 'eshell-incomplete ?\())))) | 655 | (throw 'eshell-incomplete ?\())))) |
| 685 | (if (eshell-arg-delimiter) | 656 | (if (eshell-arg-delimiter) |
| 686 | (list 'eshell-command-to-value | 657 | `(eshell-command-to-value |
| 687 | (list 'eshell-lisp-command (list 'quote obj))) | 658 | (eshell-lisp-command (quote ,obj))) |
| 688 | (ignore (goto-char here)))))) | 659 | (ignore (goto-char here)))))) |
| 689 | 660 | ||
| 690 | (defun eshell-separate-commands (terms separator &optional | 661 | (defun eshell-separate-commands (terms separator &optional |
| @@ -759,7 +730,7 @@ to this hook using `nconc', and *not* `add-hook'. | |||
| 759 | 730 | ||
| 760 | Someday, when Scheme will become the dominant Emacs language, all of | 731 | Someday, when Scheme will become the dominant Emacs language, all of |
| 761 | this grossness will be made to disappear by using `call/cc'..." | 732 | this grossness will be made to disappear by using `call/cc'..." |
| 762 | `(let ((eshell-this-command-hook (list 'ignore))) | 733 | `(let ((eshell-this-command-hook '(ignore))) |
| 763 | (eshell-condition-case err | 734 | (eshell-condition-case err |
| 764 | (prog1 | 735 | (prog1 |
| 765 | ,object | 736 | ,object |
| @@ -769,6 +740,9 @@ this grossness will be made to disappear by using `call/cc'..." | |||
| 769 | (eshell-errorn (error-message-string err)) | 740 | (eshell-errorn (error-message-string err)) |
| 770 | (eshell-close-handles 1))))) | 741 | (eshell-close-handles 1))))) |
| 771 | 742 | ||
| 743 | (defvar eshell-output-handle) ;Defined in esh-io.el. | ||
| 744 | (defvar eshell-error-handle) ;Defined in esh-io.el. | ||
| 745 | |||
| 772 | (defmacro eshell-copy-handles (object) | 746 | (defmacro eshell-copy-handles (object) |
| 773 | "Duplicate current I/O handles, so OBJECT works with its own copy." | 747 | "Duplicate current I/O handles, so OBJECT works with its own copy." |
| 774 | `(let ((eshell-current-handles | 748 | `(let ((eshell-current-handles |
| @@ -793,14 +767,13 @@ This macro calls itself recursively, with NOTFIRST non-nil." | |||
| 793 | (progn | 767 | (progn |
| 794 | ,(when (cdr pipeline) | 768 | ,(when (cdr pipeline) |
| 795 | `(let (nextproc) | 769 | `(let (nextproc) |
| 796 | (progn | 770 | (setq nextproc |
| 797 | (set 'nextproc | 771 | (eshell-do-pipelines (quote ,(cdr pipeline)) t)) |
| 798 | (eshell-do-pipelines (quote ,(cdr pipeline)) t)) | 772 | (eshell-set-output-handle ,eshell-output-handle |
| 799 | (eshell-set-output-handle ,eshell-output-handle | 773 | 'append nextproc) |
| 800 | 'append nextproc) | 774 | (eshell-set-output-handle ,eshell-error-handle |
| 801 | (eshell-set-output-handle ,eshell-error-handle | 775 | 'append nextproc) |
| 802 | 'append nextproc) | 776 | (setq tailproc (or tailproc nextproc)))) |
| 803 | (set 'tailproc (or tailproc nextproc))))) | ||
| 804 | ,(let ((head (car pipeline))) | 777 | ,(let ((head (car pipeline))) |
| 805 | (if (memq (car head) '(let progn)) | 778 | (if (memq (car head) '(let progn)) |
| 806 | (setq head (car (last head)))) | 779 | (setq head (car (last head)))) |
| @@ -824,37 +797,35 @@ Output of each command is passed as input to the next one in the pipeline. | |||
| 824 | This is used on systems where `start-process' is not supported." | 797 | This is used on systems where `start-process' is not supported." |
| 825 | (when (setq pipeline (cadr pipeline)) | 798 | (when (setq pipeline (cadr pipeline)) |
| 826 | `(let (result) | 799 | `(let (result) |
| 827 | (progn | 800 | ,(when (cdr pipeline) |
| 828 | ,(when (cdr pipeline) | 801 | `(let (output-marker) |
| 829 | `(let (output-marker) | 802 | (setq output-marker ,(point-marker)) |
| 830 | (progn | 803 | (eshell-set-output-handle ,eshell-output-handle |
| 831 | (set 'output-marker ,(point-marker)) | 804 | 'append output-marker) |
| 832 | (eshell-set-output-handle ,eshell-output-handle | 805 | (eshell-set-output-handle ,eshell-error-handle |
| 833 | 'append output-marker) | 806 | 'append output-marker))) |
| 834 | (eshell-set-output-handle ,eshell-error-handle | 807 | ,(let ((head (car pipeline))) |
| 835 | 'append output-marker)))) | 808 | (if (memq (car head) '(let progn)) |
| 836 | ,(let ((head (car pipeline))) | 809 | (setq head (car (last head)))) |
| 837 | (if (memq (car head) '(let progn)) | 810 | ;; FIXME: is deferrable significant here? |
| 838 | (setq head (car (last head)))) | 811 | (when (memq (car head) eshell-deferrable-commands) |
| 839 | ;;; FIXME: is deferrable significant here? | 812 | (ignore |
| 840 | (when (memq (car head) eshell-deferrable-commands) | 813 | (setcar head |
| 841 | (ignore | ||
| 842 | (setcar head | ||
| 843 | (intern-soft | 814 | (intern-soft |
| 844 | (concat (symbol-name (car head)) "*")))))) | 815 | (concat (symbol-name (car head)) "*")))))) |
| 845 | ;; The last process in the pipe should get its handles | 816 | ;; The last process in the pipe should get its handles |
| 846 | ;; redirected as we found them before running the pipe. | 817 | ;; redirected as we found them before running the pipe. |
| 847 | ,(if (null (cdr pipeline)) | 818 | ,(if (null (cdr pipeline)) |
| 848 | `(progn | 819 | `(progn |
| 849 | (set 'eshell-current-handles tail-handles) | 820 | (setq eshell-current-handles tail-handles) |
| 850 | (set 'eshell-in-pipeline-p nil))) | 821 | (setq eshell-in-pipeline-p nil))) |
| 851 | (set 'result ,(car pipeline)) | 822 | (setq result ,(car pipeline)) |
| 852 | ;; tailproc gets the result of the last successful process in | 823 | ;; tailproc gets the result of the last successful process in |
| 853 | ;; the pipeline. | 824 | ;; the pipeline. |
| 854 | (set 'tailproc (or result tailproc)) | 825 | (setq tailproc (or result tailproc)) |
| 855 | ,(if (cdr pipeline) | 826 | ,(if (cdr pipeline) |
| 856 | `(eshell-do-pipelines-synchronously (quote ,(cdr pipeline)))) | 827 | `(eshell-do-pipelines-synchronously (quote ,(cdr pipeline)))) |
| 857 | result)))) | 828 | result))) |
| 858 | 829 | ||
| 859 | (defalias 'eshell-process-identity 'identity) | 830 | (defalias 'eshell-process-identity 'identity) |
| 860 | 831 | ||
| @@ -965,14 +936,12 @@ at the moment are: | |||
| 965 | ;; we can just stick the new command at the end of the current | 936 | ;; we can just stick the new command at the end of the current |
| 966 | ;; one, and everything will happen as it should | 937 | ;; one, and everything will happen as it should |
| 967 | (setcdr (last (cdr eshell-current-command)) | 938 | (setcdr (last (cdr eshell-current-command)) |
| 968 | (list (list 'let '((here (and (eobp) (point)))) | 939 | (list `(let ((here (and (eobp) (point)))) |
| 969 | (and input | 940 | ,(and input |
| 970 | (list 'insert-and-inherit | 941 | `(insert-and-inherit ,(concat input "\n"))) |
| 971 | (concat input "\n"))) | 942 | (if here |
| 972 | '(if here | 943 | (eshell-update-markers here)) |
| 973 | (eshell-update-markers here)) | 944 | (eshell-do-eval ',command)))) |
| 974 | (list 'eshell-do-eval | ||
| 975 | (list 'quote command))))) | ||
| 976 | (and eshell-debug-command | 945 | (and eshell-debug-command |
| 977 | (with-current-buffer (get-buffer-create "*eshell last cmd*") | 946 | (with-current-buffer (get-buffer-create "*eshell last cmd*") |
| 978 | (erase-buffer) | 947 | (erase-buffer) |
| @@ -1016,6 +985,7 @@ at the moment are: | |||
| 1016 | 985 | ||
| 1017 | (defmacro eshell-manipulate (tag &rest commands) | 986 | (defmacro eshell-manipulate (tag &rest commands) |
| 1018 | "Manipulate a COMMAND form, with TAG as a debug identifier." | 987 | "Manipulate a COMMAND form, with TAG as a debug identifier." |
| 988 | (declare (indent 1)) | ||
| 1019 | ;; Check `bound'ness since at compile time the code until here has not | 989 | ;; Check `bound'ness since at compile time the code until here has not |
| 1020 | ;; executed yet. | 990 | ;; executed yet. |
| 1021 | (if (not (and (boundp 'eshell-debug-command) eshell-debug-command)) | 991 | (if (not (and (boundp 'eshell-debug-command) eshell-debug-command)) |
| @@ -1025,39 +995,13 @@ at the moment are: | |||
| 1025 | ,@commands | 995 | ,@commands |
| 1026 | (eshell-debug-command ,(concat "done " (eval tag)) form)))) | 996 | (eshell-debug-command ,(concat "done " (eval tag)) form)))) |
| 1027 | 997 | ||
| 1028 | (put 'eshell-manipulate 'lisp-indent-function 1) | ||
| 1029 | |||
| 1030 | ;; eshell-lookup-function, eshell-functionp, and eshell-macrop taken | ||
| 1031 | ;; from edebug | ||
| 1032 | |||
| 1033 | (defsubst eshell-lookup-function (object) | ||
| 1034 | "Return the ultimate function definition of OBJECT." | ||
| 1035 | (while (and (symbolp object) (fboundp object)) | ||
| 1036 | (setq object (symbol-function object))) | ||
| 1037 | object) | ||
| 1038 | |||
| 1039 | (defconst function-p-func | ||
| 1040 | (if (fboundp 'compiled-function-p) | ||
| 1041 | 'compiled-function-p | ||
| 1042 | 'byte-code-function-p)) | ||
| 1043 | |||
| 1044 | (defsubst eshell-functionp (object) | ||
| 1045 | "Returns the function named by OBJECT, or nil if it is not a function." | ||
| 1046 | (setq object (eshell-lookup-function object)) | ||
| 1047 | (if (or (subrp object) | ||
| 1048 | (funcall function-p-func object) | ||
| 1049 | (and (listp object) | ||
| 1050 | (eq (car object) 'lambda) | ||
| 1051 | (listp (car (cdr object))))) | ||
| 1052 | object)) | ||
| 1053 | |||
| 1054 | (defsubst eshell-macrop (object) | 998 | (defsubst eshell-macrop (object) |
| 1055 | "Return t if OBJECT is a macro or nil otherwise." | 999 | "Return t if OBJECT is a macro or nil otherwise." |
| 1056 | (setq object (eshell-lookup-function object)) | 1000 | (and (symbolp object) (fboundp object) |
| 1057 | (if (and (listp object) | 1001 | (setq object (indirect-function object)) |
| 1058 | (eq 'macro (car object)) | 1002 | (listp object) |
| 1059 | (eshell-functionp (cdr object))) | 1003 | (eq 'macro (car object)) |
| 1060 | t)) | 1004 | (functionp (cdr object)))) |
| 1061 | 1005 | ||
| 1062 | (defun eshell-do-eval (form &optional synchronous-p) | 1006 | (defun eshell-do-eval (form &optional synchronous-p) |
| 1063 | "Evaluate form, simplifying it as we go. | 1007 | "Evaluate form, simplifying it as we go. |
| @@ -1093,7 +1037,10 @@ be finished later after the completion of an asynchronous subprocess." | |||
| 1093 | (unless (car eshell-test-body) | 1037 | (unless (car eshell-test-body) |
| 1094 | (setcar eshell-test-body (eshell-copy-tree (car args)))) | 1038 | (setcar eshell-test-body (eshell-copy-tree (car args)))) |
| 1095 | (while (cadr (eshell-do-eval (car eshell-test-body))) | 1039 | (while (cadr (eshell-do-eval (car eshell-test-body))) |
| 1096 | (setcar eshell-command-body (eshell-copy-tree (cadr args))) | 1040 | (setcar eshell-command-body |
| 1041 | (if (cddr args) | ||
| 1042 | `(progn ,@(eshell-copy-tree (cdr args))) | ||
| 1043 | (eshell-copy-tree (cadr args)))) | ||
| 1097 | (eshell-do-eval (car eshell-command-body) synchronous-p) | 1044 | (eshell-do-eval (car eshell-command-body) synchronous-p) |
| 1098 | (setcar eshell-command-body nil) | 1045 | (setcar eshell-command-body nil) |
| 1099 | (setcar eshell-test-body (eshell-copy-tree (car args)))) | 1046 | (setcar eshell-test-body (eshell-copy-tree (car args)))) |
| @@ -1107,9 +1054,11 @@ be finished later after the completion of an asynchronous subprocess." | |||
| 1107 | (eshell-do-eval (car eshell-command-body))) | 1054 | (eshell-do-eval (car eshell-command-body))) |
| 1108 | (unless (car eshell-test-body) | 1055 | (unless (car eshell-test-body) |
| 1109 | (setcar eshell-test-body (eshell-copy-tree (car args)))) | 1056 | (setcar eshell-test-body (eshell-copy-tree (car args)))) |
| 1110 | (if (cadr (eshell-do-eval (car eshell-test-body))) | 1057 | (setcar eshell-command-body |
| 1111 | (setcar eshell-command-body (eshell-copy-tree (cadr args))) | 1058 | (eshell-copy-tree |
| 1112 | (setcar eshell-command-body (eshell-copy-tree (car (cddr args))))) | 1059 | (if (cadr (eshell-do-eval (car eshell-test-body))) |
| 1060 | (cadr args) | ||
| 1061 | (car (cddr args))))) | ||
| 1113 | (eshell-do-eval (car eshell-command-body) synchronous-p)) | 1062 | (eshell-do-eval (car eshell-command-body) synchronous-p)) |
| 1114 | (setcar eshell-command-body nil) | 1063 | (setcar eshell-command-body nil) |
| 1115 | (setcar eshell-test-body nil)) | 1064 | (setcar eshell-test-body nil)) |
| @@ -1140,9 +1089,7 @@ be finished later after the completion of an asynchronous subprocess." | |||
| 1140 | (setq args (cdr args))) | 1089 | (setq args (cdr args))) |
| 1141 | (unless (eq (caar args) 'eshell-do-eval) | 1090 | (unless (eq (caar args) 'eshell-do-eval) |
| 1142 | (eshell-manipulate "handling special form" | 1091 | (eshell-manipulate "handling special form" |
| 1143 | (setcar args (list 'eshell-do-eval | 1092 | (setcar args `(eshell-do-eval ',(car args) ,synchronous-p)))) |
| 1144 | (list 'quote (car args)) | ||
| 1145 | synchronous-p)))) | ||
| 1146 | (eval form)) | 1093 | (eval form)) |
| 1147 | (t | 1094 | (t |
| 1148 | (if (and args (not (memq (car form) '(run-hooks)))) | 1095 | (if (and args (not (memq (car form) '(run-hooks)))) |
| @@ -1362,6 +1309,8 @@ messages, and errors." | |||
| 1362 | "Evaluate FORM, trapping errors and returning them." | 1309 | "Evaluate FORM, trapping errors and returning them." |
| 1363 | (eshell-eval* 'eshell-printn 'eshell-errorn form)) | 1310 | (eshell-eval* 'eshell-printn 'eshell-errorn form)) |
| 1364 | 1311 | ||
| 1312 | (defvar eshell-last-output-end) ;Defined in esh-mode.el. | ||
| 1313 | |||
| 1365 | (defun eshell-lisp-command (object &optional args) | 1314 | (defun eshell-lisp-command (object &optional args) |
| 1366 | "Insert Lisp OBJECT, using ARGS if a function." | 1315 | "Insert Lisp OBJECT, using ARGS if a function." |
| 1367 | (catch 'eshell-external ; deferred to an external command | 1316 | (catch 'eshell-external ; deferred to an external command |
diff --git a/lisp/help.el b/lisp/help.el index 508a4e3262c..bc3d863f357 100644 --- a/lisp/help.el +++ b/lisp/help.el | |||
| @@ -1003,7 +1003,7 @@ than `window-min-height'. Do nothing if the selected window is | |||
| 1003 | not vertically combined or some of its contents are scrolled out | 1003 | not vertically combined or some of its contents are scrolled out |
| 1004 | of view." | 1004 | of view." |
| 1005 | (when (and (pos-visible-in-window-p (point-min)) | 1005 | (when (and (pos-visible-in-window-p (point-min)) |
| 1006 | (window-iso-combined-p)) | 1006 | (window-combined-p)) |
| 1007 | (fit-window-to-buffer | 1007 | (fit-window-to-buffer |
| 1008 | nil | 1008 | nil |
| 1009 | (if (functionp temp-buffer-max-height) | 1009 | (if (functionp temp-buffer-max-height) |
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 30fb3f2b004..0ce53fcb9a3 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | 5 | ||
| 6 | ;;;### (autoloads (5x5-crack 5x5-crack-xor-mutate 5x5-crack-mutating-best | 6 | ;;;### (autoloads (5x5-crack 5x5-crack-xor-mutate 5x5-crack-mutating-best |
| 7 | ;;;;;; 5x5-crack-mutating-current 5x5-crack-randomly 5x5) "5x5" | 7 | ;;;;;; 5x5-crack-mutating-current 5x5-crack-randomly 5x5) "5x5" |
| 8 | ;;;;;; "play/5x5.el" (19968 28627)) | 8 | ;;;;;; "play/5x5.el" (20119 34052)) |
| 9 | ;;; Generated autoloads from play/5x5.el | 9 | ;;; Generated autoloads from play/5x5.el |
| 10 | 10 | ||
| 11 | (autoload '5x5 "5x5" "\ | 11 | (autoload '5x5 "5x5" "\ |
| @@ -68,7 +68,7 @@ should return a grid vector array that is the new solution. | |||
| 68 | ;;;*** | 68 | ;;;*** |
| 69 | 69 | ||
| 70 | ;;;### (autoloads (ada-mode ada-add-extensions) "ada-mode" "progmodes/ada-mode.el" | 70 | ;;;### (autoloads (ada-mode ada-add-extensions) "ada-mode" "progmodes/ada-mode.el" |
| 71 | ;;;;;; (19890 42850)) | 71 | ;;;;;; (20119 34052)) |
| 72 | ;;; Generated autoloads from progmodes/ada-mode.el | 72 | ;;; Generated autoloads from progmodes/ada-mode.el |
| 73 | 73 | ||
| 74 | (autoload 'ada-add-extensions "ada-mode" "\ | 74 | (autoload 'ada-add-extensions "ada-mode" "\ |
| @@ -88,7 +88,7 @@ Ada mode is the major mode for editing Ada code. | |||
| 88 | ;;;*** | 88 | ;;;*** |
| 89 | 89 | ||
| 90 | ;;;### (autoloads (ada-header) "ada-stmt" "progmodes/ada-stmt.el" | 90 | ;;;### (autoloads (ada-header) "ada-stmt" "progmodes/ada-stmt.el" |
| 91 | ;;;;;; (19845 45374)) | 91 | ;;;;;; (20119 34052)) |
| 92 | ;;; Generated autoloads from progmodes/ada-stmt.el | 92 | ;;; Generated autoloads from progmodes/ada-stmt.el |
| 93 | 93 | ||
| 94 | (autoload 'ada-header "ada-stmt" "\ | 94 | (autoload 'ada-header "ada-stmt" "\ |
| @@ -99,7 +99,7 @@ Insert a descriptive header at the top of the file. | |||
| 99 | ;;;*** | 99 | ;;;*** |
| 100 | 100 | ||
| 101 | ;;;### (autoloads (ada-find-file) "ada-xref" "progmodes/ada-xref.el" | 101 | ;;;### (autoloads (ada-find-file) "ada-xref" "progmodes/ada-xref.el" |
| 102 | ;;;;;; (19890 42850)) | 102 | ;;;;;; (20140 44371)) |
| 103 | ;;; Generated autoloads from progmodes/ada-xref.el | 103 | ;;; Generated autoloads from progmodes/ada-xref.el |
| 104 | 104 | ||
| 105 | (autoload 'ada-find-file "ada-xref" "\ | 105 | (autoload 'ada-find-file "ada-xref" "\ |
| @@ -114,7 +114,7 @@ Completion is available. | |||
| 114 | ;;;;;; add-change-log-entry-other-window add-change-log-entry find-change-log | 114 | ;;;;;; add-change-log-entry-other-window add-change-log-entry find-change-log |
| 115 | ;;;;;; prompt-for-change-log-name add-log-mailing-address add-log-full-name | 115 | ;;;;;; prompt-for-change-log-name add-log-mailing-address add-log-full-name |
| 116 | ;;;;;; add-log-current-defun-function) "add-log" "vc/add-log.el" | 116 | ;;;;;; add-log-current-defun-function) "add-log" "vc/add-log.el" |
| 117 | ;;;;;; (20033 22846)) | 117 | ;;;;;; (20119 34052)) |
| 118 | ;;; Generated autoloads from vc/add-log.el | 118 | ;;; Generated autoloads from vc/add-log.el |
| 119 | 119 | ||
| 120 | (put 'change-log-default-name 'safe-local-variable 'string-or-null-p) | 120 | (put 'change-log-default-name 'safe-local-variable 'string-or-null-p) |
| @@ -253,7 +253,7 @@ old-style time formats for entries are supported. | |||
| 253 | 253 | ||
| 254 | ;;;### (autoloads (defadvice ad-activate ad-add-advice ad-disable-advice | 254 | ;;;### (autoloads (defadvice ad-activate ad-add-advice ad-disable-advice |
| 255 | ;;;;;; ad-enable-advice ad-default-compilation-action ad-redefinition-action) | 255 | ;;;;;; ad-enable-advice ad-default-compilation-action ad-redefinition-action) |
| 256 | ;;;;;; "advice" "emacs-lisp/advice.el" (19931 11784)) | 256 | ;;;;;; "advice" "emacs-lisp/advice.el" (20119 34052)) |
| 257 | ;;; Generated autoloads from emacs-lisp/advice.el | 257 | ;;; Generated autoloads from emacs-lisp/advice.el |
| 258 | 258 | ||
| 259 | (defvar ad-redefinition-action 'warn "\ | 259 | (defvar ad-redefinition-action 'warn "\ |
| @@ -398,7 +398,7 @@ usage: (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...) | |||
| 398 | 398 | ||
| 399 | ;;;### (autoloads (align-newline-and-indent align-unhighlight-rule | 399 | ;;;### (autoloads (align-newline-and-indent align-unhighlight-rule |
| 400 | ;;;;;; align-highlight-rule align-current align-entire align-regexp | 400 | ;;;;;; align-highlight-rule align-current align-entire align-regexp |
| 401 | ;;;;;; align) "align" "align.el" (19886 45771)) | 401 | ;;;;;; align) "align" "align.el" (20119 34052)) |
| 402 | ;;; Generated autoloads from align.el | 402 | ;;; Generated autoloads from align.el |
| 403 | 403 | ||
| 404 | (autoload 'align "align" "\ | 404 | (autoload 'align "align" "\ |
| @@ -489,7 +489,7 @@ A replacement function for `newline-and-indent', aligning as it goes. | |||
| 489 | 489 | ||
| 490 | ;;;### (autoloads (outlineify-sticky allout-mode allout-mode-p allout-auto-activation | 490 | ;;;### (autoloads (outlineify-sticky allout-mode allout-mode-p allout-auto-activation |
| 491 | ;;;;;; allout-setup allout-auto-activation-helper) "allout" "allout.el" | 491 | ;;;;;; allout-setup allout-auto-activation-helper) "allout" "allout.el" |
| 492 | ;;;;;; (20094 65493)) | 492 | ;;;;;; (20126 50779)) |
| 493 | ;;; Generated autoloads from allout.el | 493 | ;;; Generated autoloads from allout.el |
| 494 | 494 | ||
| 495 | (autoload 'allout-auto-activation-helper "allout" "\ | 495 | (autoload 'allout-auto-activation-helper "allout" "\ |
| @@ -569,17 +569,19 @@ Return t if `allout-mode' is active in current buffer. | |||
| 569 | \(fn)" nil (quote macro)) | 569 | \(fn)" nil (quote macro)) |
| 570 | 570 | ||
| 571 | (autoload 'allout-mode "allout" "\ | 571 | (autoload 'allout-mode "allout" "\ |
| 572 | Toggle minor mode for controlling exposure and editing of text outlines. | 572 | Toggle Allout outline mode. |
| 573 | \\<allout-mode-map-value> | 573 | With a prefix argument ARG, enable Allout outline mode if ARG is |
| 574 | 574 | positive, and disable it otherwise. If called from Lisp, enable | |
| 575 | Allout outline mode always runs as a minor mode. | 575 | the mode if ARG is omitted or nil. |
| 576 | 576 | ||
| 577 | Allout outline mode provides extensive outline oriented | 577 | \\<allout-mode-map-value> |
| 578 | formatting and manipulation. It enables structural editing of | 578 | Allout outline mode is a minor mode that provides extensive |
| 579 | outlines, as well as navigation and exposure. It also is | 579 | outline oriented formatting and manipulation. It enables |
| 580 | specifically aimed at accommodating syntax-sensitive text like | 580 | structural editing of outlines, as well as navigation and |
| 581 | programming languages. (For example, see the allout code itself, | 581 | exposure. It also is specifically aimed at accommodating |
| 582 | which is organized as an allout outline.) | 582 | syntax-sensitive text like programming languages. (For example, |
| 583 | see the allout code itself, which is organized as an allout | ||
| 584 | outline.) | ||
| 583 | 585 | ||
| 584 | In addition to typical outline navigation and exposure, allout includes: | 586 | In addition to typical outline navigation and exposure, allout includes: |
| 585 | 587 | ||
| @@ -848,7 +850,7 @@ for details on preparing emacs for automatic allout activation. | |||
| 848 | 850 | ||
| 849 | ;;;### (autoloads (allout-widgets-mode allout-widgets-auto-activation | 851 | ;;;### (autoloads (allout-widgets-mode allout-widgets-auto-activation |
| 850 | ;;;;;; allout-widgets-setup allout-widgets) "allout-widgets" "allout-widgets.el" | 852 | ;;;;;; allout-widgets-setup allout-widgets) "allout-widgets" "allout-widgets.el" |
| 851 | ;;;;;; (19988 13913)) | 853 | ;;;;;; (20126 50769)) |
| 852 | ;;; Generated autoloads from allout-widgets.el | 854 | ;;; Generated autoloads from allout-widgets.el |
| 853 | 855 | ||
| 854 | (let ((loads (get 'allout-widgets 'custom-loads))) (if (member '"allout-widgets" loads) nil (put 'allout-widgets 'custom-loads (cons '"allout-widgets" loads)))) | 856 | (let ((loads (get 'allout-widgets 'custom-loads))) (if (member '"allout-widgets" loads) nil (put 'allout-widgets 'custom-loads (cons '"allout-widgets" loads)))) |
| @@ -880,13 +882,14 @@ See `allout-widgets-mode' for allout widgets mode features.") | |||
| 880 | (put 'allout-widgets-mode-inhibit 'safe-local-variable (if (fboundp 'booleanp) 'booleanp (lambda (x) (member x '(t nil))))) | 882 | (put 'allout-widgets-mode-inhibit 'safe-local-variable (if (fboundp 'booleanp) 'booleanp (lambda (x) (member x '(t nil))))) |
| 881 | 883 | ||
| 882 | (autoload 'allout-widgets-mode "allout-widgets" "\ | 884 | (autoload 'allout-widgets-mode "allout-widgets" "\ |
| 883 | Allout-mode extension, providing graphical decoration of outline structure. | 885 | Toggle Allout Widgets mode. |
| 884 | 886 | With a prefix argument ARG, enable Allout Widgets mode if ARG is | |
| 885 | This is meant to operate along with allout-mode, via `allout-mode-hook'. | 887 | positive, and disable it otherwise. If called from Lisp, enable |
| 888 | the mode if ARG is omitted or nil. | ||
| 886 | 889 | ||
| 887 | If optional argument ARG is greater than 0, enable. | 890 | Allout Widgets mode is an extension of Allout mode that provides |
| 888 | If optional argument ARG is less than 0, disable. | 891 | graphical decoration of outline structure. It is meant to |
| 889 | Anything else, toggle between active and inactive. | 892 | operate along with `allout-mode', via `allout-mode-hook'. |
| 890 | 893 | ||
| 891 | The graphics include: | 894 | The graphics include: |
| 892 | 895 | ||
| @@ -907,7 +910,7 @@ outline hot-spot navigation (see `allout-mode'). | |||
| 907 | ;;;*** | 910 | ;;;*** |
| 908 | 911 | ||
| 909 | ;;;### (autoloads (ange-ftp-hook-function ange-ftp-reread-dir) "ange-ftp" | 912 | ;;;### (autoloads (ange-ftp-hook-function ange-ftp-reread-dir) "ange-ftp" |
| 910 | ;;;;;; "net/ange-ftp.el" (19977 43600)) | 913 | ;;;;;; "net/ange-ftp.el" (20119 34052)) |
| 911 | ;;; Generated autoloads from net/ange-ftp.el | 914 | ;;; Generated autoloads from net/ange-ftp.el |
| 912 | 915 | ||
| 913 | (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) | 916 | (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) |
| @@ -929,7 +932,7 @@ directory, so that Emacs will know its current contents. | |||
| 929 | ;;;*** | 932 | ;;;*** |
| 930 | 933 | ||
| 931 | ;;;### (autoloads (animate-birthday-present animate-sequence animate-string) | 934 | ;;;### (autoloads (animate-birthday-present animate-sequence animate-string) |
| 932 | ;;;;;; "animate" "play/animate.el" (19986 58615)) | 935 | ;;;;;; "animate" "play/animate.el" (20119 34052)) |
| 933 | ;;; Generated autoloads from play/animate.el | 936 | ;;; Generated autoloads from play/animate.el |
| 934 | 937 | ||
| 935 | (autoload 'animate-string "animate" "\ | 938 | (autoload 'animate-string "animate" "\ |
| @@ -962,7 +965,7 @@ the buffer *Birthday-Present-for-Name*. | |||
| 962 | ;;;*** | 965 | ;;;*** |
| 963 | 966 | ||
| 964 | ;;;### (autoloads (ansi-color-process-output ansi-color-for-comint-mode-on) | 967 | ;;;### (autoloads (ansi-color-process-output ansi-color-for-comint-mode-on) |
| 965 | ;;;;;; "ansi-color" "ansi-color.el" (19854 41422)) | 968 | ;;;;;; "ansi-color" "ansi-color.el" (20119 34052)) |
| 966 | ;;; Generated autoloads from ansi-color.el | 969 | ;;; Generated autoloads from ansi-color.el |
| 967 | 970 | ||
| 968 | (autoload 'ansi-color-for-comint-mode-on "ansi-color" "\ | 971 | (autoload 'ansi-color-for-comint-mode-on "ansi-color" "\ |
| @@ -988,7 +991,7 @@ This is a good function to put in `comint-output-filter-functions'. | |||
| 988 | ;;;*** | 991 | ;;;*** |
| 989 | 992 | ||
| 990 | ;;;### (autoloads (antlr-set-tabs antlr-mode antlr-show-makefile-rules) | 993 | ;;;### (autoloads (antlr-set-tabs antlr-mode antlr-show-makefile-rules) |
| 991 | ;;;;;; "antlr-mode" "progmodes/antlr-mode.el" (19890 42850)) | 994 | ;;;;;; "antlr-mode" "progmodes/antlr-mode.el" (20119 34052)) |
| 992 | ;;; Generated autoloads from progmodes/antlr-mode.el | 995 | ;;; Generated autoloads from progmodes/antlr-mode.el |
| 993 | 996 | ||
| 994 | (autoload 'antlr-show-makefile-rules "antlr-mode" "\ | 997 | (autoload 'antlr-show-makefile-rules "antlr-mode" "\ |
| @@ -1024,7 +1027,7 @@ Used in `antlr-mode'. Also a useful function in `java-mode-hook'. | |||
| 1024 | ;;;*** | 1027 | ;;;*** |
| 1025 | 1028 | ||
| 1026 | ;;;### (autoloads (appt-activate appt-add) "appt" "calendar/appt.el" | 1029 | ;;;### (autoloads (appt-activate appt-add) "appt" "calendar/appt.el" |
| 1027 | ;;;;;; (19956 37456)) | 1030 | ;;;;;; (20119 34052)) |
| 1028 | ;;; Generated autoloads from calendar/appt.el | 1031 | ;;; Generated autoloads from calendar/appt.el |
| 1029 | 1032 | ||
| 1030 | (autoload 'appt-add "appt" "\ | 1033 | (autoload 'appt-add "appt" "\ |
| @@ -1047,7 +1050,7 @@ ARG is positive, otherwise off. | |||
| 1047 | 1050 | ||
| 1048 | ;;;### (autoloads (apropos-documentation apropos-value apropos-library | 1051 | ;;;### (autoloads (apropos-documentation apropos-value apropos-library |
| 1049 | ;;;;;; apropos apropos-documentation-property apropos-command apropos-variable | 1052 | ;;;;;; apropos apropos-documentation-property apropos-command apropos-variable |
| 1050 | ;;;;;; apropos-read-pattern) "apropos" "apropos.el" (19909 7240)) | 1053 | ;;;;;; apropos-read-pattern) "apropos" "apropos.el" (20119 34052)) |
| 1051 | ;;; Generated autoloads from apropos.el | 1054 | ;;; Generated autoloads from apropos.el |
| 1052 | 1055 | ||
| 1053 | (autoload 'apropos-read-pattern "apropos" "\ | 1056 | (autoload 'apropos-read-pattern "apropos" "\ |
| @@ -1150,8 +1153,8 @@ Returns list of symbols and documentation found. | |||
| 1150 | 1153 | ||
| 1151 | ;;;*** | 1154 | ;;;*** |
| 1152 | 1155 | ||
| 1153 | ;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (20065 | 1156 | ;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (20119 |
| 1154 | ;;;;;; 65310)) | 1157 | ;;;;;; 34052)) |
| 1155 | ;;; Generated autoloads from arc-mode.el | 1158 | ;;; Generated autoloads from arc-mode.el |
| 1156 | 1159 | ||
| 1157 | (autoload 'archive-mode "arc-mode" "\ | 1160 | (autoload 'archive-mode "arc-mode" "\ |
| @@ -1171,7 +1174,7 @@ archive. | |||
| 1171 | 1174 | ||
| 1172 | ;;;*** | 1175 | ;;;*** |
| 1173 | 1176 | ||
| 1174 | ;;;### (autoloads (array-mode) "array" "array.el" (19845 45374)) | 1177 | ;;;### (autoloads (array-mode) "array" "array.el" (20119 34052)) |
| 1175 | ;;; Generated autoloads from array.el | 1178 | ;;; Generated autoloads from array.el |
| 1176 | 1179 | ||
| 1177 | (autoload 'array-mode "array" "\ | 1180 | (autoload 'array-mode "array" "\ |
| @@ -1242,8 +1245,8 @@ Entering array mode calls the function `array-mode-hook'. | |||
| 1242 | 1245 | ||
| 1243 | ;;;*** | 1246 | ;;;*** |
| 1244 | 1247 | ||
| 1245 | ;;;### (autoloads (artist-mode) "artist" "textmodes/artist.el" (19914 | 1248 | ;;;### (autoloads (artist-mode) "artist" "textmodes/artist.el" (20119 |
| 1246 | ;;;;;; 25180)) | 1249 | ;;;;;; 34052)) |
| 1247 | ;;; Generated autoloads from textmodes/artist.el | 1250 | ;;; Generated autoloads from textmodes/artist.el |
| 1248 | 1251 | ||
| 1249 | (autoload 'artist-mode "artist" "\ | 1252 | (autoload 'artist-mode "artist" "\ |
| @@ -1449,8 +1452,8 @@ Keymap summary | |||
| 1449 | 1452 | ||
| 1450 | ;;;*** | 1453 | ;;;*** |
| 1451 | 1454 | ||
| 1452 | ;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (19890 | 1455 | ;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (20119 |
| 1453 | ;;;;;; 42850)) | 1456 | ;;;;;; 34052)) |
| 1454 | ;;; Generated autoloads from progmodes/asm-mode.el | 1457 | ;;; Generated autoloads from progmodes/asm-mode.el |
| 1455 | 1458 | ||
| 1456 | (autoload 'asm-mode "asm-mode" "\ | 1459 | (autoload 'asm-mode "asm-mode" "\ |
| @@ -1478,7 +1481,7 @@ Special commands: | |||
| 1478 | ;;;*** | 1481 | ;;;*** |
| 1479 | 1482 | ||
| 1480 | ;;;### (autoloads (auth-source-cache-expiry) "auth-source" "gnus/auth-source.el" | 1483 | ;;;### (autoloads (auth-source-cache-expiry) "auth-source" "gnus/auth-source.el" |
| 1481 | ;;;;;; (20089 47591)) | 1484 | ;;;;;; (20119 34052)) |
| 1482 | ;;; Generated autoloads from gnus/auth-source.el | 1485 | ;;; Generated autoloads from gnus/auth-source.el |
| 1483 | 1486 | ||
| 1484 | (defvar auth-source-cache-expiry 7200 "\ | 1487 | (defvar auth-source-cache-expiry 7200 "\ |
| @@ -1491,7 +1494,7 @@ let-binding.") | |||
| 1491 | ;;;*** | 1494 | ;;;*** |
| 1492 | 1495 | ||
| 1493 | ;;;### (autoloads (autoarg-kp-mode autoarg-mode) "autoarg" "autoarg.el" | 1496 | ;;;### (autoloads (autoarg-kp-mode autoarg-mode) "autoarg" "autoarg.el" |
| 1494 | ;;;;;; (19845 45374)) | 1497 | ;;;;;; (20126 50800)) |
| 1495 | ;;; Generated autoloads from autoarg.el | 1498 | ;;; Generated autoloads from autoarg.el |
| 1496 | 1499 | ||
| 1497 | (defvar autoarg-mode nil "\ | 1500 | (defvar autoarg-mode nil "\ |
| @@ -1501,15 +1504,19 @@ See the command `autoarg-mode' for a description of this minor mode.") | |||
| 1501 | (custom-autoload 'autoarg-mode "autoarg" nil) | 1504 | (custom-autoload 'autoarg-mode "autoarg" nil) |
| 1502 | 1505 | ||
| 1503 | (autoload 'autoarg-mode "autoarg" "\ | 1506 | (autoload 'autoarg-mode "autoarg" "\ |
| 1504 | Toggle Autoarg minor mode globally. | 1507 | Toggle Autoarg mode, a global minor mode. |
| 1505 | With ARG, turn Autoarg mode on if ARG is positive, off otherwise. | 1508 | With a prefix argument ARG, enable Autoarg mode if ARG is |
| 1509 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 1510 | the mode if ARG is omitted or nil. | ||
| 1511 | |||
| 1506 | \\<autoarg-mode-map> | 1512 | \\<autoarg-mode-map> |
| 1507 | In Autoarg mode digits are bound to `digit-argument' -- i.e. they | 1513 | In Autoarg mode, digits are bound to `digit-argument', i.e. they |
| 1508 | supply prefix arguments as C-DIGIT and M-DIGIT normally do -- and | 1514 | supply prefix arguments as C-DIGIT and M-DIGIT normally do. |
| 1509 | C-DIGIT inserts DIGIT. \\[autoarg-terminate] terminates the prefix sequence | 1515 | Furthermore, C-DIGIT inserts DIGIT. |
| 1510 | and inserts the digits of the autoarg sequence into the buffer. | 1516 | \\[autoarg-terminate] terminates the prefix sequence and inserts |
| 1511 | Without a numeric prefix arg the normal binding of \\[autoarg-terminate] is | 1517 | the digits of the autoarg sequence into the buffer. |
| 1512 | invoked, i.e. what it would be with Autoarg mode off. | 1518 | Without a numeric prefix arg, the normal binding of \\[autoarg-terminate] |
| 1519 | is invoked, i.e. what it would be with Autoarg mode off. | ||
| 1513 | 1520 | ||
| 1514 | For example: | 1521 | For example: |
| 1515 | `6 9 \\[autoarg-terminate]' inserts `69' into the buffer, as does `C-6 C-9'. | 1522 | `6 9 \\[autoarg-terminate]' inserts `69' into the buffer, as does `C-6 C-9'. |
| @@ -1532,11 +1539,14 @@ or call the function `autoarg-kp-mode'.") | |||
| 1532 | (custom-autoload 'autoarg-kp-mode "autoarg" nil) | 1539 | (custom-autoload 'autoarg-kp-mode "autoarg" nil) |
| 1533 | 1540 | ||
| 1534 | (autoload 'autoarg-kp-mode "autoarg" "\ | 1541 | (autoload 'autoarg-kp-mode "autoarg" "\ |
| 1535 | Toggle Autoarg-KP minor mode globally. | 1542 | Toggle Autoarg-KP mode, a global minor mode. |
| 1536 | With ARG, turn Autoarg mode on if ARG is positive, off otherwise. | 1543 | With a prefix argument ARG, enable Autoarg-KP mode if ARG is |
| 1544 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 1545 | the mode if ARG is omitted or nil. | ||
| 1546 | |||
| 1537 | \\<autoarg-kp-mode-map> | 1547 | \\<autoarg-kp-mode-map> |
| 1538 | This is similar to \\[autoarg-mode] but rebinds the keypad keys `kp-1' | 1548 | This is similar to `autoarg-mode' but rebinds the keypad keys |
| 1539 | etc. to supply digit arguments. | 1549 | `kp-1' etc. to supply digit arguments. |
| 1540 | 1550 | ||
| 1541 | \\{autoarg-kp-mode-map} | 1551 | \\{autoarg-kp-mode-map} |
| 1542 | 1552 | ||
| @@ -1545,7 +1555,7 @@ etc. to supply digit arguments. | |||
| 1545 | ;;;*** | 1555 | ;;;*** |
| 1546 | 1556 | ||
| 1547 | ;;;### (autoloads (autoconf-mode) "autoconf" "progmodes/autoconf.el" | 1557 | ;;;### (autoloads (autoconf-mode) "autoconf" "progmodes/autoconf.el" |
| 1548 | ;;;;;; (19845 45374)) | 1558 | ;;;;;; (20119 34052)) |
| 1549 | ;;; Generated autoloads from progmodes/autoconf.el | 1559 | ;;; Generated autoloads from progmodes/autoconf.el |
| 1550 | 1560 | ||
| 1551 | (autoload 'autoconf-mode "autoconf" "\ | 1561 | (autoload 'autoconf-mode "autoconf" "\ |
| @@ -1556,7 +1566,7 @@ Major mode for editing Autoconf configure.in files. | |||
| 1556 | ;;;*** | 1566 | ;;;*** |
| 1557 | 1567 | ||
| 1558 | ;;;### (autoloads (auto-insert-mode define-auto-insert auto-insert) | 1568 | ;;;### (autoloads (auto-insert-mode define-auto-insert auto-insert) |
| 1559 | ;;;;;; "autoinsert" "autoinsert.el" (20065 65310)) | 1569 | ;;;;;; "autoinsert" "autoinsert.el" (20126 50812)) |
| 1560 | ;;; Generated autoloads from autoinsert.el | 1570 | ;;; Generated autoloads from autoinsert.el |
| 1561 | 1571 | ||
| 1562 | (autoload 'auto-insert "autoinsert" "\ | 1572 | (autoload 'auto-insert "autoinsert" "\ |
| @@ -1582,9 +1592,10 @@ or call the function `auto-insert-mode'.") | |||
| 1582 | (custom-autoload 'auto-insert-mode "autoinsert" nil) | 1592 | (custom-autoload 'auto-insert-mode "autoinsert" nil) |
| 1583 | 1593 | ||
| 1584 | (autoload 'auto-insert-mode "autoinsert" "\ | 1594 | (autoload 'auto-insert-mode "autoinsert" "\ |
| 1585 | Toggle Auto-insert mode. | 1595 | Toggle Auto-insert mode, a global minor mode. |
| 1586 | With prefix ARG, turn Auto-insert mode on if and only if ARG is positive. | 1596 | With a prefix argument ARG, enable Auto-insert mode if ARG is |
| 1587 | Returns the new status of Auto-insert mode (non-nil means on). | 1597 | positive, and disable it otherwise. If called from Lisp, enable |
| 1598 | the mode if ARG is omitted or nil. | ||
| 1588 | 1599 | ||
| 1589 | When Auto-insert mode is enabled, when new files are created you can | 1600 | When Auto-insert mode is enabled, when new files are created you can |
| 1590 | insert a template for the file depending on the mode of the buffer. | 1601 | insert a template for the file depending on the mode of the buffer. |
| @@ -1595,7 +1606,7 @@ insert a template for the file depending on the mode of the buffer. | |||
| 1595 | 1606 | ||
| 1596 | ;;;### (autoloads (batch-update-autoloads update-directory-autoloads | 1607 | ;;;### (autoloads (batch-update-autoloads update-directory-autoloads |
| 1597 | ;;;;;; update-file-autoloads) "autoload" "emacs-lisp/autoload.el" | 1608 | ;;;;;; update-file-autoloads) "autoload" "emacs-lisp/autoload.el" |
| 1598 | ;;;;;; (19924 47209)) | 1609 | ;;;;;; (20119 34052)) |
| 1599 | ;;; Generated autoloads from emacs-lisp/autoload.el | 1610 | ;;; Generated autoloads from emacs-lisp/autoload.el |
| 1600 | 1611 | ||
| 1601 | (put 'generated-autoload-file 'safe-local-variable 'stringp) | 1612 | (put 'generated-autoload-file 'safe-local-variable 'stringp) |
| @@ -1646,14 +1657,19 @@ should be non-nil). | |||
| 1646 | 1657 | ||
| 1647 | ;;;### (autoloads (global-auto-revert-mode turn-on-auto-revert-tail-mode | 1658 | ;;;### (autoloads (global-auto-revert-mode turn-on-auto-revert-tail-mode |
| 1648 | ;;;;;; auto-revert-tail-mode turn-on-auto-revert-mode auto-revert-mode) | 1659 | ;;;;;; auto-revert-tail-mode turn-on-auto-revert-mode auto-revert-mode) |
| 1649 | ;;;;;; "autorevert" "autorevert.el" (19878 51661)) | 1660 | ;;;;;; "autorevert" "autorevert.el" (20126 50846)) |
| 1650 | ;;; Generated autoloads from autorevert.el | 1661 | ;;; Generated autoloads from autorevert.el |
| 1651 | 1662 | ||
| 1652 | (autoload 'auto-revert-mode "autorevert" "\ | 1663 | (autoload 'auto-revert-mode "autorevert" "\ |
| 1653 | Toggle reverting buffer when file on disk changes. | 1664 | Toggle reverting buffer when the file changes (Auto Revert mode). |
| 1665 | With a prefix argument ARG, enable Auto Revert mode if ARG is | ||
| 1666 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 1667 | the mode if ARG is omitted or nil. | ||
| 1668 | |||
| 1669 | Auto Revert mode is a minor mode that affects only the current | ||
| 1670 | buffer. When enabled, it reverts the buffer when the file on | ||
| 1671 | disk changes. | ||
| 1654 | 1672 | ||
| 1655 | With arg, turn Auto Revert mode on if and only if arg is positive. | ||
| 1656 | This is a minor mode that affects only the current buffer. | ||
| 1657 | Use `global-auto-revert-mode' to automatically revert all buffers. | 1673 | Use `global-auto-revert-mode' to automatically revert all buffers. |
| 1658 | Use `auto-revert-tail-mode' if you know that the file will only grow | 1674 | Use `auto-revert-tail-mode' if you know that the file will only grow |
| 1659 | without being changed in the part that is already in the buffer. | 1675 | without being changed in the part that is already in the buffer. |
| @@ -1669,14 +1685,16 @@ This function is designed to be added to hooks, for example: | |||
| 1669 | \(fn)" nil nil) | 1685 | \(fn)" nil nil) |
| 1670 | 1686 | ||
| 1671 | (autoload 'auto-revert-tail-mode "autorevert" "\ | 1687 | (autoload 'auto-revert-tail-mode "autorevert" "\ |
| 1672 | Toggle reverting tail of buffer when file on disk grows. | 1688 | Toggle reverting tail of buffer when the file grows. |
| 1673 | With arg, turn Tail mode on if arg is positive, otherwise turn it off. | 1689 | With a prefix argument ARG, enable Auto-Revert Tail mode if ARG |
| 1690 | is positive, and disable it otherwise. If called from Lisp, | ||
| 1691 | enable the mode if ARG is omitted or nil. | ||
| 1674 | 1692 | ||
| 1675 | When Tail mode is enabled, the tail of the file is constantly | 1693 | When Auto Revert Tail mode is enabled, the tail of the file is |
| 1676 | followed, as with the shell command `tail -f'. This means that | 1694 | constantly followed, as with the shell command `tail -f'. This |
| 1677 | whenever the file grows on disk (presumably because some | 1695 | means that whenever the file grows on disk (presumably because |
| 1678 | background process is appending to it from time to time), this is | 1696 | some background process is appending to it from time to time), |
| 1679 | reflected in the current buffer. | 1697 | this is reflected in the current buffer. |
| 1680 | 1698 | ||
| 1681 | You can edit the buffer and turn this mode off and on again as | 1699 | You can edit the buffer and turn this mode off and on again as |
| 1682 | you please. But make sure the background process has stopped | 1700 | you please. But make sure the background process has stopped |
| @@ -1687,7 +1705,7 @@ Use `auto-revert-mode' for changes other than appends! | |||
| 1687 | \(fn &optional ARG)" t nil) | 1705 | \(fn &optional ARG)" t nil) |
| 1688 | 1706 | ||
| 1689 | (autoload 'turn-on-auto-revert-tail-mode "autorevert" "\ | 1707 | (autoload 'turn-on-auto-revert-tail-mode "autorevert" "\ |
| 1690 | Turn on Auto-Revert Tail Mode. | 1708 | Turn on Auto-Revert Tail mode. |
| 1691 | 1709 | ||
| 1692 | This function is designed to be added to hooks, for example: | 1710 | This function is designed to be added to hooks, for example: |
| 1693 | (add-hook 'my-logfile-mode-hook 'turn-on-auto-revert-tail-mode) | 1711 | (add-hook 'my-logfile-mode-hook 'turn-on-auto-revert-tail-mode) |
| @@ -1705,12 +1723,13 @@ or call the function `global-auto-revert-mode'.") | |||
| 1705 | 1723 | ||
| 1706 | (autoload 'global-auto-revert-mode "autorevert" "\ | 1724 | (autoload 'global-auto-revert-mode "autorevert" "\ |
| 1707 | Toggle Global Auto Revert mode. | 1725 | Toggle Global Auto Revert mode. |
| 1708 | With optional prefix argument ARG, enable Global Auto Revert Mode | 1726 | With a prefix argument ARG, enable Global Auto Revert mode if ARG |
| 1709 | if ARG > 0, else disable it. | 1727 | is positive, and disable it otherwise. If called from Lisp, |
| 1728 | enable the mode if ARG is omitted or nil. | ||
| 1710 | 1729 | ||
| 1711 | This is a global minor mode that reverts any buffer associated | 1730 | Global Auto Revert mode is a global minor mode that reverts any |
| 1712 | with a file when the file changes on disk. Use `auto-revert-mode' | 1731 | buffer associated with a file when the file changes on disk. Use |
| 1713 | to revert a particular buffer. | 1732 | `auto-revert-mode' to revert a particular buffer. |
| 1714 | 1733 | ||
| 1715 | If `global-auto-revert-non-file-buffers' is non-nil, this mode | 1734 | If `global-auto-revert-non-file-buffers' is non-nil, this mode |
| 1716 | may also revert some non-file buffers, as described in the | 1735 | may also revert some non-file buffers, as described in the |
| @@ -1727,7 +1746,7 @@ specifies in the mode line. | |||
| 1727 | ;;;*** | 1746 | ;;;*** |
| 1728 | 1747 | ||
| 1729 | ;;;### (autoloads (mouse-avoidance-mode mouse-avoidance-mode) "avoid" | 1748 | ;;;### (autoloads (mouse-avoidance-mode mouse-avoidance-mode) "avoid" |
| 1730 | ;;;;;; "avoid.el" (19845 45374)) | 1749 | ;;;;;; "avoid.el" (20119 34052)) |
| 1731 | ;;; Generated autoloads from avoid.el | 1750 | ;;; Generated autoloads from avoid.el |
| 1732 | 1751 | ||
| 1733 | (defvar mouse-avoidance-mode nil "\ | 1752 | (defvar mouse-avoidance-mode nil "\ |
| @@ -1768,7 +1787,7 @@ definition of \"random distance\".) | |||
| 1768 | ;;;*** | 1787 | ;;;*** |
| 1769 | 1788 | ||
| 1770 | ;;;### (autoloads (display-battery-mode battery) "battery" "battery.el" | 1789 | ;;;### (autoloads (display-battery-mode battery) "battery" "battery.el" |
| 1771 | ;;;;;; (20055 29424)) | 1790 | ;;;;;; (20126 50857)) |
| 1772 | ;;; Generated autoloads from battery.el | 1791 | ;;; Generated autoloads from battery.el |
| 1773 | (put 'battery-mode-line-string 'risky-local-variable t) | 1792 | (put 'battery-mode-line-string 'risky-local-variable t) |
| 1774 | 1793 | ||
| @@ -1789,10 +1808,14 @@ or call the function `display-battery-mode'.") | |||
| 1789 | (custom-autoload 'display-battery-mode "battery" nil) | 1808 | (custom-autoload 'display-battery-mode "battery" nil) |
| 1790 | 1809 | ||
| 1791 | (autoload 'display-battery-mode "battery" "\ | 1810 | (autoload 'display-battery-mode "battery" "\ |
| 1792 | Display battery status information in the mode line. | 1811 | Toggle battery status display in mode line (Display Battery mode). |
| 1793 | The text being displayed in the mode line is controlled by the variables | 1812 | With a prefix argument ARG, enable Display Battery mode if ARG is |
| 1813 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 1814 | the mode if ARG is omitted or nil. | ||
| 1815 | |||
| 1816 | The text displayed in the mode line is controlled by | ||
| 1794 | `battery-mode-line-format' and `battery-status-function'. | 1817 | `battery-mode-line-format' and `battery-status-function'. |
| 1795 | The mode line will be updated automatically every `battery-update-interval' | 1818 | The mode line is be updated every `battery-update-interval' |
| 1796 | seconds. | 1819 | seconds. |
| 1797 | 1820 | ||
| 1798 | \(fn &optional ARG)" t nil) | 1821 | \(fn &optional ARG)" t nil) |
| @@ -1800,7 +1823,7 @@ seconds. | |||
| 1800 | ;;;*** | 1823 | ;;;*** |
| 1801 | 1824 | ||
| 1802 | ;;;### (autoloads (benchmark benchmark-run-compiled benchmark-run) | 1825 | ;;;### (autoloads (benchmark benchmark-run-compiled benchmark-run) |
| 1803 | ;;;;;; "benchmark" "emacs-lisp/benchmark.el" (19981 40664)) | 1826 | ;;;;;; "benchmark" "emacs-lisp/benchmark.el" (20119 34052)) |
| 1804 | ;;; Generated autoloads from emacs-lisp/benchmark.el | 1827 | ;;; Generated autoloads from emacs-lisp/benchmark.el |
| 1805 | 1828 | ||
| 1806 | (autoload 'benchmark-run "benchmark" "\ | 1829 | (autoload 'benchmark-run "benchmark" "\ |
| @@ -1833,7 +1856,7 @@ For non-interactive use see also `benchmark-run' and | |||
| 1833 | ;;;*** | 1856 | ;;;*** |
| 1834 | 1857 | ||
| 1835 | ;;;### (autoloads (bibtex-search-entry bibtex-mode bibtex-initialize) | 1858 | ;;;### (autoloads (bibtex-search-entry bibtex-mode bibtex-initialize) |
| 1836 | ;;;;;; "bibtex" "textmodes/bibtex.el" (20081 53460)) | 1859 | ;;;;;; "bibtex" "textmodes/bibtex.el" (20119 34052)) |
| 1837 | ;;; Generated autoloads from textmodes/bibtex.el | 1860 | ;;; Generated autoloads from textmodes/bibtex.el |
| 1838 | 1861 | ||
| 1839 | (autoload 'bibtex-initialize "bibtex" "\ | 1862 | (autoload 'bibtex-initialize "bibtex" "\ |
| @@ -1922,7 +1945,7 @@ A prefix arg negates the value of `bibtex-search-entry-globally'. | |||
| 1922 | ;;;*** | 1945 | ;;;*** |
| 1923 | 1946 | ||
| 1924 | ;;;### (autoloads (bibtex-style-mode) "bibtex-style" "textmodes/bibtex-style.el" | 1947 | ;;;### (autoloads (bibtex-style-mode) "bibtex-style" "textmodes/bibtex-style.el" |
| 1925 | ;;;;;; (19863 8742)) | 1948 | ;;;;;; (20119 34052)) |
| 1926 | ;;; Generated autoloads from textmodes/bibtex-style.el | 1949 | ;;; Generated autoloads from textmodes/bibtex-style.el |
| 1927 | 1950 | ||
| 1928 | (autoload 'bibtex-style-mode "bibtex-style" "\ | 1951 | (autoload 'bibtex-style-mode "bibtex-style" "\ |
| @@ -1934,7 +1957,7 @@ Major mode for editing BibTeX style files. | |||
| 1934 | 1957 | ||
| 1935 | ;;;### (autoloads (binhex-decode-region binhex-decode-region-external | 1958 | ;;;### (autoloads (binhex-decode-region binhex-decode-region-external |
| 1936 | ;;;;;; binhex-decode-region-internal) "binhex" "mail/binhex.el" | 1959 | ;;;;;; binhex-decode-region-internal) "binhex" "mail/binhex.el" |
| 1937 | ;;;;;; (19845 45374)) | 1960 | ;;;;;; (20119 34052)) |
| 1938 | ;;; Generated autoloads from mail/binhex.el | 1961 | ;;; Generated autoloads from mail/binhex.el |
| 1939 | 1962 | ||
| 1940 | (defconst binhex-begin-line "^:...............................................................$") | 1963 | (defconst binhex-begin-line "^:...............................................................$") |
| @@ -1957,8 +1980,8 @@ Binhex decode region between START and END. | |||
| 1957 | 1980 | ||
| 1958 | ;;;*** | 1981 | ;;;*** |
| 1959 | 1982 | ||
| 1960 | ;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (19845 | 1983 | ;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (20119 |
| 1961 | ;;;;;; 45374)) | 1984 | ;;;;;; 34052)) |
| 1962 | ;;; Generated autoloads from play/blackbox.el | 1985 | ;;; Generated autoloads from play/blackbox.el |
| 1963 | 1986 | ||
| 1964 | (autoload 'blackbox "blackbox" "\ | 1987 | (autoload 'blackbox "blackbox" "\ |
| @@ -2081,7 +2104,7 @@ a reflection. | |||
| 2081 | ;;;;;; bookmark-save bookmark-write bookmark-delete bookmark-insert | 2104 | ;;;;;; bookmark-save bookmark-write bookmark-delete bookmark-insert |
| 2082 | ;;;;;; bookmark-rename bookmark-insert-location bookmark-relocate | 2105 | ;;;;;; bookmark-rename bookmark-insert-location bookmark-relocate |
| 2083 | ;;;;;; bookmark-jump-other-window bookmark-jump bookmark-set) "bookmark" | 2106 | ;;;;;; bookmark-jump-other-window bookmark-jump bookmark-set) "bookmark" |
| 2084 | ;;;;;; "bookmark.el" (20065 65310)) | 2107 | ;;;;;; "bookmark.el" (20119 34052)) |
| 2085 | ;;; Generated autoloads from bookmark.el | 2108 | ;;; Generated autoloads from bookmark.el |
| 2086 | (define-key ctl-x-r-map "b" 'bookmark-jump) | 2109 | (define-key ctl-x-r-map "b" 'bookmark-jump) |
| 2087 | (define-key ctl-x-r-map "m" 'bookmark-set) | 2110 | (define-key ctl-x-r-map "m" 'bookmark-set) |
| @@ -2277,12 +2300,12 @@ Incremental search of bookmarks, hiding the non-matches as we go. | |||
| 2277 | ;;;### (autoloads (browse-url-elinks browse-url-kde browse-url-generic | 2300 | ;;;### (autoloads (browse-url-elinks browse-url-kde browse-url-generic |
| 2278 | ;;;;;; browse-url-mail browse-url-text-emacs browse-url-text-xterm | 2301 | ;;;;;; browse-url-mail browse-url-text-emacs browse-url-text-xterm |
| 2279 | ;;;;;; browse-url-w3-gnudoit browse-url-w3 browse-url-cci browse-url-mosaic | 2302 | ;;;;;; browse-url-w3-gnudoit browse-url-w3 browse-url-cci browse-url-mosaic |
| 2280 | ;;;;;; browse-url-gnome-moz browse-url-emacs browse-url-galeon browse-url-firefox | 2303 | ;;;;;; browse-url-gnome-moz browse-url-emacs browse-url-galeon browse-url-chromium |
| 2281 | ;;;;;; browse-url-mozilla browse-url-netscape browse-url-xdg-open | 2304 | ;;;;;; browse-url-firefox browse-url-mozilla browse-url-netscape |
| 2282 | ;;;;;; browse-url-at-mouse browse-url-at-point browse-url browse-url-of-region | 2305 | ;;;;;; browse-url-xdg-open browse-url-at-mouse browse-url-at-point |
| 2283 | ;;;;;; browse-url-of-dired-file browse-url-of-buffer browse-url-of-file | 2306 | ;;;;;; browse-url browse-url-of-region browse-url-of-dired-file |
| 2284 | ;;;;;; browse-url-browser-function) "browse-url" "net/browse-url.el" | 2307 | ;;;;;; browse-url-of-buffer browse-url-of-file browse-url-browser-function) |
| 2285 | ;;;;;; (20048 56149)) | 2308 | ;;;;;; "browse-url" "net/browse-url.el" (20126 51279)) |
| 2286 | ;;; Generated autoloads from net/browse-url.el | 2309 | ;;; Generated autoloads from net/browse-url.el |
| 2287 | 2310 | ||
| 2288 | (defvar browse-url-browser-function 'browse-url-default-browser "\ | 2311 | (defvar browse-url-browser-function 'browse-url-default-browser "\ |
| @@ -2421,6 +2444,14 @@ URL in a new window. | |||
| 2421 | 2444 | ||
| 2422 | \(fn URL &optional NEW-WINDOW)" t nil) | 2445 | \(fn URL &optional NEW-WINDOW)" t nil) |
| 2423 | 2446 | ||
| 2447 | (autoload 'browse-url-chromium "browse-url" "\ | ||
| 2448 | Ask the Chromium WWW browser to load URL. | ||
| 2449 | Default to the URL around or before point. The strings in | ||
| 2450 | variable `browse-url-chromium-arguments' are also passed to | ||
| 2451 | Chromium. | ||
| 2452 | |||
| 2453 | \(fn URL &optional NEW-WINDOW)" t nil) | ||
| 2454 | |||
| 2424 | (autoload 'browse-url-galeon "browse-url" "\ | 2455 | (autoload 'browse-url-galeon "browse-url" "\ |
| 2425 | Ask the Galeon WWW browser to load URL. | 2456 | Ask the Galeon WWW browser to load URL. |
| 2426 | Default to the URL around or before point. The strings in variable | 2457 | Default to the URL around or before point. The strings in variable |
| @@ -2587,8 +2618,8 @@ from `browse-url-elinks-wrapper'. | |||
| 2587 | 2618 | ||
| 2588 | ;;;*** | 2619 | ;;;*** |
| 2589 | 2620 | ||
| 2590 | ;;;### (autoloads (snarf-bruces bruce) "bruce" "play/bruce.el" (19845 | 2621 | ;;;### (autoloads (snarf-bruces bruce) "bruce" "play/bruce.el" (20119 |
| 2591 | ;;;;;; 45374)) | 2622 | ;;;;;; 34052)) |
| 2592 | ;;; Generated autoloads from play/bruce.el | 2623 | ;;; Generated autoloads from play/bruce.el |
| 2593 | 2624 | ||
| 2594 | (autoload 'bruce "bruce" "\ | 2625 | (autoload 'bruce "bruce" "\ |
| @@ -2604,7 +2635,7 @@ Return a vector containing the lines from `bruce-phrases-file'. | |||
| 2604 | ;;;*** | 2635 | ;;;*** |
| 2605 | 2636 | ||
| 2606 | ;;;### (autoloads (bs-show bs-customize bs-cycle-previous bs-cycle-next) | 2637 | ;;;### (autoloads (bs-show bs-customize bs-cycle-previous bs-cycle-next) |
| 2607 | ;;;;;; "bs" "bs.el" (19998 49767)) | 2638 | ;;;;;; "bs" "bs.el" (20140 44207)) |
| 2608 | ;;; Generated autoloads from bs.el | 2639 | ;;; Generated autoloads from bs.el |
| 2609 | 2640 | ||
| 2610 | (autoload 'bs-cycle-next "bs" "\ | 2641 | (autoload 'bs-cycle-next "bs" "\ |
| @@ -2644,7 +2675,7 @@ name of buffer configuration. | |||
| 2644 | 2675 | ||
| 2645 | ;;;*** | 2676 | ;;;*** |
| 2646 | 2677 | ||
| 2647 | ;;;### (autoloads (bubbles) "bubbles" "play/bubbles.el" (19889 21967)) | 2678 | ;;;### (autoloads (bubbles) "bubbles" "play/bubbles.el" (20119 34052)) |
| 2648 | ;;; Generated autoloads from play/bubbles.el | 2679 | ;;; Generated autoloads from play/bubbles.el |
| 2649 | 2680 | ||
| 2650 | (autoload 'bubbles "bubbles" "\ | 2681 | (autoload 'bubbles "bubbles" "\ |
| @@ -2666,13 +2697,16 @@ columns on its right towards the left. | |||
| 2666 | ;;;*** | 2697 | ;;;*** |
| 2667 | 2698 | ||
| 2668 | ;;;### (autoloads (bug-reference-prog-mode bug-reference-mode) "bug-reference" | 2699 | ;;;### (autoloads (bug-reference-prog-mode bug-reference-mode) "bug-reference" |
| 2669 | ;;;;;; "progmodes/bug-reference.el" (19890 42850)) | 2700 | ;;;;;; "progmodes/bug-reference.el" (20127 25733)) |
| 2670 | ;;; Generated autoloads from progmodes/bug-reference.el | 2701 | ;;; Generated autoloads from progmodes/bug-reference.el |
| 2671 | 2702 | ||
| 2672 | (put 'bug-reference-url-format 'safe-local-variable (lambda (s) (or (stringp s) (and (symbolp s) (get s 'bug-reference-url-format))))) | 2703 | (put 'bug-reference-url-format 'safe-local-variable (lambda (s) (or (stringp s) (and (symbolp s) (get s 'bug-reference-url-format))))) |
| 2673 | 2704 | ||
| 2674 | (autoload 'bug-reference-mode "bug-reference" "\ | 2705 | (autoload 'bug-reference-mode "bug-reference" "\ |
| 2675 | Minor mode to buttonize bugzilla references in the current buffer. | 2706 | Toggle hyperlinking bug references in the buffer (Bug Reference mode). |
| 2707 | With a prefix argument ARG, enable Bug Reference mode if ARG is | ||
| 2708 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 2709 | the mode if ARG is omitted or nil. | ||
| 2676 | 2710 | ||
| 2677 | \(fn &optional ARG)" t nil) | 2711 | \(fn &optional ARG)" t nil) |
| 2678 | 2712 | ||
| @@ -2687,7 +2721,7 @@ Like `bug-reference-mode', but only buttonize in comments and strings. | |||
| 2687 | ;;;;;; batch-byte-compile-if-not-done display-call-tree byte-compile | 2721 | ;;;;;; batch-byte-compile-if-not-done display-call-tree byte-compile |
| 2688 | ;;;;;; compile-defun byte-compile-file byte-recompile-directory | 2722 | ;;;;;; compile-defun byte-compile-file byte-recompile-directory |
| 2689 | ;;;;;; byte-force-recompile byte-compile-enable-warning byte-compile-disable-warning) | 2723 | ;;;;;; byte-force-recompile byte-compile-enable-warning byte-compile-disable-warning) |
| 2690 | ;;;;;; "bytecomp" "emacs-lisp/bytecomp.el" (20084 29660)) | 2724 | ;;;;;; "bytecomp" "emacs-lisp/bytecomp.el" (20119 34052)) |
| 2691 | ;;; Generated autoloads from emacs-lisp/bytecomp.el | 2725 | ;;; Generated autoloads from emacs-lisp/bytecomp.el |
| 2692 | (put 'byte-compile-dynamic 'safe-local-variable 'booleanp) | 2726 | (put 'byte-compile-dynamic 'safe-local-variable 'booleanp) |
| 2693 | (put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp) | 2727 | (put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp) |
| @@ -2807,8 +2841,8 @@ and corresponding effects. | |||
| 2807 | 2841 | ||
| 2808 | ;;;*** | 2842 | ;;;*** |
| 2809 | 2843 | ||
| 2810 | ;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (19885 | 2844 | ;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (20119 |
| 2811 | ;;;;;; 24894)) | 2845 | ;;;;;; 34052)) |
| 2812 | ;;; Generated autoloads from calendar/cal-china.el | 2846 | ;;; Generated autoloads from calendar/cal-china.el |
| 2813 | 2847 | ||
| 2814 | (put 'calendar-chinese-time-zone 'risky-local-variable t) | 2848 | (put 'calendar-chinese-time-zone 'risky-local-variable t) |
| @@ -2817,7 +2851,7 @@ and corresponding effects. | |||
| 2817 | 2851 | ||
| 2818 | ;;;*** | 2852 | ;;;*** |
| 2819 | 2853 | ||
| 2820 | ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (19885 24894)) | 2854 | ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (20119 34052)) |
| 2821 | ;;; Generated autoloads from calendar/cal-dst.el | 2855 | ;;; Generated autoloads from calendar/cal-dst.el |
| 2822 | 2856 | ||
| 2823 | (put 'calendar-daylight-savings-starts 'risky-local-variable t) | 2857 | (put 'calendar-daylight-savings-starts 'risky-local-variable t) |
| @@ -2829,7 +2863,7 @@ and corresponding effects. | |||
| 2829 | ;;;*** | 2863 | ;;;*** |
| 2830 | 2864 | ||
| 2831 | ;;;### (autoloads (calendar-hebrew-list-yahrzeits) "cal-hebrew" "calendar/cal-hebrew.el" | 2865 | ;;;### (autoloads (calendar-hebrew-list-yahrzeits) "cal-hebrew" "calendar/cal-hebrew.el" |
| 2832 | ;;;;;; (19885 24894)) | 2866 | ;;;;;; (20119 34052)) |
| 2833 | ;;; Generated autoloads from calendar/cal-hebrew.el | 2867 | ;;; Generated autoloads from calendar/cal-hebrew.el |
| 2834 | 2868 | ||
| 2835 | (autoload 'calendar-hebrew-list-yahrzeits "cal-hebrew" "\ | 2869 | (autoload 'calendar-hebrew-list-yahrzeits "cal-hebrew" "\ |
| @@ -2845,8 +2879,8 @@ from the cursor position. | |||
| 2845 | 2879 | ||
| 2846 | ;;;### (autoloads (defmath calc-embedded-activate calc-embedded calc-grab-rectangle | 2880 | ;;;### (autoloads (defmath calc-embedded-activate calc-embedded calc-grab-rectangle |
| 2847 | ;;;;;; calc-grab-region full-calc-keypad calc-keypad calc-eval quick-calc | 2881 | ;;;;;; calc-grab-region full-calc-keypad calc-keypad calc-eval quick-calc |
| 2848 | ;;;;;; full-calc calc calc-dispatch) "calc" "calc/calc.el" (19943 | 2882 | ;;;;;; full-calc calc calc-dispatch) "calc" "calc/calc.el" (20119 |
| 2849 | ;;;;;; 25429)) | 2883 | ;;;;;; 34052)) |
| 2850 | ;;; Generated autoloads from calc/calc.el | 2884 | ;;; Generated autoloads from calc/calc.el |
| 2851 | (define-key ctl-x-map "*" 'calc-dispatch) | 2885 | (define-key ctl-x-map "*" 'calc-dispatch) |
| 2852 | 2886 | ||
| @@ -2930,8 +2964,8 @@ See Info node `(calc)Defining Functions'. | |||
| 2930 | 2964 | ||
| 2931 | ;;;*** | 2965 | ;;;*** |
| 2932 | 2966 | ||
| 2933 | ;;;### (autoloads (calc-undo) "calc-undo" "calc/calc-undo.el" (19845 | 2967 | ;;;### (autoloads (calc-undo) "calc-undo" "calc/calc-undo.el" (20119 |
| 2934 | ;;;;;; 45374)) | 2968 | ;;;;;; 34052)) |
| 2935 | ;;; Generated autoloads from calc/calc-undo.el | 2969 | ;;; Generated autoloads from calc/calc-undo.el |
| 2936 | 2970 | ||
| 2937 | (autoload 'calc-undo "calc-undo" "\ | 2971 | (autoload 'calc-undo "calc-undo" "\ |
| @@ -2941,8 +2975,8 @@ See Info node `(calc)Defining Functions'. | |||
| 2941 | 2975 | ||
| 2942 | ;;;*** | 2976 | ;;;*** |
| 2943 | 2977 | ||
| 2944 | ;;;### (autoloads (calculator) "calculator" "calculator.el" (19931 | 2978 | ;;;### (autoloads (calculator) "calculator" "calculator.el" (20140 |
| 2945 | ;;;;;; 11784)) | 2979 | ;;;;;; 44219)) |
| 2946 | ;;; Generated autoloads from calculator.el | 2980 | ;;; Generated autoloads from calculator.el |
| 2947 | 2981 | ||
| 2948 | (autoload 'calculator "calculator" "\ | 2982 | (autoload 'calculator "calculator" "\ |
| @@ -2953,8 +2987,8 @@ See the documentation for `calculator-mode' for more information. | |||
| 2953 | 2987 | ||
| 2954 | ;;;*** | 2988 | ;;;*** |
| 2955 | 2989 | ||
| 2956 | ;;;### (autoloads (calendar) "calendar" "calendar/calendar.el" (19956 | 2990 | ;;;### (autoloads (calendar) "calendar" "calendar/calendar.el" (20141 |
| 2957 | ;;;;;; 37456)) | 2991 | ;;;;;; 25678)) |
| 2958 | ;;; Generated autoloads from calendar/calendar.el | 2992 | ;;; Generated autoloads from calendar/calendar.el |
| 2959 | 2993 | ||
| 2960 | (autoload 'calendar "calendar" "\ | 2994 | (autoload 'calendar "calendar" "\ |
| @@ -2998,7 +3032,7 @@ This function is suitable for execution in a .emacs file. | |||
| 2998 | ;;;*** | 3032 | ;;;*** |
| 2999 | 3033 | ||
| 3000 | ;;;### (autoloads (canlock-verify canlock-insert-header) "canlock" | 3034 | ;;;### (autoloads (canlock-verify canlock-insert-header) "canlock" |
| 3001 | ;;;;;; "gnus/canlock.el" (19845 45374)) | 3035 | ;;;;;; "gnus/canlock.el" (20119 34052)) |
| 3002 | ;;; Generated autoloads from gnus/canlock.el | 3036 | ;;; Generated autoloads from gnus/canlock.el |
| 3003 | 3037 | ||
| 3004 | (autoload 'canlock-insert-header "canlock" "\ | 3038 | (autoload 'canlock-insert-header "canlock" "\ |
| @@ -3016,14 +3050,18 @@ it fails. | |||
| 3016 | ;;;*** | 3050 | ;;;*** |
| 3017 | 3051 | ||
| 3018 | ;;;### (autoloads (capitalized-words-mode) "cap-words" "progmodes/cap-words.el" | 3052 | ;;;### (autoloads (capitalized-words-mode) "cap-words" "progmodes/cap-words.el" |
| 3019 | ;;;;;; (19845 45374)) | 3053 | ;;;;;; (20127 25639)) |
| 3020 | ;;; Generated autoloads from progmodes/cap-words.el | 3054 | ;;; Generated autoloads from progmodes/cap-words.el |
| 3021 | 3055 | ||
| 3022 | (autoload 'capitalized-words-mode "cap-words" "\ | 3056 | (autoload 'capitalized-words-mode "cap-words" "\ |
| 3023 | Toggle Capitalized Words mode. | 3057 | Toggle Capitalized Words mode. |
| 3058 | With a prefix argument ARG, enable Capitalized Words mode if ARG | ||
| 3059 | is positive, and disable it otherwise. If called from Lisp, | ||
| 3060 | enable the mode if ARG is omitted or nil. | ||
| 3024 | 3061 | ||
| 3025 | In this minor mode, a word boundary occurs immediately before an | 3062 | Capitalized Words mode is a buffer-local minor mode. When |
| 3026 | uppercase letter in a symbol. This is in addition to all the normal | 3063 | enabled, a word boundary occurs immediately before an uppercase |
| 3064 | letter in a symbol. This is in addition to all the normal | ||
| 3027 | boundaries given by the syntax and category tables. There is no | 3065 | boundaries given by the syntax and category tables. There is no |
| 3028 | restriction to ASCII. | 3066 | restriction to ASCII. |
| 3029 | 3067 | ||
| @@ -3051,15 +3089,15 @@ Obsoletes `c-forward-into-nomenclature'. | |||
| 3051 | 3089 | ||
| 3052 | ;;;*** | 3090 | ;;;*** |
| 3053 | 3091 | ||
| 3054 | ;;;### (autoloads nil "cc-compat" "progmodes/cc-compat.el" (19845 | 3092 | ;;;### (autoloads nil "cc-compat" "progmodes/cc-compat.el" (20119 |
| 3055 | ;;;;;; 45374)) | 3093 | ;;;;;; 34052)) |
| 3056 | ;;; Generated autoloads from progmodes/cc-compat.el | 3094 | ;;; Generated autoloads from progmodes/cc-compat.el |
| 3057 | (put 'c-indent-level 'safe-local-variable 'integerp) | 3095 | (put 'c-indent-level 'safe-local-variable 'integerp) |
| 3058 | 3096 | ||
| 3059 | ;;;*** | 3097 | ;;;*** |
| 3060 | 3098 | ||
| 3061 | ;;;### (autoloads (c-guess-basic-syntax) "cc-engine" "progmodes/cc-engine.el" | 3099 | ;;;### (autoloads (c-guess-basic-syntax) "cc-engine" "progmodes/cc-engine.el" |
| 3062 | ;;;;;; (20048 56149)) | 3100 | ;;;;;; (20139 28158)) |
| 3063 | ;;; Generated autoloads from progmodes/cc-engine.el | 3101 | ;;; Generated autoloads from progmodes/cc-engine.el |
| 3064 | 3102 | ||
| 3065 | (autoload 'c-guess-basic-syntax "cc-engine" "\ | 3103 | (autoload 'c-guess-basic-syntax "cc-engine" "\ |
| @@ -3071,7 +3109,7 @@ Return the syntactic context of the current line. | |||
| 3071 | 3109 | ||
| 3072 | ;;;### (autoloads (c-guess-install c-guess-region-no-install c-guess-region | 3110 | ;;;### (autoloads (c-guess-install c-guess-region-no-install c-guess-region |
| 3073 | ;;;;;; c-guess-buffer-no-install c-guess-buffer c-guess-no-install | 3111 | ;;;;;; c-guess-buffer-no-install c-guess-buffer c-guess-no-install |
| 3074 | ;;;;;; c-guess) "cc-guess" "progmodes/cc-guess.el" (19981 40664)) | 3112 | ;;;;;; c-guess) "cc-guess" "progmodes/cc-guess.el" (20119 34052)) |
| 3075 | ;;; Generated autoloads from progmodes/cc-guess.el | 3113 | ;;; Generated autoloads from progmodes/cc-guess.el |
| 3076 | 3114 | ||
| 3077 | (defvar c-guess-guessed-offsets-alist nil "\ | 3115 | (defvar c-guess-guessed-offsets-alist nil "\ |
| @@ -3171,7 +3209,7 @@ the absolute file name of the file if STYLE-NAME is nil. | |||
| 3171 | 3209 | ||
| 3172 | ;;;### (autoloads (awk-mode pike-mode idl-mode java-mode objc-mode | 3210 | ;;;### (autoloads (awk-mode pike-mode idl-mode java-mode objc-mode |
| 3173 | ;;;;;; c++-mode c-mode c-initialize-cc-mode) "cc-mode" "progmodes/cc-mode.el" | 3211 | ;;;;;; c++-mode c-mode c-initialize-cc-mode) "cc-mode" "progmodes/cc-mode.el" |
| 3174 | ;;;;;; (20073 59352)) | 3212 | ;;;;;; (20138 48832)) |
| 3175 | ;;; Generated autoloads from progmodes/cc-mode.el | 3213 | ;;; Generated autoloads from progmodes/cc-mode.el |
| 3176 | 3214 | ||
| 3177 | (autoload 'c-initialize-cc-mode "cc-mode" "\ | 3215 | (autoload 'c-initialize-cc-mode "cc-mode" "\ |
| @@ -3348,7 +3386,7 @@ Key bindings: | |||
| 3348 | ;;;*** | 3386 | ;;;*** |
| 3349 | 3387 | ||
| 3350 | ;;;### (autoloads (c-set-offset c-add-style c-set-style) "cc-styles" | 3388 | ;;;### (autoloads (c-set-offset c-add-style c-set-style) "cc-styles" |
| 3351 | ;;;;;; "progmodes/cc-styles.el" (19981 40664)) | 3389 | ;;;;;; "progmodes/cc-styles.el" (20119 34052)) |
| 3352 | ;;; Generated autoloads from progmodes/cc-styles.el | 3390 | ;;; Generated autoloads from progmodes/cc-styles.el |
| 3353 | 3391 | ||
| 3354 | (autoload 'c-set-style "cc-styles" "\ | 3392 | (autoload 'c-set-style "cc-styles" "\ |
| @@ -3399,7 +3437,7 @@ and exists only for compatibility reasons. | |||
| 3399 | 3437 | ||
| 3400 | ;;;*** | 3438 | ;;;*** |
| 3401 | 3439 | ||
| 3402 | ;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (19997 28887)) | 3440 | ;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (20139 28158)) |
| 3403 | ;;; Generated autoloads from progmodes/cc-vars.el | 3441 | ;;; Generated autoloads from progmodes/cc-vars.el |
| 3404 | (put 'c-basic-offset 'safe-local-variable 'integerp) | 3442 | (put 'c-basic-offset 'safe-local-variable 'integerp) |
| 3405 | (put 'c-backslash-column 'safe-local-variable 'integerp) | 3443 | (put 'c-backslash-column 'safe-local-variable 'integerp) |
| @@ -3409,7 +3447,7 @@ and exists only for compatibility reasons. | |||
| 3409 | 3447 | ||
| 3410 | ;;;### (autoloads (ccl-execute-with-args check-ccl-program define-ccl-program | 3448 | ;;;### (autoloads (ccl-execute-with-args check-ccl-program define-ccl-program |
| 3411 | ;;;;;; declare-ccl-program ccl-dump ccl-compile) "ccl" "international/ccl.el" | 3449 | ;;;;;; declare-ccl-program ccl-dump ccl-compile) "ccl" "international/ccl.el" |
| 3412 | ;;;;;; (19943 25429)) | 3450 | ;;;;;; (20119 34052)) |
| 3413 | ;;; Generated autoloads from international/ccl.el | 3451 | ;;; Generated autoloads from international/ccl.el |
| 3414 | 3452 | ||
| 3415 | (autoload 'ccl-compile "ccl" "\ | 3453 | (autoload 'ccl-compile "ccl" "\ |
| @@ -3670,7 +3708,7 @@ See the documentation of `define-ccl-program' for the detail of CCL program. | |||
| 3670 | ;;;*** | 3708 | ;;;*** |
| 3671 | 3709 | ||
| 3672 | ;;;### (autoloads (cconv-closure-convert) "cconv" "emacs-lisp/cconv.el" | 3710 | ;;;### (autoloads (cconv-closure-convert) "cconv" "emacs-lisp/cconv.el" |
| 3673 | ;;;;;; (19943 25429)) | 3711 | ;;;;;; (20119 34052)) |
| 3674 | ;;; Generated autoloads from emacs-lisp/cconv.el | 3712 | ;;; Generated autoloads from emacs-lisp/cconv.el |
| 3675 | 3713 | ||
| 3676 | (autoload 'cconv-closure-convert "cconv" "\ | 3714 | (autoload 'cconv-closure-convert "cconv" "\ |
| @@ -3685,7 +3723,7 @@ Returns a form where all lambdas don't have any free variables. | |||
| 3685 | ;;;*** | 3723 | ;;;*** |
| 3686 | 3724 | ||
| 3687 | ;;;### (autoloads (cfengine-auto-mode cfengine-mode cfengine3-mode) | 3725 | ;;;### (autoloads (cfengine-auto-mode cfengine-mode cfengine3-mode) |
| 3688 | ;;;;;; "cfengine" "progmodes/cfengine.el" (20096 20817)) | 3726 | ;;;;;; "cfengine" "progmodes/cfengine.el" (20119 34052)) |
| 3689 | ;;; Generated autoloads from progmodes/cfengine.el | 3727 | ;;; Generated autoloads from progmodes/cfengine.el |
| 3690 | 3728 | ||
| 3691 | (autoload 'cfengine3-mode "cfengine" "\ | 3729 | (autoload 'cfengine3-mode "cfengine" "\ |
| @@ -3715,7 +3753,7 @@ on the buffer contents | |||
| 3715 | ;;;*** | 3753 | ;;;*** |
| 3716 | 3754 | ||
| 3717 | ;;;### (autoloads (check-declare-directory check-declare-file) "check-declare" | 3755 | ;;;### (autoloads (check-declare-directory check-declare-file) "check-declare" |
| 3718 | ;;;;;; "emacs-lisp/check-declare.el" (19906 31087)) | 3756 | ;;;;;; "emacs-lisp/check-declare.el" (20119 34052)) |
| 3719 | ;;; Generated autoloads from emacs-lisp/check-declare.el | 3757 | ;;; Generated autoloads from emacs-lisp/check-declare.el |
| 3720 | 3758 | ||
| 3721 | (autoload 'check-declare-file "check-declare" "\ | 3759 | (autoload 'check-declare-file "check-declare" "\ |
| @@ -3740,7 +3778,7 @@ Returns non-nil if any false statements are found. | |||
| 3740 | ;;;;;; checkdoc-comments checkdoc-continue checkdoc-start checkdoc-current-buffer | 3778 | ;;;;;; checkdoc-comments checkdoc-continue checkdoc-start checkdoc-current-buffer |
| 3741 | ;;;;;; checkdoc-eval-current-buffer checkdoc-message-interactive | 3779 | ;;;;;; checkdoc-eval-current-buffer checkdoc-message-interactive |
| 3742 | ;;;;;; checkdoc-interactive checkdoc checkdoc-list-of-strings-p) | 3780 | ;;;;;; checkdoc-interactive checkdoc checkdoc-list-of-strings-p) |
| 3743 | ;;;;;; "checkdoc" "emacs-lisp/checkdoc.el" (19931 11784)) | 3781 | ;;;;;; "checkdoc" "emacs-lisp/checkdoc.el" (20127 23374)) |
| 3744 | ;;; Generated autoloads from emacs-lisp/checkdoc.el | 3782 | ;;; Generated autoloads from emacs-lisp/checkdoc.el |
| 3745 | (put 'checkdoc-force-docstrings-flag 'safe-local-variable 'booleanp) | 3783 | (put 'checkdoc-force-docstrings-flag 'safe-local-variable 'booleanp) |
| 3746 | (put 'checkdoc-force-history-flag 'safe-local-variable 'booleanp) | 3784 | (put 'checkdoc-force-history-flag 'safe-local-variable 'booleanp) |
| @@ -3919,9 +3957,10 @@ Prefix argument TAKE-NOTES is the same as for `checkdoc-defun' | |||
| 3919 | \(fn &optional TAKE-NOTES)" t nil) | 3957 | \(fn &optional TAKE-NOTES)" t nil) |
| 3920 | 3958 | ||
| 3921 | (autoload 'checkdoc-minor-mode "checkdoc" "\ | 3959 | (autoload 'checkdoc-minor-mode "checkdoc" "\ |
| 3922 | Toggle Checkdoc minor mode, a mode for checking Lisp doc strings. | 3960 | Toggle automatic docstring checking (Checkdoc minor mode). |
| 3923 | With prefix ARG, turn Checkdoc minor mode on if ARG is positive, otherwise | 3961 | With a prefix argument ARG, enable Checkdoc minor mode if ARG is |
| 3924 | turn it off. | 3962 | positive, and disable it otherwise. If called from Lisp, enable |
| 3963 | the mode if ARG is omitted or nil. | ||
| 3925 | 3964 | ||
| 3926 | In Checkdoc minor mode, the usual bindings for `eval-defun' which is | 3965 | In Checkdoc minor mode, the usual bindings for `eval-defun' which is |
| 3927 | bound to \\<checkdoc-minor-mode-map>\\[checkdoc-eval-defun] and `checkdoc-eval-current-buffer' are overridden to include | 3966 | bound to \\<checkdoc-minor-mode-map>\\[checkdoc-eval-defun] and `checkdoc-eval-current-buffer' are overridden to include |
| @@ -3935,7 +3974,7 @@ checking of documentation strings. | |||
| 3935 | 3974 | ||
| 3936 | ;;;### (autoloads (pre-write-encode-hz post-read-decode-hz encode-hz-buffer | 3975 | ;;;### (autoloads (pre-write-encode-hz post-read-decode-hz encode-hz-buffer |
| 3937 | ;;;;;; encode-hz-region decode-hz-buffer decode-hz-region) "china-util" | 3976 | ;;;;;; encode-hz-region decode-hz-buffer decode-hz-region) "china-util" |
| 3938 | ;;;;;; "language/china-util.el" (19845 45374)) | 3977 | ;;;;;; "language/china-util.el" (20119 34052)) |
| 3939 | ;;; Generated autoloads from language/china-util.el | 3978 | ;;; Generated autoloads from language/china-util.el |
| 3940 | 3979 | ||
| 3941 | (autoload 'decode-hz-region "china-util" "\ | 3980 | (autoload 'decode-hz-region "china-util" "\ |
| @@ -3973,7 +4012,7 @@ Encode the text in the current buffer to HZ. | |||
| 3973 | ;;;*** | 4012 | ;;;*** |
| 3974 | 4013 | ||
| 3975 | ;;;### (autoloads (command-history list-command-history repeat-matching-complex-command) | 4014 | ;;;### (autoloads (command-history list-command-history repeat-matching-complex-command) |
| 3976 | ;;;;;; "chistory" "chistory.el" (19845 45374)) | 4015 | ;;;;;; "chistory" "chistory.el" (20119 34052)) |
| 3977 | ;;; Generated autoloads from chistory.el | 4016 | ;;; Generated autoloads from chistory.el |
| 3978 | 4017 | ||
| 3979 | (autoload 'repeat-matching-complex-command "chistory" "\ | 4018 | (autoload 'repeat-matching-complex-command "chistory" "\ |
| @@ -4012,7 +4051,7 @@ and runs the normal hook `command-history-hook'. | |||
| 4012 | 4051 | ||
| 4013 | ;;;*** | 4052 | ;;;*** |
| 4014 | 4053 | ||
| 4015 | ;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (19863 8742)) | 4054 | ;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (20138 48832)) |
| 4016 | ;;; Generated autoloads from emacs-lisp/cl.el | 4055 | ;;; Generated autoloads from emacs-lisp/cl.el |
| 4017 | 4056 | ||
| 4018 | (defvar custom-print-functions nil "\ | 4057 | (defvar custom-print-functions nil "\ |
| @@ -4028,7 +4067,7 @@ a future Emacs interpreter will be able to use it.") | |||
| 4028 | ;;;*** | 4067 | ;;;*** |
| 4029 | 4068 | ||
| 4030 | ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "emacs-lisp/cl-indent.el" | 4069 | ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "emacs-lisp/cl-indent.el" |
| 4031 | ;;;;;; (20079 11742)) | 4070 | ;;;;;; (20119 34052)) |
| 4032 | ;;; Generated autoloads from emacs-lisp/cl-indent.el | 4071 | ;;; Generated autoloads from emacs-lisp/cl-indent.el |
| 4033 | 4072 | ||
| 4034 | (autoload 'common-lisp-indent-function "cl-indent" "\ | 4073 | (autoload 'common-lisp-indent-function "cl-indent" "\ |
| @@ -4107,7 +4146,7 @@ For example, the function `case' has an indent property | |||
| 4107 | ;;;*** | 4146 | ;;;*** |
| 4108 | 4147 | ||
| 4109 | ;;;### (autoloads (c-macro-expand) "cmacexp" "progmodes/cmacexp.el" | 4148 | ;;;### (autoloads (c-macro-expand) "cmacexp" "progmodes/cmacexp.el" |
| 4110 | ;;;;;; (19845 45374)) | 4149 | ;;;;;; (20119 34052)) |
| 4111 | ;;; Generated autoloads from progmodes/cmacexp.el | 4150 | ;;; Generated autoloads from progmodes/cmacexp.el |
| 4112 | 4151 | ||
| 4113 | (autoload 'c-macro-expand "cmacexp" "\ | 4152 | (autoload 'c-macro-expand "cmacexp" "\ |
| @@ -4127,8 +4166,8 @@ For use inside Lisp programs, see also `c-macro-expansion'. | |||
| 4127 | 4166 | ||
| 4128 | ;;;*** | 4167 | ;;;*** |
| 4129 | 4168 | ||
| 4130 | ;;;### (autoloads (run-scheme) "cmuscheme" "cmuscheme.el" (20092 | 4169 | ;;;### (autoloads (run-scheme) "cmuscheme" "cmuscheme.el" (20119 |
| 4131 | ;;;;;; 23754)) | 4170 | ;;;;;; 34052)) |
| 4132 | ;;; Generated autoloads from cmuscheme.el | 4171 | ;;; Generated autoloads from cmuscheme.el |
| 4133 | 4172 | ||
| 4134 | (autoload 'run-scheme "cmuscheme" "\ | 4173 | (autoload 'run-scheme "cmuscheme" "\ |
| @@ -4148,7 +4187,7 @@ is run). | |||
| 4148 | 4187 | ||
| 4149 | ;;;*** | 4188 | ;;;*** |
| 4150 | 4189 | ||
| 4151 | ;;;### (autoloads (color-name-to-rgb) "color" "color.el" (19845 45374)) | 4190 | ;;;### (autoloads (color-name-to-rgb) "color" "color.el" (20119 34052)) |
| 4152 | ;;; Generated autoloads from color.el | 4191 | ;;; Generated autoloads from color.el |
| 4153 | 4192 | ||
| 4154 | (autoload 'color-name-to-rgb "color" "\ | 4193 | (autoload 'color-name-to-rgb "color" "\ |
| @@ -4170,7 +4209,7 @@ If FRAME cannot display COLOR, return nil. | |||
| 4170 | ;;;### (autoloads (comint-redirect-results-list-from-process comint-redirect-results-list | 4209 | ;;;### (autoloads (comint-redirect-results-list-from-process comint-redirect-results-list |
| 4171 | ;;;;;; comint-redirect-send-command-to-process comint-redirect-send-command | 4210 | ;;;;;; comint-redirect-send-command-to-process comint-redirect-send-command |
| 4172 | ;;;;;; comint-run make-comint make-comint-in-buffer) "comint" "comint.el" | 4211 | ;;;;;; comint-run make-comint make-comint-in-buffer) "comint" "comint.el" |
| 4173 | ;;;;;; (19981 40664)) | 4212 | ;;;;;; (20135 20784)) |
| 4174 | ;;; Generated autoloads from comint.el | 4213 | ;;; Generated autoloads from comint.el |
| 4175 | 4214 | ||
| 4176 | (defvar comint-output-filter-functions '(comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\ | 4215 | (defvar comint-output-filter-functions '(comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\ |
| @@ -4265,7 +4304,7 @@ REGEXP-GROUP is the regular expression group in REGEXP to use. | |||
| 4265 | ;;;*** | 4304 | ;;;*** |
| 4266 | 4305 | ||
| 4267 | ;;;### (autoloads (compare-windows) "compare-w" "vc/compare-w.el" | 4306 | ;;;### (autoloads (compare-windows) "compare-w" "vc/compare-w.el" |
| 4268 | ;;;;;; (19845 45374)) | 4307 | ;;;;;; (20119 34052)) |
| 4269 | ;;; Generated autoloads from vc/compare-w.el | 4308 | ;;; Generated autoloads from vc/compare-w.el |
| 4270 | 4309 | ||
| 4271 | (autoload 'compare-windows "compare-w" "\ | 4310 | (autoload 'compare-windows "compare-w" "\ |
| @@ -4302,8 +4341,8 @@ on third call it again advances points to the next difference and so on. | |||
| 4302 | ;;;;;; compilation-shell-minor-mode compilation-mode compilation-start | 4341 | ;;;;;; compilation-shell-minor-mode compilation-mode compilation-start |
| 4303 | ;;;;;; compile compilation-disable-input compile-command compilation-search-path | 4342 | ;;;;;; compile compilation-disable-input compile-command compilation-search-path |
| 4304 | ;;;;;; compilation-ask-about-save compilation-window-height compilation-start-hook | 4343 | ;;;;;; compilation-ask-about-save compilation-window-height compilation-start-hook |
| 4305 | ;;;;;; compilation-mode-hook) "compile" "progmodes/compile.el" (20076 | 4344 | ;;;;;; compilation-mode-hook) "compile" "progmodes/compile.el" (20127 |
| 4306 | ;;;;;; 35541)) | 4345 | ;;;;;; 25602)) |
| 4307 | ;;; Generated autoloads from progmodes/compile.el | 4346 | ;;; Generated autoloads from progmodes/compile.el |
| 4308 | 4347 | ||
| 4309 | (defvar compilation-mode-hook nil "\ | 4348 | (defvar compilation-mode-hook nil "\ |
| @@ -4450,21 +4489,27 @@ Runs `compilation-mode-hook' with `run-mode-hooks' (which see). | |||
| 4450 | \(fn &optional NAME-OF-MODE)" t nil) | 4489 | \(fn &optional NAME-OF-MODE)" t nil) |
| 4451 | 4490 | ||
| 4452 | (autoload 'compilation-shell-minor-mode "compile" "\ | 4491 | (autoload 'compilation-shell-minor-mode "compile" "\ |
| 4453 | Toggle compilation shell minor mode. | 4492 | Toggle Compilation Shell minor mode. |
| 4454 | With arg, turn compilation mode on if and only if arg is positive. | 4493 | With a prefix argument ARG, enable Compilation Shell minor mode |
| 4455 | In this minor mode, all the error-parsing commands of the | 4494 | if ARG is positive, and disable it otherwise. If called from |
| 4456 | Compilation major mode are available but bound to keys that don't | 4495 | Lisp, enable the mode if ARG is omitted or nil. |
| 4457 | collide with Shell mode. See `compilation-mode'. | 4496 | |
| 4458 | Turning the mode on runs the normal hook `compilation-shell-minor-mode-hook'. | 4497 | When Compilation Shell minor mode is enabled, all the |
| 4498 | error-parsing commands of the Compilation major mode are | ||
| 4499 | available but bound to keys that don't collide with Shell mode. | ||
| 4500 | See `compilation-mode'. | ||
| 4459 | 4501 | ||
| 4460 | \(fn &optional ARG)" t nil) | 4502 | \(fn &optional ARG)" t nil) |
| 4461 | 4503 | ||
| 4462 | (autoload 'compilation-minor-mode "compile" "\ | 4504 | (autoload 'compilation-minor-mode "compile" "\ |
| 4463 | Toggle compilation minor mode. | 4505 | Toggle Compilation minor mode. |
| 4464 | With arg, turn compilation mode on if and only if arg is positive. | 4506 | With a prefix argument ARG, enable Compilation minor mode if ARG |
| 4465 | In this minor mode, all the error-parsing commands of the | 4507 | is positive, and disable it otherwise. If called from Lisp, |
| 4466 | Compilation major mode are available. See `compilation-mode'. | 4508 | enable the mode if ARG is omitted or nil. |
| 4467 | Turning the mode on runs the normal hook `compilation-minor-mode-hook'. | 4509 | |
| 4510 | When Compilation minor mode is enabled, all the error-parsing | ||
| 4511 | commands of Compilation major mode are available. See | ||
| 4512 | `compilation-mode'. | ||
| 4468 | 4513 | ||
| 4469 | \(fn &optional ARG)" t nil) | 4514 | \(fn &optional ARG)" t nil) |
| 4470 | 4515 | ||
| @@ -4477,7 +4522,7 @@ This is the value of `next-error-function' in Compilation buffers. | |||
| 4477 | ;;;*** | 4522 | ;;;*** |
| 4478 | 4523 | ||
| 4479 | ;;;### (autoloads (dynamic-completion-mode) "completion" "completion.el" | 4524 | ;;;### (autoloads (dynamic-completion-mode) "completion" "completion.el" |
| 4480 | ;;;;;; (19886 45771)) | 4525 | ;;;;;; (20119 34052)) |
| 4481 | ;;; Generated autoloads from completion.el | 4526 | ;;; Generated autoloads from completion.el |
| 4482 | 4527 | ||
| 4483 | (defvar dynamic-completion-mode nil "\ | 4528 | (defvar dynamic-completion-mode nil "\ |
| @@ -4499,7 +4544,7 @@ Enable dynamic word-completion. | |||
| 4499 | ;;;### (autoloads (conf-xdefaults-mode conf-ppd-mode conf-colon-mode | 4544 | ;;;### (autoloads (conf-xdefaults-mode conf-ppd-mode conf-colon-mode |
| 4500 | ;;;;;; conf-space-keywords conf-space-mode conf-javaprop-mode conf-windows-mode | 4545 | ;;;;;; conf-space-keywords conf-space-mode conf-javaprop-mode conf-windows-mode |
| 4501 | ;;;;;; conf-unix-mode conf-mode) "conf-mode" "textmodes/conf-mode.el" | 4546 | ;;;;;; conf-unix-mode conf-mode) "conf-mode" "textmodes/conf-mode.el" |
| 4502 | ;;;;;; (19845 45374)) | 4547 | ;;;;;; (20119 34052)) |
| 4503 | ;;; Generated autoloads from textmodes/conf-mode.el | 4548 | ;;; Generated autoloads from textmodes/conf-mode.el |
| 4504 | 4549 | ||
| 4505 | (autoload 'conf-mode "conf-mode" "\ | 4550 | (autoload 'conf-mode "conf-mode" "\ |
| @@ -4655,7 +4700,7 @@ For details see `conf-mode'. Example: | |||
| 4655 | ;;;*** | 4700 | ;;;*** |
| 4656 | 4701 | ||
| 4657 | ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) | 4702 | ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) |
| 4658 | ;;;;;; "cookie1" "play/cookie1.el" (19845 45374)) | 4703 | ;;;;;; "cookie1" "play/cookie1.el" (20119 34052)) |
| 4659 | ;;; Generated autoloads from play/cookie1.el | 4704 | ;;; Generated autoloads from play/cookie1.el |
| 4660 | 4705 | ||
| 4661 | (autoload 'cookie "cookie1" "\ | 4706 | (autoload 'cookie "cookie1" "\ |
| @@ -4687,8 +4732,8 @@ Randomly permute the elements of VECTOR (all permutations equally likely). | |||
| 4687 | ;;;*** | 4732 | ;;;*** |
| 4688 | 4733 | ||
| 4689 | ;;;### (autoloads (copyright-update-directory copyright copyright-fix-years | 4734 | ;;;### (autoloads (copyright-update-directory copyright copyright-fix-years |
| 4690 | ;;;;;; copyright-update) "copyright" "emacs-lisp/copyright.el" (19845 | 4735 | ;;;;;; copyright-update) "copyright" "emacs-lisp/copyright.el" (20119 |
| 4691 | ;;;;;; 45374)) | 4736 | ;;;;;; 34052)) |
| 4692 | ;;; Generated autoloads from emacs-lisp/copyright.el | 4737 | ;;; Generated autoloads from emacs-lisp/copyright.el |
| 4693 | (put 'copyright-at-end-flag 'safe-local-variable 'booleanp) | 4738 | (put 'copyright-at-end-flag 'safe-local-variable 'booleanp) |
| 4694 | (put 'copyright-names-regexp 'safe-local-variable 'stringp) | 4739 | (put 'copyright-names-regexp 'safe-local-variable 'stringp) |
| @@ -4727,7 +4772,7 @@ If FIX is non-nil, run `copyright-fix-years' instead. | |||
| 4727 | ;;;*** | 4772 | ;;;*** |
| 4728 | 4773 | ||
| 4729 | ;;;### (autoloads (cperl-perldoc-at-point cperl-perldoc cperl-mode) | 4774 | ;;;### (autoloads (cperl-perldoc-at-point cperl-perldoc cperl-mode) |
| 4730 | ;;;;;; "cperl-mode" "progmodes/cperl-mode.el" (19997 56302)) | 4775 | ;;;;;; "cperl-mode" "progmodes/cperl-mode.el" (20119 34052)) |
| 4731 | ;;; Generated autoloads from progmodes/cperl-mode.el | 4776 | ;;; Generated autoloads from progmodes/cperl-mode.el |
| 4732 | (put 'cperl-indent-level 'safe-local-variable 'integerp) | 4777 | (put 'cperl-indent-level 'safe-local-variable 'integerp) |
| 4733 | (put 'cperl-brace-offset 'safe-local-variable 'integerp) | 4778 | (put 'cperl-brace-offset 'safe-local-variable 'integerp) |
| @@ -4926,7 +4971,7 @@ Run a `perldoc' on the word around point. | |||
| 4926 | ;;;*** | 4971 | ;;;*** |
| 4927 | 4972 | ||
| 4928 | ;;;### (autoloads (cpp-parse-edit cpp-highlight-buffer) "cpp" "progmodes/cpp.el" | 4973 | ;;;### (autoloads (cpp-parse-edit cpp-highlight-buffer) "cpp" "progmodes/cpp.el" |
| 4929 | ;;;;;; (19890 42850)) | 4974 | ;;;;;; (20119 34052)) |
| 4930 | ;;; Generated autoloads from progmodes/cpp.el | 4975 | ;;; Generated autoloads from progmodes/cpp.el |
| 4931 | 4976 | ||
| 4932 | (autoload 'cpp-highlight-buffer "cpp" "\ | 4977 | (autoload 'cpp-highlight-buffer "cpp" "\ |
| @@ -4945,7 +4990,7 @@ Edit display information for cpp conditionals. | |||
| 4945 | ;;;*** | 4990 | ;;;*** |
| 4946 | 4991 | ||
| 4947 | ;;;### (autoloads (crisp-mode crisp-mode) "crisp" "emulation/crisp.el" | 4992 | ;;;### (autoloads (crisp-mode crisp-mode) "crisp" "emulation/crisp.el" |
| 4948 | ;;;;;; (19845 45374)) | 4993 | ;;;;;; (20140 44288)) |
| 4949 | ;;; Generated autoloads from emulation/crisp.el | 4994 | ;;; Generated autoloads from emulation/crisp.el |
| 4950 | 4995 | ||
| 4951 | (defvar crisp-mode nil "\ | 4996 | (defvar crisp-mode nil "\ |
| @@ -4959,8 +5004,10 @@ use either M-x customize or the function `crisp-mode'.") | |||
| 4959 | (custom-autoload 'crisp-mode "crisp" nil) | 5004 | (custom-autoload 'crisp-mode "crisp" nil) |
| 4960 | 5005 | ||
| 4961 | (autoload 'crisp-mode "crisp" "\ | 5006 | (autoload 'crisp-mode "crisp" "\ |
| 4962 | Toggle CRiSP/Brief emulation minor mode. | 5007 | Toggle CRiSP/Brief emulation (CRiSP mode). |
| 4963 | With ARG, turn CRiSP mode on if ARG is positive, off otherwise. | 5008 | With a prefix argument ARG, enable CRiSP mode if ARG is positive, |
| 5009 | and disable it otherwise. If called from Lisp, enable the mode | ||
| 5010 | if ARG is omitted or nil. | ||
| 4964 | 5011 | ||
| 4965 | \(fn &optional ARG)" t nil) | 5012 | \(fn &optional ARG)" t nil) |
| 4966 | 5013 | ||
| @@ -4969,7 +5016,7 @@ With ARG, turn CRiSP mode on if ARG is positive, off otherwise. | |||
| 4969 | ;;;*** | 5016 | ;;;*** |
| 4970 | 5017 | ||
| 4971 | ;;;### (autoloads (completing-read-multiple) "crm" "emacs-lisp/crm.el" | 5018 | ;;;### (autoloads (completing-read-multiple) "crm" "emacs-lisp/crm.el" |
| 4972 | ;;;;;; (19845 45374)) | 5019 | ;;;;;; (20119 34052)) |
| 4973 | ;;; Generated autoloads from emacs-lisp/crm.el | 5020 | ;;; Generated autoloads from emacs-lisp/crm.el |
| 4974 | 5021 | ||
| 4975 | (autoload 'completing-read-multiple "crm" "\ | 5022 | (autoload 'completing-read-multiple "crm" "\ |
| @@ -5004,8 +5051,8 @@ INHERIT-INPUT-METHOD. | |||
| 5004 | 5051 | ||
| 5005 | ;;;*** | 5052 | ;;;*** |
| 5006 | 5053 | ||
| 5007 | ;;;### (autoloads (css-mode) "css-mode" "textmodes/css-mode.el" (19978 | 5054 | ;;;### (autoloads (css-mode) "css-mode" "textmodes/css-mode.el" (20119 |
| 5008 | ;;;;;; 37530)) | 5055 | ;;;;;; 34052)) |
| 5009 | ;;; Generated autoloads from textmodes/css-mode.el | 5056 | ;;; Generated autoloads from textmodes/css-mode.el |
| 5010 | 5057 | ||
| 5011 | (autoload 'css-mode "css-mode" "\ | 5058 | (autoload 'css-mode "css-mode" "\ |
| @@ -5016,7 +5063,7 @@ Major mode to edit Cascading Style Sheets. | |||
| 5016 | ;;;*** | 5063 | ;;;*** |
| 5017 | 5064 | ||
| 5018 | ;;;### (autoloads (cua-selection-mode cua-mode) "cua-base" "emulation/cua-base.el" | 5065 | ;;;### (autoloads (cua-selection-mode cua-mode) "cua-base" "emulation/cua-base.el" |
| 5019 | ;;;;;; (19894 39890)) | 5066 | ;;;;;; (20128 38948)) |
| 5020 | ;;; Generated autoloads from emulation/cua-base.el | 5067 | ;;; Generated autoloads from emulation/cua-base.el |
| 5021 | 5068 | ||
| 5022 | (defvar cua-mode nil "\ | 5069 | (defvar cua-mode nil "\ |
| @@ -5029,16 +5076,17 @@ or call the function `cua-mode'.") | |||
| 5029 | (custom-autoload 'cua-mode "cua-base" nil) | 5076 | (custom-autoload 'cua-mode "cua-base" nil) |
| 5030 | 5077 | ||
| 5031 | (autoload 'cua-mode "cua-base" "\ | 5078 | (autoload 'cua-mode "cua-base" "\ |
| 5032 | Toggle CUA key-binding mode. | 5079 | Toggle Common User Access style editing (CUA mode). |
| 5033 | When enabled, using shifted movement keys will activate the | 5080 | With a prefix argument ARG, enable CUA mode if ARG is positive, |
| 5034 | region (and highlight the region using `transient-mark-mode'), | 5081 | and disable it otherwise. If called from Lisp, enable the mode |
| 5035 | and typed text replaces the active selection. | 5082 | if ARG is omitted or nil. |
| 5036 | 5083 | ||
| 5037 | Also when enabled, you can use C-z, C-x, C-c, and C-v to undo, | 5084 | CUA mode is a global minor mode. When enabled, typed text |
| 5038 | cut, copy, and paste in addition to the normal Emacs bindings. | 5085 | replaces the active selection, and you can use C-z, C-x, C-c, and |
| 5039 | The C-x and C-c keys only do cut and copy when the region is | 5086 | C-v to undo, cut, copy, and paste in addition to the normal Emacs |
| 5040 | active, so in most cases, they do not conflict with the normal | 5087 | bindings. The C-x and C-c keys only do cut and copy when the |
| 5041 | function of these prefix keys. | 5088 | region is active, so in most cases, they do not conflict with the |
| 5089 | normal function of these prefix keys. | ||
| 5042 | 5090 | ||
| 5043 | If you really need to perform a command which starts with one of | 5091 | If you really need to perform a command which starts with one of |
| 5044 | the prefix keys even when the region is active, you have three | 5092 | the prefix keys even when the region is active, you have three |
| @@ -5075,7 +5123,7 @@ Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings. | |||
| 5075 | ;;;;;; customize-mode customize customize-push-and-save customize-save-variable | 5123 | ;;;;;; customize-mode customize customize-push-and-save customize-save-variable |
| 5076 | ;;;;;; customize-set-variable customize-set-value custom-menu-sort-alphabetically | 5124 | ;;;;;; customize-set-variable customize-set-value custom-menu-sort-alphabetically |
| 5077 | ;;;;;; custom-buffer-sort-alphabetically custom-browse-sort-alphabetically) | 5125 | ;;;;;; custom-buffer-sort-alphabetically custom-browse-sort-alphabetically) |
| 5078 | ;;;;;; "cus-edit" "cus-edit.el" (20092 23754)) | 5126 | ;;;;;; "cus-edit" "cus-edit.el" (20119 34052)) |
| 5079 | ;;; Generated autoloads from cus-edit.el | 5127 | ;;; Generated autoloads from cus-edit.el |
| 5080 | 5128 | ||
| 5081 | (defvar custom-browse-sort-alphabetically nil "\ | 5129 | (defvar custom-browse-sort-alphabetically nil "\ |
| @@ -5391,8 +5439,8 @@ The format is suitable for use with `easy-menu-define'. | |||
| 5391 | ;;;*** | 5439 | ;;;*** |
| 5392 | 5440 | ||
| 5393 | ;;;### (autoloads (customize-themes describe-theme custom-theme-visit-theme | 5441 | ;;;### (autoloads (customize-themes describe-theme custom-theme-visit-theme |
| 5394 | ;;;;;; customize-create-theme) "cus-theme" "cus-theme.el" (20059 | 5442 | ;;;;;; customize-create-theme) "cus-theme" "cus-theme.el" (20119 |
| 5395 | ;;;;;; 26455)) | 5443 | ;;;;;; 34052)) |
| 5396 | ;;; Generated autoloads from cus-theme.el | 5444 | ;;; Generated autoloads from cus-theme.el |
| 5397 | 5445 | ||
| 5398 | (autoload 'customize-create-theme "cus-theme" "\ | 5446 | (autoload 'customize-create-theme "cus-theme" "\ |
| @@ -5424,7 +5472,7 @@ omitted, a buffer named *Custom Themes* is used. | |||
| 5424 | ;;;*** | 5472 | ;;;*** |
| 5425 | 5473 | ||
| 5426 | ;;;### (autoloads (cvs-status-mode) "cvs-status" "vc/cvs-status.el" | 5474 | ;;;### (autoloads (cvs-status-mode) "cvs-status" "vc/cvs-status.el" |
| 5427 | ;;;;;; (19863 8742)) | 5475 | ;;;;;; (20119 34052)) |
| 5428 | ;;; Generated autoloads from vc/cvs-status.el | 5476 | ;;; Generated autoloads from vc/cvs-status.el |
| 5429 | 5477 | ||
| 5430 | (autoload 'cvs-status-mode "cvs-status" "\ | 5478 | (autoload 'cvs-status-mode "cvs-status" "\ |
| @@ -5435,7 +5483,7 @@ Mode used for cvs status output. | |||
| 5435 | ;;;*** | 5483 | ;;;*** |
| 5436 | 5484 | ||
| 5437 | ;;;### (autoloads (global-cwarn-mode turn-on-cwarn-mode cwarn-mode) | 5485 | ;;;### (autoloads (global-cwarn-mode turn-on-cwarn-mode cwarn-mode) |
| 5438 | ;;;;;; "cwarn" "progmodes/cwarn.el" (19845 45374)) | 5486 | ;;;;;; "cwarn" "progmodes/cwarn.el" (20119 34052)) |
| 5439 | ;;; Generated autoloads from progmodes/cwarn.el | 5487 | ;;; Generated autoloads from progmodes/cwarn.el |
| 5440 | 5488 | ||
| 5441 | (autoload 'cwarn-mode "cwarn" "\ | 5489 | (autoload 'cwarn-mode "cwarn" "\ |
| @@ -5469,9 +5517,11 @@ or call the function `global-cwarn-mode'.") | |||
| 5469 | (custom-autoload 'global-cwarn-mode "cwarn" nil) | 5517 | (custom-autoload 'global-cwarn-mode "cwarn" nil) |
| 5470 | 5518 | ||
| 5471 | (autoload 'global-cwarn-mode "cwarn" "\ | 5519 | (autoload 'global-cwarn-mode "cwarn" "\ |
| 5472 | Toggle Cwarn mode in every possible buffer. | 5520 | Toggle Cwarn mode in all buffers. |
| 5473 | With prefix ARG, turn Global-Cwarn mode on if and only if | 5521 | With prefix ARG, enable Global-Cwarn mode if ARG is positive; |
| 5474 | ARG is positive. | 5522 | otherwise, disable it. If called from Lisp, enable the mode if |
| 5523 | ARG is omitted or nil. | ||
| 5524 | |||
| 5475 | Cwarn mode is enabled in all buffers where | 5525 | Cwarn mode is enabled in all buffers where |
| 5476 | `turn-on-cwarn-mode-if-enabled' would do it. | 5526 | `turn-on-cwarn-mode-if-enabled' would do it. |
| 5477 | See `cwarn-mode' for more information on Cwarn mode. | 5527 | See `cwarn-mode' for more information on Cwarn mode. |
| @@ -5482,7 +5532,7 @@ See `cwarn-mode' for more information on Cwarn mode. | |||
| 5482 | 5532 | ||
| 5483 | ;;;### (autoloads (standard-display-cyrillic-translit cyrillic-encode-alternativnyj-char | 5533 | ;;;### (autoloads (standard-display-cyrillic-translit cyrillic-encode-alternativnyj-char |
| 5484 | ;;;;;; cyrillic-encode-koi8-r-char) "cyril-util" "language/cyril-util.el" | 5534 | ;;;;;; cyrillic-encode-koi8-r-char) "cyril-util" "language/cyril-util.el" |
| 5485 | ;;;;;; (19845 45374)) | 5535 | ;;;;;; (20119 34052)) |
| 5486 | ;;; Generated autoloads from language/cyril-util.el | 5536 | ;;; Generated autoloads from language/cyril-util.el |
| 5487 | 5537 | ||
| 5488 | (autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\ | 5538 | (autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\ |
| @@ -5511,7 +5561,7 @@ If the argument is nil, we return the display table to its standard state. | |||
| 5511 | ;;;*** | 5561 | ;;;*** |
| 5512 | 5562 | ||
| 5513 | ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "dabbrev.el" | 5563 | ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "dabbrev.el" |
| 5514 | ;;;;;; (19989 34789)) | 5564 | ;;;;;; (20119 34052)) |
| 5515 | ;;; Generated autoloads from dabbrev.el | 5565 | ;;; Generated autoloads from dabbrev.el |
| 5516 | (put 'dabbrev-case-fold-search 'risky-local-variable t) | 5566 | (put 'dabbrev-case-fold-search 'risky-local-variable t) |
| 5517 | (put 'dabbrev-case-replace 'risky-local-variable t) | 5567 | (put 'dabbrev-case-replace 'risky-local-variable t) |
| @@ -5558,7 +5608,7 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]. | |||
| 5558 | ;;;*** | 5608 | ;;;*** |
| 5559 | 5609 | ||
| 5560 | ;;;### (autoloads (data-debug-new-buffer) "data-debug" "cedet/data-debug.el" | 5610 | ;;;### (autoloads (data-debug-new-buffer) "data-debug" "cedet/data-debug.el" |
| 5561 | ;;;;;; (19845 45374)) | 5611 | ;;;;;; (20119 34052)) |
| 5562 | ;;; Generated autoloads from cedet/data-debug.el | 5612 | ;;; Generated autoloads from cedet/data-debug.el |
| 5563 | 5613 | ||
| 5564 | (autoload 'data-debug-new-buffer "data-debug" "\ | 5614 | (autoload 'data-debug-new-buffer "data-debug" "\ |
| @@ -5568,8 +5618,8 @@ Create a new data-debug buffer with NAME. | |||
| 5568 | 5618 | ||
| 5569 | ;;;*** | 5619 | ;;;*** |
| 5570 | 5620 | ||
| 5571 | ;;;### (autoloads (dbus-handle-event) "dbus" "net/dbus.el" (20096 | 5621 | ;;;### (autoloads (dbus-handle-event) "dbus" "net/dbus.el" (20119 |
| 5572 | ;;;;;; 20817)) | 5622 | ;;;;;; 34052)) |
| 5573 | ;;; Generated autoloads from net/dbus.el | 5623 | ;;; Generated autoloads from net/dbus.el |
| 5574 | 5624 | ||
| 5575 | (autoload 'dbus-handle-event "dbus" "\ | 5625 | (autoload 'dbus-handle-event "dbus" "\ |
| @@ -5582,8 +5632,8 @@ If the HANDLER returns a `dbus-error', it is propagated as return message. | |||
| 5582 | 5632 | ||
| 5583 | ;;;*** | 5633 | ;;;*** |
| 5584 | 5634 | ||
| 5585 | ;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (19890 | 5635 | ;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (20119 |
| 5586 | ;;;;;; 42850)) | 5636 | ;;;;;; 34052)) |
| 5587 | ;;; Generated autoloads from progmodes/dcl-mode.el | 5637 | ;;; Generated autoloads from progmodes/dcl-mode.el |
| 5588 | 5638 | ||
| 5589 | (autoload 'dcl-mode "dcl-mode" "\ | 5639 | (autoload 'dcl-mode "dcl-mode" "\ |
| @@ -5710,7 +5760,7 @@ There is some minimal font-lock support (see vars | |||
| 5710 | ;;;*** | 5760 | ;;;*** |
| 5711 | 5761 | ||
| 5712 | ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" | 5762 | ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" |
| 5713 | ;;;;;; "emacs-lisp/debug.el" (20098 62550)) | 5763 | ;;;;;; "emacs-lisp/debug.el" (20119 34052)) |
| 5714 | ;;; Generated autoloads from emacs-lisp/debug.el | 5764 | ;;; Generated autoloads from emacs-lisp/debug.el |
| 5715 | 5765 | ||
| 5716 | (setq debugger 'debug) | 5766 | (setq debugger 'debug) |
| @@ -5754,7 +5804,7 @@ To specify a nil argument interactively, exit with an empty minibuffer. | |||
| 5754 | ;;;*** | 5804 | ;;;*** |
| 5755 | 5805 | ||
| 5756 | ;;;### (autoloads (decipher-mode decipher) "decipher" "play/decipher.el" | 5806 | ;;;### (autoloads (decipher-mode decipher) "decipher" "play/decipher.el" |
| 5757 | ;;;;;; (19889 21967)) | 5807 | ;;;;;; (20119 34052)) |
| 5758 | ;;; Generated autoloads from play/decipher.el | 5808 | ;;; Generated autoloads from play/decipher.el |
| 5759 | 5809 | ||
| 5760 | (autoload 'decipher "decipher" "\ | 5810 | (autoload 'decipher "decipher" "\ |
| @@ -5783,8 +5833,8 @@ The most useful commands are: | |||
| 5783 | ;;;*** | 5833 | ;;;*** |
| 5784 | 5834 | ||
| 5785 | ;;;### (autoloads (delimit-columns-rectangle delimit-columns-region | 5835 | ;;;### (autoloads (delimit-columns-rectangle delimit-columns-region |
| 5786 | ;;;;;; delimit-columns-customize) "delim-col" "delim-col.el" (19886 | 5836 | ;;;;;; delimit-columns-customize) "delim-col" "delim-col.el" (20119 |
| 5787 | ;;;;;; 45771)) | 5837 | ;;;;;; 34052)) |
| 5788 | ;;; Generated autoloads from delim-col.el | 5838 | ;;; Generated autoloads from delim-col.el |
| 5789 | 5839 | ||
| 5790 | (autoload 'delimit-columns-customize "delim-col" "\ | 5840 | (autoload 'delimit-columns-customize "delim-col" "\ |
| @@ -5808,8 +5858,8 @@ START and END delimits the corners of text rectangle. | |||
| 5808 | 5858 | ||
| 5809 | ;;;*** | 5859 | ;;;*** |
| 5810 | 5860 | ||
| 5811 | ;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (19965 | 5861 | ;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (20119 |
| 5812 | ;;;;;; 52428)) | 5862 | ;;;;;; 34052)) |
| 5813 | ;;; Generated autoloads from progmodes/delphi.el | 5863 | ;;; Generated autoloads from progmodes/delphi.el |
| 5814 | 5864 | ||
| 5815 | (autoload 'delphi-mode "delphi" "\ | 5865 | (autoload 'delphi-mode "delphi" "\ |
| @@ -5860,8 +5910,8 @@ with no args, if that value is non-nil. | |||
| 5860 | 5910 | ||
| 5861 | ;;;*** | 5911 | ;;;*** |
| 5862 | 5912 | ||
| 5863 | ;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (19845 | 5913 | ;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (20126 |
| 5864 | ;;;;;; 45374)) | 5914 | ;;;;;; 50889)) |
| 5865 | ;;; Generated autoloads from delsel.el | 5915 | ;;; Generated autoloads from delsel.el |
| 5866 | 5916 | ||
| 5867 | (defalias 'pending-delete-mode 'delete-selection-mode) | 5917 | (defalias 'pending-delete-mode 'delete-selection-mode) |
| @@ -5877,8 +5927,9 @@ or call the function `delete-selection-mode'.") | |||
| 5877 | 5927 | ||
| 5878 | (autoload 'delete-selection-mode "delsel" "\ | 5928 | (autoload 'delete-selection-mode "delsel" "\ |
| 5879 | Toggle Delete Selection mode. | 5929 | Toggle Delete Selection mode. |
| 5880 | With prefix ARG, turn Delete Selection mode on if ARG is | 5930 | With a prefix argument ARG, enable Delete Selection mode if ARG |
| 5881 | positive, off if ARG is not positive. | 5931 | is positive, and disable it otherwise. If called from Lisp, |
| 5932 | enable the mode if ARG is omitted or nil. | ||
| 5882 | 5933 | ||
| 5883 | When Delete Selection mode is enabled, Transient Mark mode is also | 5934 | When Delete Selection mode is enabled, Transient Mark mode is also |
| 5884 | enabled and typed text replaces the selection if the selection is | 5935 | enabled and typed text replaces the selection if the selection is |
| @@ -5890,7 +5941,7 @@ any selection. | |||
| 5890 | ;;;*** | 5941 | ;;;*** |
| 5891 | 5942 | ||
| 5892 | ;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) | 5943 | ;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) |
| 5893 | ;;;;;; "derived" "emacs-lisp/derived.el" (20054 8529)) | 5944 | ;;;;;; "derived" "emacs-lisp/derived.el" (20134 8296)) |
| 5894 | ;;; Generated autoloads from emacs-lisp/derived.el | 5945 | ;;; Generated autoloads from emacs-lisp/derived.el |
| 5895 | 5946 | ||
| 5896 | (autoload 'define-derived-mode "derived" "\ | 5947 | (autoload 'define-derived-mode "derived" "\ |
| @@ -5957,7 +6008,7 @@ the first time the mode is used. | |||
| 5957 | ;;;*** | 6008 | ;;;*** |
| 5958 | 6009 | ||
| 5959 | ;;;### (autoloads (describe-char describe-text-properties) "descr-text" | 6010 | ;;;### (autoloads (describe-char describe-text-properties) "descr-text" |
| 5960 | ;;;;;; "descr-text.el" (20100 17869)) | 6011 | ;;;;;; "descr-text.el" (20127 27092)) |
| 5961 | ;;; Generated autoloads from descr-text.el | 6012 | ;;; Generated autoloads from descr-text.el |
| 5962 | 6013 | ||
| 5963 | (autoload 'describe-text-properties "descr-text" "\ | 6014 | (autoload 'describe-text-properties "descr-text" "\ |
| @@ -5985,7 +6036,7 @@ as well as widgets, buttons, overlays, and text properties. | |||
| 5985 | ;;;### (autoloads (desktop-revert desktop-save-in-desktop-dir desktop-change-dir | 6036 | ;;;### (autoloads (desktop-revert desktop-save-in-desktop-dir desktop-change-dir |
| 5986 | ;;;;;; desktop-load-default desktop-read desktop-remove desktop-save | 6037 | ;;;;;; desktop-load-default desktop-read desktop-remove desktop-save |
| 5987 | ;;;;;; desktop-clear desktop-locals-to-save desktop-save-mode) "desktop" | 6038 | ;;;;;; desktop-clear desktop-locals-to-save desktop-save-mode) "desktop" |
| 5988 | ;;;;;; "desktop.el" (19886 45771)) | 6039 | ;;;;;; "desktop.el" (20126 50898)) |
| 5989 | ;;; Generated autoloads from desktop.el | 6040 | ;;; Generated autoloads from desktop.el |
| 5990 | 6041 | ||
| 5991 | (defvar desktop-save-mode nil "\ | 6042 | (defvar desktop-save-mode nil "\ |
| @@ -5995,11 +6046,14 @@ See the command `desktop-save-mode' for a description of this minor mode.") | |||
| 5995 | (custom-autoload 'desktop-save-mode "desktop" nil) | 6046 | (custom-autoload 'desktop-save-mode "desktop" nil) |
| 5996 | 6047 | ||
| 5997 | (autoload 'desktop-save-mode "desktop" "\ | 6048 | (autoload 'desktop-save-mode "desktop" "\ |
| 5998 | Toggle desktop saving mode. | 6049 | Toggle desktop saving (Desktop Save mode). |
| 5999 | With numeric ARG, turn desktop saving on if ARG is positive, off | 6050 | With a prefix argument ARG, enable Desktop Save mode if ARG is |
| 6000 | otherwise. If desktop saving is turned on, the state of Emacs is | 6051 | positive, and disable it otherwise. If called from Lisp, enable |
| 6001 | saved from one session to another. See variable `desktop-save' | 6052 | the mode if ARG is omitted or nil. |
| 6002 | and function `desktop-read' for details. | 6053 | |
| 6054 | If Desktop Save mode is enabled, the state of Emacs is saved from | ||
| 6055 | one session to another. See variable `desktop-save' and function | ||
| 6056 | `desktop-read' for details. | ||
| 6003 | 6057 | ||
| 6004 | \(fn &optional ARG)" t nil) | 6058 | \(fn &optional ARG)" t nil) |
| 6005 | 6059 | ||
| @@ -6169,7 +6223,7 @@ Revert to the last loaded desktop. | |||
| 6169 | 6223 | ||
| 6170 | ;;;### (autoloads (gnus-article-outlook-deuglify-article gnus-outlook-deuglify-article | 6224 | ;;;### (autoloads (gnus-article-outlook-deuglify-article gnus-outlook-deuglify-article |
| 6171 | ;;;;;; gnus-article-outlook-repair-attribution gnus-article-outlook-unwrap-lines) | 6225 | ;;;;;; gnus-article-outlook-repair-attribution gnus-article-outlook-unwrap-lines) |
| 6172 | ;;;;;; "deuglify" "gnus/deuglify.el" (19845 45374)) | 6226 | ;;;;;; "deuglify" "gnus/deuglify.el" (20119 34052)) |
| 6173 | ;;; Generated autoloads from gnus/deuglify.el | 6227 | ;;; Generated autoloads from gnus/deuglify.el |
| 6174 | 6228 | ||
| 6175 | (autoload 'gnus-article-outlook-unwrap-lines "deuglify" "\ | 6229 | (autoload 'gnus-article-outlook-unwrap-lines "deuglify" "\ |
| @@ -6202,7 +6256,7 @@ Deuglify broken Outlook (Express) articles and redisplay. | |||
| 6202 | ;;;*** | 6256 | ;;;*** |
| 6203 | 6257 | ||
| 6204 | ;;;### (autoloads (diary-mode diary-mail-entries diary) "diary-lib" | 6258 | ;;;### (autoloads (diary-mode diary-mail-entries diary) "diary-lib" |
| 6205 | ;;;;;; "calendar/diary-lib.el" (19975 1875)) | 6259 | ;;;;;; "calendar/diary-lib.el" (20119 34052)) |
| 6206 | ;;; Generated autoloads from calendar/diary-lib.el | 6260 | ;;; Generated autoloads from calendar/diary-lib.el |
| 6207 | 6261 | ||
| 6208 | (autoload 'diary "diary-lib" "\ | 6262 | (autoload 'diary "diary-lib" "\ |
| @@ -6245,7 +6299,7 @@ Major mode for editing the diary file. | |||
| 6245 | ;;;*** | 6299 | ;;;*** |
| 6246 | 6300 | ||
| 6247 | ;;;### (autoloads (diff-buffer-with-file diff-backup diff diff-command | 6301 | ;;;### (autoloads (diff-buffer-with-file diff-backup diff diff-command |
| 6248 | ;;;;;; diff-switches) "diff" "vc/diff.el" (19999 41597)) | 6302 | ;;;;;; diff-switches) "diff" "vc/diff.el" (20119 34052)) |
| 6249 | ;;; Generated autoloads from vc/diff.el | 6303 | ;;; Generated autoloads from vc/diff.el |
| 6250 | 6304 | ||
| 6251 | (defvar diff-switches (purecopy "-c") "\ | 6305 | (defvar diff-switches (purecopy "-c") "\ |
| @@ -6289,7 +6343,7 @@ This requires the external program `diff' to be in your `exec-path'. | |||
| 6289 | ;;;*** | 6343 | ;;;*** |
| 6290 | 6344 | ||
| 6291 | ;;;### (autoloads (diff-minor-mode diff-mode) "diff-mode" "vc/diff-mode.el" | 6345 | ;;;### (autoloads (diff-minor-mode diff-mode) "diff-mode" "vc/diff-mode.el" |
| 6292 | ;;;;;; (19930 13389)) | 6346 | ;;;;;; (20127 23725)) |
| 6293 | ;;; Generated autoloads from vc/diff-mode.el | 6347 | ;;; Generated autoloads from vc/diff-mode.el |
| 6294 | 6348 | ||
| 6295 | (autoload 'diff-mode "diff-mode" "\ | 6349 | (autoload 'diff-mode "diff-mode" "\ |
| @@ -6310,14 +6364,18 @@ a diff with \\[diff-reverse-direction]. | |||
| 6310 | \(fn)" t nil) | 6364 | \(fn)" t nil) |
| 6311 | 6365 | ||
| 6312 | (autoload 'diff-minor-mode "diff-mode" "\ | 6366 | (autoload 'diff-minor-mode "diff-mode" "\ |
| 6313 | Minor mode for viewing/editing context diffs. | 6367 | Toggle Diff minor mode. |
| 6368 | With a prefix argument ARG, enable Diff minor mode if ARG is | ||
| 6369 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 6370 | the mode if ARG is omitted or nil. | ||
| 6371 | |||
| 6314 | \\{diff-minor-mode-map} | 6372 | \\{diff-minor-mode-map} |
| 6315 | 6373 | ||
| 6316 | \(fn &optional ARG)" t nil) | 6374 | \(fn &optional ARG)" t nil) |
| 6317 | 6375 | ||
| 6318 | ;;;*** | 6376 | ;;;*** |
| 6319 | 6377 | ||
| 6320 | ;;;### (autoloads (dig) "dig" "net/dig.el" (19845 45374)) | 6378 | ;;;### (autoloads (dig) "dig" "net/dig.el" (20119 34052)) |
| 6321 | ;;; Generated autoloads from net/dig.el | 6379 | ;;; Generated autoloads from net/dig.el |
| 6322 | 6380 | ||
| 6323 | (autoload 'dig "dig" "\ | 6381 | (autoload 'dig "dig" "\ |
| @@ -6329,7 +6387,7 @@ Optional arguments are passed to `dig-invoke'. | |||
| 6329 | ;;;*** | 6387 | ;;;*** |
| 6330 | 6388 | ||
| 6331 | ;;;### (autoloads (dired-mode dired-noselect dired-other-frame dired-other-window | 6389 | ;;;### (autoloads (dired-mode dired-noselect dired-other-frame dired-other-window |
| 6332 | ;;;;;; dired dired-listing-switches) "dired" "dired.el" (20087 5852)) | 6390 | ;;;;;; dired dired-listing-switches) "dired" "dired.el" (20140 44600)) |
| 6333 | ;;; Generated autoloads from dired.el | 6391 | ;;; Generated autoloads from dired.el |
| 6334 | 6392 | ||
| 6335 | (defvar dired-listing-switches (purecopy "-al") "\ | 6393 | (defvar dired-listing-switches (purecopy "-al") "\ |
| @@ -6451,11 +6509,15 @@ Keybindings: | |||
| 6451 | ;;;*** | 6509 | ;;;*** |
| 6452 | 6510 | ||
| 6453 | ;;;### (autoloads (dirtrack dirtrack-mode) "dirtrack" "dirtrack.el" | 6511 | ;;;### (autoloads (dirtrack dirtrack-mode) "dirtrack" "dirtrack.el" |
| 6454 | ;;;;;; (19886 45771)) | 6512 | ;;;;;; (20126 50922)) |
| 6455 | ;;; Generated autoloads from dirtrack.el | 6513 | ;;; Generated autoloads from dirtrack.el |
| 6456 | 6514 | ||
| 6457 | (autoload 'dirtrack-mode "dirtrack" "\ | 6515 | (autoload 'dirtrack-mode "dirtrack" "\ |
| 6458 | Enable or disable Dirtrack directory tracking in a shell buffer. | 6516 | Toggle directory tracking in shell buffers (Dirtrack mode). |
| 6517 | With a prefix argument ARG, enable Dirtrack mode if ARG is | ||
| 6518 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 6519 | the mode if ARG is omitted or nil. | ||
| 6520 | |||
| 6459 | This method requires that your shell prompt contain the full | 6521 | This method requires that your shell prompt contain the full |
| 6460 | current working directory at all times, and that `dirtrack-list' | 6522 | current working directory at all times, and that `dirtrack-list' |
| 6461 | is set to match the prompt. This is an alternative to | 6523 | is set to match the prompt. This is an alternative to |
| @@ -6477,8 +6539,8 @@ function `dirtrack-debug-mode' to turn on debugging output. | |||
| 6477 | 6539 | ||
| 6478 | ;;;*** | 6540 | ;;;*** |
| 6479 | 6541 | ||
| 6480 | ;;;### (autoloads (disassemble) "disass" "emacs-lisp/disass.el" (19931 | 6542 | ;;;### (autoloads (disassemble) "disass" "emacs-lisp/disass.el" (20119 |
| 6481 | ;;;;;; 11784)) | 6543 | ;;;;;; 34052)) |
| 6482 | ;;; Generated autoloads from emacs-lisp/disass.el | 6544 | ;;; Generated autoloads from emacs-lisp/disass.el |
| 6483 | 6545 | ||
| 6484 | (autoload 'disassemble "disass" "\ | 6546 | (autoload 'disassemble "disass" "\ |
| @@ -6497,7 +6559,7 @@ redefine OBJECT if it is a symbol. | |||
| 6497 | ;;;;;; standard-display-g1 standard-display-ascii standard-display-default | 6559 | ;;;;;; standard-display-g1 standard-display-ascii standard-display-default |
| 6498 | ;;;;;; standard-display-8bit describe-current-display-table describe-display-table | 6560 | ;;;;;; standard-display-8bit describe-current-display-table describe-display-table |
| 6499 | ;;;;;; set-display-table-slot display-table-slot make-display-table) | 6561 | ;;;;;; set-display-table-slot display-table-slot make-display-table) |
| 6500 | ;;;;;; "disp-table" "disp-table.el" (19984 16846)) | 6562 | ;;;;;; "disp-table" "disp-table.el" (20119 34052)) |
| 6501 | ;;; Generated autoloads from disp-table.el | 6563 | ;;; Generated autoloads from disp-table.el |
| 6502 | 6564 | ||
| 6503 | (autoload 'make-display-table "disp-table" "\ | 6565 | (autoload 'make-display-table "disp-table" "\ |
| @@ -6619,7 +6681,7 @@ in `.emacs'. | |||
| 6619 | ;;;*** | 6681 | ;;;*** |
| 6620 | 6682 | ||
| 6621 | ;;;### (autoloads (dissociated-press) "dissociate" "play/dissociate.el" | 6683 | ;;;### (autoloads (dissociated-press) "dissociate" "play/dissociate.el" |
| 6622 | ;;;;;; (19845 45374)) | 6684 | ;;;;;; (20119 34052)) |
| 6623 | ;;; Generated autoloads from play/dissociate.el | 6685 | ;;; Generated autoloads from play/dissociate.el |
| 6624 | 6686 | ||
| 6625 | (autoload 'dissociated-press "dissociate" "\ | 6687 | (autoload 'dissociated-press "dissociate" "\ |
| @@ -6635,7 +6697,7 @@ Default is 2. | |||
| 6635 | 6697 | ||
| 6636 | ;;;*** | 6698 | ;;;*** |
| 6637 | 6699 | ||
| 6638 | ;;;### (autoloads (dnd-protocol-alist) "dnd" "dnd.el" (19886 45771)) | 6700 | ;;;### (autoloads (dnd-protocol-alist) "dnd" "dnd.el" (20119 34052)) |
| 6639 | ;;; Generated autoloads from dnd.el | 6701 | ;;; Generated autoloads from dnd.el |
| 6640 | 6702 | ||
| 6641 | (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)) "\ | 6703 | (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)) "\ |
| @@ -6656,7 +6718,7 @@ if some action was made, or nil if the URL is ignored.") | |||
| 6656 | ;;;*** | 6718 | ;;;*** |
| 6657 | 6719 | ||
| 6658 | ;;;### (autoloads (dns-mode-soa-increment-serial dns-mode) "dns-mode" | 6720 | ;;;### (autoloads (dns-mode-soa-increment-serial dns-mode) "dns-mode" |
| 6659 | ;;;;;; "textmodes/dns-mode.el" (19845 45374)) | 6721 | ;;;;;; "textmodes/dns-mode.el" (20119 34052)) |
| 6660 | ;;; Generated autoloads from textmodes/dns-mode.el | 6722 | ;;; Generated autoloads from textmodes/dns-mode.el |
| 6661 | 6723 | ||
| 6662 | (autoload 'dns-mode "dns-mode" "\ | 6724 | (autoload 'dns-mode "dns-mode" "\ |
| @@ -6680,8 +6742,8 @@ Locate SOA record and increment the serial field. | |||
| 6680 | ;;;*** | 6742 | ;;;*** |
| 6681 | 6743 | ||
| 6682 | ;;;### (autoloads (doc-view-bookmark-jump doc-view-minor-mode doc-view-mode-maybe | 6744 | ;;;### (autoloads (doc-view-bookmark-jump doc-view-minor-mode doc-view-mode-maybe |
| 6683 | ;;;;;; doc-view-mode doc-view-mode-p) "doc-view" "doc-view.el" (20002 | 6745 | ;;;;;; doc-view-mode doc-view-mode-p) "doc-view" "doc-view.el" (20139 |
| 6684 | ;;;;;; 46800)) | 6746 | ;;;;;; 28158)) |
| 6685 | ;;; Generated autoloads from doc-view.el | 6747 | ;;; Generated autoloads from doc-view.el |
| 6686 | 6748 | ||
| 6687 | (autoload 'doc-view-mode-p "doc-view" "\ | 6749 | (autoload 'doc-view-mode-p "doc-view" "\ |
| @@ -6711,8 +6773,11 @@ to the next best mode. | |||
| 6711 | \(fn)" nil nil) | 6773 | \(fn)" nil nil) |
| 6712 | 6774 | ||
| 6713 | (autoload 'doc-view-minor-mode "doc-view" "\ | 6775 | (autoload 'doc-view-minor-mode "doc-view" "\ |
| 6714 | Toggle Doc view minor mode. | 6776 | Toggle displaying buffer via Doc View (Doc View minor mode). |
| 6715 | With arg, turn Doc view minor mode on if arg is positive, off otherwise. | 6777 | With a prefix argument ARG, enable Doc View minor mode if ARG is |
| 6778 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 6779 | the mode if ARG is omitted or nil. | ||
| 6780 | |||
| 6716 | See the command `doc-view-mode' for more information on this mode. | 6781 | See the command `doc-view-mode' for more information on this mode. |
| 6717 | 6782 | ||
| 6718 | \(fn &optional ARG)" t nil) | 6783 | \(fn &optional ARG)" t nil) |
| @@ -6724,7 +6789,7 @@ See the command `doc-view-mode' for more information on this mode. | |||
| 6724 | 6789 | ||
| 6725 | ;;;*** | 6790 | ;;;*** |
| 6726 | 6791 | ||
| 6727 | ;;;### (autoloads (doctor) "doctor" "play/doctor.el" (20077 56412)) | 6792 | ;;;### (autoloads (doctor) "doctor" "play/doctor.el" (20119 34052)) |
| 6728 | ;;; Generated autoloads from play/doctor.el | 6793 | ;;; Generated autoloads from play/doctor.el |
| 6729 | 6794 | ||
| 6730 | (autoload 'doctor "doctor" "\ | 6795 | (autoload 'doctor "doctor" "\ |
| @@ -6734,22 +6799,23 @@ Switch to *doctor* buffer and start giving psychotherapy. | |||
| 6734 | 6799 | ||
| 6735 | ;;;*** | 6800 | ;;;*** |
| 6736 | 6801 | ||
| 6737 | ;;;### (autoloads (double-mode) "double" "double.el" (19845 45374)) | 6802 | ;;;### (autoloads (double-mode) "double" "double.el" (20126 50942)) |
| 6738 | ;;; Generated autoloads from double.el | 6803 | ;;; Generated autoloads from double.el |
| 6739 | 6804 | ||
| 6740 | (autoload 'double-mode "double" "\ | 6805 | (autoload 'double-mode "double" "\ |
| 6741 | Toggle Double mode. | 6806 | Toggle special insertion on double keypresses (Double mode). |
| 6742 | With prefix argument ARG, turn Double mode on if ARG is positive, otherwise | 6807 | With a prefix argument ARG, enable Double mode if ARG is |
| 6743 | turn it off. | 6808 | positive, and disable it otherwise. If called from Lisp, enable |
| 6809 | the mode if ARG is omitted or nil. | ||
| 6744 | 6810 | ||
| 6745 | When Double mode is on, some keys will insert different strings | 6811 | When Double mode is enabled, some keys will insert different |
| 6746 | when pressed twice. See variable `double-map' for details. | 6812 | strings when pressed twice. See `double-map' for details. |
| 6747 | 6813 | ||
| 6748 | \(fn &optional ARG)" t nil) | 6814 | \(fn &optional ARG)" t nil) |
| 6749 | 6815 | ||
| 6750 | ;;;*** | 6816 | ;;;*** |
| 6751 | 6817 | ||
| 6752 | ;;;### (autoloads (dunnet) "dunnet" "play/dunnet.el" (19845 45374)) | 6818 | ;;;### (autoloads (dunnet) "dunnet" "play/dunnet.el" (20119 34052)) |
| 6753 | ;;; Generated autoloads from play/dunnet.el | 6819 | ;;; Generated autoloads from play/dunnet.el |
| 6754 | 6820 | ||
| 6755 | (autoload 'dunnet "dunnet" "\ | 6821 | (autoload 'dunnet "dunnet" "\ |
| @@ -6761,7 +6827,7 @@ Switch to *dungeon* buffer and start game. | |||
| 6761 | 6827 | ||
| 6762 | ;;;### (autoloads (easy-mmode-defsyntax easy-mmode-defmap easy-mmode-define-keymap | 6828 | ;;;### (autoloads (easy-mmode-defsyntax easy-mmode-defmap easy-mmode-define-keymap |
| 6763 | ;;;;;; define-globalized-minor-mode define-minor-mode) "easy-mmode" | 6829 | ;;;;;; define-globalized-minor-mode define-minor-mode) "easy-mmode" |
| 6764 | ;;;;;; "emacs-lisp/easy-mmode.el" (19845 45374)) | 6830 | ;;;;;; "emacs-lisp/easy-mmode.el" (20136 49226)) |
| 6765 | ;;; Generated autoloads from emacs-lisp/easy-mmode.el | 6831 | ;;; Generated autoloads from emacs-lisp/easy-mmode.el |
| 6766 | 6832 | ||
| 6767 | (defalias 'easy-mmode-define-minor-mode 'define-minor-mode) | 6833 | (defalias 'easy-mmode-define-minor-mode 'define-minor-mode) |
| @@ -6776,8 +6842,9 @@ Optional LIGHTER is displayed in the modeline when the mode is on. | |||
| 6776 | Optional KEYMAP is the default keymap bound to the mode keymap. | 6842 | Optional KEYMAP is the default keymap bound to the mode keymap. |
| 6777 | If non-nil, it should be a variable name (whose value is a keymap), | 6843 | If non-nil, it should be a variable name (whose value is a keymap), |
| 6778 | or an expression that returns either a keymap or a list of | 6844 | or an expression that returns either a keymap or a list of |
| 6779 | arguments for `easy-mmode-define-keymap'. If KEYMAP is not a symbol, | 6845 | arguments for `easy-mmode-define-keymap'. If you supply a KEYMAP |
| 6780 | this also defines the variable MODE-map. | 6846 | argument that is not a symbol, this macro defines the variable |
| 6847 | MODE-map and gives it the value that KEYMAP specifies. | ||
| 6781 | 6848 | ||
| 6782 | BODY contains code to execute each time the mode is enabled or disabled. | 6849 | BODY contains code to execute each time the mode is enabled or disabled. |
| 6783 | It is executed after toggling the mode, and before running MODE-hook. | 6850 | It is executed after toggling the mode, and before running MODE-hook. |
| @@ -6871,8 +6938,8 @@ CSS contains a list of syntax specifications of the form (CHAR . SYNTAX). | |||
| 6871 | ;;;*** | 6938 | ;;;*** |
| 6872 | 6939 | ||
| 6873 | ;;;### (autoloads (easy-menu-change easy-menu-create-menu easy-menu-do-define | 6940 | ;;;### (autoloads (easy-menu-change easy-menu-create-menu easy-menu-do-define |
| 6874 | ;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (19845 | 6941 | ;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (20119 |
| 6875 | ;;;;;; 45374)) | 6942 | ;;;;;; 34052)) |
| 6876 | ;;; Generated autoloads from emacs-lisp/easymenu.el | 6943 | ;;; Generated autoloads from emacs-lisp/easymenu.el |
| 6877 | 6944 | ||
| 6878 | (autoload 'easy-menu-define "easymenu" "\ | 6945 | (autoload 'easy-menu-define "easymenu" "\ |
| @@ -7026,7 +7093,7 @@ To implement dynamic menus, either call this from | |||
| 7026 | ;;;;;; ebnf-eps-file ebnf-eps-directory ebnf-spool-region ebnf-spool-buffer | 7093 | ;;;;;; ebnf-eps-file ebnf-eps-directory ebnf-spool-region ebnf-spool-buffer |
| 7027 | ;;;;;; ebnf-spool-file ebnf-spool-directory ebnf-print-region ebnf-print-buffer | 7094 | ;;;;;; ebnf-spool-file ebnf-spool-directory ebnf-print-region ebnf-print-buffer |
| 7028 | ;;;;;; ebnf-print-file ebnf-print-directory ebnf-customize) "ebnf2ps" | 7095 | ;;;;;; ebnf-print-file ebnf-print-directory ebnf-customize) "ebnf2ps" |
| 7029 | ;;;;;; "progmodes/ebnf2ps.el" (19845 45374)) | 7096 | ;;;;;; "progmodes/ebnf2ps.el" (20119 34052)) |
| 7030 | ;;; Generated autoloads from progmodes/ebnf2ps.el | 7097 | ;;; Generated autoloads from progmodes/ebnf2ps.el |
| 7031 | 7098 | ||
| 7032 | (autoload 'ebnf-customize "ebnf2ps" "\ | 7099 | (autoload 'ebnf-customize "ebnf2ps" "\ |
| @@ -7300,8 +7367,8 @@ See `ebnf-style-database' documentation. | |||
| 7300 | ;;;;;; ebrowse-tags-find-declaration-other-window ebrowse-tags-find-definition | 7367 | ;;;;;; ebrowse-tags-find-declaration-other-window ebrowse-tags-find-definition |
| 7301 | ;;;;;; ebrowse-tags-view-definition ebrowse-tags-find-declaration | 7368 | ;;;;;; ebrowse-tags-view-definition ebrowse-tags-find-declaration |
| 7302 | ;;;;;; ebrowse-tags-view-declaration ebrowse-member-mode ebrowse-electric-choose-tree | 7369 | ;;;;;; ebrowse-tags-view-declaration ebrowse-member-mode ebrowse-electric-choose-tree |
| 7303 | ;;;;;; ebrowse-tree-mode) "ebrowse" "progmodes/ebrowse.el" (19890 | 7370 | ;;;;;; ebrowse-tree-mode) "ebrowse" "progmodes/ebrowse.el" (20119 |
| 7304 | ;;;;;; 42850)) | 7371 | ;;;;;; 34052)) |
| 7305 | ;;; Generated autoloads from progmodes/ebrowse.el | 7372 | ;;; Generated autoloads from progmodes/ebrowse.el |
| 7306 | 7373 | ||
| 7307 | (autoload 'ebrowse-tree-mode "ebrowse" "\ | 7374 | (autoload 'ebrowse-tree-mode "ebrowse" "\ |
| @@ -7450,7 +7517,7 @@ Display statistics for a class tree. | |||
| 7450 | ;;;*** | 7517 | ;;;*** |
| 7451 | 7518 | ||
| 7452 | ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "ebuff-menu.el" | 7519 | ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "ebuff-menu.el" |
| 7453 | ;;;;;; (19845 45374)) | 7520 | ;;;;;; (20119 34052)) |
| 7454 | ;;; Generated autoloads from ebuff-menu.el | 7521 | ;;; Generated autoloads from ebuff-menu.el |
| 7455 | 7522 | ||
| 7456 | (autoload 'electric-buffer-list "ebuff-menu" "\ | 7523 | (autoload 'electric-buffer-list "ebuff-menu" "\ |
| @@ -7475,7 +7542,7 @@ Run hooks in `electric-buffer-menu-mode-hook' on entry. | |||
| 7475 | ;;;*** | 7542 | ;;;*** |
| 7476 | 7543 | ||
| 7477 | ;;;### (autoloads (Electric-command-history-redo-expression) "echistory" | 7544 | ;;;### (autoloads (Electric-command-history-redo-expression) "echistory" |
| 7478 | ;;;;;; "echistory.el" (19886 45771)) | 7545 | ;;;;;; "echistory.el" (20119 34052)) |
| 7479 | ;;; Generated autoloads from echistory.el | 7546 | ;;; Generated autoloads from echistory.el |
| 7480 | 7547 | ||
| 7481 | (autoload 'Electric-command-history-redo-expression "echistory" "\ | 7548 | (autoload 'Electric-command-history-redo-expression "echistory" "\ |
| @@ -7487,7 +7554,7 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. | |||
| 7487 | ;;;*** | 7554 | ;;;*** |
| 7488 | 7555 | ||
| 7489 | ;;;### (autoloads (ecomplete-setup) "ecomplete" "gnus/ecomplete.el" | 7556 | ;;;### (autoloads (ecomplete-setup) "ecomplete" "gnus/ecomplete.el" |
| 7490 | ;;;;;; (20091 2935)) | 7557 | ;;;;;; (20119 34052)) |
| 7491 | ;;; Generated autoloads from gnus/ecomplete.el | 7558 | ;;; Generated autoloads from gnus/ecomplete.el |
| 7492 | 7559 | ||
| 7493 | (autoload 'ecomplete-setup "ecomplete" "\ | 7560 | (autoload 'ecomplete-setup "ecomplete" "\ |
| @@ -7497,7 +7564,7 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. | |||
| 7497 | 7564 | ||
| 7498 | ;;;*** | 7565 | ;;;*** |
| 7499 | 7566 | ||
| 7500 | ;;;### (autoloads (global-ede-mode) "ede" "cedet/ede.el" (19914 25180)) | 7567 | ;;;### (autoloads (global-ede-mode) "ede" "cedet/ede.el" (20131 35255)) |
| 7501 | ;;; Generated autoloads from cedet/ede.el | 7568 | ;;; Generated autoloads from cedet/ede.el |
| 7502 | 7569 | ||
| 7503 | (defvar global-ede-mode nil "\ | 7570 | (defvar global-ede-mode nil "\ |
| @@ -7511,8 +7578,9 @@ or call the function `global-ede-mode'.") | |||
| 7511 | 7578 | ||
| 7512 | (autoload 'global-ede-mode "ede" "\ | 7579 | (autoload 'global-ede-mode "ede" "\ |
| 7513 | Toggle global EDE (Emacs Development Environment) mode. | 7580 | Toggle global EDE (Emacs Development Environment) mode. |
| 7514 | With non-nil argument ARG, enable global EDE mode if ARG is | 7581 | With a prefix argument ARG, enable global EDE mode if ARG is |
| 7515 | positive; otherwise, disable it. | 7582 | positive, and disable it otherwise. If called from Lisp, enable |
| 7583 | the mode if ARG is omitted or nil. | ||
| 7516 | 7584 | ||
| 7517 | This global minor mode enables `ede-minor-mode' in all buffers in | 7585 | This global minor mode enables `ede-minor-mode' in all buffers in |
| 7518 | an EDE controlled project. | 7586 | an EDE controlled project. |
| @@ -7523,7 +7591,7 @@ an EDE controlled project. | |||
| 7523 | 7591 | ||
| 7524 | ;;;### (autoloads (edebug-all-forms edebug-all-defs edebug-eval-top-level-form | 7592 | ;;;### (autoloads (edebug-all-forms edebug-all-defs edebug-eval-top-level-form |
| 7525 | ;;;;;; edebug-basic-spec edebug-all-forms edebug-all-defs) "edebug" | 7593 | ;;;;;; edebug-basic-spec edebug-all-forms edebug-all-defs) "edebug" |
| 7526 | ;;;;;; "emacs-lisp/edebug.el" (20050 11479)) | 7594 | ;;;;;; "emacs-lisp/edebug.el" (20119 34052)) |
| 7527 | ;;; Generated autoloads from emacs-lisp/edebug.el | 7595 | ;;; Generated autoloads from emacs-lisp/edebug.el |
| 7528 | 7596 | ||
| 7529 | (defvar edebug-all-defs nil "\ | 7597 | (defvar edebug-all-defs nil "\ |
| @@ -7596,7 +7664,7 @@ Toggle edebugging of all forms. | |||
| 7596 | ;;;;;; ediff-merge-directories-with-ancestor ediff-merge-directories | 7664 | ;;;;;; ediff-merge-directories-with-ancestor ediff-merge-directories |
| 7597 | ;;;;;; ediff-directories3 ediff-directory-revisions ediff-directories | 7665 | ;;;;;; ediff-directories3 ediff-directory-revisions ediff-directories |
| 7598 | ;;;;;; ediff-buffers3 ediff-buffers ediff-backup ediff-current-file | 7666 | ;;;;;; ediff-buffers3 ediff-buffers ediff-backup ediff-current-file |
| 7599 | ;;;;;; ediff-files3 ediff-files) "ediff" "vc/ediff.el" (19996 8027)) | 7667 | ;;;;;; ediff-files3 ediff-files) "ediff" "vc/ediff.el" (20119 34052)) |
| 7600 | ;;; Generated autoloads from vc/ediff.el | 7668 | ;;; Generated autoloads from vc/ediff.el |
| 7601 | 7669 | ||
| 7602 | (autoload 'ediff-files "ediff" "\ | 7670 | (autoload 'ediff-files "ediff" "\ |
| @@ -7828,7 +7896,7 @@ With optional NODE, goes to that node. | |||
| 7828 | ;;;*** | 7896 | ;;;*** |
| 7829 | 7897 | ||
| 7830 | ;;;### (autoloads (ediff-customize) "ediff-help" "vc/ediff-help.el" | 7898 | ;;;### (autoloads (ediff-customize) "ediff-help" "vc/ediff-help.el" |
| 7831 | ;;;;;; (19845 45374)) | 7899 | ;;;;;; (20119 34052)) |
| 7832 | ;;; Generated autoloads from vc/ediff-help.el | 7900 | ;;; Generated autoloads from vc/ediff-help.el |
| 7833 | 7901 | ||
| 7834 | (autoload 'ediff-customize "ediff-help" "\ | 7902 | (autoload 'ediff-customize "ediff-help" "\ |
| @@ -7839,7 +7907,7 @@ With optional NODE, goes to that node. | |||
| 7839 | ;;;*** | 7907 | ;;;*** |
| 7840 | 7908 | ||
| 7841 | ;;;### (autoloads (ediff-show-registry) "ediff-mult" "vc/ediff-mult.el" | 7909 | ;;;### (autoloads (ediff-show-registry) "ediff-mult" "vc/ediff-mult.el" |
| 7842 | ;;;;;; (19845 45374)) | 7910 | ;;;;;; (20119 34052)) |
| 7843 | ;;; Generated autoloads from vc/ediff-mult.el | 7911 | ;;; Generated autoloads from vc/ediff-mult.el |
| 7844 | 7912 | ||
| 7845 | (autoload 'ediff-show-registry "ediff-mult" "\ | 7913 | (autoload 'ediff-show-registry "ediff-mult" "\ |
| @@ -7852,7 +7920,7 @@ Display Ediff's registry. | |||
| 7852 | ;;;*** | 7920 | ;;;*** |
| 7853 | 7921 | ||
| 7854 | ;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe) | 7922 | ;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe) |
| 7855 | ;;;;;; "ediff-util" "vc/ediff-util.el" (19981 40664)) | 7923 | ;;;;;; "ediff-util" "vc/ediff-util.el" (20140 44390)) |
| 7856 | ;;; Generated autoloads from vc/ediff-util.el | 7924 | ;;; Generated autoloads from vc/ediff-util.el |
| 7857 | 7925 | ||
| 7858 | (autoload 'ediff-toggle-multiframe "ediff-util" "\ | 7926 | (autoload 'ediff-toggle-multiframe "ediff-util" "\ |
| @@ -7873,7 +7941,7 @@ To change the default, set the variable `ediff-use-toolbar-p', which see. | |||
| 7873 | 7941 | ||
| 7874 | ;;;### (autoloads (format-kbd-macro read-kbd-macro edit-named-kbd-macro | 7942 | ;;;### (autoloads (format-kbd-macro read-kbd-macro edit-named-kbd-macro |
| 7875 | ;;;;;; edit-last-kbd-macro edit-kbd-macro) "edmacro" "edmacro.el" | 7943 | ;;;;;; edit-last-kbd-macro edit-kbd-macro) "edmacro" "edmacro.el" |
| 7876 | ;;;;;; (19886 45771)) | 7944 | ;;;;;; (20119 34052)) |
| 7877 | ;;; Generated autoloads from edmacro.el | 7945 | ;;; Generated autoloads from edmacro.el |
| 7878 | 7946 | ||
| 7879 | (autoload 'edit-kbd-macro "edmacro" "\ | 7947 | (autoload 'edit-kbd-macro "edmacro" "\ |
| @@ -7922,7 +7990,7 @@ or nil, use a compact 80-column format. | |||
| 7922 | ;;;*** | 7990 | ;;;*** |
| 7923 | 7991 | ||
| 7924 | ;;;### (autoloads (edt-emulation-on edt-set-scroll-margins) "edt" | 7992 | ;;;### (autoloads (edt-emulation-on edt-set-scroll-margins) "edt" |
| 7925 | ;;;;;; "emulation/edt.el" (19845 45374)) | 7993 | ;;;;;; "emulation/edt.el" (20140 44303)) |
| 7926 | ;;; Generated autoloads from emulation/edt.el | 7994 | ;;; Generated autoloads from emulation/edt.el |
| 7927 | 7995 | ||
| 7928 | (autoload 'edt-set-scroll-margins "edt" "\ | 7996 | (autoload 'edt-set-scroll-margins "edt" "\ |
| @@ -7940,7 +8008,7 @@ Turn on EDT Emulation. | |||
| 7940 | ;;;*** | 8008 | ;;;*** |
| 7941 | 8009 | ||
| 7942 | ;;;### (autoloads (electric-helpify with-electric-help) "ehelp" "ehelp.el" | 8010 | ;;;### (autoloads (electric-helpify with-electric-help) "ehelp" "ehelp.el" |
| 7943 | ;;;;;; (19865 50420)) | 8011 | ;;;;;; (20119 34052)) |
| 7944 | ;;; Generated autoloads from ehelp.el | 8012 | ;;; Generated autoloads from ehelp.el |
| 7945 | 8013 | ||
| 7946 | (autoload 'with-electric-help "ehelp" "\ | 8014 | (autoload 'with-electric-help "ehelp" "\ |
| @@ -7977,7 +8045,7 @@ BUFFER is put back into its original major mode. | |||
| 7977 | ;;;*** | 8045 | ;;;*** |
| 7978 | 8046 | ||
| 7979 | ;;;### (autoloads (turn-on-eldoc-mode eldoc-mode eldoc-minor-mode-string) | 8047 | ;;;### (autoloads (turn-on-eldoc-mode eldoc-mode eldoc-minor-mode-string) |
| 7980 | ;;;;;; "eldoc" "emacs-lisp/eldoc.el" (19845 45374)) | 8048 | ;;;;;; "eldoc" "emacs-lisp/eldoc.el" (20127 23532)) |
| 7981 | ;;; Generated autoloads from emacs-lisp/eldoc.el | 8049 | ;;; Generated autoloads from emacs-lisp/eldoc.el |
| 7982 | 8050 | ||
| 7983 | (defvar eldoc-minor-mode-string (purecopy " ElDoc") "\ | 8051 | (defvar eldoc-minor-mode-string (purecopy " ElDoc") "\ |
| @@ -7986,14 +8054,17 @@ String to display in mode line when ElDoc Mode is enabled; nil for none.") | |||
| 7986 | (custom-autoload 'eldoc-minor-mode-string "eldoc" t) | 8054 | (custom-autoload 'eldoc-minor-mode-string "eldoc" t) |
| 7987 | 8055 | ||
| 7988 | (autoload 'eldoc-mode "eldoc" "\ | 8056 | (autoload 'eldoc-mode "eldoc" "\ |
| 7989 | Toggle ElDoc mode on or off. | 8057 | Toggle echo area display of Lisp objects at point (ElDoc mode). |
| 7990 | In ElDoc mode, the echo area displays information about a | 8058 | With a prefix argument ARG, enable ElDoc mode if ARG is positive, |
| 7991 | function or variable in the text where point is. If point is | 8059 | and disable it otherwise. If called from Lisp, enable ElDoc mode |
| 7992 | on a documented variable, it displays the first line of that | 8060 | if ARG is omitted or nil. |
| 7993 | variable's doc string. Otherwise it displays the argument list | 8061 | |
| 7994 | of the function called in the expression point is on. | 8062 | ElDoc mode is a buffer-local minor mode. When enabled, the echo |
| 7995 | 8063 | area displays information about a function or variable in the | |
| 7996 | With prefix ARG, turn ElDoc mode on if and only if ARG is positive. | 8064 | text where point is. If point is on a documented variable, it |
| 8065 | displays the first line of that variable's doc string. Otherwise | ||
| 8066 | it displays the argument list of the function called in the | ||
| 8067 | expression point is on. | ||
| 7997 | 8068 | ||
| 7998 | \(fn &optional ARG)" t nil) | 8069 | \(fn &optional ARG)" t nil) |
| 7999 | 8070 | ||
| @@ -8021,7 +8092,7 @@ Emacs Lisp mode) that support ElDoc.") | |||
| 8021 | ;;;*** | 8092 | ;;;*** |
| 8022 | 8093 | ||
| 8023 | ;;;### (autoloads (electric-layout-mode electric-pair-mode electric-indent-mode) | 8094 | ;;;### (autoloads (electric-layout-mode electric-pair-mode electric-indent-mode) |
| 8024 | ;;;;;; "electric" "electric.el" (19886 45771)) | 8095 | ;;;;;; "electric" "electric.el" (20126 50965)) |
| 8025 | ;;; Generated autoloads from electric.el | 8096 | ;;; Generated autoloads from electric.el |
| 8026 | 8097 | ||
| 8027 | (defvar electric-indent-chars '(10) "\ | 8098 | (defvar electric-indent-chars '(10) "\ |
| @@ -8037,8 +8108,14 @@ or call the function `electric-indent-mode'.") | |||
| 8037 | (custom-autoload 'electric-indent-mode "electric" nil) | 8108 | (custom-autoload 'electric-indent-mode "electric" nil) |
| 8038 | 8109 | ||
| 8039 | (autoload 'electric-indent-mode "electric" "\ | 8110 | (autoload 'electric-indent-mode "electric" "\ |
| 8040 | Automatically reindent lines of code when inserting particular chars. | 8111 | Toggle on-the-fly reindentation (Electric Indent mode). |
| 8041 | `electric-indent-chars' specifies the set of chars that should cause reindentation. | 8112 | With a prefix argument ARG, enable Electric Indent mode if ARG is |
| 8113 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 8114 | the mode if ARG is omitted or nil. | ||
| 8115 | |||
| 8116 | Electric Indent mode is a global minor mode. When enabled, | ||
| 8117 | reindentation is triggered whenever you insert a character listed | ||
| 8118 | in `electric-indent-chars'. | ||
| 8042 | 8119 | ||
| 8043 | \(fn &optional ARG)" t nil) | 8120 | \(fn &optional ARG)" t nil) |
| 8044 | 8121 | ||
| @@ -8052,7 +8129,14 @@ or call the function `electric-pair-mode'.") | |||
| 8052 | (custom-autoload 'electric-pair-mode "electric" nil) | 8129 | (custom-autoload 'electric-pair-mode "electric" nil) |
| 8053 | 8130 | ||
| 8054 | (autoload 'electric-pair-mode "electric" "\ | 8131 | (autoload 'electric-pair-mode "electric" "\ |
| 8055 | Automatically pair-up parens when inserting an open paren. | 8132 | Toggle automatic parens pairing (Electric Pair mode). |
| 8133 | With a prefix argument ARG, enable Electric Pair mode if ARG is | ||
| 8134 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 8135 | the mode if ARG is omitted or nil. | ||
| 8136 | |||
| 8137 | Electric Pair mode is a global minor mode. When enabled, typing | ||
| 8138 | an open parenthesis automatically inserts the corresponding | ||
| 8139 | closing parenthesis. (Likewise for brackets, etc.) | ||
| 8056 | 8140 | ||
| 8057 | \(fn &optional ARG)" t nil) | 8141 | \(fn &optional ARG)" t nil) |
| 8058 | 8142 | ||
| @@ -8072,8 +8156,8 @@ Automatically insert newlines around some chars. | |||
| 8072 | 8156 | ||
| 8073 | ;;;*** | 8157 | ;;;*** |
| 8074 | 8158 | ||
| 8075 | ;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (19845 | 8159 | ;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (20119 |
| 8076 | ;;;;;; 45374)) | 8160 | ;;;;;; 34052)) |
| 8077 | ;;; Generated autoloads from elide-head.el | 8161 | ;;; Generated autoloads from elide-head.el |
| 8078 | 8162 | ||
| 8079 | (autoload 'elide-head "elide-head" "\ | 8163 | (autoload 'elide-head "elide-head" "\ |
| @@ -8090,7 +8174,7 @@ This is suitable as an entry on `find-file-hook' or appropriate mode hooks. | |||
| 8090 | 8174 | ||
| 8091 | ;;;### (autoloads (elint-initialize elint-defun elint-current-buffer | 8175 | ;;;### (autoloads (elint-initialize elint-defun elint-current-buffer |
| 8092 | ;;;;;; elint-directory elint-file) "elint" "emacs-lisp/elint.el" | 8176 | ;;;;;; elint-directory elint-file) "elint" "emacs-lisp/elint.el" |
| 8093 | ;;;;;; (19845 45374)) | 8177 | ;;;;;; (20119 34052)) |
| 8094 | ;;; Generated autoloads from emacs-lisp/elint.el | 8178 | ;;; Generated autoloads from emacs-lisp/elint.el |
| 8095 | 8179 | ||
| 8096 | (autoload 'elint-file "elint" "\ | 8180 | (autoload 'elint-file "elint" "\ |
| @@ -8126,8 +8210,8 @@ optional prefix argument REINIT is non-nil. | |||
| 8126 | ;;;*** | 8210 | ;;;*** |
| 8127 | 8211 | ||
| 8128 | ;;;### (autoloads (elp-results elp-instrument-package elp-instrument-list | 8212 | ;;;### (autoloads (elp-results elp-instrument-package elp-instrument-list |
| 8129 | ;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (19981 | 8213 | ;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (20119 |
| 8130 | ;;;;;; 40664)) | 8214 | ;;;;;; 34052)) |
| 8131 | ;;; Generated autoloads from emacs-lisp/elp.el | 8215 | ;;; Generated autoloads from emacs-lisp/elp.el |
| 8132 | 8216 | ||
| 8133 | (autoload 'elp-instrument-function "elp" "\ | 8217 | (autoload 'elp-instrument-function "elp" "\ |
| @@ -8162,18 +8246,20 @@ displayed. | |||
| 8162 | ;;;*** | 8246 | ;;;*** |
| 8163 | 8247 | ||
| 8164 | ;;;### (autoloads (emacs-lock-mode) "emacs-lock" "emacs-lock.el" | 8248 | ;;;### (autoloads (emacs-lock-mode) "emacs-lock" "emacs-lock.el" |
| 8165 | ;;;;;; (19988 13913)) | 8249 | ;;;;;; (20126 50977)) |
| 8166 | ;;; Generated autoloads from emacs-lock.el | 8250 | ;;; Generated autoloads from emacs-lock.el |
| 8167 | 8251 | ||
| 8168 | (autoload 'emacs-lock-mode "emacs-lock" "\ | 8252 | (autoload 'emacs-lock-mode "emacs-lock" "\ |
| 8169 | Toggle Emacs Lock mode in the current buffer. | 8253 | Toggle Emacs Lock mode in the current buffer. |
| 8254 | If called with a plain prefix argument, ask for the locking mode | ||
| 8255 | to be used. With any other prefix ARG, turn mode on if ARG is | ||
| 8256 | positive, off otherwise. If called from Lisp, enable the mode if | ||
| 8257 | ARG is omitted or nil. | ||
| 8170 | 8258 | ||
| 8171 | With \\[universal-argument], ask for the locking mode to be used. | 8259 | Initially, if the user does not pass an explicit locking mode, it |
| 8172 | With other prefix ARG, turn mode on if ARG is positive, off otherwise. | 8260 | defaults to `emacs-lock-default-locking-mode' (which see); |
| 8173 | 8261 | afterwards, the locking mode most recently set on the buffer is | |
| 8174 | Initially, if the user does not pass an explicit locking mode, it defaults | 8262 | used instead. |
| 8175 | to `emacs-lock-default-locking-mode' (which see); afterwards, the locking | ||
| 8176 | mode most recently set on the buffer is used instead. | ||
| 8177 | 8263 | ||
| 8178 | When called from Elisp code, ARG can be any locking mode: | 8264 | When called from Elisp code, ARG can be any locking mode: |
| 8179 | 8265 | ||
| @@ -8188,7 +8274,7 @@ Other values are interpreted as usual. | |||
| 8188 | ;;;*** | 8274 | ;;;*** |
| 8189 | 8275 | ||
| 8190 | ;;;### (autoloads (report-emacs-bug-query-existing-bugs report-emacs-bug) | 8276 | ;;;### (autoloads (report-emacs-bug-query-existing-bugs report-emacs-bug) |
| 8191 | ;;;;;; "emacsbug" "mail/emacsbug.el" (20093 44623)) | 8277 | ;;;;;; "emacsbug" "mail/emacsbug.el" (20119 34052)) |
| 8192 | ;;; Generated autoloads from mail/emacsbug.el | 8278 | ;;; Generated autoloads from mail/emacsbug.el |
| 8193 | 8279 | ||
| 8194 | (autoload 'report-emacs-bug "emacsbug" "\ | 8280 | (autoload 'report-emacs-bug "emacsbug" "\ |
| @@ -8209,7 +8295,7 @@ The result is an alist with items of the form (URL SUBJECT NO). | |||
| 8209 | ;;;;;; emerge-revisions emerge-files-with-ancestor-remote emerge-files-remote | 8295 | ;;;;;; emerge-revisions emerge-files-with-ancestor-remote emerge-files-remote |
| 8210 | ;;;;;; emerge-files-with-ancestor-command emerge-files-command emerge-buffers-with-ancestor | 8296 | ;;;;;; emerge-files-with-ancestor-command emerge-files-command emerge-buffers-with-ancestor |
| 8211 | ;;;;;; emerge-buffers emerge-files-with-ancestor emerge-files) "emerge" | 8297 | ;;;;;; emerge-buffers emerge-files-with-ancestor emerge-files) "emerge" |
| 8212 | ;;;;;; "vc/emerge.el" (19845 45374)) | 8298 | ;;;;;; "vc/emerge.el" (20140 44401)) |
| 8213 | ;;; Generated autoloads from vc/emerge.el | 8299 | ;;; Generated autoloads from vc/emerge.el |
| 8214 | 8300 | ||
| 8215 | (autoload 'emerge-files "emerge" "\ | 8301 | (autoload 'emerge-files "emerge" "\ |
| @@ -8270,7 +8356,7 @@ Emerge two RCS revisions of a file, with another revision as ancestor. | |||
| 8270 | ;;;*** | 8356 | ;;;*** |
| 8271 | 8357 | ||
| 8272 | ;;;### (autoloads (enriched-decode enriched-encode enriched-mode) | 8358 | ;;;### (autoloads (enriched-decode enriched-encode enriched-mode) |
| 8273 | ;;;;;; "enriched" "textmodes/enriched.el" (19845 45374)) | 8359 | ;;;;;; "enriched" "textmodes/enriched.el" (20127 24788)) |
| 8274 | ;;; Generated autoloads from textmodes/enriched.el | 8360 | ;;; Generated autoloads from textmodes/enriched.el |
| 8275 | 8361 | ||
| 8276 | (autoload 'enriched-mode "enriched" "\ | 8362 | (autoload 'enriched-mode "enriched" "\ |
| @@ -8305,8 +8391,8 @@ Commands: | |||
| 8305 | ;;;;;; epa-sign-region epa-verify-cleartext-in-region epa-verify-region | 8391 | ;;;;;; epa-sign-region epa-verify-cleartext-in-region epa-verify-region |
| 8306 | ;;;;;; epa-decrypt-armor-in-region epa-decrypt-region epa-encrypt-file | 8392 | ;;;;;; epa-decrypt-armor-in-region epa-decrypt-region epa-encrypt-file |
| 8307 | ;;;;;; epa-sign-file epa-verify-file epa-decrypt-file epa-select-keys | 8393 | ;;;;;; epa-sign-file epa-verify-file epa-decrypt-file epa-select-keys |
| 8308 | ;;;;;; epa-list-secret-keys epa-list-keys) "epa" "epa.el" (20087 | 8394 | ;;;;;; epa-list-secret-keys epa-list-keys) "epa" "epa.el" (20119 |
| 8309 | ;;;;;; 5852)) | 8395 | ;;;;;; 34052)) |
| 8310 | ;;; Generated autoloads from epa.el | 8396 | ;;; Generated autoloads from epa.el |
| 8311 | 8397 | ||
| 8312 | (autoload 'epa-list-keys "epa" "\ | 8398 | (autoload 'epa-list-keys "epa" "\ |
| @@ -8484,7 +8570,7 @@ Insert selected KEYS after the point. | |||
| 8484 | ;;;*** | 8570 | ;;;*** |
| 8485 | 8571 | ||
| 8486 | ;;;### (autoloads (epa-dired-do-encrypt epa-dired-do-sign epa-dired-do-verify | 8572 | ;;;### (autoloads (epa-dired-do-encrypt epa-dired-do-sign epa-dired-do-verify |
| 8487 | ;;;;;; epa-dired-do-decrypt) "epa-dired" "epa-dired.el" (19865 50420)) | 8573 | ;;;;;; epa-dired-do-decrypt) "epa-dired" "epa-dired.el" (20119 34052)) |
| 8488 | ;;; Generated autoloads from epa-dired.el | 8574 | ;;; Generated autoloads from epa-dired.el |
| 8489 | 8575 | ||
| 8490 | (autoload 'epa-dired-do-decrypt "epa-dired" "\ | 8576 | (autoload 'epa-dired-do-decrypt "epa-dired" "\ |
| @@ -8510,7 +8596,7 @@ Encrypt marked files. | |||
| 8510 | ;;;*** | 8596 | ;;;*** |
| 8511 | 8597 | ||
| 8512 | ;;;### (autoloads (epa-file-disable epa-file-enable epa-file-handler) | 8598 | ;;;### (autoloads (epa-file-disable epa-file-enable epa-file-handler) |
| 8513 | ;;;;;; "epa-file" "epa-file.el" (20038 20303)) | 8599 | ;;;;;; "epa-file" "epa-file.el" (20119 34052)) |
| 8514 | ;;; Generated autoloads from epa-file.el | 8600 | ;;; Generated autoloads from epa-file.el |
| 8515 | 8601 | ||
| 8516 | (autoload 'epa-file-handler "epa-file" "\ | 8602 | (autoload 'epa-file-handler "epa-file" "\ |
| @@ -8532,7 +8618,7 @@ Encrypt marked files. | |||
| 8532 | 8618 | ||
| 8533 | ;;;### (autoloads (epa-global-mail-mode epa-mail-import-keys epa-mail-encrypt | 8619 | ;;;### (autoloads (epa-global-mail-mode epa-mail-import-keys epa-mail-encrypt |
| 8534 | ;;;;;; epa-mail-sign epa-mail-verify epa-mail-decrypt epa-mail-mode) | 8620 | ;;;;;; epa-mail-sign epa-mail-verify epa-mail-decrypt epa-mail-mode) |
| 8535 | ;;;;;; "epa-mail" "epa-mail.el" (20043 38232)) | 8621 | ;;;;;; "epa-mail" "epa-mail.el" (20119 34052)) |
| 8536 | ;;; Generated autoloads from epa-mail.el | 8622 | ;;; Generated autoloads from epa-mail.el |
| 8537 | 8623 | ||
| 8538 | (autoload 'epa-mail-mode "epa-mail" "\ | 8624 | (autoload 'epa-mail-mode "epa-mail" "\ |
| @@ -8596,7 +8682,7 @@ Minor mode to hook EasyPG into Mail mode. | |||
| 8596 | 8682 | ||
| 8597 | ;;;*** | 8683 | ;;;*** |
| 8598 | 8684 | ||
| 8599 | ;;;### (autoloads (epg-make-context) "epg" "epg.el" (20031 47065)) | 8685 | ;;;### (autoloads (epg-make-context) "epg" "epg.el" (20119 34052)) |
| 8600 | ;;; Generated autoloads from epg.el | 8686 | ;;; Generated autoloads from epg.el |
| 8601 | 8687 | ||
| 8602 | (autoload 'epg-make-context "epg" "\ | 8688 | (autoload 'epg-make-context "epg" "\ |
| @@ -8607,7 +8693,7 @@ Return a context object. | |||
| 8607 | ;;;*** | 8693 | ;;;*** |
| 8608 | 8694 | ||
| 8609 | ;;;### (autoloads (epg-expand-group epg-check-configuration epg-configuration) | 8695 | ;;;### (autoloads (epg-expand-group epg-check-configuration epg-configuration) |
| 8610 | ;;;;;; "epg-config" "epg-config.el" (19845 45374)) | 8696 | ;;;;;; "epg-config" "epg-config.el" (20119 34052)) |
| 8611 | ;;; Generated autoloads from epg-config.el | 8697 | ;;; Generated autoloads from epg-config.el |
| 8612 | 8698 | ||
| 8613 | (autoload 'epg-configuration "epg-config" "\ | 8699 | (autoload 'epg-configuration "epg-config" "\ |
| @@ -8628,7 +8714,7 @@ Look at CONFIG and try to expand GROUP. | |||
| 8628 | ;;;*** | 8714 | ;;;*** |
| 8629 | 8715 | ||
| 8630 | ;;;### (autoloads (erc-handle-irc-url erc erc-select-read-args) "erc" | 8716 | ;;;### (autoloads (erc-handle-irc-url erc erc-select-read-args) "erc" |
| 8631 | ;;;;;; "erc/erc.el" (19986 58615)) | 8717 | ;;;;;; "erc/erc.el" (20127 26333)) |
| 8632 | ;;; Generated autoloads from erc/erc.el | 8718 | ;;; Generated autoloads from erc/erc.el |
| 8633 | 8719 | ||
| 8634 | (autoload 'erc-select-read-args "erc" "\ | 8720 | (autoload 'erc-select-read-args "erc" "\ |
| @@ -8670,33 +8756,33 @@ Otherwise, connect to HOST:PORT as USER and /join CHANNEL. | |||
| 8670 | 8756 | ||
| 8671 | ;;;*** | 8757 | ;;;*** |
| 8672 | 8758 | ||
| 8673 | ;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (19845 | 8759 | ;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (20119 |
| 8674 | ;;;;;; 45374)) | 8760 | ;;;;;; 34052)) |
| 8675 | ;;; Generated autoloads from erc/erc-autoaway.el | 8761 | ;;; Generated autoloads from erc/erc-autoaway.el |
| 8676 | (autoload 'erc-autoaway-mode "erc-autoaway") | 8762 | (autoload 'erc-autoaway-mode "erc-autoaway") |
| 8677 | 8763 | ||
| 8678 | ;;;*** | 8764 | ;;;*** |
| 8679 | 8765 | ||
| 8680 | ;;;### (autoloads nil "erc-button" "erc/erc-button.el" (20093 44623)) | 8766 | ;;;### (autoloads nil "erc-button" "erc/erc-button.el" (20119 34052)) |
| 8681 | ;;; Generated autoloads from erc/erc-button.el | 8767 | ;;; Generated autoloads from erc/erc-button.el |
| 8682 | (autoload 'erc-button-mode "erc-button" nil t) | 8768 | (autoload 'erc-button-mode "erc-button" nil t) |
| 8683 | 8769 | ||
| 8684 | ;;;*** | 8770 | ;;;*** |
| 8685 | 8771 | ||
| 8686 | ;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (19845 45374)) | 8772 | ;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (20119 34052)) |
| 8687 | ;;; Generated autoloads from erc/erc-capab.el | 8773 | ;;; Generated autoloads from erc/erc-capab.el |
| 8688 | (autoload 'erc-capab-identify-mode "erc-capab" nil t) | 8774 | (autoload 'erc-capab-identify-mode "erc-capab" nil t) |
| 8689 | 8775 | ||
| 8690 | ;;;*** | 8776 | ;;;*** |
| 8691 | 8777 | ||
| 8692 | ;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (19845 45374)) | 8778 | ;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (20119 34052)) |
| 8693 | ;;; Generated autoloads from erc/erc-compat.el | 8779 | ;;; Generated autoloads from erc/erc-compat.el |
| 8694 | (autoload 'erc-define-minor-mode "erc-compat") | 8780 | (autoload 'erc-define-minor-mode "erc-compat") |
| 8695 | 8781 | ||
| 8696 | ;;;*** | 8782 | ;;;*** |
| 8697 | 8783 | ||
| 8698 | ;;;### (autoloads (erc-ctcp-query-DCC pcomplete/erc-mode/DCC erc-cmd-DCC) | 8784 | ;;;### (autoloads (erc-ctcp-query-DCC pcomplete/erc-mode/DCC erc-cmd-DCC) |
| 8699 | ;;;;;; "erc-dcc" "erc/erc-dcc.el" (19895 48172)) | 8785 | ;;;;;; "erc-dcc" "erc/erc-dcc.el" (20119 34052)) |
| 8700 | ;;; Generated autoloads from erc/erc-dcc.el | 8786 | ;;; Generated autoloads from erc/erc-dcc.el |
| 8701 | (autoload 'erc-dcc-mode "erc-dcc") | 8787 | (autoload 'erc-dcc-mode "erc-dcc") |
| 8702 | 8788 | ||
| @@ -8729,7 +8815,7 @@ that subcommand. | |||
| 8729 | ;;;;;; erc-ezb-add-session erc-ezb-end-of-session-list erc-ezb-init-session-list | 8815 | ;;;;;; erc-ezb-add-session erc-ezb-end-of-session-list erc-ezb-init-session-list |
| 8730 | ;;;;;; erc-ezb-identify erc-ezb-notice-autodetect erc-ezb-lookup-action | 8816 | ;;;;;; erc-ezb-identify erc-ezb-notice-autodetect erc-ezb-lookup-action |
| 8731 | ;;;;;; erc-ezb-get-login erc-cmd-ezb) "erc-ezbounce" "erc/erc-ezbounce.el" | 8817 | ;;;;;; erc-ezb-get-login erc-cmd-ezb) "erc-ezbounce" "erc/erc-ezbounce.el" |
| 8732 | ;;;;;; (19845 45374)) | 8818 | ;;;;;; (20119 34052)) |
| 8733 | ;;; Generated autoloads from erc/erc-ezbounce.el | 8819 | ;;; Generated autoloads from erc/erc-ezbounce.el |
| 8734 | 8820 | ||
| 8735 | (autoload 'erc-cmd-ezb "erc-ezbounce" "\ | 8821 | (autoload 'erc-cmd-ezb "erc-ezbounce" "\ |
| @@ -8791,8 +8877,8 @@ Add EZBouncer convenience functions to ERC. | |||
| 8791 | 8877 | ||
| 8792 | ;;;*** | 8878 | ;;;*** |
| 8793 | 8879 | ||
| 8794 | ;;;### (autoloads (erc-fill) "erc-fill" "erc/erc-fill.el" (19845 | 8880 | ;;;### (autoloads (erc-fill) "erc-fill" "erc/erc-fill.el" (20127 |
| 8795 | ;;;;;; 45374)) | 8881 | ;;;;;; 26298)) |
| 8796 | ;;; Generated autoloads from erc/erc-fill.el | 8882 | ;;; Generated autoloads from erc/erc-fill.el |
| 8797 | (autoload 'erc-fill-mode "erc-fill" nil t) | 8883 | (autoload 'erc-fill-mode "erc-fill" nil t) |
| 8798 | 8884 | ||
| @@ -8805,7 +8891,7 @@ You can put this on `erc-insert-modify-hook' and/or `erc-send-modify-hook'. | |||
| 8805 | ;;;*** | 8891 | ;;;*** |
| 8806 | 8892 | ||
| 8807 | ;;;### (autoloads (erc-identd-stop erc-identd-start) "erc-identd" | 8893 | ;;;### (autoloads (erc-identd-stop erc-identd-start) "erc-identd" |
| 8808 | ;;;;;; "erc/erc-identd.el" (19845 45374)) | 8894 | ;;;;;; "erc/erc-identd.el" (20119 34052)) |
| 8809 | ;;; Generated autoloads from erc/erc-identd.el | 8895 | ;;; Generated autoloads from erc/erc-identd.el |
| 8810 | (autoload 'erc-identd-mode "erc-identd") | 8896 | (autoload 'erc-identd-mode "erc-identd") |
| 8811 | 8897 | ||
| @@ -8827,7 +8913,7 @@ system. | |||
| 8827 | ;;;*** | 8913 | ;;;*** |
| 8828 | 8914 | ||
| 8829 | ;;;### (autoloads (erc-create-imenu-index) "erc-imenu" "erc/erc-imenu.el" | 8915 | ;;;### (autoloads (erc-create-imenu-index) "erc-imenu" "erc/erc-imenu.el" |
| 8830 | ;;;;;; (19845 45374)) | 8916 | ;;;;;; (20119 34052)) |
| 8831 | ;;; Generated autoloads from erc/erc-imenu.el | 8917 | ;;; Generated autoloads from erc/erc-imenu.el |
| 8832 | 8918 | ||
| 8833 | (autoload 'erc-create-imenu-index "erc-imenu" "\ | 8919 | (autoload 'erc-create-imenu-index "erc-imenu" "\ |
| @@ -8837,20 +8923,20 @@ system. | |||
| 8837 | 8923 | ||
| 8838 | ;;;*** | 8924 | ;;;*** |
| 8839 | 8925 | ||
| 8840 | ;;;### (autoloads nil "erc-join" "erc/erc-join.el" (19845 45374)) | 8926 | ;;;### (autoloads nil "erc-join" "erc/erc-join.el" (20119 34052)) |
| 8841 | ;;; Generated autoloads from erc/erc-join.el | 8927 | ;;; Generated autoloads from erc/erc-join.el |
| 8842 | (autoload 'erc-autojoin-mode "erc-join" nil t) | 8928 | (autoload 'erc-autojoin-mode "erc-join" nil t) |
| 8843 | 8929 | ||
| 8844 | ;;;*** | 8930 | ;;;*** |
| 8845 | 8931 | ||
| 8846 | ;;;### (autoloads nil "erc-list" "erc/erc-list.el" (19845 45374)) | 8932 | ;;;### (autoloads nil "erc-list" "erc/erc-list.el" (20119 34052)) |
| 8847 | ;;; Generated autoloads from erc/erc-list.el | 8933 | ;;; Generated autoloads from erc/erc-list.el |
| 8848 | (autoload 'erc-list-mode "erc-list") | 8934 | (autoload 'erc-list-mode "erc-list") |
| 8849 | 8935 | ||
| 8850 | ;;;*** | 8936 | ;;;*** |
| 8851 | 8937 | ||
| 8852 | ;;;### (autoloads (erc-save-buffer-in-logs erc-logging-enabled) "erc-log" | 8938 | ;;;### (autoloads (erc-save-buffer-in-logs erc-logging-enabled) "erc-log" |
| 8853 | ;;;;;; "erc/erc-log.el" (19845 45374)) | 8939 | ;;;;;; "erc/erc-log.el" (20119 34052)) |
| 8854 | ;;; Generated autoloads from erc/erc-log.el | 8940 | ;;; Generated autoloads from erc/erc-log.el |
| 8855 | (autoload 'erc-log-mode "erc-log" nil t) | 8941 | (autoload 'erc-log-mode "erc-log" nil t) |
| 8856 | 8942 | ||
| @@ -8882,7 +8968,7 @@ You can save every individual message by putting this function on | |||
| 8882 | ;;;### (autoloads (erc-delete-dangerous-host erc-add-dangerous-host | 8968 | ;;;### (autoloads (erc-delete-dangerous-host erc-add-dangerous-host |
| 8883 | ;;;;;; erc-delete-keyword erc-add-keyword erc-delete-fool erc-add-fool | 8969 | ;;;;;; erc-delete-keyword erc-add-keyword erc-delete-fool erc-add-fool |
| 8884 | ;;;;;; erc-delete-pal erc-add-pal) "erc-match" "erc/erc-match.el" | 8970 | ;;;;;; erc-delete-pal erc-add-pal) "erc-match" "erc/erc-match.el" |
| 8885 | ;;;;;; (19845 45374)) | 8971 | ;;;;;; (20119 34052)) |
| 8886 | ;;; Generated autoloads from erc/erc-match.el | 8972 | ;;; Generated autoloads from erc/erc-match.el |
| 8887 | (autoload 'erc-match-mode "erc-match") | 8973 | (autoload 'erc-match-mode "erc-match") |
| 8888 | 8974 | ||
| @@ -8928,14 +9014,14 @@ Delete dangerous-host interactively to `erc-dangerous-hosts'. | |||
| 8928 | 9014 | ||
| 8929 | ;;;*** | 9015 | ;;;*** |
| 8930 | 9016 | ||
| 8931 | ;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (19845 45374)) | 9017 | ;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (20119 34052)) |
| 8932 | ;;; Generated autoloads from erc/erc-menu.el | 9018 | ;;; Generated autoloads from erc/erc-menu.el |
| 8933 | (autoload 'erc-menu-mode "erc-menu" nil t) | 9019 | (autoload 'erc-menu-mode "erc-menu" nil t) |
| 8934 | 9020 | ||
| 8935 | ;;;*** | 9021 | ;;;*** |
| 8936 | 9022 | ||
| 8937 | ;;;### (autoloads (erc-cmd-WHOLEFT) "erc-netsplit" "erc/erc-netsplit.el" | 9023 | ;;;### (autoloads (erc-cmd-WHOLEFT) "erc-netsplit" "erc/erc-netsplit.el" |
| 8938 | ;;;;;; (19845 45374)) | 9024 | ;;;;;; (20119 34052)) |
| 8939 | ;;; Generated autoloads from erc/erc-netsplit.el | 9025 | ;;; Generated autoloads from erc/erc-netsplit.el |
| 8940 | (autoload 'erc-netsplit-mode "erc-netsplit") | 9026 | (autoload 'erc-netsplit-mode "erc-netsplit") |
| 8941 | 9027 | ||
| @@ -8947,7 +9033,7 @@ Show who's gone. | |||
| 8947 | ;;;*** | 9033 | ;;;*** |
| 8948 | 9034 | ||
| 8949 | ;;;### (autoloads (erc-server-select erc-determine-network) "erc-networks" | 9035 | ;;;### (autoloads (erc-server-select erc-determine-network) "erc-networks" |
| 8950 | ;;;;;; "erc/erc-networks.el" (19845 45374)) | 9036 | ;;;;;; "erc/erc-networks.el" (20119 34052)) |
| 8951 | ;;; Generated autoloads from erc/erc-networks.el | 9037 | ;;; Generated autoloads from erc/erc-networks.el |
| 8952 | 9038 | ||
| 8953 | (autoload 'erc-determine-network "erc-networks" "\ | 9039 | (autoload 'erc-determine-network "erc-networks" "\ |
| @@ -8965,7 +9051,7 @@ Interactively select a server to connect to using `erc-server-alist'. | |||
| 8965 | ;;;*** | 9051 | ;;;*** |
| 8966 | 9052 | ||
| 8967 | ;;;### (autoloads (pcomplete/erc-mode/NOTIFY erc-cmd-NOTIFY) "erc-notify" | 9053 | ;;;### (autoloads (pcomplete/erc-mode/NOTIFY erc-cmd-NOTIFY) "erc-notify" |
| 8968 | ;;;;;; "erc/erc-notify.el" (19845 45374)) | 9054 | ;;;;;; "erc/erc-notify.el" (20119 34052)) |
| 8969 | ;;; Generated autoloads from erc/erc-notify.el | 9055 | ;;; Generated autoloads from erc/erc-notify.el |
| 8970 | (autoload 'erc-notify-mode "erc-notify" nil t) | 9056 | (autoload 'erc-notify-mode "erc-notify" nil t) |
| 8971 | 9057 | ||
| @@ -8983,33 +9069,33 @@ with args, toggle notify status of people. | |||
| 8983 | 9069 | ||
| 8984 | ;;;*** | 9070 | ;;;*** |
| 8985 | 9071 | ||
| 8986 | ;;;### (autoloads nil "erc-page" "erc/erc-page.el" (19845 45374)) | 9072 | ;;;### (autoloads nil "erc-page" "erc/erc-page.el" (20119 34052)) |
| 8987 | ;;; Generated autoloads from erc/erc-page.el | 9073 | ;;; Generated autoloads from erc/erc-page.el |
| 8988 | (autoload 'erc-page-mode "erc-page") | 9074 | (autoload 'erc-page-mode "erc-page") |
| 8989 | 9075 | ||
| 8990 | ;;;*** | 9076 | ;;;*** |
| 8991 | 9077 | ||
| 8992 | ;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (19936 | 9078 | ;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (20119 |
| 8993 | ;;;;;; 52203)) | 9079 | ;;;;;; 34052)) |
| 8994 | ;;; Generated autoloads from erc/erc-pcomplete.el | 9080 | ;;; Generated autoloads from erc/erc-pcomplete.el |
| 8995 | (autoload 'erc-completion-mode "erc-pcomplete" nil t) | 9081 | (autoload 'erc-completion-mode "erc-pcomplete" nil t) |
| 8996 | 9082 | ||
| 8997 | ;;;*** | 9083 | ;;;*** |
| 8998 | 9084 | ||
| 8999 | ;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (19845 45374)) | 9085 | ;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (20119 34052)) |
| 9000 | ;;; Generated autoloads from erc/erc-replace.el | 9086 | ;;; Generated autoloads from erc/erc-replace.el |
| 9001 | (autoload 'erc-replace-mode "erc-replace") | 9087 | (autoload 'erc-replace-mode "erc-replace") |
| 9002 | 9088 | ||
| 9003 | ;;;*** | 9089 | ;;;*** |
| 9004 | 9090 | ||
| 9005 | ;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (19845 45374)) | 9091 | ;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (20119 34052)) |
| 9006 | ;;; Generated autoloads from erc/erc-ring.el | 9092 | ;;; Generated autoloads from erc/erc-ring.el |
| 9007 | (autoload 'erc-ring-mode "erc-ring" nil t) | 9093 | (autoload 'erc-ring-mode "erc-ring" nil t) |
| 9008 | 9094 | ||
| 9009 | ;;;*** | 9095 | ;;;*** |
| 9010 | 9096 | ||
| 9011 | ;;;### (autoloads (erc-nickserv-identify erc-nickserv-identify-mode) | 9097 | ;;;### (autoloads (erc-nickserv-identify erc-nickserv-identify-mode) |
| 9012 | ;;;;;; "erc-services" "erc/erc-services.el" (19845 45374)) | 9098 | ;;;;;; "erc-services" "erc/erc-services.el" (20119 34052)) |
| 9013 | ;;; Generated autoloads from erc/erc-services.el | 9099 | ;;; Generated autoloads from erc/erc-services.el |
| 9014 | (autoload 'erc-services-mode "erc-services" nil t) | 9100 | (autoload 'erc-services-mode "erc-services" nil t) |
| 9015 | 9101 | ||
| @@ -9026,14 +9112,14 @@ When called interactively, read the password using `read-passwd'. | |||
| 9026 | 9112 | ||
| 9027 | ;;;*** | 9113 | ;;;*** |
| 9028 | 9114 | ||
| 9029 | ;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (19845 45374)) | 9115 | ;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (20119 34052)) |
| 9030 | ;;; Generated autoloads from erc/erc-sound.el | 9116 | ;;; Generated autoloads from erc/erc-sound.el |
| 9031 | (autoload 'erc-sound-mode "erc-sound") | 9117 | (autoload 'erc-sound-mode "erc-sound") |
| 9032 | 9118 | ||
| 9033 | ;;;*** | 9119 | ;;;*** |
| 9034 | 9120 | ||
| 9035 | ;;;### (autoloads (erc-speedbar-browser) "erc-speedbar" "erc/erc-speedbar.el" | 9121 | ;;;### (autoloads (erc-speedbar-browser) "erc-speedbar" "erc/erc-speedbar.el" |
| 9036 | ;;;;;; (19845 45374)) | 9122 | ;;;;;; (20119 34052)) |
| 9037 | ;;; Generated autoloads from erc/erc-speedbar.el | 9123 | ;;; Generated autoloads from erc/erc-speedbar.el |
| 9038 | 9124 | ||
| 9039 | (autoload 'erc-speedbar-browser "erc-speedbar" "\ | 9125 | (autoload 'erc-speedbar-browser "erc-speedbar" "\ |
| @@ -9044,21 +9130,21 @@ This will add a speedbar major display mode. | |||
| 9044 | 9130 | ||
| 9045 | ;;;*** | 9131 | ;;;*** |
| 9046 | 9132 | ||
| 9047 | ;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (19845 | 9133 | ;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (20119 |
| 9048 | ;;;;;; 45374)) | 9134 | ;;;;;; 34052)) |
| 9049 | ;;; Generated autoloads from erc/erc-spelling.el | 9135 | ;;; Generated autoloads from erc/erc-spelling.el |
| 9050 | (autoload 'erc-spelling-mode "erc-spelling" nil t) | 9136 | (autoload 'erc-spelling-mode "erc-spelling" nil t) |
| 9051 | 9137 | ||
| 9052 | ;;;*** | 9138 | ;;;*** |
| 9053 | 9139 | ||
| 9054 | ;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (19845 45374)) | 9140 | ;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (20119 34052)) |
| 9055 | ;;; Generated autoloads from erc/erc-stamp.el | 9141 | ;;; Generated autoloads from erc/erc-stamp.el |
| 9056 | (autoload 'erc-timestamp-mode "erc-stamp" nil t) | 9142 | (autoload 'erc-timestamp-mode "erc-stamp" nil t) |
| 9057 | 9143 | ||
| 9058 | ;;;*** | 9144 | ;;;*** |
| 9059 | 9145 | ||
| 9060 | ;;;### (autoloads (erc-track-minor-mode) "erc-track" "erc/erc-track.el" | 9146 | ;;;### (autoloads (erc-track-minor-mode) "erc-track" "erc/erc-track.el" |
| 9061 | ;;;;;; (19845 45374)) | 9147 | ;;;;;; (20127 26257)) |
| 9062 | ;;; Generated autoloads from erc/erc-track.el | 9148 | ;;; Generated autoloads from erc/erc-track.el |
| 9063 | 9149 | ||
| 9064 | (defvar erc-track-minor-mode nil "\ | 9150 | (defvar erc-track-minor-mode nil "\ |
| @@ -9068,12 +9154,15 @@ See the command `erc-track-minor-mode' for a description of this minor mode.") | |||
| 9068 | (custom-autoload 'erc-track-minor-mode "erc-track" nil) | 9154 | (custom-autoload 'erc-track-minor-mode "erc-track" nil) |
| 9069 | 9155 | ||
| 9070 | (autoload 'erc-track-minor-mode "erc-track" "\ | 9156 | (autoload 'erc-track-minor-mode "erc-track" "\ |
| 9071 | Global minor mode for tracking ERC buffers and showing activity in the | 9157 | Toggle mode line display of ERC activity (ERC Track minor mode). |
| 9072 | mode line. | 9158 | With a prefix argument ARG, enable ERC Track minor mode if ARG is |
| 9159 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 9160 | the mode if ARG is omitted or nil. | ||
| 9073 | 9161 | ||
| 9074 | This exists for the sole purpose of providing the C-c C-SPC and | 9162 | ERC Track minor mode is a global minor mode. It exists for the |
| 9075 | C-c C-@ keybindings. Make sure that you have enabled the track | 9163 | sole purpose of providing the C-c C-SPC and C-c C-@ keybindings. |
| 9076 | module, otherwise the keybindings will not do anything useful. | 9164 | Make sure that you have enabled the track module, otherwise the |
| 9165 | keybindings will not do anything useful. | ||
| 9077 | 9166 | ||
| 9078 | \(fn &optional ARG)" t nil) | 9167 | \(fn &optional ARG)" t nil) |
| 9079 | (autoload 'erc-track-mode "erc-track" nil t) | 9168 | (autoload 'erc-track-mode "erc-track" nil t) |
| @@ -9081,7 +9170,7 @@ module, otherwise the keybindings will not do anything useful. | |||
| 9081 | ;;;*** | 9170 | ;;;*** |
| 9082 | 9171 | ||
| 9083 | ;;;### (autoloads (erc-truncate-buffer erc-truncate-buffer-to-size) | 9172 | ;;;### (autoloads (erc-truncate-buffer erc-truncate-buffer-to-size) |
| 9084 | ;;;;;; "erc-truncate" "erc/erc-truncate.el" (19845 45374)) | 9173 | ;;;;;; "erc-truncate" "erc/erc-truncate.el" (20119 34052)) |
| 9085 | ;;; Generated autoloads from erc/erc-truncate.el | 9174 | ;;; Generated autoloads from erc/erc-truncate.el |
| 9086 | (autoload 'erc-truncate-mode "erc-truncate" nil t) | 9175 | (autoload 'erc-truncate-mode "erc-truncate" nil t) |
| 9087 | 9176 | ||
| @@ -9101,7 +9190,7 @@ Meant to be used in hooks, like `erc-insert-post-hook'. | |||
| 9101 | ;;;*** | 9190 | ;;;*** |
| 9102 | 9191 | ||
| 9103 | ;;;### (autoloads (erc-xdcc-add-file) "erc-xdcc" "erc/erc-xdcc.el" | 9192 | ;;;### (autoloads (erc-xdcc-add-file) "erc-xdcc" "erc/erc-xdcc.el" |
| 9104 | ;;;;;; (19845 45374)) | 9193 | ;;;;;; (20119 34052)) |
| 9105 | ;;; Generated autoloads from erc/erc-xdcc.el | 9194 | ;;; Generated autoloads from erc/erc-xdcc.el |
| 9106 | (autoload 'erc-xdcc-mode "erc-xdcc") | 9195 | (autoload 'erc-xdcc-mode "erc-xdcc") |
| 9107 | 9196 | ||
| @@ -9114,7 +9203,7 @@ Add a file to `erc-xdcc-files'. | |||
| 9114 | 9203 | ||
| 9115 | ;;;### (autoloads (ert-describe-test ert-run-tests-interactively | 9204 | ;;;### (autoloads (ert-describe-test ert-run-tests-interactively |
| 9116 | ;;;;;; ert-run-tests-batch-and-exit ert-run-tests-batch ert-deftest) | 9205 | ;;;;;; ert-run-tests-batch-and-exit ert-run-tests-batch ert-deftest) |
| 9117 | ;;;;;; "ert" "emacs-lisp/ert.el" (19846 36966)) | 9206 | ;;;;;; "ert" "emacs-lisp/ert.el" (20123 28776)) |
| 9118 | ;;; Generated autoloads from emacs-lisp/ert.el | 9207 | ;;; Generated autoloads from emacs-lisp/ert.el |
| 9119 | 9208 | ||
| 9120 | (autoload 'ert-deftest "ert" "\ | 9209 | (autoload 'ert-deftest "ert" "\ |
| @@ -9184,7 +9273,7 @@ Display the documentation for TEST-OR-TEST-NAME (a symbol or ert-test). | |||
| 9184 | ;;;*** | 9273 | ;;;*** |
| 9185 | 9274 | ||
| 9186 | ;;;### (autoloads (ert-kill-all-test-buffers) "ert-x" "emacs-lisp/ert-x.el" | 9275 | ;;;### (autoloads (ert-kill-all-test-buffers) "ert-x" "emacs-lisp/ert-x.el" |
| 9187 | ;;;;;; (19845 45374)) | 9276 | ;;;;;; (20119 34052)) |
| 9188 | ;;; Generated autoloads from emacs-lisp/ert-x.el | 9277 | ;;; Generated autoloads from emacs-lisp/ert-x.el |
| 9189 | 9278 | ||
| 9190 | (put 'ert-with-test-buffer 'lisp-indent-function 1) | 9279 | (put 'ert-with-test-buffer 'lisp-indent-function 1) |
| @@ -9196,8 +9285,8 @@ Kill all test buffers that are still live. | |||
| 9196 | 9285 | ||
| 9197 | ;;;*** | 9286 | ;;;*** |
| 9198 | 9287 | ||
| 9199 | ;;;### (autoloads (eshell-mode) "esh-mode" "eshell/esh-mode.el" (19890 | 9288 | ;;;### (autoloads (eshell-mode) "esh-mode" "eshell/esh-mode.el" (20119 |
| 9200 | ;;;;;; 42850)) | 9289 | ;;;;;; 34052)) |
| 9201 | ;;; Generated autoloads from eshell/esh-mode.el | 9290 | ;;; Generated autoloads from eshell/esh-mode.el |
| 9202 | 9291 | ||
| 9203 | (autoload 'eshell-mode "esh-mode" "\ | 9292 | (autoload 'eshell-mode "esh-mode" "\ |
| @@ -9210,7 +9299,7 @@ Emacs shell interactive mode. | |||
| 9210 | ;;;*** | 9299 | ;;;*** |
| 9211 | 9300 | ||
| 9212 | ;;;### (autoloads (eshell-command-result eshell-command eshell) "eshell" | 9301 | ;;;### (autoloads (eshell-command-result eshell-command eshell) "eshell" |
| 9213 | ;;;;;; "eshell/eshell.el" (19845 45374)) | 9302 | ;;;;;; "eshell/eshell.el" (20119 34052)) |
| 9214 | ;;; Generated autoloads from eshell/eshell.el | 9303 | ;;; Generated autoloads from eshell/eshell.el |
| 9215 | 9304 | ||
| 9216 | (autoload 'eshell "eshell" "\ | 9305 | (autoload 'eshell "eshell" "\ |
| @@ -9251,7 +9340,7 @@ corresponding to a successful execution. | |||
| 9251 | ;;;;;; visit-tags-table tags-table-mode find-tag-default-function | 9340 | ;;;;;; visit-tags-table tags-table-mode find-tag-default-function |
| 9252 | ;;;;;; find-tag-hook tags-add-tables tags-compression-info-list | 9341 | ;;;;;; find-tag-hook tags-add-tables tags-compression-info-list |
| 9253 | ;;;;;; tags-table-list tags-case-fold-search) "etags" "progmodes/etags.el" | 9342 | ;;;;;; tags-table-list tags-case-fold-search) "etags" "progmodes/etags.el" |
| 9254 | ;;;;;; (20085 50516)) | 9343 | ;;;;;; (20119 34052)) |
| 9255 | ;;; Generated autoloads from progmodes/etags.el | 9344 | ;;; Generated autoloads from progmodes/etags.el |
| 9256 | 9345 | ||
| 9257 | (defvar tags-file-name nil "\ | 9346 | (defvar tags-file-name nil "\ |
| @@ -9569,7 +9658,7 @@ for \\[find-tag] (which see). | |||
| 9569 | ;;;;;; ethio-fidel-to-sera-marker ethio-fidel-to-sera-region ethio-fidel-to-sera-buffer | 9658 | ;;;;;; ethio-fidel-to-sera-marker ethio-fidel-to-sera-region ethio-fidel-to-sera-buffer |
| 9570 | ;;;;;; ethio-sera-to-fidel-marker ethio-sera-to-fidel-region ethio-sera-to-fidel-buffer | 9659 | ;;;;;; ethio-sera-to-fidel-marker ethio-sera-to-fidel-region ethio-sera-to-fidel-buffer |
| 9571 | ;;;;;; setup-ethiopic-environment-internal) "ethio-util" "language/ethio-util.el" | 9660 | ;;;;;; setup-ethiopic-environment-internal) "ethio-util" "language/ethio-util.el" |
| 9572 | ;;;;;; (19845 45374)) | 9661 | ;;;;;; (20119 34052)) |
| 9573 | ;;; Generated autoloads from language/ethio-util.el | 9662 | ;;; Generated autoloads from language/ethio-util.el |
| 9574 | 9663 | ||
| 9575 | (autoload 'setup-ethiopic-environment-internal "ethio-util" "\ | 9664 | (autoload 'setup-ethiopic-environment-internal "ethio-util" "\ |
| @@ -9739,7 +9828,7 @@ With ARG, insert that many delimiters. | |||
| 9739 | 9828 | ||
| 9740 | ;;;### (autoloads (eudc-load-eudc eudc-query-form eudc-expand-inline | 9829 | ;;;### (autoloads (eudc-load-eudc eudc-query-form eudc-expand-inline |
| 9741 | ;;;;;; eudc-get-phone eudc-get-email eudc-set-server) "eudc" "net/eudc.el" | 9830 | ;;;;;; eudc-get-phone eudc-get-email eudc-set-server) "eudc" "net/eudc.el" |
| 9742 | ;;;;;; (19931 11784)) | 9831 | ;;;;;; (20119 34052)) |
| 9743 | ;;; Generated autoloads from net/eudc.el | 9832 | ;;; Generated autoloads from net/eudc.el |
| 9744 | 9833 | ||
| 9745 | (autoload 'eudc-set-server "eudc" "\ | 9834 | (autoload 'eudc-set-server "eudc" "\ |
| @@ -9795,7 +9884,7 @@ This does nothing except loading eudc by autoload side-effect. | |||
| 9795 | 9884 | ||
| 9796 | ;;;### (autoloads (eudc-display-jpeg-as-button eudc-display-jpeg-inline | 9885 | ;;;### (autoloads (eudc-display-jpeg-as-button eudc-display-jpeg-inline |
| 9797 | ;;;;;; eudc-display-sound eudc-display-mail eudc-display-url eudc-display-generic-binary) | 9886 | ;;;;;; eudc-display-sound eudc-display-mail eudc-display-url eudc-display-generic-binary) |
| 9798 | ;;;;;; "eudc-bob" "net/eudc-bob.el" (19845 45374)) | 9887 | ;;;;;; "eudc-bob" "net/eudc-bob.el" (20119 34052)) |
| 9799 | ;;; Generated autoloads from net/eudc-bob.el | 9888 | ;;; Generated autoloads from net/eudc-bob.el |
| 9800 | 9889 | ||
| 9801 | (autoload 'eudc-display-generic-binary "eudc-bob" "\ | 9890 | (autoload 'eudc-display-generic-binary "eudc-bob" "\ |
| @@ -9831,7 +9920,7 @@ Display a button for the JPEG DATA. | |||
| 9831 | ;;;*** | 9920 | ;;;*** |
| 9832 | 9921 | ||
| 9833 | ;;;### (autoloads (eudc-try-bbdb-insert eudc-insert-record-at-point-into-bbdb) | 9922 | ;;;### (autoloads (eudc-try-bbdb-insert eudc-insert-record-at-point-into-bbdb) |
| 9834 | ;;;;;; "eudc-export" "net/eudc-export.el" (19931 11784)) | 9923 | ;;;;;; "eudc-export" "net/eudc-export.el" (20119 34052)) |
| 9835 | ;;; Generated autoloads from net/eudc-export.el | 9924 | ;;; Generated autoloads from net/eudc-export.el |
| 9836 | 9925 | ||
| 9837 | (autoload 'eudc-insert-record-at-point-into-bbdb "eudc-export" "\ | 9926 | (autoload 'eudc-insert-record-at-point-into-bbdb "eudc-export" "\ |
| @@ -9848,7 +9937,7 @@ Call `eudc-insert-record-at-point-into-bbdb' if on a record. | |||
| 9848 | ;;;*** | 9937 | ;;;*** |
| 9849 | 9938 | ||
| 9850 | ;;;### (autoloads (eudc-edit-hotlist) "eudc-hotlist" "net/eudc-hotlist.el" | 9939 | ;;;### (autoloads (eudc-edit-hotlist) "eudc-hotlist" "net/eudc-hotlist.el" |
| 9851 | ;;;;;; (19931 11784)) | 9940 | ;;;;;; (20119 34052)) |
| 9852 | ;;; Generated autoloads from net/eudc-hotlist.el | 9941 | ;;; Generated autoloads from net/eudc-hotlist.el |
| 9853 | 9942 | ||
| 9854 | (autoload 'eudc-edit-hotlist "eudc-hotlist" "\ | 9943 | (autoload 'eudc-edit-hotlist "eudc-hotlist" "\ |
| @@ -9858,8 +9947,8 @@ Edit the hotlist of directory servers in a specialized buffer. | |||
| 9858 | 9947 | ||
| 9859 | ;;;*** | 9948 | ;;;*** |
| 9860 | 9949 | ||
| 9861 | ;;;### (autoloads (ewoc-create) "ewoc" "emacs-lisp/ewoc.el" (19845 | 9950 | ;;;### (autoloads (ewoc-create) "ewoc" "emacs-lisp/ewoc.el" (20119 |
| 9862 | ;;;;;; 45374)) | 9951 | ;;;;;; 34052)) |
| 9863 | ;;; Generated autoloads from emacs-lisp/ewoc.el | 9952 | ;;; Generated autoloads from emacs-lisp/ewoc.el |
| 9864 | 9953 | ||
| 9865 | (autoload 'ewoc-create "ewoc" "\ | 9954 | (autoload 'ewoc-create "ewoc" "\ |
| @@ -9888,7 +9977,7 @@ fourth arg NOSEP non-nil inhibits this. | |||
| 9888 | ;;;### (autoloads (executable-make-buffer-file-executable-if-script-p | 9977 | ;;;### (autoloads (executable-make-buffer-file-executable-if-script-p |
| 9889 | ;;;;;; executable-self-display executable-set-magic executable-interpret | 9978 | ;;;;;; executable-self-display executable-set-magic executable-interpret |
| 9890 | ;;;;;; executable-command-find-posix-p) "executable" "progmodes/executable.el" | 9979 | ;;;;;; executable-command-find-posix-p) "executable" "progmodes/executable.el" |
| 9891 | ;;;;;; (19890 42850)) | 9980 | ;;;;;; (20119 34052)) |
| 9892 | ;;; Generated autoloads from progmodes/executable.el | 9981 | ;;; Generated autoloads from progmodes/executable.el |
| 9893 | 9982 | ||
| 9894 | (autoload 'executable-command-find-posix-p "executable" "\ | 9983 | (autoload 'executable-command-find-posix-p "executable" "\ |
| @@ -9931,7 +10020,7 @@ file modes. | |||
| 9931 | 10020 | ||
| 9932 | ;;;### (autoloads (expand-jump-to-next-slot expand-jump-to-previous-slot | 10021 | ;;;### (autoloads (expand-jump-to-next-slot expand-jump-to-previous-slot |
| 9933 | ;;;;;; expand-abbrev-hook expand-add-abbrevs) "expand" "expand.el" | 10022 | ;;;;;; expand-abbrev-hook expand-add-abbrevs) "expand" "expand.el" |
| 9934 | ;;;;;; (19886 45771)) | 10023 | ;;;;;; (20119 34052)) |
| 9935 | ;;; Generated autoloads from expand.el | 10024 | ;;; Generated autoloads from expand.el |
| 9936 | 10025 | ||
| 9937 | (autoload 'expand-add-abbrevs "expand" "\ | 10026 | (autoload 'expand-add-abbrevs "expand" "\ |
| @@ -9980,7 +10069,7 @@ This is used only in conjunction with `expand-add-abbrevs'. | |||
| 9980 | 10069 | ||
| 9981 | ;;;*** | 10070 | ;;;*** |
| 9982 | 10071 | ||
| 9983 | ;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (20088 26718)) | 10072 | ;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (20119 34052)) |
| 9984 | ;;; Generated autoloads from progmodes/f90.el | 10073 | ;;; Generated autoloads from progmodes/f90.el |
| 9985 | 10074 | ||
| 9986 | (autoload 'f90-mode "f90" "\ | 10075 | (autoload 'f90-mode "f90" "\ |
| @@ -10050,8 +10139,8 @@ with no args, if that value is non-nil. | |||
| 10050 | ;;;### (autoloads (variable-pitch-mode buffer-face-toggle buffer-face-set | 10139 | ;;;### (autoloads (variable-pitch-mode buffer-face-toggle buffer-face-set |
| 10051 | ;;;;;; buffer-face-mode text-scale-adjust text-scale-decrease text-scale-increase | 10140 | ;;;;;; buffer-face-mode text-scale-adjust text-scale-decrease text-scale-increase |
| 10052 | ;;;;;; text-scale-set face-remap-set-base face-remap-reset-base | 10141 | ;;;;;; text-scale-set face-remap-set-base face-remap-reset-base |
| 10053 | ;;;;;; face-remap-add-relative) "face-remap" "face-remap.el" (19845 | 10142 | ;;;;;; face-remap-add-relative) "face-remap" "face-remap.el" (20126 |
| 10054 | ;;;;;; 45374)) | 10143 | ;;;;;; 41069)) |
| 10055 | ;;; Generated autoloads from face-remap.el | 10144 | ;;; Generated autoloads from face-remap.el |
| 10056 | 10145 | ||
| 10057 | (autoload 'face-remap-add-relative "face-remap" "\ | 10146 | (autoload 'face-remap-add-relative "face-remap" "\ |
| @@ -10191,7 +10280,7 @@ Besides the choice of face, it is the same as `buffer-face-mode'. | |||
| 10191 | 10280 | ||
| 10192 | ;;;### (autoloads (feedmail-queue-reminder feedmail-run-the-queue | 10281 | ;;;### (autoloads (feedmail-queue-reminder feedmail-run-the-queue |
| 10193 | ;;;;;; feedmail-run-the-queue-global-prompt feedmail-run-the-queue-no-prompts | 10282 | ;;;;;; feedmail-run-the-queue-global-prompt feedmail-run-the-queue-no-prompts |
| 10194 | ;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (19986 58615)) | 10283 | ;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (20119 34052)) |
| 10195 | ;;; Generated autoloads from mail/feedmail.el | 10284 | ;;; Generated autoloads from mail/feedmail.el |
| 10196 | 10285 | ||
| 10197 | (autoload 'feedmail-send-it "feedmail" "\ | 10286 | (autoload 'feedmail-send-it "feedmail" "\ |
| @@ -10245,7 +10334,7 @@ you can set `feedmail-queue-reminder-alist' to nil. | |||
| 10245 | ;;;*** | 10334 | ;;;*** |
| 10246 | 10335 | ||
| 10247 | ;;;### (autoloads (ffap-bindings dired-at-point ffap-at-mouse ffap-menu | 10336 | ;;;### (autoloads (ffap-bindings dired-at-point ffap-at-mouse ffap-menu |
| 10248 | ;;;;;; find-file-at-point ffap-next) "ffap" "ffap.el" (19845 45374)) | 10337 | ;;;;;; find-file-at-point ffap-next) "ffap" "ffap.el" (20119 34052)) |
| 10249 | ;;; Generated autoloads from ffap.el | 10338 | ;;; Generated autoloads from ffap.el |
| 10250 | 10339 | ||
| 10251 | (autoload 'ffap-next "ffap" "\ | 10340 | (autoload 'ffap-next "ffap" "\ |
| @@ -10309,7 +10398,7 @@ Evaluate the forms in variable `ffap-bindings'. | |||
| 10309 | ;;;### (autoloads (file-cache-minibuffer-complete file-cache-add-directory-recursively | 10398 | ;;;### (autoloads (file-cache-minibuffer-complete file-cache-add-directory-recursively |
| 10310 | ;;;;;; file-cache-add-directory-using-locate file-cache-add-directory-using-find | 10399 | ;;;;;; file-cache-add-directory-using-locate file-cache-add-directory-using-find |
| 10311 | ;;;;;; file-cache-add-file file-cache-add-directory-list file-cache-add-directory) | 10400 | ;;;;;; file-cache-add-file file-cache-add-directory-list file-cache-add-directory) |
| 10312 | ;;;;;; "filecache" "filecache.el" (19845 45374)) | 10401 | ;;;;;; "filecache" "filecache.el" (20119 34052)) |
| 10313 | ;;; Generated autoloads from filecache.el | 10402 | ;;; Generated autoloads from filecache.el |
| 10314 | 10403 | ||
| 10315 | (autoload 'file-cache-add-directory "filecache" "\ | 10404 | (autoload 'file-cache-add-directory "filecache" "\ |
| @@ -10369,7 +10458,7 @@ the name is considered already unique; only the second substitution | |||
| 10369 | ;;;;;; copy-file-locals-to-dir-locals delete-dir-local-variable | 10458 | ;;;;;; copy-file-locals-to-dir-locals delete-dir-local-variable |
| 10370 | ;;;;;; add-dir-local-variable delete-file-local-variable-prop-line | 10459 | ;;;;;; add-dir-local-variable delete-file-local-variable-prop-line |
| 10371 | ;;;;;; add-file-local-variable-prop-line delete-file-local-variable | 10460 | ;;;;;; add-file-local-variable-prop-line delete-file-local-variable |
| 10372 | ;;;;;; add-file-local-variable) "files-x" "files-x.el" (19886 45771)) | 10461 | ;;;;;; add-file-local-variable) "files-x" "files-x.el" (20119 34052)) |
| 10373 | ;;; Generated autoloads from files-x.el | 10462 | ;;; Generated autoloads from files-x.el |
| 10374 | 10463 | ||
| 10375 | (autoload 'add-file-local-variable "files-x" "\ | 10464 | (autoload 'add-file-local-variable "files-x" "\ |
| @@ -10434,8 +10523,8 @@ Copy directory-local variables to the -*- line. | |||
| 10434 | 10523 | ||
| 10435 | ;;;*** | 10524 | ;;;*** |
| 10436 | 10525 | ||
| 10437 | ;;;### (autoloads (filesets-init) "filesets" "filesets.el" (19845 | 10526 | ;;;### (autoloads (filesets-init) "filesets" "filesets.el" (20119 |
| 10438 | ;;;;;; 45374)) | 10527 | ;;;;;; 34052)) |
| 10439 | ;;; Generated autoloads from filesets.el | 10528 | ;;; Generated autoloads from filesets.el |
| 10440 | 10529 | ||
| 10441 | (autoload 'filesets-init "filesets" "\ | 10530 | (autoload 'filesets-init "filesets" "\ |
| @@ -10446,7 +10535,7 @@ Set up hooks, load the cache file -- if existing -- and build the menu. | |||
| 10446 | 10535 | ||
| 10447 | ;;;*** | 10536 | ;;;*** |
| 10448 | 10537 | ||
| 10449 | ;;;### (autoloads (find-cmd) "find-cmd" "find-cmd.el" (19845 45374)) | 10538 | ;;;### (autoloads (find-cmd) "find-cmd" "find-cmd.el" (20119 34052)) |
| 10450 | ;;; Generated autoloads from find-cmd.el | 10539 | ;;; Generated autoloads from find-cmd.el |
| 10451 | 10540 | ||
| 10452 | (autoload 'find-cmd "find-cmd" "\ | 10541 | (autoload 'find-cmd "find-cmd" "\ |
| @@ -10466,7 +10555,7 @@ result is a string that should be ready for the command line. | |||
| 10466 | ;;;*** | 10555 | ;;;*** |
| 10467 | 10556 | ||
| 10468 | ;;;### (autoloads (find-grep-dired find-name-dired find-dired) "find-dired" | 10557 | ;;;### (autoloads (find-grep-dired find-name-dired find-dired) "find-dired" |
| 10469 | ;;;;;; "find-dired.el" (19980 19797)) | 10558 | ;;;;;; "find-dired.el" (20119 34052)) |
| 10470 | ;;; Generated autoloads from find-dired.el | 10559 | ;;; Generated autoloads from find-dired.el |
| 10471 | 10560 | ||
| 10472 | (autoload 'find-dired "find-dired" "\ | 10561 | (autoload 'find-dired "find-dired" "\ |
| @@ -10506,7 +10595,7 @@ use in place of \"-ls\" as the final argument. | |||
| 10506 | 10595 | ||
| 10507 | ;;;### (autoloads (ff-mouse-find-other-file-other-window ff-mouse-find-other-file | 10596 | ;;;### (autoloads (ff-mouse-find-other-file-other-window ff-mouse-find-other-file |
| 10508 | ;;;;;; ff-find-other-file ff-get-other-file) "find-file" "find-file.el" | 10597 | ;;;;;; ff-find-other-file ff-get-other-file) "find-file" "find-file.el" |
| 10509 | ;;;;;; (19845 45374)) | 10598 | ;;;;;; (20119 34052)) |
| 10510 | ;;; Generated autoloads from find-file.el | 10599 | ;;; Generated autoloads from find-file.el |
| 10511 | 10600 | ||
| 10512 | (defvar ff-special-constructs `((,(purecopy "^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]") lambda nil (buffer-substring (match-beginning 2) (match-end 2)))) "\ | 10601 | (defvar ff-special-constructs `((,(purecopy "^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]") lambda nil (buffer-substring (match-beginning 2) (match-end 2)))) "\ |
| @@ -10600,7 +10689,7 @@ Visit the file you click on in another window. | |||
| 10600 | ;;;;;; find-variable find-variable-noselect find-function-other-frame | 10689 | ;;;;;; find-variable find-variable-noselect find-function-other-frame |
| 10601 | ;;;;;; find-function-other-window find-function find-function-noselect | 10690 | ;;;;;; find-function-other-window find-function find-function-noselect |
| 10602 | ;;;;;; find-function-search-for-symbol find-library) "find-func" | 10691 | ;;;;;; find-function-search-for-symbol find-library) "find-func" |
| 10603 | ;;;;;; "emacs-lisp/find-func.el" (20071 17619)) | 10692 | ;;;;;; "emacs-lisp/find-func.el" (20119 34052)) |
| 10604 | ;;; Generated autoloads from emacs-lisp/find-func.el | 10693 | ;;; Generated autoloads from emacs-lisp/find-func.el |
| 10605 | 10694 | ||
| 10606 | (autoload 'find-library "find-func" "\ | 10695 | (autoload 'find-library "find-func" "\ |
| @@ -10759,7 +10848,7 @@ Define some key bindings for the find-function family of functions. | |||
| 10759 | ;;;*** | 10848 | ;;;*** |
| 10760 | 10849 | ||
| 10761 | ;;;### (autoloads (find-lisp-find-dired-filter find-lisp-find-dired-subdirectories | 10850 | ;;;### (autoloads (find-lisp-find-dired-filter find-lisp-find-dired-subdirectories |
| 10762 | ;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (19886 45771)) | 10851 | ;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (20119 34052)) |
| 10763 | ;;; Generated autoloads from find-lisp.el | 10852 | ;;; Generated autoloads from find-lisp.el |
| 10764 | 10853 | ||
| 10765 | (autoload 'find-lisp-find-dired "find-lisp" "\ | 10854 | (autoload 'find-lisp-find-dired "find-lisp" "\ |
| @@ -10780,7 +10869,7 @@ Change the filter on a find-lisp-find-dired buffer to REGEXP. | |||
| 10780 | ;;;*** | 10869 | ;;;*** |
| 10781 | 10870 | ||
| 10782 | ;;;### (autoloads (finder-by-keyword finder-commentary finder-list-keywords) | 10871 | ;;;### (autoloads (finder-by-keyword finder-commentary finder-list-keywords) |
| 10783 | ;;;;;; "finder" "finder.el" (19893 19022)) | 10872 | ;;;;;; "finder" "finder.el" (20119 34052)) |
| 10784 | ;;; Generated autoloads from finder.el | 10873 | ;;; Generated autoloads from finder.el |
| 10785 | 10874 | ||
| 10786 | (autoload 'finder-list-keywords "finder" "\ | 10875 | (autoload 'finder-list-keywords "finder" "\ |
| @@ -10802,7 +10891,7 @@ Find packages matching a given keyword. | |||
| 10802 | ;;;*** | 10891 | ;;;*** |
| 10803 | 10892 | ||
| 10804 | ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" | 10893 | ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" |
| 10805 | ;;;;;; "flow-ctrl.el" (19845 45374)) | 10894 | ;;;;;; "flow-ctrl.el" (20119 34052)) |
| 10806 | ;;; Generated autoloads from flow-ctrl.el | 10895 | ;;; Generated autoloads from flow-ctrl.el |
| 10807 | 10896 | ||
| 10808 | (autoload 'enable-flow-control "flow-ctrl" "\ | 10897 | (autoload 'enable-flow-control "flow-ctrl" "\ |
| @@ -10824,7 +10913,7 @@ to get the effect of a C-q. | |||
| 10824 | ;;;*** | 10913 | ;;;*** |
| 10825 | 10914 | ||
| 10826 | ;;;### (autoloads (fill-flowed fill-flowed-encode) "flow-fill" "gnus/flow-fill.el" | 10915 | ;;;### (autoloads (fill-flowed fill-flowed-encode) "flow-fill" "gnus/flow-fill.el" |
| 10827 | ;;;;;; (19845 45374)) | 10916 | ;;;;;; (20119 34052)) |
| 10828 | ;;; Generated autoloads from gnus/flow-fill.el | 10917 | ;;; Generated autoloads from gnus/flow-fill.el |
| 10829 | 10918 | ||
| 10830 | (autoload 'fill-flowed-encode "flow-fill" "\ | 10919 | (autoload 'fill-flowed-encode "flow-fill" "\ |
| @@ -10840,7 +10929,7 @@ to get the effect of a C-q. | |||
| 10840 | ;;;*** | 10929 | ;;;*** |
| 10841 | 10930 | ||
| 10842 | ;;;### (autoloads (flymake-find-file-hook flymake-mode-off flymake-mode-on | 10931 | ;;;### (autoloads (flymake-find-file-hook flymake-mode-off flymake-mode-on |
| 10843 | ;;;;;; flymake-mode) "flymake" "progmodes/flymake.el" (19984 16846)) | 10932 | ;;;;;; flymake-mode) "flymake" "progmodes/flymake.el" (20119 34052)) |
| 10844 | ;;; Generated autoloads from progmodes/flymake.el | 10933 | ;;; Generated autoloads from progmodes/flymake.el |
| 10845 | 10934 | ||
| 10846 | (autoload 'flymake-mode "flymake" "\ | 10935 | (autoload 'flymake-mode "flymake" "\ |
| @@ -10869,7 +10958,7 @@ Turn flymake mode off. | |||
| 10869 | 10958 | ||
| 10870 | ;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off | 10959 | ;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off |
| 10871 | ;;;;;; turn-off-flyspell turn-on-flyspell flyspell-mode flyspell-prog-mode) | 10960 | ;;;;;; turn-off-flyspell turn-on-flyspell flyspell-mode flyspell-prog-mode) |
| 10872 | ;;;;;; "flyspell" "textmodes/flyspell.el" (20076 35541)) | 10961 | ;;;;;; "flyspell" "textmodes/flyspell.el" (20139 33526)) |
| 10873 | ;;; Generated autoloads from textmodes/flyspell.el | 10962 | ;;; Generated autoloads from textmodes/flyspell.el |
| 10874 | 10963 | ||
| 10875 | (autoload 'flyspell-prog-mode "flyspell" "\ | 10964 | (autoload 'flyspell-prog-mode "flyspell" "\ |
| @@ -10879,12 +10968,14 @@ Turn on `flyspell-mode' for comments and strings. | |||
| 10879 | (defvar flyspell-mode nil) | 10968 | (defvar flyspell-mode nil) |
| 10880 | 10969 | ||
| 10881 | (autoload 'flyspell-mode "flyspell" "\ | 10970 | (autoload 'flyspell-mode "flyspell" "\ |
| 10882 | Minor mode performing on-the-fly spelling checking. | 10971 | Toggle on-the-fly spell checking (Flyspell mode). |
| 10883 | This spawns a single Ispell process and checks each word. | 10972 | With a prefix argument ARG, enable Flyspell mode if ARG is |
| 10884 | The default flyspell behavior is to highlight incorrect words. | 10973 | positive, and disable it otherwise. If called from Lisp, enable |
| 10885 | With no argument, this command toggles Flyspell mode. | 10974 | the mode if ARG is omitted or nil. |
| 10886 | With a prefix argument ARG, turn Flyspell minor mode on if ARG is positive, | 10975 | |
| 10887 | otherwise turn it off. | 10976 | Flyspell mode is a buffer-local minor mode. When enabled, it |
| 10977 | spawns a single Ispell process and checks each word. The default | ||
| 10978 | flyspell behavior is to highlight incorrect words. | ||
| 10888 | 10979 | ||
| 10889 | Bindings: | 10980 | Bindings: |
| 10890 | \\[ispell-word]: correct words (using Ispell). | 10981 | \\[ispell-word]: correct words (using Ispell). |
| @@ -10939,7 +11030,7 @@ Flyspell whole buffer. | |||
| 10939 | 11030 | ||
| 10940 | ;;;### (autoloads (follow-delete-other-windows-and-split follow-mode | 11031 | ;;;### (autoloads (follow-delete-other-windows-and-split follow-mode |
| 10941 | ;;;;;; turn-off-follow-mode turn-on-follow-mode) "follow" "follow.el" | 11032 | ;;;;;; turn-off-follow-mode turn-on-follow-mode) "follow" "follow.el" |
| 10942 | ;;;;;; (19998 49767)) | 11033 | ;;;;;; (20140 43930)) |
| 10943 | ;;; Generated autoloads from follow.el | 11034 | ;;; Generated autoloads from follow.el |
| 10944 | 11035 | ||
| 10945 | (autoload 'turn-on-follow-mode "follow" "\ | 11036 | (autoload 'turn-on-follow-mode "follow" "\ |
| @@ -10953,10 +11044,13 @@ Turn off Follow mode. Please see the function `follow-mode'. | |||
| 10953 | \(fn)" nil nil) | 11044 | \(fn)" nil nil) |
| 10954 | 11045 | ||
| 10955 | (autoload 'follow-mode "follow" "\ | 11046 | (autoload 'follow-mode "follow" "\ |
| 10956 | Minor mode that combines windows into one tall virtual window. | 11047 | Toggle Follow mode. |
| 11048 | With a prefix argument ARG, enable Follow mode if ARG is | ||
| 11049 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 11050 | the mode if ARG is omitted or nil. | ||
| 10957 | 11051 | ||
| 10958 | The feeling of a \"virtual window\" has been accomplished by the use | 11052 | Follow mode is a minor mode that combines windows into one tall |
| 10959 | of two major techniques: | 11053 | virtual window. This is accomplished by two main techniques: |
| 10960 | 11054 | ||
| 10961 | * The windows always displays adjacent sections of the buffer. | 11055 | * The windows always displays adjacent sections of the buffer. |
| 10962 | This means that whenever one window is moved, all the | 11056 | This means that whenever one window is moved, all the |
| @@ -10975,7 +11069,7 @@ and being able to use 144 lines instead of the normal 72... (your | |||
| 10975 | mileage may vary). | 11069 | mileage may vary). |
| 10976 | 11070 | ||
| 10977 | To split one large window into two side-by-side windows, the commands | 11071 | To split one large window into two side-by-side windows, the commands |
| 10978 | `\\[split-window-horizontally]' or `M-x follow-delete-other-windows-and-split' can be used. | 11072 | `\\[split-window-right]' or `M-x follow-delete-other-windows-and-split' can be used. |
| 10979 | 11073 | ||
| 10980 | Only windows displayed in the same frame follow each other. | 11074 | Only windows displayed in the same frame follow each other. |
| 10981 | 11075 | ||
| @@ -11012,14 +11106,19 @@ in your `~/.emacs' file, replacing [f7] by your favourite key: | |||
| 11012 | 11106 | ||
| 11013 | ;;;*** | 11107 | ;;;*** |
| 11014 | 11108 | ||
| 11015 | ;;;### (autoloads (footnote-mode) "footnote" "mail/footnote.el" (19913 | 11109 | ;;;### (autoloads (footnote-mode) "footnote" "mail/footnote.el" (20127 |
| 11016 | ;;;;;; 4309)) | 11110 | ;;;;;; 26006)) |
| 11017 | ;;; Generated autoloads from mail/footnote.el | 11111 | ;;; Generated autoloads from mail/footnote.el |
| 11018 | 11112 | ||
| 11019 | (autoload 'footnote-mode "footnote" "\ | 11113 | (autoload 'footnote-mode "footnote" "\ |
| 11020 | Toggle footnote minor mode. | 11114 | Toggle Footnote mode. |
| 11021 | This minor mode provides footnote support for `message-mode'. To get | 11115 | With a prefix argument ARG, enable Footnote mode if ARG is |
| 11022 | started, play around with the following keys: | 11116 | positive, and disable it otherwise. If called from Lisp, enable |
| 11117 | the mode if ARG is omitted or nil. | ||
| 11118 | |||
| 11119 | Footnode mode is a buffer-local minor mode. If enabled, it | ||
| 11120 | provides footnote support for `message-mode'. To get started, | ||
| 11121 | play around with the following keys: | ||
| 11023 | \\{footnote-minor-mode-map} | 11122 | \\{footnote-minor-mode-map} |
| 11024 | 11123 | ||
| 11025 | \(fn &optional ARG)" t nil) | 11124 | \(fn &optional ARG)" t nil) |
| @@ -11027,7 +11126,7 @@ started, play around with the following keys: | |||
| 11027 | ;;;*** | 11126 | ;;;*** |
| 11028 | 11127 | ||
| 11029 | ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) | 11128 | ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) |
| 11030 | ;;;;;; "forms" "forms.el" (19886 45771)) | 11129 | ;;;;;; "forms" "forms.el" (20119 34052)) |
| 11031 | ;;; Generated autoloads from forms.el | 11130 | ;;; Generated autoloads from forms.el |
| 11032 | 11131 | ||
| 11033 | (autoload 'forms-mode "forms" "\ | 11132 | (autoload 'forms-mode "forms" "\ |
| @@ -11064,7 +11163,7 @@ Visit a file in Forms mode in other window. | |||
| 11064 | ;;;*** | 11163 | ;;;*** |
| 11065 | 11164 | ||
| 11066 | ;;;### (autoloads (fortran-mode) "fortran" "progmodes/fortran.el" | 11165 | ;;;### (autoloads (fortran-mode) "fortran" "progmodes/fortran.el" |
| 11067 | ;;;;;; (19956 37456)) | 11166 | ;;;;;; (20140 44048)) |
| 11068 | ;;; Generated autoloads from progmodes/fortran.el | 11167 | ;;; Generated autoloads from progmodes/fortran.el |
| 11069 | 11168 | ||
| 11070 | (autoload 'fortran-mode "fortran" "\ | 11169 | (autoload 'fortran-mode "fortran" "\ |
| @@ -11142,7 +11241,7 @@ with no args, if that value is non-nil. | |||
| 11142 | ;;;*** | 11241 | ;;;*** |
| 11143 | 11242 | ||
| 11144 | ;;;### (autoloads (fortune fortune-to-signature fortune-compile fortune-from-region | 11243 | ;;;### (autoloads (fortune fortune-to-signature fortune-compile fortune-from-region |
| 11145 | ;;;;;; fortune-add-fortune) "fortune" "play/fortune.el" (19931 11784)) | 11244 | ;;;;;; fortune-add-fortune) "fortune" "play/fortune.el" (20119 34052)) |
| 11146 | ;;; Generated autoloads from play/fortune.el | 11245 | ;;; Generated autoloads from play/fortune.el |
| 11147 | 11246 | ||
| 11148 | (autoload 'fortune-add-fortune "fortune" "\ | 11247 | (autoload 'fortune-add-fortune "fortune" "\ |
| @@ -11191,7 +11290,7 @@ and choose the directory as the fortune-file. | |||
| 11191 | ;;;*** | 11290 | ;;;*** |
| 11192 | 11291 | ||
| 11193 | ;;;### (autoloads (gdb gdb-enable-debug) "gdb-mi" "progmodes/gdb-mi.el" | 11292 | ;;;### (autoloads (gdb gdb-enable-debug) "gdb-mi" "progmodes/gdb-mi.el" |
| 11194 | ;;;;;; (20077 56412)) | 11293 | ;;;;;; (20140 44067)) |
| 11195 | ;;; Generated autoloads from progmodes/gdb-mi.el | 11294 | ;;; Generated autoloads from progmodes/gdb-mi.el |
| 11196 | 11295 | ||
| 11197 | (defvar gdb-enable-debug nil "\ | 11296 | (defvar gdb-enable-debug nil "\ |
| @@ -11204,6 +11303,12 @@ Run gdb on program FILE in buffer *gud-FILE*. | |||
| 11204 | The directory containing FILE becomes the initial working directory | 11303 | The directory containing FILE becomes the initial working directory |
| 11205 | and source-file directory for your debugger. | 11304 | and source-file directory for your debugger. |
| 11206 | 11305 | ||
| 11306 | COMMAND-LINE is the shell command for starting the gdb session. | ||
| 11307 | It should be a string consisting of the name of the gdb | ||
| 11308 | executable followed by command-line options. The command-line | ||
| 11309 | options should include \"-i=mi\" to use gdb's MI text interface. | ||
| 11310 | Note that the old \"--annotate\" option is no longer supported. | ||
| 11311 | |||
| 11207 | If `gdb-many-windows' is nil (the default value) then gdb just | 11312 | If `gdb-many-windows' is nil (the default value) then gdb just |
| 11208 | pops up the GUD buffer unless `gdb-show-main' is t. In this case | 11313 | pops up the GUD buffer unless `gdb-show-main' is t. In this case |
| 11209 | it starts with two windows: one displaying the GUD buffer and the | 11314 | it starts with two windows: one displaying the GUD buffer and the |
| @@ -11252,8 +11357,8 @@ detailed description of this mode. | |||
| 11252 | ;;;*** | 11357 | ;;;*** |
| 11253 | 11358 | ||
| 11254 | ;;;### (autoloads (generic-make-keywords-list generic-mode generic-mode-internal | 11359 | ;;;### (autoloads (generic-make-keywords-list generic-mode generic-mode-internal |
| 11255 | ;;;;;; define-generic-mode) "generic" "emacs-lisp/generic.el" (19845 | 11360 | ;;;;;; define-generic-mode) "generic" "emacs-lisp/generic.el" (20119 |
| 11256 | ;;;;;; 45374)) | 11361 | ;;;;;; 34052)) |
| 11257 | ;;; Generated autoloads from emacs-lisp/generic.el | 11362 | ;;; Generated autoloads from emacs-lisp/generic.el |
| 11258 | 11363 | ||
| 11259 | (defvar generic-mode-list nil "\ | 11364 | (defvar generic-mode-list nil "\ |
| @@ -11330,7 +11435,7 @@ regular expression that can be used as an element of | |||
| 11330 | ;;;*** | 11435 | ;;;*** |
| 11331 | 11436 | ||
| 11332 | ;;;### (autoloads (glasses-mode) "glasses" "progmodes/glasses.el" | 11437 | ;;;### (autoloads (glasses-mode) "glasses" "progmodes/glasses.el" |
| 11333 | ;;;;;; (19906 31087)) | 11438 | ;;;;;; (20119 34052)) |
| 11334 | ;;; Generated autoloads from progmodes/glasses.el | 11439 | ;;; Generated autoloads from progmodes/glasses.el |
| 11335 | 11440 | ||
| 11336 | (autoload 'glasses-mode "glasses" "\ | 11441 | (autoload 'glasses-mode "glasses" "\ |
| @@ -11344,7 +11449,7 @@ at places they belong to. | |||
| 11344 | 11449 | ||
| 11345 | ;;;### (autoloads (gmm-tool-bar-from-list gmm-widget-p gmm-error | 11450 | ;;;### (autoloads (gmm-tool-bar-from-list gmm-widget-p gmm-error |
| 11346 | ;;;;;; gmm-message gmm-regexp-concat) "gmm-utils" "gnus/gmm-utils.el" | 11451 | ;;;;;; gmm-message gmm-regexp-concat) "gmm-utils" "gnus/gmm-utils.el" |
| 11347 | ;;;;;; (19845 45374)) | 11452 | ;;;;;; (20119 34052)) |
| 11348 | ;;; Generated autoloads from gnus/gmm-utils.el | 11453 | ;;; Generated autoloads from gnus/gmm-utils.el |
| 11349 | 11454 | ||
| 11350 | (autoload 'gmm-regexp-concat "gmm-utils" "\ | 11455 | (autoload 'gmm-regexp-concat "gmm-utils" "\ |
| @@ -11399,7 +11504,7 @@ DEFAULT-MAP specifies the default key map for ICON-LIST. | |||
| 11399 | ;;;*** | 11504 | ;;;*** |
| 11400 | 11505 | ||
| 11401 | ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server | 11506 | ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server |
| 11402 | ;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (20077 56412)) | 11507 | ;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (20119 34052)) |
| 11403 | ;;; Generated autoloads from gnus/gnus.el | 11508 | ;;; Generated autoloads from gnus/gnus.el |
| 11404 | (when (fboundp 'custom-autoload) | 11509 | (when (fboundp 'custom-autoload) |
| 11405 | (custom-autoload 'gnus-select-method "gnus")) | 11510 | (custom-autoload 'gnus-select-method "gnus")) |
| @@ -11452,7 +11557,7 @@ prompt the user for the name of an NNTP server to use. | |||
| 11452 | ;;;;;; gnus-agent-get-undownloaded-list gnus-agent-delete-group | 11557 | ;;;;;; gnus-agent-get-undownloaded-list gnus-agent-delete-group |
| 11453 | ;;;;;; gnus-agent-rename-group gnus-agent-possibly-save-gcc gnus-agentize | 11558 | ;;;;;; gnus-agent-rename-group gnus-agent-possibly-save-gcc gnus-agentize |
| 11454 | ;;;;;; gnus-slave-unplugged gnus-plugged gnus-unplugged) "gnus-agent" | 11559 | ;;;;;; gnus-slave-unplugged gnus-plugged gnus-unplugged) "gnus-agent" |
| 11455 | ;;;;;; "gnus/gnus-agent.el" (20077 56412)) | 11560 | ;;;;;; "gnus/gnus-agent.el" (20119 34052)) |
| 11456 | ;;; Generated autoloads from gnus/gnus-agent.el | 11561 | ;;; Generated autoloads from gnus/gnus-agent.el |
| 11457 | 11562 | ||
| 11458 | (autoload 'gnus-unplugged "gnus-agent" "\ | 11563 | (autoload 'gnus-unplugged "gnus-agent" "\ |
| @@ -11543,7 +11648,7 @@ If CLEAN, obsolete (ignore). | |||
| 11543 | ;;;*** | 11648 | ;;;*** |
| 11544 | 11649 | ||
| 11545 | ;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el" | 11650 | ;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el" |
| 11546 | ;;;;;; (20091 2935)) | 11651 | ;;;;;; (20119 34052)) |
| 11547 | ;;; Generated autoloads from gnus/gnus-art.el | 11652 | ;;; Generated autoloads from gnus/gnus-art.el |
| 11548 | 11653 | ||
| 11549 | (autoload 'gnus-article-prepare-display "gnus-art" "\ | 11654 | (autoload 'gnus-article-prepare-display "gnus-art" "\ |
| @@ -11554,7 +11659,7 @@ Make the current buffer look like a nice article. | |||
| 11554 | ;;;*** | 11659 | ;;;*** |
| 11555 | 11660 | ||
| 11556 | ;;;### (autoloads (gnus-bookmark-bmenu-list gnus-bookmark-jump gnus-bookmark-set) | 11661 | ;;;### (autoloads (gnus-bookmark-bmenu-list gnus-bookmark-jump gnus-bookmark-set) |
| 11557 | ;;;;;; "gnus-bookmark" "gnus/gnus-bookmark.el" (19845 45374)) | 11662 | ;;;;;; "gnus-bookmark" "gnus/gnus-bookmark.el" (20119 34052)) |
| 11558 | ;;; Generated autoloads from gnus/gnus-bookmark.el | 11663 | ;;; Generated autoloads from gnus/gnus-bookmark.el |
| 11559 | 11664 | ||
| 11560 | (autoload 'gnus-bookmark-set "gnus-bookmark" "\ | 11665 | (autoload 'gnus-bookmark-set "gnus-bookmark" "\ |
| @@ -11579,8 +11684,8 @@ deletion, or > if it is flagged for displaying. | |||
| 11579 | 11684 | ||
| 11580 | ;;;### (autoloads (gnus-cache-delete-group gnus-cache-rename-group | 11685 | ;;;### (autoloads (gnus-cache-delete-group gnus-cache-rename-group |
| 11581 | ;;;;;; gnus-cache-generate-nov-databases gnus-cache-generate-active | 11686 | ;;;;;; gnus-cache-generate-nov-databases gnus-cache-generate-active |
| 11582 | ;;;;;; gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (19845 | 11687 | ;;;;;; gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (20119 |
| 11583 | ;;;;;; 45374)) | 11688 | ;;;;;; 34052)) |
| 11584 | ;;; Generated autoloads from gnus/gnus-cache.el | 11689 | ;;; Generated autoloads from gnus/gnus-cache.el |
| 11585 | 11690 | ||
| 11586 | (autoload 'gnus-jog-cache "gnus-cache" "\ | 11691 | (autoload 'gnus-jog-cache "gnus-cache" "\ |
| @@ -11622,7 +11727,7 @@ supported. | |||
| 11622 | ;;;*** | 11727 | ;;;*** |
| 11623 | 11728 | ||
| 11624 | ;;;### (autoloads (gnus-delay-initialize gnus-delay-send-queue gnus-delay-article) | 11729 | ;;;### (autoloads (gnus-delay-initialize gnus-delay-send-queue gnus-delay-article) |
| 11625 | ;;;;;; "gnus-delay" "gnus/gnus-delay.el" (19931 11784)) | 11730 | ;;;;;; "gnus-delay" "gnus/gnus-delay.el" (20119 34052)) |
| 11626 | ;;; Generated autoloads from gnus/gnus-delay.el | 11731 | ;;; Generated autoloads from gnus/gnus-delay.el |
| 11627 | 11732 | ||
| 11628 | (autoload 'gnus-delay-article "gnus-delay" "\ | 11733 | (autoload 'gnus-delay-article "gnus-delay" "\ |
| @@ -11658,7 +11763,7 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil. | |||
| 11658 | ;;;*** | 11763 | ;;;*** |
| 11659 | 11764 | ||
| 11660 | ;;;### (autoloads (gnus-user-format-function-D gnus-user-format-function-d) | 11765 | ;;;### (autoloads (gnus-user-format-function-D gnus-user-format-function-d) |
| 11661 | ;;;;;; "gnus-diary" "gnus/gnus-diary.el" (19845 45374)) | 11766 | ;;;;;; "gnus-diary" "gnus/gnus-diary.el" (20119 34052)) |
| 11662 | ;;; Generated autoloads from gnus/gnus-diary.el | 11767 | ;;; Generated autoloads from gnus/gnus-diary.el |
| 11663 | 11768 | ||
| 11664 | (autoload 'gnus-user-format-function-d "gnus-diary" "\ | 11769 | (autoload 'gnus-user-format-function-d "gnus-diary" "\ |
| @@ -11674,7 +11779,7 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil. | |||
| 11674 | ;;;*** | 11779 | ;;;*** |
| 11675 | 11780 | ||
| 11676 | ;;;### (autoloads (turn-on-gnus-dired-mode) "gnus-dired" "gnus/gnus-dired.el" | 11781 | ;;;### (autoloads (turn-on-gnus-dired-mode) "gnus-dired" "gnus/gnus-dired.el" |
| 11677 | ;;;;;; (19845 45374)) | 11782 | ;;;;;; (20119 34052)) |
| 11678 | ;;; Generated autoloads from gnus/gnus-dired.el | 11783 | ;;; Generated autoloads from gnus/gnus-dired.el |
| 11679 | 11784 | ||
| 11680 | (autoload 'turn-on-gnus-dired-mode "gnus-dired" "\ | 11785 | (autoload 'turn-on-gnus-dired-mode "gnus-dired" "\ |
| @@ -11685,7 +11790,7 @@ Convenience method to turn on gnus-dired-mode. | |||
| 11685 | ;;;*** | 11790 | ;;;*** |
| 11686 | 11791 | ||
| 11687 | ;;;### (autoloads (gnus-draft-reminder) "gnus-draft" "gnus/gnus-draft.el" | 11792 | ;;;### (autoloads (gnus-draft-reminder) "gnus-draft" "gnus/gnus-draft.el" |
| 11688 | ;;;;;; (19981 40664)) | 11793 | ;;;;;; (20119 34052)) |
| 11689 | ;;; Generated autoloads from gnus/gnus-draft.el | 11794 | ;;; Generated autoloads from gnus/gnus-draft.el |
| 11690 | 11795 | ||
| 11691 | (autoload 'gnus-draft-reminder "gnus-draft" "\ | 11796 | (autoload 'gnus-draft-reminder "gnus-draft" "\ |
| @@ -11697,8 +11802,8 @@ Reminder user if there are unsent drafts. | |||
| 11697 | 11802 | ||
| 11698 | ;;;### (autoloads (gnus-convert-png-to-face gnus-convert-face-to-png | 11803 | ;;;### (autoloads (gnus-convert-png-to-face gnus-convert-face-to-png |
| 11699 | ;;;;;; gnus-face-from-file gnus-x-face-from-file gnus-insert-random-x-face-header | 11804 | ;;;;;; gnus-face-from-file gnus-x-face-from-file gnus-insert-random-x-face-header |
| 11700 | ;;;;;; gnus-random-x-face) "gnus-fun" "gnus/gnus-fun.el" (20088 | 11805 | ;;;;;; gnus-random-x-face) "gnus-fun" "gnus/gnus-fun.el" (20119 |
| 11701 | ;;;;;; 26718)) | 11806 | ;;;;;; 34052)) |
| 11702 | ;;; Generated autoloads from gnus/gnus-fun.el | 11807 | ;;; Generated autoloads from gnus/gnus-fun.el |
| 11703 | 11808 | ||
| 11704 | (autoload 'gnus-random-x-face "gnus-fun" "\ | 11809 | (autoload 'gnus-random-x-face "gnus-fun" "\ |
| @@ -11743,7 +11848,7 @@ FILE should be a PNG file that's 48x48 and smaller than or equal to | |||
| 11743 | ;;;*** | 11848 | ;;;*** |
| 11744 | 11849 | ||
| 11745 | ;;;### (autoloads (gnus-treat-mail-gravatar gnus-treat-from-gravatar) | 11850 | ;;;### (autoloads (gnus-treat-mail-gravatar gnus-treat-from-gravatar) |
| 11746 | ;;;;;; "gnus-gravatar" "gnus/gnus-gravatar.el" (19845 45374)) | 11851 | ;;;;;; "gnus-gravatar" "gnus/gnus-gravatar.el" (20119 34052)) |
| 11747 | ;;; Generated autoloads from gnus/gnus-gravatar.el | 11852 | ;;; Generated autoloads from gnus/gnus-gravatar.el |
| 11748 | 11853 | ||
| 11749 | (autoload 'gnus-treat-from-gravatar "gnus-gravatar" "\ | 11854 | (autoload 'gnus-treat-from-gravatar "gnus-gravatar" "\ |
| @@ -11761,7 +11866,7 @@ If gravatars are already displayed, remove them. | |||
| 11761 | ;;;*** | 11866 | ;;;*** |
| 11762 | 11867 | ||
| 11763 | ;;;### (autoloads (gnus-fetch-group-other-frame gnus-fetch-group) | 11868 | ;;;### (autoloads (gnus-fetch-group-other-frame gnus-fetch-group) |
| 11764 | ;;;;;; "gnus-group" "gnus/gnus-group.el" (20077 56412)) | 11869 | ;;;;;; "gnus-group" "gnus/gnus-group.el" (20119 34052)) |
| 11765 | ;;; Generated autoloads from gnus/gnus-group.el | 11870 | ;;; Generated autoloads from gnus/gnus-group.el |
| 11766 | 11871 | ||
| 11767 | (autoload 'gnus-fetch-group "gnus-group" "\ | 11872 | (autoload 'gnus-fetch-group "gnus-group" "\ |
| @@ -11779,7 +11884,7 @@ Pop up a frame and enter GROUP. | |||
| 11779 | ;;;*** | 11884 | ;;;*** |
| 11780 | 11885 | ||
| 11781 | ;;;### (autoloads (gnus-html-prefetch-images gnus-article-html) "gnus-html" | 11886 | ;;;### (autoloads (gnus-html-prefetch-images gnus-article-html) "gnus-html" |
| 11782 | ;;;;;; "gnus/gnus-html.el" (20050 11479)) | 11887 | ;;;;;; "gnus/gnus-html.el" (20119 34052)) |
| 11783 | ;;; Generated autoloads from gnus/gnus-html.el | 11888 | ;;; Generated autoloads from gnus/gnus-html.el |
| 11784 | 11889 | ||
| 11785 | (autoload 'gnus-article-html "gnus-html" "\ | 11890 | (autoload 'gnus-article-html "gnus-html" "\ |
| @@ -11795,7 +11900,7 @@ Pop up a frame and enter GROUP. | |||
| 11795 | ;;;*** | 11900 | ;;;*** |
| 11796 | 11901 | ||
| 11797 | ;;;### (autoloads (gnus-batch-score) "gnus-kill" "gnus/gnus-kill.el" | 11902 | ;;;### (autoloads (gnus-batch-score) "gnus-kill" "gnus/gnus-kill.el" |
| 11798 | ;;;;;; (19845 45374)) | 11903 | ;;;;;; (20119 34052)) |
| 11799 | ;;; Generated autoloads from gnus/gnus-kill.el | 11904 | ;;; Generated autoloads from gnus/gnus-kill.el |
| 11800 | 11905 | ||
| 11801 | (defalias 'gnus-batch-kill 'gnus-batch-score) | 11906 | (defalias 'gnus-batch-kill 'gnus-batch-score) |
| @@ -11810,7 +11915,7 @@ Usage: emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score | |||
| 11810 | 11915 | ||
| 11811 | ;;;### (autoloads (gnus-mailing-list-mode gnus-mailing-list-insinuate | 11916 | ;;;### (autoloads (gnus-mailing-list-mode gnus-mailing-list-insinuate |
| 11812 | ;;;;;; turn-on-gnus-mailing-list-mode) "gnus-ml" "gnus/gnus-ml.el" | 11917 | ;;;;;; turn-on-gnus-mailing-list-mode) "gnus-ml" "gnus/gnus-ml.el" |
| 11813 | ;;;;;; (19845 45374)) | 11918 | ;;;;;; (20119 34052)) |
| 11814 | ;;; Generated autoloads from gnus/gnus-ml.el | 11919 | ;;; Generated autoloads from gnus/gnus-ml.el |
| 11815 | 11920 | ||
| 11816 | (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" "\ | 11921 | (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" "\ |
| @@ -11835,7 +11940,7 @@ Minor mode for providing mailing-list commands. | |||
| 11835 | 11940 | ||
| 11836 | ;;;### (autoloads (gnus-group-split-fancy gnus-group-split gnus-group-split-update | 11941 | ;;;### (autoloads (gnus-group-split-fancy gnus-group-split gnus-group-split-update |
| 11837 | ;;;;;; gnus-group-split-setup) "gnus-mlspl" "gnus/gnus-mlspl.el" | 11942 | ;;;;;; gnus-group-split-setup) "gnus-mlspl" "gnus/gnus-mlspl.el" |
| 11838 | ;;;;;; (19845 45374)) | 11943 | ;;;;;; (20119 34052)) |
| 11839 | ;;; Generated autoloads from gnus/gnus-mlspl.el | 11944 | ;;; Generated autoloads from gnus/gnus-mlspl.el |
| 11840 | 11945 | ||
| 11841 | (autoload 'gnus-group-split-setup "gnus-mlspl" "\ | 11946 | (autoload 'gnus-group-split-setup "gnus-mlspl" "\ |
| @@ -11936,7 +12041,7 @@ Calling (gnus-group-split-fancy nil nil \"mail.others\") returns: | |||
| 11936 | ;;;*** | 12041 | ;;;*** |
| 11937 | 12042 | ||
| 11938 | ;;;### (autoloads (gnus-button-reply gnus-button-mailto gnus-msg-mail) | 12043 | ;;;### (autoloads (gnus-button-reply gnus-button-mailto gnus-msg-mail) |
| 11939 | ;;;;;; "gnus-msg" "gnus/gnus-msg.el" (20077 56412)) | 12044 | ;;;;;; "gnus-msg" "gnus/gnus-msg.el" (20119 34052)) |
| 11940 | ;;; Generated autoloads from gnus/gnus-msg.el | 12045 | ;;; Generated autoloads from gnus/gnus-msg.el |
| 11941 | 12046 | ||
| 11942 | (autoload 'gnus-msg-mail "gnus-msg" "\ | 12047 | (autoload 'gnus-msg-mail "gnus-msg" "\ |
| @@ -11962,7 +12067,7 @@ Like `message-reply'. | |||
| 11962 | 12067 | ||
| 11963 | ;;;### (autoloads (gnus-treat-newsgroups-picon gnus-treat-mail-picon | 12068 | ;;;### (autoloads (gnus-treat-newsgroups-picon gnus-treat-mail-picon |
| 11964 | ;;;;;; gnus-treat-from-picon) "gnus-picon" "gnus/gnus-picon.el" | 12069 | ;;;;;; gnus-treat-from-picon) "gnus-picon" "gnus/gnus-picon.el" |
| 11965 | ;;;;;; (19845 45374)) | 12070 | ;;;;;; (20119 34052)) |
| 11966 | ;;; Generated autoloads from gnus/gnus-picon.el | 12071 | ;;; Generated autoloads from gnus/gnus-picon.el |
| 11967 | 12072 | ||
| 11968 | (autoload 'gnus-treat-from-picon "gnus-picon" "\ | 12073 | (autoload 'gnus-treat-from-picon "gnus-picon" "\ |
| @@ -11989,7 +12094,7 @@ If picons are already displayed, remove them. | |||
| 11989 | ;;;;;; gnus-sorted-nintersection gnus-sorted-range-intersection | 12094 | ;;;;;; gnus-sorted-nintersection gnus-sorted-range-intersection |
| 11990 | ;;;;;; gnus-sorted-intersection gnus-intersection gnus-sorted-complement | 12095 | ;;;;;; gnus-sorted-intersection gnus-intersection gnus-sorted-complement |
| 11991 | ;;;;;; gnus-sorted-ndifference gnus-sorted-difference) "gnus-range" | 12096 | ;;;;;; gnus-sorted-ndifference gnus-sorted-difference) "gnus-range" |
| 11992 | ;;;;;; "gnus/gnus-range.el" (19845 45374)) | 12097 | ;;;;;; "gnus/gnus-range.el" (20119 34052)) |
| 11993 | ;;; Generated autoloads from gnus/gnus-range.el | 12098 | ;;; Generated autoloads from gnus/gnus-range.el |
| 11994 | 12099 | ||
| 11995 | (autoload 'gnus-sorted-difference "gnus-range" "\ | 12100 | (autoload 'gnus-sorted-difference "gnus-range" "\ |
| @@ -12057,7 +12162,7 @@ Add NUM into sorted LIST by side effect. | |||
| 12057 | ;;;*** | 12162 | ;;;*** |
| 12058 | 12163 | ||
| 12059 | ;;;### (autoloads (gnus-registry-install-hooks gnus-registry-initialize) | 12164 | ;;;### (autoloads (gnus-registry-install-hooks gnus-registry-initialize) |
| 12060 | ;;;;;; "gnus-registry" "gnus/gnus-registry.el" (19976 22732)) | 12165 | ;;;;;; "gnus-registry" "gnus/gnus-registry.el" (20124 52030)) |
| 12061 | ;;; Generated autoloads from gnus/gnus-registry.el | 12166 | ;;; Generated autoloads from gnus/gnus-registry.el |
| 12062 | 12167 | ||
| 12063 | (autoload 'gnus-registry-initialize "gnus-registry" "\ | 12168 | (autoload 'gnus-registry-initialize "gnus-registry" "\ |
| @@ -12073,8 +12178,8 @@ Install the registry hooks. | |||
| 12073 | ;;;*** | 12178 | ;;;*** |
| 12074 | 12179 | ||
| 12075 | ;;;### (autoloads (gnus-sieve-article-add-rule gnus-sieve-generate | 12180 | ;;;### (autoloads (gnus-sieve-article-add-rule gnus-sieve-generate |
| 12076 | ;;;;;; gnus-sieve-update) "gnus-sieve" "gnus/gnus-sieve.el" (19845 | 12181 | ;;;;;; gnus-sieve-update) "gnus-sieve" "gnus/gnus-sieve.el" (20119 |
| 12077 | ;;;;;; 45374)) | 12182 | ;;;;;; 34052)) |
| 12078 | ;;; Generated autoloads from gnus/gnus-sieve.el | 12183 | ;;; Generated autoloads from gnus/gnus-sieve.el |
| 12079 | 12184 | ||
| 12080 | (autoload 'gnus-sieve-update "gnus-sieve" "\ | 12185 | (autoload 'gnus-sieve-update "gnus-sieve" "\ |
| @@ -12102,7 +12207,7 @@ See the documentation for these variables and functions for details. | |||
| 12102 | ;;;*** | 12207 | ;;;*** |
| 12103 | 12208 | ||
| 12104 | ;;;### (autoloads (gnus-update-format) "gnus-spec" "gnus/gnus-spec.el" | 12209 | ;;;### (autoloads (gnus-update-format) "gnus-spec" "gnus/gnus-spec.el" |
| 12105 | ;;;;;; (20076 35541)) | 12210 | ;;;;;; (20119 34052)) |
| 12106 | ;;; Generated autoloads from gnus/gnus-spec.el | 12211 | ;;; Generated autoloads from gnus/gnus-spec.el |
| 12107 | 12212 | ||
| 12108 | (autoload 'gnus-update-format "gnus-spec" "\ | 12213 | (autoload 'gnus-update-format "gnus-spec" "\ |
| @@ -12113,7 +12218,7 @@ Update the format specification near point. | |||
| 12113 | ;;;*** | 12218 | ;;;*** |
| 12114 | 12219 | ||
| 12115 | ;;;### (autoloads (gnus-declare-backend) "gnus-start" "gnus/gnus-start.el" | 12220 | ;;;### (autoloads (gnus-declare-backend) "gnus-start" "gnus/gnus-start.el" |
| 12116 | ;;;;;; (19988 13913)) | 12221 | ;;;;;; (20119 34052)) |
| 12117 | ;;; Generated autoloads from gnus/gnus-start.el | 12222 | ;;; Generated autoloads from gnus/gnus-start.el |
| 12118 | 12223 | ||
| 12119 | (autoload 'gnus-declare-backend "gnus-start" "\ | 12224 | (autoload 'gnus-declare-backend "gnus-start" "\ |
| @@ -12124,7 +12229,7 @@ Declare back end NAME with ABILITIES as a Gnus back end. | |||
| 12124 | ;;;*** | 12229 | ;;;*** |
| 12125 | 12230 | ||
| 12126 | ;;;### (autoloads (gnus-summary-bookmark-jump) "gnus-sum" "gnus/gnus-sum.el" | 12231 | ;;;### (autoloads (gnus-summary-bookmark-jump) "gnus-sum" "gnus/gnus-sum.el" |
| 12127 | ;;;;;; (20094 65493)) | 12232 | ;;;;;; (20119 34052)) |
| 12128 | ;;; Generated autoloads from gnus/gnus-sum.el | 12233 | ;;; Generated autoloads from gnus/gnus-sum.el |
| 12129 | 12234 | ||
| 12130 | (autoload 'gnus-summary-bookmark-jump "gnus-sum" "\ | 12235 | (autoload 'gnus-summary-bookmark-jump "gnus-sum" "\ |
| @@ -12136,7 +12241,7 @@ BOOKMARK is a bookmark name or a bookmark record. | |||
| 12136 | ;;;*** | 12241 | ;;;*** |
| 12137 | 12242 | ||
| 12138 | ;;;### (autoloads (gnus-sync-install-hooks gnus-sync-initialize) | 12243 | ;;;### (autoloads (gnus-sync-install-hooks gnus-sync-initialize) |
| 12139 | ;;;;;; "gnus-sync" "gnus/gnus-sync.el" (19845 45374)) | 12244 | ;;;;;; "gnus-sync" "gnus/gnus-sync.el" (20119 34052)) |
| 12140 | ;;; Generated autoloads from gnus/gnus-sync.el | 12245 | ;;; Generated autoloads from gnus/gnus-sync.el |
| 12141 | 12246 | ||
| 12142 | (autoload 'gnus-sync-initialize "gnus-sync" "\ | 12247 | (autoload 'gnus-sync-initialize "gnus-sync" "\ |
| @@ -12152,7 +12257,7 @@ Install the sync hooks. | |||
| 12152 | ;;;*** | 12257 | ;;;*** |
| 12153 | 12258 | ||
| 12154 | ;;;### (autoloads (gnus-add-configuration) "gnus-win" "gnus/gnus-win.el" | 12259 | ;;;### (autoloads (gnus-add-configuration) "gnus-win" "gnus/gnus-win.el" |
| 12155 | ;;;;;; (19845 45374)) | 12260 | ;;;;;; (20119 34052)) |
| 12156 | ;;; Generated autoloads from gnus/gnus-win.el | 12261 | ;;; Generated autoloads from gnus/gnus-win.el |
| 12157 | 12262 | ||
| 12158 | (autoload 'gnus-add-configuration "gnus-win" "\ | 12263 | (autoload 'gnus-add-configuration "gnus-win" "\ |
| @@ -12163,7 +12268,7 @@ Add the window configuration CONF to `gnus-buffer-configuration'. | |||
| 12163 | ;;;*** | 12268 | ;;;*** |
| 12164 | 12269 | ||
| 12165 | ;;;### (autoloads (gnutls-min-prime-bits) "gnutls" "net/gnutls.el" | 12270 | ;;;### (autoloads (gnutls-min-prime-bits) "gnutls" "net/gnutls.el" |
| 12166 | ;;;;;; (20002 46800)) | 12271 | ;;;;;; (20119 34052)) |
| 12167 | ;;; Generated autoloads from net/gnutls.el | 12272 | ;;; Generated autoloads from net/gnutls.el |
| 12168 | 12273 | ||
| 12169 | (defvar gnutls-min-prime-bits nil "\ | 12274 | (defvar gnutls-min-prime-bits nil "\ |
| @@ -12179,7 +12284,7 @@ A value of nil says to use the default gnutls value.") | |||
| 12179 | 12284 | ||
| 12180 | ;;;*** | 12285 | ;;;*** |
| 12181 | 12286 | ||
| 12182 | ;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (19889 21967)) | 12287 | ;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (20119 34052)) |
| 12183 | ;;; Generated autoloads from play/gomoku.el | 12288 | ;;; Generated autoloads from play/gomoku.el |
| 12184 | 12289 | ||
| 12185 | (autoload 'gomoku "gomoku" "\ | 12290 | (autoload 'gomoku "gomoku" "\ |
| @@ -12206,8 +12311,8 @@ Use \\[describe-mode] for more info. | |||
| 12206 | ;;;*** | 12311 | ;;;*** |
| 12207 | 12312 | ||
| 12208 | ;;;### (autoloads (goto-address-prog-mode goto-address-mode goto-address | 12313 | ;;;### (autoloads (goto-address-prog-mode goto-address-mode goto-address |
| 12209 | ;;;;;; goto-address-at-point) "goto-addr" "net/goto-addr.el" (19845 | 12314 | ;;;;;; goto-address-at-point) "goto-addr" "net/goto-addr.el" (20127 |
| 12210 | ;;;;;; 45374)) | 12315 | ;;;;;; 25813)) |
| 12211 | ;;; Generated autoloads from net/goto-addr.el | 12316 | ;;; Generated autoloads from net/goto-addr.el |
| 12212 | 12317 | ||
| 12213 | (define-obsolete-function-alias 'goto-address-at-mouse 'goto-address-at-point "22.1") | 12318 | (define-obsolete-function-alias 'goto-address-at-mouse 'goto-address-at-point "22.1") |
| @@ -12239,14 +12344,14 @@ Minor mode to buttonize URLs and e-mail addresses in the current buffer. | |||
| 12239 | \(fn &optional ARG)" t nil) | 12344 | \(fn &optional ARG)" t nil) |
| 12240 | 12345 | ||
| 12241 | (autoload 'goto-address-prog-mode "goto-addr" "\ | 12346 | (autoload 'goto-address-prog-mode "goto-addr" "\ |
| 12242 | Turn on `goto-address-mode', but only in comments and strings. | 12347 | Like `goto-address-mode', but only for comments and strings. |
| 12243 | 12348 | ||
| 12244 | \(fn &optional ARG)" t nil) | 12349 | \(fn &optional ARG)" t nil) |
| 12245 | 12350 | ||
| 12246 | ;;;*** | 12351 | ;;;*** |
| 12247 | 12352 | ||
| 12248 | ;;;### (autoloads (gravatar-retrieve-synchronously gravatar-retrieve) | 12353 | ;;;### (autoloads (gravatar-retrieve-synchronously gravatar-retrieve) |
| 12249 | ;;;;;; "gravatar" "gnus/gravatar.el" (19845 45374)) | 12354 | ;;;;;; "gravatar" "gnus/gravatar.el" (20119 34052)) |
| 12250 | ;;; Generated autoloads from gnus/gravatar.el | 12355 | ;;; Generated autoloads from gnus/gravatar.el |
| 12251 | 12356 | ||
| 12252 | (autoload 'gravatar-retrieve "gravatar" "\ | 12357 | (autoload 'gravatar-retrieve "gravatar" "\ |
| @@ -12264,7 +12369,7 @@ Retrieve MAIL-ADDRESS gravatar and returns it. | |||
| 12264 | 12369 | ||
| 12265 | ;;;### (autoloads (zrgrep rgrep lgrep grep-find grep grep-mode grep-compute-defaults | 12370 | ;;;### (autoloads (zrgrep rgrep lgrep grep-find grep grep-mode grep-compute-defaults |
| 12266 | ;;;;;; grep-process-setup grep-setup-hook grep-find-command grep-command | 12371 | ;;;;;; grep-process-setup grep-setup-hook grep-find-command grep-command |
| 12267 | ;;;;;; grep-window-height) "grep" "progmodes/grep.el" (20087 5852)) | 12372 | ;;;;;; grep-window-height) "grep" "progmodes/grep.el" (20119 34052)) |
| 12268 | ;;; Generated autoloads from progmodes/grep.el | 12373 | ;;; Generated autoloads from progmodes/grep.el |
| 12269 | 12374 | ||
| 12270 | (defvar grep-window-height nil "\ | 12375 | (defvar grep-window-height nil "\ |
| @@ -12421,7 +12526,7 @@ file name to `*.gz', and sets `grep-highlight-matches' to `always'. | |||
| 12421 | 12526 | ||
| 12422 | ;;;*** | 12527 | ;;;*** |
| 12423 | 12528 | ||
| 12424 | ;;;### (autoloads (gs-load-image) "gs" "gs.el" (19845 45374)) | 12529 | ;;;### (autoloads (gs-load-image) "gs" "gs.el" (20119 34052)) |
| 12425 | ;;; Generated autoloads from gs.el | 12530 | ;;; Generated autoloads from gs.el |
| 12426 | 12531 | ||
| 12427 | (autoload 'gs-load-image "gs" "\ | 12532 | (autoload 'gs-load-image "gs" "\ |
| @@ -12435,7 +12540,7 @@ the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful. | |||
| 12435 | ;;;*** | 12540 | ;;;*** |
| 12436 | 12541 | ||
| 12437 | ;;;### (autoloads (gud-tooltip-mode gdb-script-mode jdb pdb perldb | 12542 | ;;;### (autoloads (gud-tooltip-mode gdb-script-mode jdb pdb perldb |
| 12438 | ;;;;;; xdb dbx sdb gud-gdb) "gud" "progmodes/gud.el" (20077 56412)) | 12543 | ;;;;;; xdb dbx sdb gud-gdb) "gud" "progmodes/gud.el" (20127 25495)) |
| 12439 | ;;; Generated autoloads from progmodes/gud.el | 12544 | ;;; Generated autoloads from progmodes/gud.el |
| 12440 | 12545 | ||
| 12441 | (autoload 'gud-gdb "gud" "\ | 12546 | (autoload 'gud-gdb "gud" "\ |
| @@ -12515,13 +12620,16 @@ or call the function `gud-tooltip-mode'.") | |||
| 12515 | 12620 | ||
| 12516 | (autoload 'gud-tooltip-mode "gud" "\ | 12621 | (autoload 'gud-tooltip-mode "gud" "\ |
| 12517 | Toggle the display of GUD tooltips. | 12622 | Toggle the display of GUD tooltips. |
| 12623 | With a prefix argument ARG, enable the feature if ARG is | ||
| 12624 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 12625 | it if ARG is omitted or nil. | ||
| 12518 | 12626 | ||
| 12519 | \(fn &optional ARG)" t nil) | 12627 | \(fn &optional ARG)" t nil) |
| 12520 | 12628 | ||
| 12521 | ;;;*** | 12629 | ;;;*** |
| 12522 | 12630 | ||
| 12523 | ;;;### (autoloads (handwrite) "handwrite" "play/handwrite.el" (19889 | 12631 | ;;;### (autoloads (handwrite) "handwrite" "play/handwrite.el" (20119 |
| 12524 | ;;;;;; 21967)) | 12632 | ;;;;;; 34052)) |
| 12525 | ;;; Generated autoloads from play/handwrite.el | 12633 | ;;; Generated autoloads from play/handwrite.el |
| 12526 | 12634 | ||
| 12527 | (autoload 'handwrite "handwrite" "\ | 12635 | (autoload 'handwrite "handwrite" "\ |
| @@ -12539,7 +12647,7 @@ Variables: `handwrite-linespace' (default 12) | |||
| 12539 | ;;;*** | 12647 | ;;;*** |
| 12540 | 12648 | ||
| 12541 | ;;;### (autoloads (hanoi-unix-64 hanoi-unix hanoi) "hanoi" "play/hanoi.el" | 12649 | ;;;### (autoloads (hanoi-unix-64 hanoi-unix hanoi) "hanoi" "play/hanoi.el" |
| 12542 | ;;;;;; (19981 40664)) | 12650 | ;;;;;; (20119 34052)) |
| 12543 | ;;; Generated autoloads from play/hanoi.el | 12651 | ;;; Generated autoloads from play/hanoi.el |
| 12544 | 12652 | ||
| 12545 | (autoload 'hanoi "hanoi" "\ | 12653 | (autoload 'hanoi "hanoi" "\ |
| @@ -12568,7 +12676,7 @@ to be updated. | |||
| 12568 | 12676 | ||
| 12569 | ;;;### (autoloads (mail-check-payment mail-add-payment-async mail-add-payment | 12677 | ;;;### (autoloads (mail-check-payment mail-add-payment-async mail-add-payment |
| 12570 | ;;;;;; hashcash-verify-payment hashcash-insert-payment-async hashcash-insert-payment) | 12678 | ;;;;;; hashcash-verify-payment hashcash-insert-payment-async hashcash-insert-payment) |
| 12571 | ;;;;;; "hashcash" "mail/hashcash.el" (19845 45374)) | 12679 | ;;;;;; "hashcash" "mail/hashcash.el" (20119 34052)) |
| 12572 | ;;; Generated autoloads from mail/hashcash.el | 12680 | ;;; Generated autoloads from mail/hashcash.el |
| 12573 | 12681 | ||
| 12574 | (autoload 'hashcash-insert-payment "hashcash" "\ | 12682 | (autoload 'hashcash-insert-payment "hashcash" "\ |
| @@ -12613,7 +12721,7 @@ Prefix arg sets default accept amount temporarily. | |||
| 12613 | ;;;### (autoloads (scan-buf-previous-region scan-buf-next-region | 12721 | ;;;### (autoloads (scan-buf-previous-region scan-buf-next-region |
| 12614 | ;;;;;; scan-buf-move-to-region help-at-pt-display-when-idle help-at-pt-set-timer | 12722 | ;;;;;; scan-buf-move-to-region help-at-pt-display-when-idle help-at-pt-set-timer |
| 12615 | ;;;;;; help-at-pt-cancel-timer display-local-help help-at-pt-kbd-string | 12723 | ;;;;;; help-at-pt-cancel-timer display-local-help help-at-pt-kbd-string |
| 12616 | ;;;;;; help-at-pt-string) "help-at-pt" "help-at-pt.el" (19845 45374)) | 12724 | ;;;;;; help-at-pt-string) "help-at-pt" "help-at-pt.el" (20119 34052)) |
| 12617 | ;;; Generated autoloads from help-at-pt.el | 12725 | ;;; Generated autoloads from help-at-pt.el |
| 12618 | 12726 | ||
| 12619 | (autoload 'help-at-pt-string "help-at-pt" "\ | 12727 | (autoload 'help-at-pt-string "help-at-pt" "\ |
| @@ -12743,7 +12851,7 @@ different regions. With numeric argument ARG, behaves like | |||
| 12743 | ;;;### (autoloads (doc-file-to-info doc-file-to-man describe-categories | 12851 | ;;;### (autoloads (doc-file-to-info doc-file-to-man describe-categories |
| 12744 | ;;;;;; describe-syntax describe-variable variable-at-point describe-function-1 | 12852 | ;;;;;; describe-syntax describe-variable variable-at-point describe-function-1 |
| 12745 | ;;;;;; find-lisp-object-file-name help-C-file-name describe-function) | 12853 | ;;;;;; find-lisp-object-file-name help-C-file-name describe-function) |
| 12746 | ;;;;;; "help-fns" "help-fns.el" (20029 5330)) | 12854 | ;;;;;; "help-fns" "help-fns.el" (20119 34052)) |
| 12747 | ;;; Generated autoloads from help-fns.el | 12855 | ;;; Generated autoloads from help-fns.el |
| 12748 | 12856 | ||
| 12749 | (autoload 'describe-function "help-fns" "\ | 12857 | (autoload 'describe-function "help-fns" "\ |
| @@ -12823,7 +12931,7 @@ Produce a texinfo buffer with sorted doc-strings from the DOC file. | |||
| 12823 | ;;;*** | 12931 | ;;;*** |
| 12824 | 12932 | ||
| 12825 | ;;;### (autoloads (three-step-help) "help-macro" "help-macro.el" | 12933 | ;;;### (autoloads (three-step-help) "help-macro" "help-macro.el" |
| 12826 | ;;;;;; (19845 45374)) | 12934 | ;;;;;; (20119 34052)) |
| 12827 | ;;; Generated autoloads from help-macro.el | 12935 | ;;; Generated autoloads from help-macro.el |
| 12828 | 12936 | ||
| 12829 | (defvar three-step-help nil "\ | 12937 | (defvar three-step-help nil "\ |
| @@ -12839,8 +12947,8 @@ gives the window that lists the options.") | |||
| 12839 | 12947 | ||
| 12840 | ;;;### (autoloads (help-xref-on-pp help-insert-xref-button help-xref-button | 12948 | ;;;### (autoloads (help-xref-on-pp help-insert-xref-button help-xref-button |
| 12841 | ;;;;;; help-make-xrefs help-buffer help-setup-xref help-mode-finish | 12949 | ;;;;;; help-make-xrefs help-buffer help-setup-xref help-mode-finish |
| 12842 | ;;;;;; help-mode-setup help-mode) "help-mode" "help-mode.el" (20072 | 12950 | ;;;;;; help-mode-setup help-mode) "help-mode" "help-mode.el" (20119 |
| 12843 | ;;;;;; 38480)) | 12951 | ;;;;;; 34052)) |
| 12844 | ;;; Generated autoloads from help-mode.el | 12952 | ;;; Generated autoloads from help-mode.el |
| 12845 | 12953 | ||
| 12846 | (autoload 'help-mode "help-mode" "\ | 12954 | (autoload 'help-mode "help-mode" "\ |
| @@ -12933,7 +13041,7 @@ Add xrefs for symbols in `pp's output between FROM and TO. | |||
| 12933 | ;;;*** | 13041 | ;;;*** |
| 12934 | 13042 | ||
| 12935 | ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" | 13043 | ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" |
| 12936 | ;;;;;; "emacs-lisp/helper.el" (19845 45374)) | 13044 | ;;;;;; "emacs-lisp/helper.el" (20119 34052)) |
| 12937 | ;;; Generated autoloads from emacs-lisp/helper.el | 13045 | ;;; Generated autoloads from emacs-lisp/helper.el |
| 12938 | 13046 | ||
| 12939 | (autoload 'Helper-describe-bindings "helper" "\ | 13047 | (autoload 'Helper-describe-bindings "helper" "\ |
| @@ -12949,7 +13057,7 @@ Provide help for current mode. | |||
| 12949 | ;;;*** | 13057 | ;;;*** |
| 12950 | 13058 | ||
| 12951 | ;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl" | 13059 | ;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl" |
| 12952 | ;;;;;; "hexl.el" (19865 50420)) | 13060 | ;;;;;; "hexl.el" (20119 34052)) |
| 12953 | ;;; Generated autoloads from hexl.el | 13061 | ;;; Generated autoloads from hexl.el |
| 12954 | 13062 | ||
| 12955 | (autoload 'hexl-mode "hexl" "\ | 13063 | (autoload 'hexl-mode "hexl" "\ |
| @@ -13046,18 +13154,21 @@ This discards the buffer's undo information. | |||
| 13046 | ;;;### (autoloads (hi-lock-write-interactive-patterns hi-lock-unface-buffer | 13154 | ;;;### (autoloads (hi-lock-write-interactive-patterns hi-lock-unface-buffer |
| 13047 | ;;;;;; hi-lock-face-phrase-buffer hi-lock-face-buffer hi-lock-line-face-buffer | 13155 | ;;;;;; hi-lock-face-phrase-buffer hi-lock-face-buffer hi-lock-line-face-buffer |
| 13048 | ;;;;;; global-hi-lock-mode hi-lock-mode) "hi-lock" "hi-lock.el" | 13156 | ;;;;;; global-hi-lock-mode hi-lock-mode) "hi-lock" "hi-lock.el" |
| 13049 | ;;;;;; (20034 23247)) | 13157 | ;;;;;; (20126 50093)) |
| 13050 | ;;; Generated autoloads from hi-lock.el | 13158 | ;;; Generated autoloads from hi-lock.el |
| 13051 | 13159 | ||
| 13052 | (autoload 'hi-lock-mode "hi-lock" "\ | 13160 | (autoload 'hi-lock-mode "hi-lock" "\ |
| 13053 | Toggle minor mode for interactively adding font-lock highlighting patterns. | 13161 | Toggle selective highlighting of patterns (Hi Lock mode). |
| 13054 | 13162 | With a prefix argument ARG, enable Hi Lock mode if ARG is | |
| 13055 | If ARG positive, turn hi-lock on. Issuing a hi-lock command will also | 13163 | positive, and disable it otherwise. If called from Lisp, enable |
| 13056 | turn hi-lock on. To turn hi-lock on in all buffers use | 13164 | the mode if ARG is omitted or nil. |
| 13057 | `global-hi-lock-mode' or in your .emacs file (global-hi-lock-mode 1). | 13165 | |
| 13058 | When hi-lock is turned on, a \"Regexp Highlighting\" submenu is added | 13166 | Issuing one the highlighting commands listed below will |
| 13059 | to the \"Edit\" menu. The commands in the submenu, which can be | 13167 | automatically enable Hi Lock mode. To enable Hi Lock mode in all |
| 13060 | called interactively, are: | 13168 | buffers, use `global-hi-lock-mode' or add (global-hi-lock-mode 1) |
| 13169 | to your init file. When Hi Lock mode is enabled, a \"Regexp | ||
| 13170 | Highlighting\" submenu is added to the \"Edit\" menu. The | ||
| 13171 | commands in the submenu, which can be called interactively, are: | ||
| 13061 | 13172 | ||
| 13062 | \\[highlight-regexp] REGEXP FACE | 13173 | \\[highlight-regexp] REGEXP FACE |
| 13063 | Highlight matches of pattern REGEXP in current buffer with FACE. | 13174 | Highlight matches of pattern REGEXP in current buffer with FACE. |
| @@ -13110,9 +13221,11 @@ or call the function `global-hi-lock-mode'.") | |||
| 13110 | (custom-autoload 'global-hi-lock-mode "hi-lock" nil) | 13221 | (custom-autoload 'global-hi-lock-mode "hi-lock" nil) |
| 13111 | 13222 | ||
| 13112 | (autoload 'global-hi-lock-mode "hi-lock" "\ | 13223 | (autoload 'global-hi-lock-mode "hi-lock" "\ |
| 13113 | Toggle Hi-Lock mode in every possible buffer. | 13224 | Toggle Hi-Lock mode in all buffers. |
| 13114 | With prefix ARG, turn Global-Hi-Lock mode on if and only if | 13225 | With prefix ARG, enable Global-Hi-Lock mode if ARG is positive; |
| 13115 | ARG is positive. | 13226 | otherwise, disable it. If called from Lisp, enable the mode if |
| 13227 | ARG is omitted or nil. | ||
| 13228 | |||
| 13116 | Hi-Lock mode is enabled in all buffers where | 13229 | Hi-Lock mode is enabled in all buffers where |
| 13117 | `turn-on-hi-lock-if-enabled' would do it. | 13230 | `turn-on-hi-lock-if-enabled' would do it. |
| 13118 | See `hi-lock-mode' for more information on Hi-Lock mode. | 13231 | See `hi-lock-mode' for more information on Hi-Lock mode. |
| @@ -13180,15 +13293,19 @@ be found in variable `hi-lock-interactive-patterns'. | |||
| 13180 | ;;;*** | 13293 | ;;;*** |
| 13181 | 13294 | ||
| 13182 | ;;;### (autoloads (hide-ifdef-mode) "hideif" "progmodes/hideif.el" | 13295 | ;;;### (autoloads (hide-ifdef-mode) "hideif" "progmodes/hideif.el" |
| 13183 | ;;;;;; (19890 42850)) | 13296 | ;;;;;; (20127 25465)) |
| 13184 | ;;; Generated autoloads from progmodes/hideif.el | 13297 | ;;; Generated autoloads from progmodes/hideif.el |
| 13185 | 13298 | ||
| 13186 | (autoload 'hide-ifdef-mode "hideif" "\ | 13299 | (autoload 'hide-ifdef-mode "hideif" "\ |
| 13187 | Toggle Hide-Ifdef mode. This is a minor mode, albeit a large one. | 13300 | Toggle features to hide/show #ifdef blocks (Hide-Ifdef mode). |
| 13188 | With ARG, turn Hide-Ifdef mode on if arg is positive, off otherwise. | 13301 | With a prefix argument ARG, enable Hide-Ifdef mode if ARG is |
| 13189 | In Hide-Ifdef mode, code within #ifdef constructs that the C preprocessor | 13302 | positive, and disable it otherwise. If called from Lisp, enable |
| 13190 | would eliminate may be hidden from view. Several variables affect | 13303 | the mode if ARG is omitted or nil. |
| 13191 | how the hiding is done: | 13304 | |
| 13305 | Hide-Ifdef mode is a buffer-local minor mode for use with C and | ||
| 13306 | C-like major modes. When enabled, code within #ifdef constructs | ||
| 13307 | that the C preprocessor would eliminate may be hidden from view. | ||
| 13308 | Several variables affect how the hiding is done: | ||
| 13192 | 13309 | ||
| 13193 | `hide-ifdef-env' | 13310 | `hide-ifdef-env' |
| 13194 | An association list of defined and undefined symbols for the | 13311 | An association list of defined and undefined symbols for the |
| @@ -13220,7 +13337,7 @@ how the hiding is done: | |||
| 13220 | ;;;*** | 13337 | ;;;*** |
| 13221 | 13338 | ||
| 13222 | ;;;### (autoloads (turn-off-hideshow hs-minor-mode) "hideshow" "progmodes/hideshow.el" | 13339 | ;;;### (autoloads (turn-off-hideshow hs-minor-mode) "hideshow" "progmodes/hideshow.el" |
| 13223 | ;;;;;; (20091 2935)) | 13340 | ;;;;;; (20119 34052)) |
| 13224 | ;;; Generated autoloads from progmodes/hideshow.el | 13341 | ;;; Generated autoloads from progmodes/hideshow.el |
| 13225 | 13342 | ||
| 13226 | (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))) "\ | 13343 | (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))) "\ |
| @@ -13282,19 +13399,20 @@ Unconditionally turn off `hs-minor-mode'. | |||
| 13282 | ;;;;;; highlight-compare-buffers highlight-changes-rotate-faces | 13399 | ;;;;;; highlight-compare-buffers highlight-changes-rotate-faces |
| 13283 | ;;;;;; highlight-changes-previous-change highlight-changes-next-change | 13400 | ;;;;;; highlight-changes-previous-change highlight-changes-next-change |
| 13284 | ;;;;;; highlight-changes-remove-highlight highlight-changes-visible-mode | 13401 | ;;;;;; highlight-changes-remove-highlight highlight-changes-visible-mode |
| 13285 | ;;;;;; highlight-changes-mode) "hilit-chg" "hilit-chg.el" (19931 | 13402 | ;;;;;; highlight-changes-mode) "hilit-chg" "hilit-chg.el" (20126 |
| 13286 | ;;;;;; 11784)) | 13403 | ;;;;;; 50110)) |
| 13287 | ;;; Generated autoloads from hilit-chg.el | 13404 | ;;; Generated autoloads from hilit-chg.el |
| 13288 | 13405 | ||
| 13289 | (autoload 'highlight-changes-mode "hilit-chg" "\ | 13406 | (autoload 'highlight-changes-mode "hilit-chg" "\ |
| 13290 | Toggle Highlight Changes mode. | 13407 | Toggle highlighting changes in this buffer (Highlight Changes mode). |
| 13291 | 13408 | With a prefix argument ARG, enable Highlight Changes mode if ARG | |
| 13292 | With ARG, turn Highlight Changes mode on if and only if arg is positive. | 13409 | is positive, and disable it otherwise. If called from Lisp, |
| 13410 | enable the mode if ARG is omitted or nil. | ||
| 13293 | 13411 | ||
| 13294 | In Highlight Changes mode changes are recorded with a text property. | 13412 | When Highlight Changes is enabled, changes are marked with a text |
| 13295 | Normally they are displayed in a distinctive face, but command | 13413 | property. Normally they are displayed in a distinctive face, but |
| 13296 | \\[highlight-changes-visible-mode] can be used to toggles this | 13414 | command \\[highlight-changes-visible-mode] can be used to toggles |
| 13297 | on and off. | 13415 | this on and off. |
| 13298 | 13416 | ||
| 13299 | Other functions for buffers in this mode include: | 13417 | Other functions for buffers in this mode include: |
| 13300 | \\[highlight-changes-next-change] - move point to beginning of next change | 13418 | \\[highlight-changes-next-change] - move point to beginning of next change |
| @@ -13309,14 +13427,17 @@ buffer with the contents of a file | |||
| 13309 | \(fn &optional ARG)" t nil) | 13427 | \(fn &optional ARG)" t nil) |
| 13310 | 13428 | ||
| 13311 | (autoload 'highlight-changes-visible-mode "hilit-chg" "\ | 13429 | (autoload 'highlight-changes-visible-mode "hilit-chg" "\ |
| 13312 | Toggle visiblility of changes when buffer is in Highlight Changes mode. | 13430 | Toggle visiblility of highlighting due to Highlight Changes mode. |
| 13431 | With a prefix argument ARG, enable Highlight Changes Visible mode | ||
| 13432 | if ARG is positive, and disable it otherwise. If called from | ||
| 13433 | Lisp, enable the mode if ARG is omitted or nil. | ||
| 13313 | 13434 | ||
| 13314 | This mode only has an effect when Highlight Changes mode is on. | 13435 | Highlight Changes Visible mode only has an effect when Highlight |
| 13315 | It allows toggling between whether or not the changed text is displayed | 13436 | Changes mode is on. When enabled, the changed text is displayed |
| 13316 | in a distinctive face. | 13437 | in a distinctive face. |
| 13317 | 13438 | ||
| 13318 | The default value can be customized with variable | 13439 | The default value can be customized with variable |
| 13319 | `highlight-changes-visibility-initial-state' | 13440 | `highlight-changes-visibility-initial-state'. |
| 13320 | 13441 | ||
| 13321 | This command does not itself set highlight-changes mode. | 13442 | This command does not itself set highlight-changes mode. |
| 13322 | 13443 | ||
| @@ -13397,9 +13518,11 @@ or call the function `global-highlight-changes-mode'.") | |||
| 13397 | (custom-autoload 'global-highlight-changes-mode "hilit-chg" nil) | 13518 | (custom-autoload 'global-highlight-changes-mode "hilit-chg" nil) |
| 13398 | 13519 | ||
| 13399 | (autoload 'global-highlight-changes-mode "hilit-chg" "\ | 13520 | (autoload 'global-highlight-changes-mode "hilit-chg" "\ |
| 13400 | Toggle Highlight-Changes mode in every possible buffer. | 13521 | Toggle Highlight-Changes mode in all buffers. |
| 13401 | With prefix ARG, turn Global-Highlight-Changes mode on if and only if | 13522 | With prefix ARG, enable Global-Highlight-Changes mode if ARG is positive; |
| 13402 | ARG is positive. | 13523 | otherwise, disable it. If called from Lisp, enable the mode if |
| 13524 | ARG is omitted or nil. | ||
| 13525 | |||
| 13403 | Highlight-Changes mode is enabled in all buffers where | 13526 | Highlight-Changes mode is enabled in all buffers where |
| 13404 | `highlight-changes-mode-turn-on' would do it. | 13527 | `highlight-changes-mode-turn-on' would do it. |
| 13405 | See `highlight-changes-mode' for more information on Highlight-Changes mode. | 13528 | See `highlight-changes-mode' for more information on Highlight-Changes mode. |
| @@ -13412,7 +13535,7 @@ See `highlight-changes-mode' for more information on Highlight-Changes mode. | |||
| 13412 | ;;;;;; hippie-expand-ignore-buffers hippie-expand-max-buffers hippie-expand-no-restriction | 13535 | ;;;;;; hippie-expand-ignore-buffers hippie-expand-max-buffers hippie-expand-no-restriction |
| 13413 | ;;;;;; hippie-expand-dabbrev-as-symbol hippie-expand-dabbrev-skip-space | 13536 | ;;;;;; hippie-expand-dabbrev-as-symbol hippie-expand-dabbrev-skip-space |
| 13414 | ;;;;;; hippie-expand-verbose hippie-expand-try-functions-list) "hippie-exp" | 13537 | ;;;;;; hippie-expand-verbose hippie-expand-try-functions-list) "hippie-exp" |
| 13415 | ;;;;;; "hippie-exp.el" (19845 45374)) | 13538 | ;;;;;; "hippie-exp.el" (20119 34052)) |
| 13416 | ;;; Generated autoloads from hippie-exp.el | 13539 | ;;; Generated autoloads from hippie-exp.el |
| 13417 | 13540 | ||
| 13418 | (defvar hippie-expand-try-functions-list '(try-complete-file-name-partially try-complete-file-name try-expand-all-abbrevs try-expand-list try-expand-line try-expand-dabbrev try-expand-dabbrev-all-buffers try-expand-dabbrev-from-kill try-complete-lisp-symbol-partially try-complete-lisp-symbol) "\ | 13541 | (defvar hippie-expand-try-functions-list '(try-complete-file-name-partially try-complete-file-name try-expand-all-abbrevs try-expand-list try-expand-line try-expand-dabbrev try-expand-dabbrev-all-buffers try-expand-dabbrev-from-kill try-complete-lisp-symbol-partially try-complete-lisp-symbol) "\ |
| @@ -13485,14 +13608,17 @@ argument VERBOSE non-nil makes the function verbose. | |||
| 13485 | ;;;*** | 13608 | ;;;*** |
| 13486 | 13609 | ||
| 13487 | ;;;### (autoloads (global-hl-line-mode hl-line-mode) "hl-line" "hl-line.el" | 13610 | ;;;### (autoloads (global-hl-line-mode hl-line-mode) "hl-line" "hl-line.el" |
| 13488 | ;;;;;; (19976 22732)) | 13611 | ;;;;;; (20126 50128)) |
| 13489 | ;;; Generated autoloads from hl-line.el | 13612 | ;;; Generated autoloads from hl-line.el |
| 13490 | 13613 | ||
| 13491 | (autoload 'hl-line-mode "hl-line" "\ | 13614 | (autoload 'hl-line-mode "hl-line" "\ |
| 13492 | Buffer-local minor mode to highlight the line about point. | 13615 | Toggle highlighting of the current line (Hl-Line mode). |
| 13493 | With ARG, turn Hl-Line mode on if ARG is positive, off otherwise. | 13616 | With a prefix argument ARG, enable Hl-Line mode if ARG is |
| 13617 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 13618 | the mode if ARG is omitted or nil. | ||
| 13494 | 13619 | ||
| 13495 | If `hl-line-sticky-flag' is non-nil, Hl-Line mode highlights the | 13620 | Hl-Line mode is a buffer-local minor mode. If |
| 13621 | `hl-line-sticky-flag' is non-nil, Hl-Line mode highlights the | ||
| 13496 | line about the buffer's point in all windows. Caveat: the | 13622 | line about the buffer's point in all windows. Caveat: the |
| 13497 | buffer's point might be different from the point of a | 13623 | buffer's point might be different from the point of a |
| 13498 | non-selected window. Hl-Line mode uses the function | 13624 | non-selected window. Hl-Line mode uses the function |
| @@ -13515,8 +13641,10 @@ or call the function `global-hl-line-mode'.") | |||
| 13515 | (custom-autoload 'global-hl-line-mode "hl-line" nil) | 13641 | (custom-autoload 'global-hl-line-mode "hl-line" nil) |
| 13516 | 13642 | ||
| 13517 | (autoload 'global-hl-line-mode "hl-line" "\ | 13643 | (autoload 'global-hl-line-mode "hl-line" "\ |
| 13518 | Global minor mode to highlight the line about point in the current window. | 13644 | Toggle line highlighting in all buffers (Global Hl-Line mode). |
| 13519 | With ARG, turn Global-Hl-Line mode on if ARG is positive, off otherwise. | 13645 | With a prefix argument ARG, enable Global Hl-Line mode if ARG is |
| 13646 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 13647 | the mode if ARG is omitted or nil. | ||
| 13520 | 13648 | ||
| 13521 | If `global-hl-line-sticky-flag' is non-nil, Global Hl-Line mode | 13649 | If `global-hl-line-sticky-flag' is non-nil, Global Hl-Line mode |
| 13522 | highlights the line about the current buffer's point in all | 13650 | highlights the line about the current buffer's point in all |
| @@ -13533,7 +13661,7 @@ Global-Hl-Line mode uses the functions `global-hl-line-unhighlight' and | |||
| 13533 | ;;;;;; holiday-bahai-holidays holiday-islamic-holidays holiday-christian-holidays | 13661 | ;;;;;; holiday-bahai-holidays holiday-islamic-holidays holiday-christian-holidays |
| 13534 | ;;;;;; holiday-hebrew-holidays holiday-other-holidays holiday-local-holidays | 13662 | ;;;;;; holiday-hebrew-holidays holiday-other-holidays holiday-local-holidays |
| 13535 | ;;;;;; holiday-oriental-holidays holiday-general-holidays) "holidays" | 13663 | ;;;;;; holiday-oriental-holidays holiday-general-holidays) "holidays" |
| 13536 | ;;;;;; "calendar/holidays.el" (19882 48702)) | 13664 | ;;;;;; "calendar/holidays.el" (20119 34052)) |
| 13537 | ;;; Generated autoloads from calendar/holidays.el | 13665 | ;;; Generated autoloads from calendar/holidays.el |
| 13538 | 13666 | ||
| 13539 | (define-obsolete-variable-alias 'general-holidays 'holiday-general-holidays "23.1") | 13667 | (define-obsolete-variable-alias 'general-holidays 'holiday-general-holidays "23.1") |
| @@ -13681,8 +13809,8 @@ The optional LABEL is used to label the buffer created. | |||
| 13681 | 13809 | ||
| 13682 | ;;;*** | 13810 | ;;;*** |
| 13683 | 13811 | ||
| 13684 | ;;;### (autoloads (html2text) "html2text" "gnus/html2text.el" (19845 | 13812 | ;;;### (autoloads (html2text) "html2text" "gnus/html2text.el" (20119 |
| 13685 | ;;;;;; 45374)) | 13813 | ;;;;;; 34052)) |
| 13686 | ;;; Generated autoloads from gnus/html2text.el | 13814 | ;;; Generated autoloads from gnus/html2text.el |
| 13687 | 13815 | ||
| 13688 | (autoload 'html2text "html2text" "\ | 13816 | (autoload 'html2text "html2text" "\ |
| @@ -13693,7 +13821,7 @@ Convert HTML to plain text in the current buffer. | |||
| 13693 | ;;;*** | 13821 | ;;;*** |
| 13694 | 13822 | ||
| 13695 | ;;;### (autoloads (htmlfontify-copy-and-link-dir htmlfontify-buffer) | 13823 | ;;;### (autoloads (htmlfontify-copy-and-link-dir htmlfontify-buffer) |
| 13696 | ;;;;;; "htmlfontify" "htmlfontify.el" (19886 45771)) | 13824 | ;;;;;; "htmlfontify" "htmlfontify.el" (20119 34052)) |
| 13697 | ;;; Generated autoloads from htmlfontify.el | 13825 | ;;; Generated autoloads from htmlfontify.el |
| 13698 | 13826 | ||
| 13699 | (autoload 'htmlfontify-buffer "htmlfontify" "\ | 13827 | (autoload 'htmlfontify-buffer "htmlfontify" "\ |
| @@ -13726,8 +13854,8 @@ You may also want to set `hfy-page-header' and `hfy-page-footer'. | |||
| 13726 | ;;;*** | 13854 | ;;;*** |
| 13727 | 13855 | ||
| 13728 | ;;;### (autoloads (define-ibuffer-filter define-ibuffer-op define-ibuffer-sorter | 13856 | ;;;### (autoloads (define-ibuffer-filter define-ibuffer-op define-ibuffer-sorter |
| 13729 | ;;;;;; define-ibuffer-column) "ibuf-macs" "ibuf-macs.el" (19845 | 13857 | ;;;;;; define-ibuffer-column) "ibuf-macs" "ibuf-macs.el" (20119 |
| 13730 | ;;;;;; 45374)) | 13858 | ;;;;;; 34052)) |
| 13731 | ;;; Generated autoloads from ibuf-macs.el | 13859 | ;;; Generated autoloads from ibuf-macs.el |
| 13732 | 13860 | ||
| 13733 | (autoload 'define-ibuffer-column "ibuf-macs" "\ | 13861 | (autoload 'define-ibuffer-column "ibuf-macs" "\ |
| @@ -13824,7 +13952,7 @@ bound to the current value of the filter. | |||
| 13824 | ;;;*** | 13952 | ;;;*** |
| 13825 | 13953 | ||
| 13826 | ;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers) | 13954 | ;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers) |
| 13827 | ;;;;;; "ibuffer" "ibuffer.el" (20053 39261)) | 13955 | ;;;;;; "ibuffer" "ibuffer.el" (20126 50992)) |
| 13828 | ;;; Generated autoloads from ibuffer.el | 13956 | ;;; Generated autoloads from ibuffer.el |
| 13829 | 13957 | ||
| 13830 | (autoload 'ibuffer-list-buffers "ibuffer" "\ | 13958 | (autoload 'ibuffer-list-buffers "ibuffer" "\ |
| @@ -13865,7 +13993,7 @@ FORMATS is the value to use for `ibuffer-formats'. | |||
| 13865 | 13993 | ||
| 13866 | ;;;### (autoloads (icalendar-import-buffer icalendar-import-file | 13994 | ;;;### (autoloads (icalendar-import-buffer icalendar-import-file |
| 13867 | ;;;;;; icalendar-export-region icalendar-export-file) "icalendar" | 13995 | ;;;;;; icalendar-export-region icalendar-export-file) "icalendar" |
| 13868 | ;;;;;; "calendar/icalendar.el" (20015 58840)) | 13996 | ;;;;;; "calendar/icalendar.el" (20119 34052)) |
| 13869 | ;;; Generated autoloads from calendar/icalendar.el | 13997 | ;;; Generated autoloads from calendar/icalendar.el |
| 13870 | 13998 | ||
| 13871 | (autoload 'icalendar-export-file "icalendar" "\ | 13999 | (autoload 'icalendar-export-file "icalendar" "\ |
| @@ -13917,8 +14045,8 @@ buffer `*icalendar-errors*'. | |||
| 13917 | 14045 | ||
| 13918 | ;;;*** | 14046 | ;;;*** |
| 13919 | 14047 | ||
| 13920 | ;;;### (autoloads (icomplete-mode) "icomplete" "icomplete.el" (20087 | 14048 | ;;;### (autoloads (icomplete-mode) "icomplete" "icomplete.el" (20126 |
| 13921 | ;;;;;; 5852)) | 14049 | ;;;;;; 50158)) |
| 13922 | ;;; Generated autoloads from icomplete.el | 14050 | ;;; Generated autoloads from icomplete.el |
| 13923 | 14051 | ||
| 13924 | (defvar icomplete-mode nil "\ | 14052 | (defvar icomplete-mode nil "\ |
| @@ -13931,15 +14059,16 @@ or call the function `icomplete-mode'.") | |||
| 13931 | (custom-autoload 'icomplete-mode "icomplete" nil) | 14059 | (custom-autoload 'icomplete-mode "icomplete" nil) |
| 13932 | 14060 | ||
| 13933 | (autoload 'icomplete-mode "icomplete" "\ | 14061 | (autoload 'icomplete-mode "icomplete" "\ |
| 13934 | Toggle incremental minibuffer completion for this Emacs session. | 14062 | Toggle incremental minibuffer completion (Icomplete mode). |
| 13935 | With a numeric argument, turn Icomplete mode on if ARG is positive, | 14063 | With a prefix argument ARG, enable Icomplete mode if ARG is |
| 13936 | otherwise turn it off. | 14064 | positive, and disable it otherwise. If called from Lisp, enable |
| 14065 | the mode if ARG is omitted or nil. | ||
| 13937 | 14066 | ||
| 13938 | \(fn &optional ARG)" t nil) | 14067 | \(fn &optional ARG)" t nil) |
| 13939 | 14068 | ||
| 13940 | ;;;*** | 14069 | ;;;*** |
| 13941 | 14070 | ||
| 13942 | ;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (19890 42850)) | 14071 | ;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (20119 34052)) |
| 13943 | ;;; Generated autoloads from progmodes/icon.el | 14072 | ;;; Generated autoloads from progmodes/icon.el |
| 13944 | 14073 | ||
| 13945 | (autoload 'icon-mode "icon" "\ | 14074 | (autoload 'icon-mode "icon" "\ |
| @@ -13980,7 +14109,7 @@ with no args, if that value is non-nil. | |||
| 13980 | ;;;*** | 14109 | ;;;*** |
| 13981 | 14110 | ||
| 13982 | ;;;### (autoloads (idlwave-shell) "idlw-shell" "progmodes/idlw-shell.el" | 14111 | ;;;### (autoloads (idlwave-shell) "idlw-shell" "progmodes/idlw-shell.el" |
| 13983 | ;;;;;; (19931 11784)) | 14112 | ;;;;;; (20127 25340)) |
| 13984 | ;;; Generated autoloads from progmodes/idlw-shell.el | 14113 | ;;; Generated autoloads from progmodes/idlw-shell.el |
| 13985 | 14114 | ||
| 13986 | (autoload 'idlwave-shell "idlw-shell" "\ | 14115 | (autoload 'idlwave-shell "idlw-shell" "\ |
| @@ -14006,7 +14135,7 @@ See also the variable `idlwave-shell-prompt-pattern'. | |||
| 14006 | ;;;*** | 14135 | ;;;*** |
| 14007 | 14136 | ||
| 14008 | ;;;### (autoloads (idlwave-mode) "idlwave" "progmodes/idlwave.el" | 14137 | ;;;### (autoloads (idlwave-mode) "idlwave" "progmodes/idlwave.el" |
| 14009 | ;;;;;; (19863 8742)) | 14138 | ;;;;;; (20129 34279)) |
| 14010 | ;;; Generated autoloads from progmodes/idlwave.el | 14139 | ;;; Generated autoloads from progmodes/idlwave.el |
| 14011 | 14140 | ||
| 14012 | (autoload 'idlwave-mode "idlwave" "\ | 14141 | (autoload 'idlwave-mode "idlwave" "\ |
| @@ -14140,8 +14269,8 @@ The main features of this mode are | |||
| 14140 | ;;;;;; ido-find-alternate-file ido-find-file-other-window ido-find-file | 14269 | ;;;;;; ido-find-alternate-file ido-find-file-other-window ido-find-file |
| 14141 | ;;;;;; ido-find-file-in-dir ido-switch-buffer-other-frame ido-insert-buffer | 14270 | ;;;;;; ido-find-file-in-dir ido-switch-buffer-other-frame ido-insert-buffer |
| 14142 | ;;;;;; ido-kill-buffer ido-display-buffer ido-switch-buffer-other-window | 14271 | ;;;;;; ido-kill-buffer ido-display-buffer ido-switch-buffer-other-window |
| 14143 | ;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (20097 | 14272 | ;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (20139 |
| 14144 | ;;;;;; 41737)) | 14273 | ;;;;;; 37519)) |
| 14145 | ;;; Generated autoloads from ido.el | 14274 | ;;; Generated autoloads from ido.el |
| 14146 | 14275 | ||
| 14147 | (defvar ido-mode nil "\ | 14276 | (defvar ido-mode nil "\ |
| @@ -14402,7 +14531,7 @@ DEF, if non-nil, is the default value. | |||
| 14402 | 14531 | ||
| 14403 | ;;;*** | 14532 | ;;;*** |
| 14404 | 14533 | ||
| 14405 | ;;;### (autoloads (ielm) "ielm" "ielm.el" (20077 56412)) | 14534 | ;;;### (autoloads (ielm) "ielm" "ielm.el" (20119 34052)) |
| 14406 | ;;; Generated autoloads from ielm.el | 14535 | ;;; Generated autoloads from ielm.el |
| 14407 | 14536 | ||
| 14408 | (autoload 'ielm "ielm" "\ | 14537 | (autoload 'ielm "ielm" "\ |
| @@ -14413,7 +14542,7 @@ Switches to the buffer `*ielm*', or creates it if it does not exist. | |||
| 14413 | 14542 | ||
| 14414 | ;;;*** | 14543 | ;;;*** |
| 14415 | 14544 | ||
| 14416 | ;;;### (autoloads (iimage-mode) "iimage" "iimage.el" (19845 45374)) | 14545 | ;;;### (autoloads (iimage-mode) "iimage" "iimage.el" (20119 34052)) |
| 14417 | ;;; Generated autoloads from iimage.el | 14546 | ;;; Generated autoloads from iimage.el |
| 14418 | 14547 | ||
| 14419 | (define-obsolete-function-alias 'turn-on-iimage-mode 'iimage-mode "24.1") | 14548 | (define-obsolete-function-alias 'turn-on-iimage-mode 'iimage-mode "24.1") |
| @@ -14430,7 +14559,7 @@ Toggle inline image minor mode. | |||
| 14430 | ;;;;;; create-image image-type-auto-detected-p image-type-available-p | 14559 | ;;;;;; create-image image-type-auto-detected-p image-type-available-p |
| 14431 | ;;;;;; image-type image-type-from-file-name image-type-from-file-header | 14560 | ;;;;;; image-type image-type-from-file-name image-type-from-file-header |
| 14432 | ;;;;;; image-type-from-buffer image-type-from-data) "image" "image.el" | 14561 | ;;;;;; image-type-from-buffer image-type-from-data) "image" "image.el" |
| 14433 | ;;;;;; (20084 29660)) | 14562 | ;;;;;; (20119 34052)) |
| 14434 | ;;; Generated autoloads from image.el | 14563 | ;;; Generated autoloads from image.el |
| 14435 | 14564 | ||
| 14436 | (autoload 'image-type-from-data "image" "\ | 14565 | (autoload 'image-type-from-data "image" "\ |
| @@ -14627,7 +14756,7 @@ If Emacs is compiled without ImageMagick support, do nothing. | |||
| 14627 | ;;;;;; image-dired-jump-thumbnail-buffer image-dired-delete-tag | 14756 | ;;;;;; image-dired-jump-thumbnail-buffer image-dired-delete-tag |
| 14628 | ;;;;;; image-dired-tag-files image-dired-show-all-from-dir image-dired-display-thumbs | 14757 | ;;;;;; image-dired-tag-files image-dired-show-all-from-dir image-dired-display-thumbs |
| 14629 | ;;;;;; image-dired-dired-with-window-configuration image-dired-dired-toggle-marked-thumbs) | 14758 | ;;;;;; image-dired-dired-with-window-configuration image-dired-dired-toggle-marked-thumbs) |
| 14630 | ;;;;;; "image-dired" "image-dired.el" (20033 22846)) | 14759 | ;;;;;; "image-dired" "image-dired.el" (20140 44252)) |
| 14631 | ;;; Generated autoloads from image-dired.el | 14760 | ;;; Generated autoloads from image-dired.el |
| 14632 | 14761 | ||
| 14633 | (autoload 'image-dired-dired-toggle-marked-thumbs "image-dired" "\ | 14762 | (autoload 'image-dired-dired-toggle-marked-thumbs "image-dired" "\ |
| @@ -14765,7 +14894,7 @@ easy-to-use form. | |||
| 14765 | 14894 | ||
| 14766 | ;;;### (autoloads (auto-image-file-mode insert-image-file image-file-name-regexp | 14895 | ;;;### (autoloads (auto-image-file-mode insert-image-file image-file-name-regexp |
| 14767 | ;;;;;; image-file-name-regexps image-file-name-extensions) "image-file" | 14896 | ;;;;;; image-file-name-regexps image-file-name-extensions) "image-file" |
| 14768 | ;;;;;; "image-file.el" (19845 45374)) | 14897 | ;;;;;; "image-file.el" (20126 50176)) |
| 14769 | ;;; Generated autoloads from image-file.el | 14898 | ;;; Generated autoloads from image-file.el |
| 14770 | 14899 | ||
| 14771 | (defvar image-file-name-extensions (purecopy '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm" "svg")) "\ | 14900 | (defvar image-file-name-extensions (purecopy '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm" "svg")) "\ |
| @@ -14814,11 +14943,12 @@ or call the function `auto-image-file-mode'.") | |||
| 14814 | (custom-autoload 'auto-image-file-mode "image-file" nil) | 14943 | (custom-autoload 'auto-image-file-mode "image-file" nil) |
| 14815 | 14944 | ||
| 14816 | (autoload 'auto-image-file-mode "image-file" "\ | 14945 | (autoload 'auto-image-file-mode "image-file" "\ |
| 14817 | Toggle visiting of image files as images. | 14946 | Toggle visiting of image files as images (Auto Image File mode). |
| 14818 | With prefix argument ARG, turn on if positive, otherwise off. | 14947 | With a prefix argument ARG, enable Auto Image File mode if ARG is |
| 14819 | Returns non-nil if the new state is enabled. | 14948 | positive, and disable it otherwise. If called from Lisp, enable |
| 14949 | the mode if ARG is omitted or nil. | ||
| 14820 | 14950 | ||
| 14821 | Image files are those whose name has an extension in | 14951 | An image file is one whose name has an extension in |
| 14822 | `image-file-name-extensions', or matches a regexp in | 14952 | `image-file-name-extensions', or matches a regexp in |
| 14823 | `image-file-name-regexps'. | 14953 | `image-file-name-regexps'. |
| 14824 | 14954 | ||
| @@ -14827,7 +14957,7 @@ Image files are those whose name has an extension in | |||
| 14827 | ;;;*** | 14957 | ;;;*** |
| 14828 | 14958 | ||
| 14829 | ;;;### (autoloads (image-bookmark-jump image-mode-as-text image-minor-mode | 14959 | ;;;### (autoloads (image-bookmark-jump image-mode-as-text image-minor-mode |
| 14830 | ;;;;;; image-mode) "image-mode" "image-mode.el" (20088 26718)) | 14960 | ;;;;;; image-mode) "image-mode" "image-mode.el" (20126 50186)) |
| 14831 | ;;; Generated autoloads from image-mode.el | 14961 | ;;; Generated autoloads from image-mode.el |
| 14832 | 14962 | ||
| 14833 | (autoload 'image-mode "image-mode" "\ | 14963 | (autoload 'image-mode "image-mode" "\ |
| @@ -14838,10 +14968,14 @@ to toggle between display as an image and display as text. | |||
| 14838 | \(fn)" t nil) | 14968 | \(fn)" t nil) |
| 14839 | 14969 | ||
| 14840 | (autoload 'image-minor-mode "image-mode" "\ | 14970 | (autoload 'image-minor-mode "image-mode" "\ |
| 14841 | Toggle Image minor mode. | 14971 | Toggle Image minor mode in this buffer. |
| 14842 | With arg, turn Image minor mode on if arg is positive, off otherwise. | 14972 | With a prefix argument ARG, enable Image minor mode if ARG is |
| 14843 | It provides the key \\<image-mode-map>\\[image-toggle-display] to switch back to `image-mode' | 14973 | positive, and disable it otherwise. If called from Lisp, enable |
| 14844 | to display an image file as the actual image. | 14974 | the mode if ARG is omitted or nil. |
| 14975 | |||
| 14976 | Image minor mode provides the key \\<image-mode-map>\\[image-toggle-display], | ||
| 14977 | to switch back to `image-mode' and display an image file as the | ||
| 14978 | actual image. | ||
| 14845 | 14979 | ||
| 14846 | \(fn &optional ARG)" t nil) | 14980 | \(fn &optional ARG)" t nil) |
| 14847 | 14981 | ||
| @@ -14868,7 +15002,7 @@ on these modes. | |||
| 14868 | ;;;*** | 15002 | ;;;*** |
| 14869 | 15003 | ||
| 14870 | ;;;### (autoloads (imenu imenu-add-menubar-index imenu-add-to-menubar | 15004 | ;;;### (autoloads (imenu imenu-add-menubar-index imenu-add-to-menubar |
| 14871 | ;;;;;; imenu-sort-function) "imenu" "imenu.el" (19845 45374)) | 15005 | ;;;;;; imenu-sort-function) "imenu" "imenu.el" (20119 34052)) |
| 14872 | ;;; Generated autoloads from imenu.el | 15006 | ;;; Generated autoloads from imenu.el |
| 14873 | 15007 | ||
| 14874 | (defvar imenu-sort-function nil "\ | 15008 | (defvar imenu-sort-function nil "\ |
| @@ -14985,7 +15119,7 @@ for more information. | |||
| 14985 | 15119 | ||
| 14986 | ;;;### (autoloads (indian-2-column-to-ucs-region in-is13194-pre-write-conversion | 15120 | ;;;### (autoloads (indian-2-column-to-ucs-region in-is13194-pre-write-conversion |
| 14987 | ;;;;;; in-is13194-post-read-conversion indian-compose-string indian-compose-region) | 15121 | ;;;;;; in-is13194-post-read-conversion indian-compose-string indian-compose-region) |
| 14988 | ;;;;;; "ind-util" "language/ind-util.el" (20097 41737)) | 15122 | ;;;;;; "ind-util" "language/ind-util.el" (20119 34052)) |
| 14989 | ;;; Generated autoloads from language/ind-util.el | 15123 | ;;; Generated autoloads from language/ind-util.el |
| 14990 | 15124 | ||
| 14991 | (autoload 'indian-compose-region "ind-util" "\ | 15125 | (autoload 'indian-compose-region "ind-util" "\ |
| @@ -15017,7 +15151,7 @@ Convert old Emacs Devanagari characters to UCS. | |||
| 15017 | 15151 | ||
| 15018 | ;;;### (autoloads (inferior-lisp inferior-lisp-prompt inferior-lisp-load-command | 15152 | ;;;### (autoloads (inferior-lisp inferior-lisp-prompt inferior-lisp-load-command |
| 15019 | ;;;;;; inferior-lisp-program inferior-lisp-filter-regexp) "inf-lisp" | 15153 | ;;;;;; inferior-lisp-program inferior-lisp-filter-regexp) "inf-lisp" |
| 15020 | ;;;;;; "progmodes/inf-lisp.el" (20092 23754)) | 15154 | ;;;;;; "progmodes/inf-lisp.el" (20119 34052)) |
| 15021 | ;;; Generated autoloads from progmodes/inf-lisp.el | 15155 | ;;; Generated autoloads from progmodes/inf-lisp.el |
| 15022 | 15156 | ||
| 15023 | (defvar inferior-lisp-filter-regexp (purecopy "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'") "\ | 15157 | (defvar inferior-lisp-filter-regexp (purecopy "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'") "\ |
| @@ -15084,7 +15218,7 @@ of `inferior-lisp-program'). Runs the hooks from | |||
| 15084 | ;;;;;; Info-goto-emacs-key-command-node Info-goto-emacs-command-node | 15218 | ;;;;;; Info-goto-emacs-key-command-node Info-goto-emacs-command-node |
| 15085 | ;;;;;; Info-mode info-finder info-apropos Info-index Info-directory | 15219 | ;;;;;; Info-mode info-finder info-apropos Info-index Info-directory |
| 15086 | ;;;;;; Info-on-current-buffer info-standalone info-emacs-manual | 15220 | ;;;;;; Info-on-current-buffer info-standalone info-emacs-manual |
| 15087 | ;;;;;; info info-other-window) "info" "info.el" (20092 23754)) | 15221 | ;;;;;; info info-other-window) "info" "info.el" (20134 14214)) |
| 15088 | ;;; Generated autoloads from info.el | 15222 | ;;; Generated autoloads from info.el |
| 15089 | 15223 | ||
| 15090 | (autoload 'info-other-window "info" "\ | 15224 | (autoload 'info-other-window "info" "\ |
| @@ -15270,7 +15404,7 @@ Go to Info buffer that displays MANUAL, creating it if none already exists. | |||
| 15270 | 15404 | ||
| 15271 | ;;;### (autoloads (info-complete-file info-complete-symbol info-lookup-file | 15405 | ;;;### (autoloads (info-complete-file info-complete-symbol info-lookup-file |
| 15272 | ;;;;;; info-lookup-symbol info-lookup-reset) "info-look" "info-look.el" | 15406 | ;;;;;; info-lookup-symbol info-lookup-reset) "info-look" "info-look.el" |
| 15273 | ;;;;;; (19984 16846)) | 15407 | ;;;;;; (20119 34052)) |
| 15274 | ;;; Generated autoloads from info-look.el | 15408 | ;;; Generated autoloads from info-look.el |
| 15275 | 15409 | ||
| 15276 | (autoload 'info-lookup-reset "info-look" "\ | 15410 | (autoload 'info-lookup-reset "info-look" "\ |
| @@ -15319,7 +15453,7 @@ Perform completion on file preceding point. | |||
| 15319 | 15453 | ||
| 15320 | ;;;### (autoloads (info-xref-docstrings info-xref-check-all-custom | 15454 | ;;;### (autoloads (info-xref-docstrings info-xref-check-all-custom |
| 15321 | ;;;;;; info-xref-check-all info-xref-check) "info-xref" "info-xref.el" | 15455 | ;;;;;; info-xref-check-all info-xref-check) "info-xref" "info-xref.el" |
| 15322 | ;;;;;; (19886 45771)) | 15456 | ;;;;;; (20119 34052)) |
| 15323 | ;;; Generated autoloads from info-xref.el | 15457 | ;;; Generated autoloads from info-xref.el |
| 15324 | 15458 | ||
| 15325 | (autoload 'info-xref-check "info-xref" "\ | 15459 | (autoload 'info-xref-check "info-xref" "\ |
| @@ -15402,7 +15536,7 @@ the sources handy. | |||
| 15402 | ;;;*** | 15536 | ;;;*** |
| 15403 | 15537 | ||
| 15404 | ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-split-threshold | 15538 | ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-split-threshold |
| 15405 | ;;;;;; Info-tagify) "informat" "informat.el" (19886 45771)) | 15539 | ;;;;;; Info-tagify) "informat" "informat.el" (20119 34052)) |
| 15406 | ;;; Generated autoloads from informat.el | 15540 | ;;; Generated autoloads from informat.el |
| 15407 | 15541 | ||
| 15408 | (autoload 'Info-tagify "informat" "\ | 15542 | (autoload 'Info-tagify "informat" "\ |
| @@ -15449,7 +15583,7 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\" | |||
| 15449 | 15583 | ||
| 15450 | ;;;### (autoloads (isearch-process-search-multibyte-characters isearch-toggle-input-method | 15584 | ;;;### (autoloads (isearch-process-search-multibyte-characters isearch-toggle-input-method |
| 15451 | ;;;;;; isearch-toggle-specified-input-method) "isearch-x" "international/isearch-x.el" | 15585 | ;;;;;; isearch-toggle-specified-input-method) "isearch-x" "international/isearch-x.el" |
| 15452 | ;;;;;; (19845 45374)) | 15586 | ;;;;;; (20119 34052)) |
| 15453 | ;;; Generated autoloads from international/isearch-x.el | 15587 | ;;; Generated autoloads from international/isearch-x.el |
| 15454 | 15588 | ||
| 15455 | (autoload 'isearch-toggle-specified-input-method "isearch-x" "\ | 15589 | (autoload 'isearch-toggle-specified-input-method "isearch-x" "\ |
| @@ -15469,8 +15603,8 @@ Toggle input method in interactive search. | |||
| 15469 | 15603 | ||
| 15470 | ;;;*** | 15604 | ;;;*** |
| 15471 | 15605 | ||
| 15472 | ;;;### (autoloads (isearchb-activate) "isearchb" "isearchb.el" (19845 | 15606 | ;;;### (autoloads (isearchb-activate) "isearchb" "isearchb.el" (20119 |
| 15473 | ;;;;;; 45374)) | 15607 | ;;;;;; 34052)) |
| 15474 | ;;; Generated autoloads from isearchb.el | 15608 | ;;; Generated autoloads from isearchb.el |
| 15475 | 15609 | ||
| 15476 | (autoload 'isearchb-activate "isearchb" "\ | 15610 | (autoload 'isearchb-activate "isearchb" "\ |
| @@ -15486,7 +15620,7 @@ accessed via isearchb. | |||
| 15486 | ;;;### (autoloads (iso-cvt-define-menu iso-cvt-write-only iso-cvt-read-only | 15620 | ;;;### (autoloads (iso-cvt-define-menu iso-cvt-write-only iso-cvt-read-only |
| 15487 | ;;;;;; iso-sgml2iso iso-iso2sgml iso-iso2duden iso-iso2gtex iso-gtex2iso | 15621 | ;;;;;; iso-sgml2iso iso-iso2sgml iso-iso2duden iso-iso2gtex iso-gtex2iso |
| 15488 | ;;;;;; iso-tex2iso iso-iso2tex iso-german iso-spanish) "iso-cvt" | 15622 | ;;;;;; iso-tex2iso iso-iso2tex iso-german iso-spanish) "iso-cvt" |
| 15489 | ;;;;;; "international/iso-cvt.el" (19845 45374)) | 15623 | ;;;;;; "international/iso-cvt.el" (20119 34052)) |
| 15490 | ;;; Generated autoloads from international/iso-cvt.el | 15624 | ;;; Generated autoloads from international/iso-cvt.el |
| 15491 | 15625 | ||
| 15492 | (autoload 'iso-spanish "iso-cvt" "\ | 15626 | (autoload 'iso-spanish "iso-cvt" "\ |
| @@ -15577,7 +15711,7 @@ Add submenus to the File menu, to convert to and from various formats. | |||
| 15577 | ;;;*** | 15711 | ;;;*** |
| 15578 | 15712 | ||
| 15579 | ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" | 15713 | ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" |
| 15580 | ;;;;;; (19845 45374)) | 15714 | ;;;;;; (20119 34052)) |
| 15581 | ;;; Generated autoloads from international/iso-transl.el | 15715 | ;;; Generated autoloads from international/iso-transl.el |
| 15582 | (or key-translation-map (setq key-translation-map (make-sparse-keymap))) | 15716 | (or key-translation-map (setq key-translation-map (make-sparse-keymap))) |
| 15583 | (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) | 15717 | (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) |
| @@ -15589,7 +15723,7 @@ Add submenus to the File menu, to convert to and from various formats. | |||
| 15589 | ;;;;;; ispell-complete-word ispell-continue ispell-buffer ispell-comments-and-strings | 15723 | ;;;;;; ispell-complete-word ispell-continue ispell-buffer ispell-comments-and-strings |
| 15590 | ;;;;;; ispell-region ispell-change-dictionary ispell-kill-ispell | 15724 | ;;;;;; ispell-region ispell-change-dictionary ispell-kill-ispell |
| 15591 | ;;;;;; ispell-help ispell-pdict-save ispell-word ispell-personal-dictionary) | 15725 | ;;;;;; ispell-help ispell-pdict-save ispell-word ispell-personal-dictionary) |
| 15592 | ;;;;;; "ispell" "textmodes/ispell.el" (20085 50516)) | 15726 | ;;;;;; "ispell" "textmodes/ispell.el" (20139 33409)) |
| 15593 | ;;; Generated autoloads from textmodes/ispell.el | 15727 | ;;; Generated autoloads from textmodes/ispell.el |
| 15594 | 15728 | ||
| 15595 | (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) | 15729 | (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) |
| @@ -15773,15 +15907,21 @@ available on the net. | |||
| 15773 | \(fn)" t nil) | 15907 | \(fn)" t nil) |
| 15774 | 15908 | ||
| 15775 | (autoload 'ispell-minor-mode "ispell" "\ | 15909 | (autoload 'ispell-minor-mode "ispell" "\ |
| 15776 | Toggle Ispell minor mode. | 15910 | Toggle last-word spell checking (Ispell minor mode). |
| 15777 | With prefix argument ARG, turn Ispell minor mode on if ARG is positive, | 15911 | With a prefix argument ARG, enable Ispell minor mode if ARG is |
| 15778 | otherwise turn it off. | 15912 | positive, and disable it otherwise. If called from Lisp, enable |
| 15913 | the mode if ARG is omitted or nil. | ||
| 15779 | 15914 | ||
| 15780 | In Ispell minor mode, pressing SPC or RET | 15915 | Ispell minor mode is a buffer-local mior mode. When enabled, |
| 15781 | warns you if the previous word is incorrectly spelled. | 15916 | typing SPC or RET warns you if the previous word is incorrectly |
| 15917 | spelled. | ||
| 15782 | 15918 | ||
| 15783 | All the buffer-local variables and dictionaries are ignored -- to read | 15919 | All the buffer-local variables and dictionaries are ignored. To |
| 15784 | them into the running ispell process, type \\[ispell-word] SPC. | 15920 | read them into the running ispell process, type \\[ispell-word] |
| 15921 | SPC. | ||
| 15922 | |||
| 15923 | For spell-checking \"on the fly\", not just after typing SPC or | ||
| 15924 | RET, use `flyspell-mode'. | ||
| 15785 | 15925 | ||
| 15786 | \(fn &optional ARG)" t nil) | 15926 | \(fn &optional ARG)" t nil) |
| 15787 | 15927 | ||
| @@ -15809,8 +15949,8 @@ You can bind this to the key C-c i in GNUS or mail by adding to | |||
| 15809 | 15949 | ||
| 15810 | ;;;*** | 15950 | ;;;*** |
| 15811 | 15951 | ||
| 15812 | ;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (19946 | 15952 | ;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (20126 |
| 15813 | ;;;;;; 29209)) | 15953 | ;;;;;; 50194)) |
| 15814 | ;;; Generated autoloads from iswitchb.el | 15954 | ;;; Generated autoloads from iswitchb.el |
| 15815 | 15955 | ||
| 15816 | (defvar iswitchb-mode nil "\ | 15956 | (defvar iswitchb-mode nil "\ |
| @@ -15823,10 +15963,13 @@ or call the function `iswitchb-mode'.") | |||
| 15823 | (custom-autoload 'iswitchb-mode "iswitchb" nil) | 15963 | (custom-autoload 'iswitchb-mode "iswitchb" nil) |
| 15824 | 15964 | ||
| 15825 | (autoload 'iswitchb-mode "iswitchb" "\ | 15965 | (autoload 'iswitchb-mode "iswitchb" "\ |
| 15826 | Toggle Iswitchb global minor mode. | 15966 | Toggle Iswitchb mode. |
| 15827 | With arg, turn Iswitchb mode on if ARG is positive, otherwise turn it off. | 15967 | With a prefix argument ARG, enable Iswitchb mode if ARG is |
| 15828 | This mode enables switching between buffers using substrings. See | 15968 | positive, and disable it otherwise. If called from Lisp, enable |
| 15829 | `iswitchb' for details. | 15969 | the mode if ARG is omitted or nil. |
| 15970 | |||
| 15971 | Iswitchb mode is a global minor mode that enables switching | ||
| 15972 | between buffers using substrings. See `iswitchb' for details. | ||
| 15830 | 15973 | ||
| 15831 | \(fn &optional ARG)" t nil) | 15974 | \(fn &optional ARG)" t nil) |
| 15832 | 15975 | ||
| @@ -15835,7 +15978,7 @@ This mode enables switching between buffers using substrings. See | |||
| 15835 | ;;;### (autoloads (read-hiragana-string japanese-zenkaku-region japanese-hankaku-region | 15978 | ;;;### (autoloads (read-hiragana-string japanese-zenkaku-region japanese-hankaku-region |
| 15836 | ;;;;;; japanese-hiragana-region japanese-katakana-region japanese-zenkaku | 15979 | ;;;;;; japanese-hiragana-region japanese-katakana-region japanese-zenkaku |
| 15837 | ;;;;;; japanese-hankaku japanese-hiragana japanese-katakana setup-japanese-environment-internal) | 15980 | ;;;;;; japanese-hankaku japanese-hiragana japanese-katakana setup-japanese-environment-internal) |
| 15838 | ;;;;;; "japan-util" "language/japan-util.el" (19845 45374)) | 15981 | ;;;;;; "japan-util" "language/japan-util.el" (20119 34052)) |
| 15839 | ;;; Generated autoloads from language/japan-util.el | 15982 | ;;; Generated autoloads from language/japan-util.el |
| 15840 | 15983 | ||
| 15841 | (autoload 'setup-japanese-environment-internal "japan-util" "\ | 15984 | (autoload 'setup-japanese-environment-internal "japan-util" "\ |
| @@ -15913,7 +16056,7 @@ If non-nil, second arg INITIAL-INPUT is a string to insert before reading. | |||
| 15913 | ;;;*** | 16056 | ;;;*** |
| 15914 | 16057 | ||
| 15915 | ;;;### (autoloads (jka-compr-uninstall jka-compr-handler) "jka-compr" | 16058 | ;;;### (autoloads (jka-compr-uninstall jka-compr-handler) "jka-compr" |
| 15916 | ;;;;;; "jka-compr.el" (20000 30139)) | 16059 | ;;;;;; "jka-compr.el" (20119 34052)) |
| 15917 | ;;; Generated autoloads from jka-compr.el | 16060 | ;;; Generated autoloads from jka-compr.el |
| 15918 | 16061 | ||
| 15919 | (defvar jka-compr-inhibit nil "\ | 16062 | (defvar jka-compr-inhibit nil "\ |
| @@ -15936,7 +16079,7 @@ by `jka-compr-installed'. | |||
| 15936 | 16079 | ||
| 15937 | ;;;*** | 16080 | ;;;*** |
| 15938 | 16081 | ||
| 15939 | ;;;### (autoloads (js-mode) "js" "progmodes/js.el" (20038 20303)) | 16082 | ;;;### (autoloads (js-mode) "js" "progmodes/js.el" (20119 34052)) |
| 15940 | ;;; Generated autoloads from progmodes/js.el | 16083 | ;;; Generated autoloads from progmodes/js.el |
| 15941 | 16084 | ||
| 15942 | (autoload 'js-mode "js" "\ | 16085 | (autoload 'js-mode "js" "\ |
| @@ -15950,7 +16093,7 @@ Major mode for editing JavaScript. | |||
| 15950 | 16093 | ||
| 15951 | ;;;### (autoloads (keypad-setup keypad-numlock-shifted-setup keypad-shifted-setup | 16094 | ;;;### (autoloads (keypad-setup keypad-numlock-shifted-setup keypad-shifted-setup |
| 15952 | ;;;;;; keypad-numlock-setup keypad-setup) "keypad" "emulation/keypad.el" | 16095 | ;;;;;; keypad-numlock-setup keypad-setup) "keypad" "emulation/keypad.el" |
| 15953 | ;;;;;; (19845 45374)) | 16096 | ;;;;;; (20119 34052)) |
| 15954 | ;;; Generated autoloads from emulation/keypad.el | 16097 | ;;; Generated autoloads from emulation/keypad.el |
| 15955 | 16098 | ||
| 15956 | (defvar keypad-setup nil "\ | 16099 | (defvar keypad-setup nil "\ |
| @@ -16006,7 +16149,7 @@ the decimal key on the keypad is mapped to DECIMAL instead of `.' | |||
| 16006 | ;;;*** | 16149 | ;;;*** |
| 16007 | 16150 | ||
| 16008 | ;;;### (autoloads (kinsoku) "kinsoku" "international/kinsoku.el" | 16151 | ;;;### (autoloads (kinsoku) "kinsoku" "international/kinsoku.el" |
| 16009 | ;;;;;; (19845 45374)) | 16152 | ;;;;;; (20119 34052)) |
| 16010 | ;;; Generated autoloads from international/kinsoku.el | 16153 | ;;; Generated autoloads from international/kinsoku.el |
| 16011 | 16154 | ||
| 16012 | (autoload 'kinsoku "kinsoku" "\ | 16155 | (autoload 'kinsoku "kinsoku" "\ |
| @@ -16027,8 +16170,8 @@ the context of text formatting. | |||
| 16027 | 16170 | ||
| 16028 | ;;;*** | 16171 | ;;;*** |
| 16029 | 16172 | ||
| 16030 | ;;;### (autoloads (kkc-region) "kkc" "international/kkc.el" (19845 | 16173 | ;;;### (autoloads (kkc-region) "kkc" "international/kkc.el" (20119 |
| 16031 | ;;;;;; 45374)) | 16174 | ;;;;;; 34052)) |
| 16032 | ;;; Generated autoloads from international/kkc.el | 16175 | ;;; Generated autoloads from international/kkc.el |
| 16033 | 16176 | ||
| 16034 | (defvar kkc-after-update-conversion-functions nil "\ | 16177 | (defvar kkc-after-update-conversion-functions nil "\ |
| @@ -16053,7 +16196,7 @@ and the return value is the length of the conversion. | |||
| 16053 | ;;;### (autoloads (kmacro-end-call-mouse kmacro-end-and-call-macro | 16196 | ;;;### (autoloads (kmacro-end-call-mouse kmacro-end-and-call-macro |
| 16054 | ;;;;;; kmacro-end-or-call-macro kmacro-start-macro-or-insert-counter | 16197 | ;;;;;; kmacro-end-or-call-macro kmacro-start-macro-or-insert-counter |
| 16055 | ;;;;;; kmacro-call-macro kmacro-end-macro kmacro-start-macro kmacro-exec-ring-item) | 16198 | ;;;;;; kmacro-call-macro kmacro-end-macro kmacro-start-macro kmacro-exec-ring-item) |
| 16056 | ;;;;;; "kmacro" "kmacro.el" (19886 45771)) | 16199 | ;;;;;; "kmacro" "kmacro.el" (20119 34052)) |
| 16057 | ;;; Generated autoloads from kmacro.el | 16200 | ;;; Generated autoloads from kmacro.el |
| 16058 | (global-set-key "\C-x(" 'kmacro-start-macro) | 16201 | (global-set-key "\C-x(" 'kmacro-start-macro) |
| 16059 | (global-set-key "\C-x)" 'kmacro-end-macro) | 16202 | (global-set-key "\C-x)" 'kmacro-end-macro) |
| @@ -16164,7 +16307,7 @@ If kbd macro currently being defined end it before activating it. | |||
| 16164 | ;;;*** | 16307 | ;;;*** |
| 16165 | 16308 | ||
| 16166 | ;;;### (autoloads (setup-korean-environment-internal) "korea-util" | 16309 | ;;;### (autoloads (setup-korean-environment-internal) "korea-util" |
| 16167 | ;;;;;; "language/korea-util.el" (19845 45374)) | 16310 | ;;;;;; "language/korea-util.el" (20119 34052)) |
| 16168 | ;;; Generated autoloads from language/korea-util.el | 16311 | ;;; Generated autoloads from language/korea-util.el |
| 16169 | 16312 | ||
| 16170 | (defvar default-korean-keyboard (purecopy (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "")) "\ | 16313 | (defvar default-korean-keyboard (purecopy (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "")) "\ |
| @@ -16179,7 +16322,7 @@ If kbd macro currently being defined end it before activating it. | |||
| 16179 | ;;;*** | 16322 | ;;;*** |
| 16180 | 16323 | ||
| 16181 | ;;;### (autoloads (landmark landmark-test-run) "landmark" "play/landmark.el" | 16324 | ;;;### (autoloads (landmark landmark-test-run) "landmark" "play/landmark.el" |
| 16182 | ;;;;;; (19889 21967)) | 16325 | ;;;;;; (20119 34052)) |
| 16183 | ;;; Generated autoloads from play/landmark.el | 16326 | ;;; Generated autoloads from play/landmark.el |
| 16184 | 16327 | ||
| 16185 | (defalias 'landmark-repeat 'landmark-test-run) | 16328 | (defalias 'landmark-repeat 'landmark-test-run) |
| @@ -16211,7 +16354,7 @@ Use \\[describe-mode] for more info. | |||
| 16211 | 16354 | ||
| 16212 | ;;;### (autoloads (lao-compose-region lao-composition-function lao-transcribe-roman-to-lao-string | 16355 | ;;;### (autoloads (lao-compose-region lao-composition-function lao-transcribe-roman-to-lao-string |
| 16213 | ;;;;;; lao-transcribe-single-roman-syllable-to-lao lao-compose-string) | 16356 | ;;;;;; lao-transcribe-single-roman-syllable-to-lao lao-compose-string) |
| 16214 | ;;;;;; "lao-util" "language/lao-util.el" (19845 45374)) | 16357 | ;;;;;; "lao-util" "language/lao-util.el" (20119 34052)) |
| 16215 | ;;; Generated autoloads from language/lao-util.el | 16358 | ;;; Generated autoloads from language/lao-util.el |
| 16216 | 16359 | ||
| 16217 | (autoload 'lao-compose-string "lao-util" "\ | 16360 | (autoload 'lao-compose-string "lao-util" "\ |
| @@ -16250,7 +16393,7 @@ Transcribe Romanized Lao string STR to Lao character string. | |||
| 16250 | 16393 | ||
| 16251 | ;;;### (autoloads (latexenc-find-file-coding-system latexenc-coding-system-to-inputenc | 16394 | ;;;### (autoloads (latexenc-find-file-coding-system latexenc-coding-system-to-inputenc |
| 16252 | ;;;;;; latexenc-inputenc-to-coding-system latex-inputenc-coding-alist) | 16395 | ;;;;;; latexenc-inputenc-to-coding-system latex-inputenc-coding-alist) |
| 16253 | ;;;;;; "latexenc" "international/latexenc.el" (19845 45374)) | 16396 | ;;;;;; "latexenc" "international/latexenc.el" (20119 34052)) |
| 16254 | ;;; Generated autoloads from international/latexenc.el | 16397 | ;;; Generated autoloads from international/latexenc.el |
| 16255 | 16398 | ||
| 16256 | (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))) "\ | 16399 | (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))) "\ |
| @@ -16282,7 +16425,7 @@ coding system names is determined from `latex-inputenc-coding-alist'. | |||
| 16282 | ;;;*** | 16425 | ;;;*** |
| 16283 | 16426 | ||
| 16284 | ;;;### (autoloads (latin1-display-ucs-per-lynx latin1-display latin1-display) | 16427 | ;;;### (autoloads (latin1-display-ucs-per-lynx latin1-display latin1-display) |
| 16285 | ;;;;;; "latin1-disp" "international/latin1-disp.el" (19845 45374)) | 16428 | ;;;;;; "latin1-disp" "international/latin1-disp.el" (20119 34052)) |
| 16286 | ;;; Generated autoloads from international/latin1-disp.el | 16429 | ;;; Generated autoloads from international/latin1-disp.el |
| 16287 | 16430 | ||
| 16288 | (defvar latin1-display nil "\ | 16431 | (defvar latin1-display nil "\ |
| @@ -16324,7 +16467,7 @@ use either \\[customize] or the function `latin1-display'.") | |||
| 16324 | ;;;*** | 16467 | ;;;*** |
| 16325 | 16468 | ||
| 16326 | ;;;### (autoloads (ld-script-mode) "ld-script" "progmodes/ld-script.el" | 16469 | ;;;### (autoloads (ld-script-mode) "ld-script" "progmodes/ld-script.el" |
| 16327 | ;;;;;; (19961 55377)) | 16470 | ;;;;;; (20119 34052)) |
| 16328 | ;;; Generated autoloads from progmodes/ld-script.el | 16471 | ;;; Generated autoloads from progmodes/ld-script.el |
| 16329 | 16472 | ||
| 16330 | (autoload 'ld-script-mode "ld-script" "\ | 16473 | (autoload 'ld-script-mode "ld-script" "\ |
| @@ -16335,7 +16478,7 @@ A major mode to edit GNU ld script files | |||
| 16335 | ;;;*** | 16478 | ;;;*** |
| 16336 | 16479 | ||
| 16337 | ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el" | 16480 | ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el" |
| 16338 | ;;;;;; (19845 45374)) | 16481 | ;;;;;; (20119 34052)) |
| 16339 | ;;; Generated autoloads from ledit.el | 16482 | ;;; Generated autoloads from ledit.el |
| 16340 | 16483 | ||
| 16341 | (defconst ledit-save-files t "\ | 16484 | (defconst ledit-save-files t "\ |
| @@ -16370,7 +16513,7 @@ do (setq lisp-mode-hook 'ledit-from-lisp-mode) | |||
| 16370 | 16513 | ||
| 16371 | ;;;*** | 16514 | ;;;*** |
| 16372 | 16515 | ||
| 16373 | ;;;### (autoloads (life) "life" "play/life.el" (19845 45374)) | 16516 | ;;;### (autoloads (life) "life" "play/life.el" (20119 34052)) |
| 16374 | ;;; Generated autoloads from play/life.el | 16517 | ;;; Generated autoloads from play/life.el |
| 16375 | 16518 | ||
| 16376 | (autoload 'life "life" "\ | 16519 | (autoload 'life "life" "\ |
| @@ -16384,7 +16527,7 @@ generations (this defaults to 1). | |||
| 16384 | ;;;*** | 16527 | ;;;*** |
| 16385 | 16528 | ||
| 16386 | ;;;### (autoloads (global-linum-mode linum-mode linum-format) "linum" | 16529 | ;;;### (autoloads (global-linum-mode linum-mode linum-format) "linum" |
| 16387 | ;;;;;; "linum.el" (19865 50420)) | 16530 | ;;;;;; "linum.el" (20126 50215)) |
| 16388 | ;;; Generated autoloads from linum.el | 16531 | ;;; Generated autoloads from linum.el |
| 16389 | 16532 | ||
| 16390 | (defvar linum-format 'dynamic "\ | 16533 | (defvar linum-format 'dynamic "\ |
| @@ -16397,7 +16540,12 @@ See also `linum-before-numbering-hook'.") | |||
| 16397 | (custom-autoload 'linum-format "linum" t) | 16540 | (custom-autoload 'linum-format "linum" t) |
| 16398 | 16541 | ||
| 16399 | (autoload 'linum-mode "linum" "\ | 16542 | (autoload 'linum-mode "linum" "\ |
| 16400 | Toggle display of line numbers in the left margin. | 16543 | Toggle display of line numbers in the left margin (Linum mode). |
| 16544 | With a prefix argument ARG, enable Linum mode if ARG is positive, | ||
| 16545 | and disable it otherwise. If called from Lisp, enable the mode | ||
| 16546 | if ARG is omitted or nil. | ||
| 16547 | |||
| 16548 | Linum mode is a buffer-local minor mode. | ||
| 16401 | 16549 | ||
| 16402 | \(fn &optional ARG)" t nil) | 16550 | \(fn &optional ARG)" t nil) |
| 16403 | 16551 | ||
| @@ -16411,9 +16559,11 @@ or call the function `global-linum-mode'.") | |||
| 16411 | (custom-autoload 'global-linum-mode "linum" nil) | 16559 | (custom-autoload 'global-linum-mode "linum" nil) |
| 16412 | 16560 | ||
| 16413 | (autoload 'global-linum-mode "linum" "\ | 16561 | (autoload 'global-linum-mode "linum" "\ |
| 16414 | Toggle Linum mode in every possible buffer. | 16562 | Toggle Linum mode in all buffers. |
| 16415 | With prefix ARG, turn Global-Linum mode on if and only if | 16563 | With prefix ARG, enable Global-Linum mode if ARG is positive; |
| 16416 | ARG is positive. | 16564 | otherwise, disable it. If called from Lisp, enable the mode if |
| 16565 | ARG is omitted or nil. | ||
| 16566 | |||
| 16417 | Linum mode is enabled in all buffers where | 16567 | Linum mode is enabled in all buffers where |
| 16418 | `linum-on' would do it. | 16568 | `linum-on' would do it. |
| 16419 | See `linum-mode' for more information on Linum mode. | 16569 | See `linum-mode' for more information on Linum mode. |
| @@ -16422,8 +16572,8 @@ See `linum-mode' for more information on Linum mode. | |||
| 16422 | 16572 | ||
| 16423 | ;;;*** | 16573 | ;;;*** |
| 16424 | 16574 | ||
| 16425 | ;;;### (autoloads (unload-feature) "loadhist" "loadhist.el" (19996 | 16575 | ;;;### (autoloads (unload-feature) "loadhist" "loadhist.el" (20119 |
| 16426 | ;;;;;; 8027)) | 16576 | ;;;;;; 34052)) |
| 16427 | ;;; Generated autoloads from loadhist.el | 16577 | ;;; Generated autoloads from loadhist.el |
| 16428 | 16578 | ||
| 16429 | (autoload 'unload-feature "loadhist" "\ | 16579 | (autoload 'unload-feature "loadhist" "\ |
| @@ -16455,7 +16605,7 @@ something strange, such as redefining an Emacs function. | |||
| 16455 | ;;;*** | 16605 | ;;;*** |
| 16456 | 16606 | ||
| 16457 | ;;;### (autoloads (locate-with-filter locate locate-ls-subdir-switches) | 16607 | ;;;### (autoloads (locate-with-filter locate locate-ls-subdir-switches) |
| 16458 | ;;;;;; "locate" "locate.el" (19886 45771)) | 16608 | ;;;;;; "locate" "locate.el" (20119 34052)) |
| 16459 | ;;; Generated autoloads from locate.el | 16609 | ;;; Generated autoloads from locate.el |
| 16460 | 16610 | ||
| 16461 | (defvar locate-ls-subdir-switches (purecopy "-al") "\ | 16611 | (defvar locate-ls-subdir-switches (purecopy "-al") "\ |
| @@ -16507,7 +16657,7 @@ except that FILTER is not optional. | |||
| 16507 | 16657 | ||
| 16508 | ;;;*** | 16658 | ;;;*** |
| 16509 | 16659 | ||
| 16510 | ;;;### (autoloads (log-edit) "log-edit" "vc/log-edit.el" (19870 57559)) | 16660 | ;;;### (autoloads (log-edit) "log-edit" "vc/log-edit.el" (20138 48832)) |
| 16511 | ;;; Generated autoloads from vc/log-edit.el | 16661 | ;;; Generated autoloads from vc/log-edit.el |
| 16512 | 16662 | ||
| 16513 | (autoload 'log-edit "log-edit" "\ | 16663 | (autoload 'log-edit "log-edit" "\ |
| @@ -16534,8 +16684,8 @@ uses the current buffer. | |||
| 16534 | 16684 | ||
| 16535 | ;;;*** | 16685 | ;;;*** |
| 16536 | 16686 | ||
| 16537 | ;;;### (autoloads (log-view-mode) "log-view" "vc/log-view.el" (19946 | 16687 | ;;;### (autoloads (log-view-mode) "log-view" "vc/log-view.el" (20119 |
| 16538 | ;;;;;; 1612)) | 16688 | ;;;;;; 34052)) |
| 16539 | ;;; Generated autoloads from vc/log-view.el | 16689 | ;;; Generated autoloads from vc/log-view.el |
| 16540 | 16690 | ||
| 16541 | (autoload 'log-view-mode "log-view" "\ | 16691 | (autoload 'log-view-mode "log-view" "\ |
| @@ -16545,34 +16695,35 @@ Major mode for browsing CVS log output. | |||
| 16545 | 16695 | ||
| 16546 | ;;;*** | 16696 | ;;;*** |
| 16547 | 16697 | ||
| 16548 | ;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (20031 | 16698 | ;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (20126 |
| 16549 | ;;;;;; 47065)) | 16699 | ;;;;;; 50224)) |
| 16550 | ;;; Generated autoloads from longlines.el | 16700 | ;;; Generated autoloads from longlines.el |
| 16551 | 16701 | ||
| 16552 | (autoload 'longlines-mode "longlines" "\ | 16702 | (autoload 'longlines-mode "longlines" "\ |
| 16553 | Minor mode to wrap long lines. | 16703 | Toggle Long Lines mode in this buffer. |
| 16554 | In Long Lines mode, long lines are wrapped if they extend beyond | 16704 | With a prefix argument ARG, enable Long Lines mode if ARG is |
| 16555 | `fill-column'. The soft newlines used for line wrapping will not | 16705 | positive, and disable it otherwise. If called from Lisp, enable |
| 16556 | show up when the text is yanked or saved to disk. | 16706 | the mode if ARG is omitted or nil. |
| 16557 | 16707 | ||
| 16558 | With no argument, this command toggles Long Lines mode. | 16708 | When Long Lines mode is enabled, long lines are wrapped if they |
| 16559 | With a prefix argument ARG, turn Long Lines minor mode on if ARG is positive, | 16709 | extend beyond `fill-column'. The soft newlines used for line |
| 16560 | otherwise turn it off. | 16710 | wrapping will not show up when the text is yanked or saved to |
| 16711 | disk. | ||
| 16561 | 16712 | ||
| 16562 | If the variable `longlines-auto-wrap' is non-nil, lines are automatically | 16713 | If the variable `longlines-auto-wrap' is non-nil, lines are |
| 16563 | wrapped whenever the buffer is changed. You can always call | 16714 | automatically wrapped whenever the buffer is changed. You can |
| 16564 | `fill-paragraph' to fill individual paragraphs. | 16715 | always call `fill-paragraph' to fill individual paragraphs. |
| 16565 | 16716 | ||
| 16566 | If the variable `longlines-show-hard-newlines' is non-nil, hard newlines | 16717 | If the variable `longlines-show-hard-newlines' is non-nil, hard |
| 16567 | are indicated with a symbol. | 16718 | newlines are indicated with a symbol. |
| 16568 | 16719 | ||
| 16569 | \(fn &optional ARG)" t nil) | 16720 | \(fn &optional ARG)" t nil) |
| 16570 | 16721 | ||
| 16571 | ;;;*** | 16722 | ;;;*** |
| 16572 | 16723 | ||
| 16573 | ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer | 16724 | ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer |
| 16574 | ;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (19909 | 16725 | ;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (20119 |
| 16575 | ;;;;;; 7240)) | 16726 | ;;;;;; 34052)) |
| 16576 | ;;; Generated autoloads from lpr.el | 16727 | ;;; Generated autoloads from lpr.el |
| 16577 | 16728 | ||
| 16578 | (defvar lpr-windows-system (memq system-type '(ms-dos windows-nt))) | 16729 | (defvar lpr-windows-system (memq system-type '(ms-dos windows-nt))) |
| @@ -16666,7 +16817,7 @@ for further customization of the printer command. | |||
| 16666 | ;;;*** | 16817 | ;;;*** |
| 16667 | 16818 | ||
| 16668 | ;;;### (autoloads (ls-lisp-support-shell-wildcards) "ls-lisp" "ls-lisp.el" | 16819 | ;;;### (autoloads (ls-lisp-support-shell-wildcards) "ls-lisp" "ls-lisp.el" |
| 16669 | ;;;;;; (19886 45771)) | 16820 | ;;;;;; (20119 34052)) |
| 16670 | ;;; Generated autoloads from ls-lisp.el | 16821 | ;;; Generated autoloads from ls-lisp.el |
| 16671 | 16822 | ||
| 16672 | (defvar ls-lisp-support-shell-wildcards t "\ | 16823 | (defvar ls-lisp-support-shell-wildcards t "\ |
| @@ -16677,8 +16828,8 @@ Otherwise they are treated as Emacs regexps (for backward compatibility).") | |||
| 16677 | 16828 | ||
| 16678 | ;;;*** | 16829 | ;;;*** |
| 16679 | 16830 | ||
| 16680 | ;;;### (autoloads (lunar-phases) "lunar" "calendar/lunar.el" (19845 | 16831 | ;;;### (autoloads (lunar-phases) "lunar" "calendar/lunar.el" (20119 |
| 16681 | ;;;;;; 45374)) | 16832 | ;;;;;; 34052)) |
| 16682 | ;;; Generated autoloads from calendar/lunar.el | 16833 | ;;; Generated autoloads from calendar/lunar.el |
| 16683 | 16834 | ||
| 16684 | (autoload 'lunar-phases "lunar" "\ | 16835 | (autoload 'lunar-phases "lunar" "\ |
| @@ -16692,8 +16843,8 @@ This function is suitable for execution in a .emacs file. | |||
| 16692 | 16843 | ||
| 16693 | ;;;*** | 16844 | ;;;*** |
| 16694 | 16845 | ||
| 16695 | ;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (19845 | 16846 | ;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (20119 |
| 16696 | ;;;;;; 45374)) | 16847 | ;;;;;; 34052)) |
| 16697 | ;;; Generated autoloads from progmodes/m4-mode.el | 16848 | ;;; Generated autoloads from progmodes/m4-mode.el |
| 16698 | 16849 | ||
| 16699 | (autoload 'm4-mode "m4-mode" "\ | 16850 | (autoload 'm4-mode "m4-mode" "\ |
| @@ -16704,7 +16855,7 @@ A major mode to edit m4 macro files. | |||
| 16704 | ;;;*** | 16855 | ;;;*** |
| 16705 | 16856 | ||
| 16706 | ;;;### (autoloads (macroexpand-all) "macroexp" "emacs-lisp/macroexp.el" | 16857 | ;;;### (autoloads (macroexpand-all) "macroexp" "emacs-lisp/macroexp.el" |
| 16707 | ;;;;;; (19930 13389)) | 16858 | ;;;;;; (20119 34052)) |
| 16708 | ;;; Generated autoloads from emacs-lisp/macroexp.el | 16859 | ;;; Generated autoloads from emacs-lisp/macroexp.el |
| 16709 | 16860 | ||
| 16710 | (autoload 'macroexpand-all "macroexp" "\ | 16861 | (autoload 'macroexpand-all "macroexp" "\ |
| @@ -16718,7 +16869,7 @@ definitions to shadow the loaded ones for use in file byte-compilation. | |||
| 16718 | ;;;*** | 16869 | ;;;*** |
| 16719 | 16870 | ||
| 16720 | ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro | 16871 | ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro |
| 16721 | ;;;;;; name-last-kbd-macro) "macros" "macros.el" (19886 45771)) | 16872 | ;;;;;; name-last-kbd-macro) "macros" "macros.el" (20119 34052)) |
| 16722 | ;;; Generated autoloads from macros.el | 16873 | ;;; Generated autoloads from macros.el |
| 16723 | 16874 | ||
| 16724 | (autoload 'name-last-kbd-macro "macros" "\ | 16875 | (autoload 'name-last-kbd-macro "macros" "\ |
| @@ -16807,7 +16958,7 @@ and then select the region of un-tablified names and use | |||
| 16807 | ;;;*** | 16958 | ;;;*** |
| 16808 | 16959 | ||
| 16809 | ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" | 16960 | ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" |
| 16810 | ;;;;;; "mail/mail-extr.el" (19845 45374)) | 16961 | ;;;;;; "mail/mail-extr.el" (20119 34052)) |
| 16811 | ;;; Generated autoloads from mail/mail-extr.el | 16962 | ;;; Generated autoloads from mail/mail-extr.el |
| 16812 | 16963 | ||
| 16813 | (autoload 'mail-extract-address-components "mail-extr" "\ | 16964 | (autoload 'mail-extract-address-components "mail-extr" "\ |
| @@ -16839,7 +16990,7 @@ Convert mail domain DOMAIN to the country it corresponds to. | |||
| 16839 | 16990 | ||
| 16840 | ;;;### (autoloads (mail-hist-put-headers-into-history mail-hist-keep-history | 16991 | ;;;### (autoloads (mail-hist-put-headers-into-history mail-hist-keep-history |
| 16841 | ;;;;;; mail-hist-enable mail-hist-define-keys) "mail-hist" "mail/mail-hist.el" | 16992 | ;;;;;; mail-hist-enable mail-hist-define-keys) "mail-hist" "mail/mail-hist.el" |
| 16842 | ;;;;;; (19845 45374)) | 16993 | ;;;;;; (20119 34052)) |
| 16843 | ;;; Generated autoloads from mail/mail-hist.el | 16994 | ;;; Generated autoloads from mail/mail-hist.el |
| 16844 | 16995 | ||
| 16845 | (autoload 'mail-hist-define-keys "mail-hist" "\ | 16996 | (autoload 'mail-hist-define-keys "mail-hist" "\ |
| @@ -16871,7 +17022,7 @@ This function normally would be called when the message is sent. | |||
| 16871 | ;;;### (autoloads (mail-fetch-field mail-unquote-printable-region | 17022 | ;;;### (autoloads (mail-fetch-field mail-unquote-printable-region |
| 16872 | ;;;;;; mail-unquote-printable mail-quote-printable-region mail-quote-printable | 17023 | ;;;;;; mail-unquote-printable mail-quote-printable-region mail-quote-printable |
| 16873 | ;;;;;; mail-file-babyl-p mail-dont-reply-to-names mail-use-rfc822) | 17024 | ;;;;;; mail-file-babyl-p mail-dont-reply-to-names mail-use-rfc822) |
| 16874 | ;;;;;; "mail-utils" "mail/mail-utils.el" (19922 19303)) | 17025 | ;;;;;; "mail-utils" "mail/mail-utils.el" (20119 34052)) |
| 16875 | ;;; Generated autoloads from mail/mail-utils.el | 17026 | ;;; Generated autoloads from mail/mail-utils.el |
| 16876 | 17027 | ||
| 16877 | (defvar mail-use-rfc822 nil "\ | 17028 | (defvar mail-use-rfc822 nil "\ |
| @@ -16943,8 +17094,8 @@ matches may be returned from the message body. | |||
| 16943 | ;;;*** | 17094 | ;;;*** |
| 16944 | 17095 | ||
| 16945 | ;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup | 17096 | ;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup |
| 16946 | ;;;;;; mail-abbrevs-mode) "mailabbrev" "mail/mailabbrev.el" (19968 | 17097 | ;;;;;; mail-abbrevs-mode) "mailabbrev" "mail/mailabbrev.el" (20127 |
| 16947 | ;;;;;; 28627)) | 17098 | ;;;;;; 25972)) |
| 16948 | ;;; Generated autoloads from mail/mailabbrev.el | 17099 | ;;; Generated autoloads from mail/mailabbrev.el |
| 16949 | 17100 | ||
| 16950 | (defvar mail-abbrevs-mode nil "\ | 17101 | (defvar mail-abbrevs-mode nil "\ |
| @@ -16957,7 +17108,15 @@ or call the function `mail-abbrevs-mode'.") | |||
| 16957 | (custom-autoload 'mail-abbrevs-mode "mailabbrev" nil) | 17108 | (custom-autoload 'mail-abbrevs-mode "mailabbrev" nil) |
| 16958 | 17109 | ||
| 16959 | (autoload 'mail-abbrevs-mode "mailabbrev" "\ | 17110 | (autoload 'mail-abbrevs-mode "mailabbrev" "\ |
| 16960 | Non-nil means expand mail aliases as abbrevs, in certain message headers. | 17111 | Toggle abbrev expansion of mail aliases (Mail Abbrevs mode). |
| 17112 | With a prefix argument ARG, enable Mail Abbrevs mode if ARG is | ||
| 17113 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 17114 | the mode if ARG is omitted or nil. | ||
| 17115 | |||
| 17116 | Mail Abbrevs mode is a global minor mode. When enabled, | ||
| 17117 | abbrev-like expansion is performed when editing certain mail | ||
| 17118 | headers (those specified by `mail-abbrev-mode-regexp'), based on | ||
| 17119 | the entries in your `mail-personal-alias-file'. | ||
| 16961 | 17120 | ||
| 16962 | \(fn &optional ARG)" t nil) | 17121 | \(fn &optional ARG)" t nil) |
| 16963 | 17122 | ||
| @@ -16987,7 +17146,7 @@ double-quotes. | |||
| 16987 | 17146 | ||
| 16988 | ;;;### (autoloads (mail-complete mail-completion-at-point-function | 17147 | ;;;### (autoloads (mail-complete mail-completion-at-point-function |
| 16989 | ;;;;;; define-mail-alias expand-mail-aliases mail-complete-style) | 17148 | ;;;;;; define-mail-alias expand-mail-aliases mail-complete-style) |
| 16990 | ;;;;;; "mailalias" "mail/mailalias.el" (19881 27850)) | 17149 | ;;;;;; "mailalias" "mail/mailalias.el" (20119 34052)) |
| 16991 | ;;; Generated autoloads from mail/mailalias.el | 17150 | ;;; Generated autoloads from mail/mailalias.el |
| 16992 | 17151 | ||
| 16993 | (defvar mail-complete-style 'angles "\ | 17152 | (defvar mail-complete-style 'angles "\ |
| @@ -17039,7 +17198,7 @@ current header, calls `mail-complete-function' and passes prefix ARG if any. | |||
| 17039 | ;;;*** | 17198 | ;;;*** |
| 17040 | 17199 | ||
| 17041 | ;;;### (autoloads (mailclient-send-it) "mailclient" "mail/mailclient.el" | 17200 | ;;;### (autoloads (mailclient-send-it) "mailclient" "mail/mailclient.el" |
| 17042 | ;;;;;; (19845 45374)) | 17201 | ;;;;;; (20119 34052)) |
| 17043 | ;;; Generated autoloads from mail/mailclient.el | 17202 | ;;; Generated autoloads from mail/mailclient.el |
| 17044 | 17203 | ||
| 17045 | (autoload 'mailclient-send-it "mailclient" "\ | 17204 | (autoload 'mailclient-send-it "mailclient" "\ |
| @@ -17053,7 +17212,7 @@ The mail client is taken to be the handler of mailto URLs. | |||
| 17053 | 17212 | ||
| 17054 | ;;;### (autoloads (makefile-imake-mode makefile-bsdmake-mode makefile-makepp-mode | 17213 | ;;;### (autoloads (makefile-imake-mode makefile-bsdmake-mode makefile-makepp-mode |
| 17055 | ;;;;;; makefile-gmake-mode makefile-automake-mode makefile-mode) | 17214 | ;;;;;; makefile-gmake-mode makefile-automake-mode makefile-mode) |
| 17056 | ;;;;;; "make-mode" "progmodes/make-mode.el" (19968 28627)) | 17215 | ;;;;;; "make-mode" "progmodes/make-mode.el" (20119 34052)) |
| 17057 | ;;; Generated autoloads from progmodes/make-mode.el | 17216 | ;;; Generated autoloads from progmodes/make-mode.el |
| 17058 | 17217 | ||
| 17059 | (autoload 'makefile-mode "make-mode" "\ | 17218 | (autoload 'makefile-mode "make-mode" "\ |
| @@ -17170,8 +17329,8 @@ An adapted `makefile-mode' that knows about imake. | |||
| 17170 | 17329 | ||
| 17171 | ;;;*** | 17330 | ;;;*** |
| 17172 | 17331 | ||
| 17173 | ;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (19886 | 17332 | ;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (20119 |
| 17174 | ;;;;;; 45771)) | 17333 | ;;;;;; 34052)) |
| 17175 | ;;; Generated autoloads from makesum.el | 17334 | ;;; Generated autoloads from makesum.el |
| 17176 | 17335 | ||
| 17177 | (autoload 'make-command-summary "makesum" "\ | 17336 | (autoload 'make-command-summary "makesum" "\ |
| @@ -17183,7 +17342,7 @@ Previous contents of that buffer are killed first. | |||
| 17183 | ;;;*** | 17342 | ;;;*** |
| 17184 | 17343 | ||
| 17185 | ;;;### (autoloads (Man-bookmark-jump man-follow man) "man" "man.el" | 17344 | ;;;### (autoloads (Man-bookmark-jump man-follow man) "man" "man.el" |
| 17186 | ;;;;;; (19999 41597)) | 17345 | ;;;;;; (20119 34052)) |
| 17187 | ;;; Generated autoloads from man.el | 17346 | ;;; Generated autoloads from man.el |
| 17188 | 17347 | ||
| 17189 | (defalias 'manual-entry 'man) | 17348 | (defalias 'manual-entry 'man) |
| @@ -17237,17 +17396,17 @@ Default bookmark handler for Man buffers. | |||
| 17237 | 17396 | ||
| 17238 | ;;;*** | 17397 | ;;;*** |
| 17239 | 17398 | ||
| 17240 | ;;;### (autoloads (master-mode) "master" "master.el" (19845 45374)) | 17399 | ;;;### (autoloads (master-mode) "master" "master.el" (20126 50238)) |
| 17241 | ;;; Generated autoloads from master.el | 17400 | ;;; Generated autoloads from master.el |
| 17242 | 17401 | ||
| 17243 | (autoload 'master-mode "master" "\ | 17402 | (autoload 'master-mode "master" "\ |
| 17244 | Toggle Master mode. | 17403 | Toggle Master mode. |
| 17245 | With no argument, this command toggles the mode. | 17404 | With a prefix argument ARG, enable Master mode if ARG is |
| 17246 | Non-null prefix argument turns on the mode. | 17405 | positive, and disable it otherwise. If called from Lisp, enable |
| 17247 | Null prefix argument turns off the mode. | 17406 | the mode if ARG is omitted or nil. |
| 17248 | 17407 | ||
| 17249 | When Master mode is enabled, you can scroll the slave buffer using the | 17408 | When Master mode is enabled, you can scroll the slave buffer |
| 17250 | following commands: | 17409 | using the following commands: |
| 17251 | 17410 | ||
| 17252 | \\{master-mode-map} | 17411 | \\{master-mode-map} |
| 17253 | 17412 | ||
| @@ -17260,7 +17419,7 @@ yourself the value of `master-of' by calling `master-show-slave'. | |||
| 17260 | ;;;*** | 17419 | ;;;*** |
| 17261 | 17420 | ||
| 17262 | ;;;### (autoloads (minibuffer-depth-indicate-mode) "mb-depth" "mb-depth.el" | 17421 | ;;;### (autoloads (minibuffer-depth-indicate-mode) "mb-depth" "mb-depth.el" |
| 17263 | ;;;;;; (19845 45374)) | 17422 | ;;;;;; (20126 50247)) |
| 17264 | ;;; Generated autoloads from mb-depth.el | 17423 | ;;; Generated autoloads from mb-depth.el |
| 17265 | 17424 | ||
| 17266 | (defvar minibuffer-depth-indicate-mode nil "\ | 17425 | (defvar minibuffer-depth-indicate-mode nil "\ |
| @@ -17274,12 +17433,14 @@ or call the function `minibuffer-depth-indicate-mode'.") | |||
| 17274 | 17433 | ||
| 17275 | (autoload 'minibuffer-depth-indicate-mode "mb-depth" "\ | 17434 | (autoload 'minibuffer-depth-indicate-mode "mb-depth" "\ |
| 17276 | Toggle Minibuffer Depth Indication mode. | 17435 | Toggle Minibuffer Depth Indication mode. |
| 17277 | When active, any recursive use of the minibuffer will show | 17436 | With a prefix argument ARG, enable Minibuffer Depth Indication |
| 17278 | the recursion depth in the minibuffer prompt. This is only | 17437 | mode if ARG is positive, and disable it otherwise. If called |
| 17279 | useful if `enable-recursive-minibuffers' is non-nil. | 17438 | from Lisp, enable the mode if ARG is omitted or nil. |
| 17280 | 17439 | ||
| 17281 | With prefix argument ARG, turn on if positive, otherwise off. | 17440 | Minibuffer Depth Indication mode is a global minor mode. When |
| 17282 | Returns non-nil if the new state is enabled. | 17441 | enabled, any recursive use of the minibuffer will show the |
| 17442 | recursion depth in the minibuffer prompt. This is only useful if | ||
| 17443 | `enable-recursive-minibuffers' is non-nil. | ||
| 17283 | 17444 | ||
| 17284 | \(fn &optional ARG)" t nil) | 17445 | \(fn &optional ARG)" t nil) |
| 17285 | 17446 | ||
| @@ -17291,7 +17452,7 @@ Returns non-nil if the new state is enabled. | |||
| 17291 | ;;;;;; message-forward-make-body message-forward message-recover | 17452 | ;;;;;; message-forward-make-body message-forward message-recover |
| 17292 | ;;;;;; message-supersede message-cancel-news message-followup message-wide-reply | 17453 | ;;;;;; message-supersede message-cancel-news message-followup message-wide-reply |
| 17293 | ;;;;;; message-reply message-news message-mail message-mode) "message" | 17454 | ;;;;;; message-reply message-news message-mail message-mode) "message" |
| 17294 | ;;;;;; "gnus/message.el" (20091 2935)) | 17455 | ;;;;;; "gnus/message.el" (20136 50092)) |
| 17295 | ;;; Generated autoloads from gnus/message.el | 17456 | ;;; Generated autoloads from gnus/message.el |
| 17296 | 17457 | ||
| 17297 | (define-mail-user-agent 'message-user-agent 'message-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook) | 17458 | (define-mail-user-agent 'message-user-agent 'message-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook) |
| @@ -17457,7 +17618,7 @@ which specify the range to operate on. | |||
| 17457 | ;;;*** | 17618 | ;;;*** |
| 17458 | 17619 | ||
| 17459 | ;;;### (autoloads (metapost-mode metafont-mode) "meta-mode" "progmodes/meta-mode.el" | 17620 | ;;;### (autoloads (metapost-mode metafont-mode) "meta-mode" "progmodes/meta-mode.el" |
| 17460 | ;;;;;; (19968 28627)) | 17621 | ;;;;;; (20119 34052)) |
| 17461 | ;;; Generated autoloads from progmodes/meta-mode.el | 17622 | ;;; Generated autoloads from progmodes/meta-mode.el |
| 17462 | 17623 | ||
| 17463 | (autoload 'metafont-mode "meta-mode" "\ | 17624 | (autoload 'metafont-mode "meta-mode" "\ |
| @@ -17474,7 +17635,7 @@ Major mode for editing MetaPost sources. | |||
| 17474 | 17635 | ||
| 17475 | ;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body | 17636 | ;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body |
| 17476 | ;;;;;; metamail-interpret-header) "metamail" "mail/metamail.el" | 17637 | ;;;;;; metamail-interpret-header) "metamail" "mail/metamail.el" |
| 17477 | ;;;;;; (19845 45374)) | 17638 | ;;;;;; (20119 34052)) |
| 17478 | ;;; Generated autoloads from mail/metamail.el | 17639 | ;;; Generated autoloads from mail/metamail.el |
| 17479 | 17640 | ||
| 17480 | (autoload 'metamail-interpret-header "metamail" "\ | 17641 | (autoload 'metamail-interpret-header "metamail" "\ |
| @@ -17519,7 +17680,7 @@ redisplayed as output is inserted. | |||
| 17519 | 17680 | ||
| 17520 | ;;;### (autoloads (mh-fully-kill-draft mh-send-letter mh-user-agent-compose | 17681 | ;;;### (autoloads (mh-fully-kill-draft mh-send-letter mh-user-agent-compose |
| 17521 | ;;;;;; mh-smail-batch mh-smail-other-window mh-smail) "mh-comp" | 17682 | ;;;;;; mh-smail-batch mh-smail-other-window mh-smail) "mh-comp" |
| 17522 | ;;;;;; "mh-e/mh-comp.el" (19993 31832)) | 17683 | ;;;;;; "mh-e/mh-comp.el" (20119 34052)) |
| 17523 | ;;; Generated autoloads from mh-e/mh-comp.el | 17684 | ;;; Generated autoloads from mh-e/mh-comp.el |
| 17524 | 17685 | ||
| 17525 | (autoload 'mh-smail "mh-comp" "\ | 17686 | (autoload 'mh-smail "mh-comp" "\ |
| @@ -17609,7 +17770,7 @@ delete the draft message. | |||
| 17609 | 17770 | ||
| 17610 | ;;;*** | 17771 | ;;;*** |
| 17611 | 17772 | ||
| 17612 | ;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (20088 26718)) | 17773 | ;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (20119 34052)) |
| 17613 | ;;; Generated autoloads from mh-e/mh-e.el | 17774 | ;;; Generated autoloads from mh-e/mh-e.el |
| 17614 | 17775 | ||
| 17615 | (put 'mh-progs 'risky-local-variable t) | 17776 | (put 'mh-progs 'risky-local-variable t) |
| @@ -17626,7 +17787,7 @@ Display version information about MH-E and the MH mail handling system. | |||
| 17626 | ;;;*** | 17787 | ;;;*** |
| 17627 | 17788 | ||
| 17628 | ;;;### (autoloads (mh-folder-mode mh-nmail mh-rmail) "mh-folder" | 17789 | ;;;### (autoloads (mh-folder-mode mh-nmail mh-rmail) "mh-folder" |
| 17629 | ;;;;;; "mh-e/mh-folder.el" (20004 2139)) | 17790 | ;;;;;; "mh-e/mh-folder.el" (20119 34052)) |
| 17630 | ;;; Generated autoloads from mh-e/mh-folder.el | 17791 | ;;; Generated autoloads from mh-e/mh-folder.el |
| 17631 | 17792 | ||
| 17632 | (autoload 'mh-rmail "mh-folder" "\ | 17793 | (autoload 'mh-rmail "mh-folder" "\ |
| @@ -17708,7 +17869,7 @@ perform the operation on all messages in that region. | |||
| 17708 | ;;;*** | 17869 | ;;;*** |
| 17709 | 17870 | ||
| 17710 | ;;;### (autoloads (midnight-delay-set clean-buffer-list) "midnight" | 17871 | ;;;### (autoloads (midnight-delay-set clean-buffer-list) "midnight" |
| 17711 | ;;;;;; "midnight.el" (19853 59245)) | 17872 | ;;;;;; "midnight.el" (20119 34052)) |
| 17712 | ;;; Generated autoloads from midnight.el | 17873 | ;;; Generated autoloads from midnight.el |
| 17713 | 17874 | ||
| 17714 | (autoload 'clean-buffer-list "midnight" "\ | 17875 | (autoload 'clean-buffer-list "midnight" "\ |
| @@ -17735,7 +17896,7 @@ to its second argument TM. | |||
| 17735 | ;;;*** | 17896 | ;;;*** |
| 17736 | 17897 | ||
| 17737 | ;;;### (autoloads (minibuffer-electric-default-mode) "minibuf-eldef" | 17898 | ;;;### (autoloads (minibuffer-electric-default-mode) "minibuf-eldef" |
| 17738 | ;;;;;; "minibuf-eldef.el" (19845 45374)) | 17899 | ;;;;;; "minibuf-eldef.el" (20126 50271)) |
| 17739 | ;;; Generated autoloads from minibuf-eldef.el | 17900 | ;;; Generated autoloads from minibuf-eldef.el |
| 17740 | 17901 | ||
| 17741 | (defvar minibuffer-electric-default-mode nil "\ | 17902 | (defvar minibuffer-electric-default-mode nil "\ |
| @@ -17749,21 +17910,23 @@ or call the function `minibuffer-electric-default-mode'.") | |||
| 17749 | 17910 | ||
| 17750 | (autoload 'minibuffer-electric-default-mode "minibuf-eldef" "\ | 17911 | (autoload 'minibuffer-electric-default-mode "minibuf-eldef" "\ |
| 17751 | Toggle Minibuffer Electric Default mode. | 17912 | Toggle Minibuffer Electric Default mode. |
| 17752 | When active, minibuffer prompts that show a default value only show the | 17913 | With a prefix argument ARG, enable Minibuffer Electric Default |
| 17753 | default when it's applicable -- that is, when hitting RET would yield | 17914 | mode if ARG is positive, and disable it otherwise. If called |
| 17754 | the default value. If the user modifies the input such that hitting RET | 17915 | from Lisp, enable the mode if ARG is omitted or nil. |
| 17755 | would enter a non-default value, the prompt is modified to remove the | ||
| 17756 | default indication. | ||
| 17757 | 17916 | ||
| 17758 | With prefix argument ARG, turn on if positive, otherwise off. | 17917 | Minibuffer Electric Default mode is a global minor mode. When |
| 17759 | Returns non-nil if the new state is enabled. | 17918 | enabled, minibuffer prompts that show a default value only show |
| 17919 | the default when it's applicable -- that is, when hitting RET | ||
| 17920 | would yield the default value. If the user modifies the input | ||
| 17921 | such that hitting RET would enter a non-default value, the prompt | ||
| 17922 | is modified to remove the default indication. | ||
| 17760 | 17923 | ||
| 17761 | \(fn &optional ARG)" t nil) | 17924 | \(fn &optional ARG)" t nil) |
| 17762 | 17925 | ||
| 17763 | ;;;*** | 17926 | ;;;*** |
| 17764 | 17927 | ||
| 17765 | ;;;### (autoloads (list-dynamic-libraries butterfly) "misc" "misc.el" | 17928 | ;;;### (autoloads (list-dynamic-libraries butterfly) "misc" "misc.el" |
| 17766 | ;;;;;; (19968 28627)) | 17929 | ;;;;;; (20119 34052)) |
| 17767 | ;;; Generated autoloads from misc.el | 17930 | ;;; Generated autoloads from misc.el |
| 17768 | 17931 | ||
| 17769 | (autoload 'butterfly "misc" "\ | 17932 | (autoload 'butterfly "misc" "\ |
| @@ -17793,7 +17956,7 @@ The return value is always nil. | |||
| 17793 | 17956 | ||
| 17794 | ;;;### (autoloads (multi-isearch-files-regexp multi-isearch-files | 17957 | ;;;### (autoloads (multi-isearch-files-regexp multi-isearch-files |
| 17795 | ;;;;;; multi-isearch-buffers-regexp multi-isearch-buffers multi-isearch-setup) | 17958 | ;;;;;; multi-isearch-buffers-regexp multi-isearch-buffers multi-isearch-setup) |
| 17796 | ;;;;;; "misearch" "misearch.el" (19886 45771)) | 17959 | ;;;;;; "misearch" "misearch.el" (20119 34052)) |
| 17797 | ;;; Generated autoloads from misearch.el | 17960 | ;;; Generated autoloads from misearch.el |
| 17798 | (add-hook 'isearch-mode-hook 'multi-isearch-setup) | 17961 | (add-hook 'isearch-mode-hook 'multi-isearch-setup) |
| 17799 | 17962 | ||
| @@ -17875,7 +18038,7 @@ whose file names match the specified wildcard. | |||
| 17875 | ;;;*** | 18038 | ;;;*** |
| 17876 | 18039 | ||
| 17877 | ;;;### (autoloads (mixal-mode) "mixal-mode" "progmodes/mixal-mode.el" | 18040 | ;;;### (autoloads (mixal-mode) "mixal-mode" "progmodes/mixal-mode.el" |
| 17878 | ;;;;;; (19961 55377)) | 18041 | ;;;;;; (20119 34052)) |
| 17879 | ;;; Generated autoloads from progmodes/mixal-mode.el | 18042 | ;;; Generated autoloads from progmodes/mixal-mode.el |
| 17880 | 18043 | ||
| 17881 | (autoload 'mixal-mode "mixal-mode" "\ | 18044 | (autoload 'mixal-mode "mixal-mode" "\ |
| @@ -17886,7 +18049,7 @@ Major mode for the mixal asm language. | |||
| 17886 | ;;;*** | 18049 | ;;;*** |
| 17887 | 18050 | ||
| 17888 | ;;;### (autoloads (mm-default-file-encoding) "mm-encode" "gnus/mm-encode.el" | 18051 | ;;;### (autoloads (mm-default-file-encoding) "mm-encode" "gnus/mm-encode.el" |
| 17889 | ;;;;;; (20075 14682)) | 18052 | ;;;;;; (20119 34052)) |
| 17890 | ;;; Generated autoloads from gnus/mm-encode.el | 18053 | ;;; Generated autoloads from gnus/mm-encode.el |
| 17891 | 18054 | ||
| 17892 | (autoload 'mm-default-file-encoding "mm-encode" "\ | 18055 | (autoload 'mm-default-file-encoding "mm-encode" "\ |
| @@ -17897,7 +18060,7 @@ Return a default encoding for FILE. | |||
| 17897 | ;;;*** | 18060 | ;;;*** |
| 17898 | 18061 | ||
| 17899 | ;;;### (autoloads (mm-inline-external-body mm-extern-cache-contents) | 18062 | ;;;### (autoloads (mm-inline-external-body mm-extern-cache-contents) |
| 17900 | ;;;;;; "mm-extern" "gnus/mm-extern.el" (19845 45374)) | 18063 | ;;;;;; "mm-extern" "gnus/mm-extern.el" (20119 34052)) |
| 17901 | ;;; Generated autoloads from gnus/mm-extern.el | 18064 | ;;; Generated autoloads from gnus/mm-extern.el |
| 17902 | 18065 | ||
| 17903 | (autoload 'mm-extern-cache-contents "mm-extern" "\ | 18066 | (autoload 'mm-extern-cache-contents "mm-extern" "\ |
| @@ -17916,7 +18079,7 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. | |||
| 17916 | ;;;*** | 18079 | ;;;*** |
| 17917 | 18080 | ||
| 17918 | ;;;### (autoloads (mm-inline-partial) "mm-partial" "gnus/mm-partial.el" | 18081 | ;;;### (autoloads (mm-inline-partial) "mm-partial" "gnus/mm-partial.el" |
| 17919 | ;;;;;; (19845 45374)) | 18082 | ;;;;;; (20119 34052)) |
| 17920 | ;;; Generated autoloads from gnus/mm-partial.el | 18083 | ;;; Generated autoloads from gnus/mm-partial.el |
| 17921 | 18084 | ||
| 17922 | (autoload 'mm-inline-partial "mm-partial" "\ | 18085 | (autoload 'mm-inline-partial "mm-partial" "\ |
| @@ -17930,7 +18093,7 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. | |||
| 17930 | ;;;*** | 18093 | ;;;*** |
| 17931 | 18094 | ||
| 17932 | ;;;### (autoloads (mm-url-insert-file-contents-external mm-url-insert-file-contents) | 18095 | ;;;### (autoloads (mm-url-insert-file-contents-external mm-url-insert-file-contents) |
| 17933 | ;;;;;; "mm-url" "gnus/mm-url.el" (19877 30798)) | 18096 | ;;;;;; "mm-url" "gnus/mm-url.el" (20119 34052)) |
| 17934 | ;;; Generated autoloads from gnus/mm-url.el | 18097 | ;;; Generated autoloads from gnus/mm-url.el |
| 17935 | 18098 | ||
| 17936 | (autoload 'mm-url-insert-file-contents "mm-url" "\ | 18099 | (autoload 'mm-url-insert-file-contents "mm-url" "\ |
| @@ -17947,7 +18110,7 @@ Insert file contents of URL using `mm-url-program'. | |||
| 17947 | ;;;*** | 18110 | ;;;*** |
| 17948 | 18111 | ||
| 17949 | ;;;### (autoloads (mm-uu-dissect-text-parts mm-uu-dissect) "mm-uu" | 18112 | ;;;### (autoloads (mm-uu-dissect-text-parts mm-uu-dissect) "mm-uu" |
| 17950 | ;;;;;; "gnus/mm-uu.el" (19845 45374)) | 18113 | ;;;;;; "gnus/mm-uu.el" (20119 34052)) |
| 17951 | ;;; Generated autoloads from gnus/mm-uu.el | 18114 | ;;; Generated autoloads from gnus/mm-uu.el |
| 17952 | 18115 | ||
| 17953 | (autoload 'mm-uu-dissect "mm-uu" "\ | 18116 | (autoload 'mm-uu-dissect "mm-uu" "\ |
| @@ -17967,7 +18130,7 @@ Assume text has been decoded if DECODED is non-nil. | |||
| 17967 | ;;;*** | 18130 | ;;;*** |
| 17968 | 18131 | ||
| 17969 | ;;;### (autoloads (mml-attach-file mml-to-mime) "mml" "gnus/mml.el" | 18132 | ;;;### (autoloads (mml-attach-file mml-to-mime) "mml" "gnus/mml.el" |
| 17970 | ;;;;;; (20097 41737)) | 18133 | ;;;;;; (20136 50092)) |
| 17971 | ;;; Generated autoloads from gnus/mml.el | 18134 | ;;; Generated autoloads from gnus/mml.el |
| 17972 | 18135 | ||
| 17973 | (autoload 'mml-to-mime "mml" "\ | 18136 | (autoload 'mml-to-mime "mml" "\ |
| @@ -17992,7 +18155,7 @@ body) or \"attachment\" (separate from the body). | |||
| 17992 | ;;;*** | 18155 | ;;;*** |
| 17993 | 18156 | ||
| 17994 | ;;;### (autoloads (mml1991-sign mml1991-encrypt) "mml1991" "gnus/mml1991.el" | 18157 | ;;;### (autoloads (mml1991-sign mml1991-encrypt) "mml1991" "gnus/mml1991.el" |
| 17995 | ;;;;;; (20026 29156)) | 18158 | ;;;;;; (20124 17058)) |
| 17996 | ;;; Generated autoloads from gnus/mml1991.el | 18159 | ;;; Generated autoloads from gnus/mml1991.el |
| 17997 | 18160 | ||
| 17998 | (autoload 'mml1991-encrypt "mml1991" "\ | 18161 | (autoload 'mml1991-encrypt "mml1991" "\ |
| @@ -18009,7 +18172,7 @@ body) or \"attachment\" (separate from the body). | |||
| 18009 | 18172 | ||
| 18010 | ;;;### (autoloads (mml2015-self-encrypt mml2015-sign mml2015-encrypt | 18173 | ;;;### (autoloads (mml2015-self-encrypt mml2015-sign mml2015-encrypt |
| 18011 | ;;;;;; mml2015-verify-test mml2015-verify mml2015-decrypt-test mml2015-decrypt) | 18174 | ;;;;;; mml2015-verify-test mml2015-verify mml2015-decrypt-test mml2015-decrypt) |
| 18012 | ;;;;;; "mml2015" "gnus/mml2015.el" (20059 26455)) | 18175 | ;;;;;; "mml2015" "gnus/mml2015.el" (20124 17058)) |
| 18013 | ;;; Generated autoloads from gnus/mml2015.el | 18176 | ;;; Generated autoloads from gnus/mml2015.el |
| 18014 | 18177 | ||
| 18015 | (autoload 'mml2015-decrypt "mml2015" "\ | 18178 | (autoload 'mml2015-decrypt "mml2015" "\ |
| @@ -18049,8 +18212,8 @@ body) or \"attachment\" (separate from the body). | |||
| 18049 | 18212 | ||
| 18050 | ;;;*** | 18213 | ;;;*** |
| 18051 | 18214 | ||
| 18052 | ;;;### (autoloads (m2-mode) "modula2" "progmodes/modula2.el" (19845 | 18215 | ;;;### (autoloads (m2-mode) "modula2" "progmodes/modula2.el" (20119 |
| 18053 | ;;;;;; 45374)) | 18216 | ;;;;;; 34052)) |
| 18054 | ;;; Generated autoloads from progmodes/modula2.el | 18217 | ;;; Generated autoloads from progmodes/modula2.el |
| 18055 | 18218 | ||
| 18056 | (defalias 'modula-2-mode 'm2-mode) | 18219 | (defalias 'modula-2-mode 'm2-mode) |
| @@ -18084,7 +18247,7 @@ followed by the first character of the construct. | |||
| 18084 | ;;;*** | 18247 | ;;;*** |
| 18085 | 18248 | ||
| 18086 | ;;;### (autoloads (denato-region nato-region unmorse-region morse-region) | 18249 | ;;;### (autoloads (denato-region nato-region unmorse-region morse-region) |
| 18087 | ;;;;;; "morse" "play/morse.el" (19869 36706)) | 18250 | ;;;;;; "morse" "play/morse.el" (20119 34052)) |
| 18088 | ;;; Generated autoloads from play/morse.el | 18251 | ;;; Generated autoloads from play/morse.el |
| 18089 | 18252 | ||
| 18090 | (autoload 'morse-region "morse" "\ | 18253 | (autoload 'morse-region "morse" "\ |
| @@ -18110,7 +18273,7 @@ Convert NATO phonetic alphabet in region to ordinary ASCII text. | |||
| 18110 | ;;;*** | 18273 | ;;;*** |
| 18111 | 18274 | ||
| 18112 | ;;;### (autoloads (mouse-drag-drag mouse-drag-throw) "mouse-drag" | 18275 | ;;;### (autoloads (mouse-drag-drag mouse-drag-throw) "mouse-drag" |
| 18113 | ;;;;;; "mouse-drag.el" (19890 42850)) | 18276 | ;;;;;; "mouse-drag.el" (20119 34052)) |
| 18114 | ;;; Generated autoloads from mouse-drag.el | 18277 | ;;; Generated autoloads from mouse-drag.el |
| 18115 | 18278 | ||
| 18116 | (autoload 'mouse-drag-throw "mouse-drag" "\ | 18279 | (autoload 'mouse-drag-throw "mouse-drag" "\ |
| @@ -18157,8 +18320,8 @@ To test this function, evaluate: | |||
| 18157 | 18320 | ||
| 18158 | ;;;*** | 18321 | ;;;*** |
| 18159 | 18322 | ||
| 18160 | ;;;### (autoloads (mouse-sel-mode) "mouse-sel" "mouse-sel.el" (19997 | 18323 | ;;;### (autoloads (mouse-sel-mode) "mouse-sel" "mouse-sel.el" (20126 |
| 18161 | ;;;;;; 28887)) | 18324 | ;;;;;; 50277)) |
| 18162 | ;;; Generated autoloads from mouse-sel.el | 18325 | ;;; Generated autoloads from mouse-sel.el |
| 18163 | 18326 | ||
| 18164 | (defvar mouse-sel-mode nil "\ | 18327 | (defvar mouse-sel-mode nil "\ |
| @@ -18172,11 +18335,12 @@ or call the function `mouse-sel-mode'.") | |||
| 18172 | 18335 | ||
| 18173 | (autoload 'mouse-sel-mode "mouse-sel" "\ | 18336 | (autoload 'mouse-sel-mode "mouse-sel" "\ |
| 18174 | Toggle Mouse Sel mode. | 18337 | Toggle Mouse Sel mode. |
| 18175 | With prefix ARG, turn Mouse Sel mode on if and only if ARG is positive. | 18338 | With a prefix argument ARG, enable Mouse Sel mode if ARG is |
| 18176 | Returns the new status of Mouse Sel mode (non-nil means on). | 18339 | positive, and disable it otherwise. If called from Lisp, enable |
| 18340 | the mode if ARG is omitted or nil. | ||
| 18177 | 18341 | ||
| 18178 | When Mouse Sel mode is enabled, mouse selection is enhanced in | 18342 | Mouse Sel mode is a global minor mode. When enabled, mouse |
| 18179 | various ways: | 18343 | selection is enhanced in various ways: |
| 18180 | 18344 | ||
| 18181 | - Double-clicking on symbol constituents selects symbols. | 18345 | - Double-clicking on symbol constituents selects symbols. |
| 18182 | Double-clicking on quotes or parentheses selects sexps. | 18346 | Double-clicking on quotes or parentheses selects sexps. |
| @@ -18200,7 +18364,7 @@ kill ring; mouse-1 or mouse-3 kills it. | |||
| 18200 | 18364 | ||
| 18201 | ;;;*** | 18365 | ;;;*** |
| 18202 | 18366 | ||
| 18203 | ;;;### (autoloads (mpc) "mpc" "mpc.el" (20081 53460)) | 18367 | ;;;### (autoloads (mpc) "mpc" "mpc.el" (20120 43280)) |
| 18204 | ;;; Generated autoloads from mpc.el | 18368 | ;;; Generated autoloads from mpc.el |
| 18205 | 18369 | ||
| 18206 | (autoload 'mpc "mpc" "\ | 18370 | (autoload 'mpc "mpc" "\ |
| @@ -18210,7 +18374,7 @@ Main entry point for MPC. | |||
| 18210 | 18374 | ||
| 18211 | ;;;*** | 18375 | ;;;*** |
| 18212 | 18376 | ||
| 18213 | ;;;### (autoloads (mpuz) "mpuz" "play/mpuz.el" (19890 42850)) | 18377 | ;;;### (autoloads (mpuz) "mpuz" "play/mpuz.el" (20119 34052)) |
| 18214 | ;;; Generated autoloads from play/mpuz.el | 18378 | ;;; Generated autoloads from play/mpuz.el |
| 18215 | 18379 | ||
| 18216 | (autoload 'mpuz "mpuz" "\ | 18380 | (autoload 'mpuz "mpuz" "\ |
| @@ -18220,7 +18384,7 @@ Multiplication puzzle with GNU Emacs. | |||
| 18220 | 18384 | ||
| 18221 | ;;;*** | 18385 | ;;;*** |
| 18222 | 18386 | ||
| 18223 | ;;;### (autoloads (msb-mode) "msb" "msb.el" (19931 11784)) | 18387 | ;;;### (autoloads (msb-mode) "msb" "msb.el" (20126 50286)) |
| 18224 | ;;; Generated autoloads from msb.el | 18388 | ;;; Generated autoloads from msb.el |
| 18225 | 18389 | ||
| 18226 | (defvar msb-mode nil "\ | 18390 | (defvar msb-mode nil "\ |
| @@ -18234,7 +18398,10 @@ or call the function `msb-mode'.") | |||
| 18234 | 18398 | ||
| 18235 | (autoload 'msb-mode "msb" "\ | 18399 | (autoload 'msb-mode "msb" "\ |
| 18236 | Toggle Msb mode. | 18400 | Toggle Msb mode. |
| 18237 | With arg, turn Msb mode on if and only if arg is positive. | 18401 | With a prefix argument ARG, enable Msb mode if ARG is positive, |
| 18402 | and disable it otherwise. If called from Lisp, enable the mode | ||
| 18403 | if ARG is omitted or nil. | ||
| 18404 | |||
| 18238 | This mode overrides the binding(s) of `mouse-buffer-menu' to provide a | 18405 | This mode overrides the binding(s) of `mouse-buffer-menu' to provide a |
| 18239 | different buffer menu using the function `msb'. | 18406 | different buffer menu using the function `msb'. |
| 18240 | 18407 | ||
| @@ -18247,7 +18414,7 @@ different buffer menu using the function `msb'. | |||
| 18247 | ;;;;;; describe-current-coding-system describe-current-coding-system-briefly | 18414 | ;;;;;; describe-current-coding-system describe-current-coding-system-briefly |
| 18248 | ;;;;;; describe-coding-system describe-character-set list-charset-chars | 18415 | ;;;;;; describe-coding-system describe-character-set list-charset-chars |
| 18249 | ;;;;;; read-charset list-character-sets) "mule-diag" "international/mule-diag.el" | 18416 | ;;;;;; read-charset list-character-sets) "mule-diag" "international/mule-diag.el" |
| 18250 | ;;;;;; (20093 44623)) | 18417 | ;;;;;; (20119 34052)) |
| 18251 | ;;; Generated autoloads from international/mule-diag.el | 18418 | ;;; Generated autoloads from international/mule-diag.el |
| 18252 | 18419 | ||
| 18253 | (autoload 'list-character-sets "mule-diag" "\ | 18420 | (autoload 'list-character-sets "mule-diag" "\ |
| @@ -18384,7 +18551,7 @@ The default is 20. If LIMIT is negative, do not limit the listing. | |||
| 18384 | ;;;;;; coding-system-translation-table-for-decode coding-system-pre-write-conversion | 18551 | ;;;;;; coding-system-translation-table-for-decode coding-system-pre-write-conversion |
| 18385 | ;;;;;; coding-system-post-read-conversion lookup-nested-alist set-nested-alist | 18552 | ;;;;;; coding-system-post-read-conversion lookup-nested-alist set-nested-alist |
| 18386 | ;;;;;; truncate-string-to-width store-substring string-to-sequence) | 18553 | ;;;;;; truncate-string-to-width store-substring string-to-sequence) |
| 18387 | ;;;;;; "mule-util" "international/mule-util.el" (19845 45374)) | 18554 | ;;;;;; "mule-util" "international/mule-util.el" (20119 34052)) |
| 18388 | ;;; Generated autoloads from international/mule-util.el | 18555 | ;;; Generated autoloads from international/mule-util.el |
| 18389 | 18556 | ||
| 18390 | (autoload 'string-to-sequence "mule-util" "\ | 18557 | (autoload 'string-to-sequence "mule-util" "\ |
| @@ -18524,8 +18691,8 @@ per-character basis, this may not be accurate. | |||
| 18524 | ;;;### (autoloads (network-connection network-connection-to-service | 18691 | ;;;### (autoloads (network-connection network-connection-to-service |
| 18525 | ;;;;;; whois-reverse-lookup whois finger ftp run-dig dns-lookup-host | 18692 | ;;;;;; whois-reverse-lookup whois finger ftp run-dig dns-lookup-host |
| 18526 | ;;;;;; nslookup nslookup-host ping traceroute route arp netstat | 18693 | ;;;;;; nslookup nslookup-host ping traceroute route arp netstat |
| 18527 | ;;;;;; iwconfig ifconfig) "net-utils" "net/net-utils.el" (19845 | 18694 | ;;;;;; iwconfig ifconfig) "net-utils" "net/net-utils.el" (20119 |
| 18528 | ;;;;;; 45374)) | 18695 | ;;;;;; 34052)) |
| 18529 | ;;; Generated autoloads from net/net-utils.el | 18696 | ;;; Generated autoloads from net/net-utils.el |
| 18530 | 18697 | ||
| 18531 | (autoload 'ifconfig "net-utils" "\ | 18698 | (autoload 'ifconfig "net-utils" "\ |
| @@ -18619,8 +18786,8 @@ Open a network connection to HOST on PORT. | |||
| 18619 | 18786 | ||
| 18620 | ;;;*** | 18787 | ;;;*** |
| 18621 | 18788 | ||
| 18622 | ;;;### (autoloads (netrc-credentials) "netrc" "net/netrc.el" (19845 | 18789 | ;;;### (autoloads (netrc-credentials) "netrc" "net/netrc.el" (20119 |
| 18623 | ;;;;;; 45374)) | 18790 | ;;;;;; 34052)) |
| 18624 | ;;; Generated autoloads from net/netrc.el | 18791 | ;;; Generated autoloads from net/netrc.el |
| 18625 | 18792 | ||
| 18626 | (autoload 'netrc-credentials "netrc" "\ | 18793 | (autoload 'netrc-credentials "netrc" "\ |
| @@ -18633,7 +18800,7 @@ listed in the PORTS list. | |||
| 18633 | ;;;*** | 18800 | ;;;*** |
| 18634 | 18801 | ||
| 18635 | ;;;### (autoloads (open-network-stream) "network-stream" "net/network-stream.el" | 18802 | ;;;### (autoloads (open-network-stream) "network-stream" "net/network-stream.el" |
| 18636 | ;;;;;; (20044 59100)) | 18803 | ;;;;;; (20121 47865)) |
| 18637 | ;;; Generated autoloads from net/network-stream.el | 18804 | ;;; Generated autoloads from net/network-stream.el |
| 18638 | 18805 | ||
| 18639 | (autoload 'open-network-stream "network-stream" "\ | 18806 | (autoload 'open-network-stream "network-stream" "\ |
| @@ -18729,7 +18896,7 @@ functionality. | |||
| 18729 | ;;;;;; uncomment-region comment-kill comment-set-column comment-indent | 18896 | ;;;;;; uncomment-region comment-kill comment-set-column comment-indent |
| 18730 | ;;;;;; comment-indent-default comment-normalize-vars comment-multi-line | 18897 | ;;;;;; comment-indent-default comment-normalize-vars comment-multi-line |
| 18731 | ;;;;;; comment-padding comment-style comment-column) "newcomment" | 18898 | ;;;;;; comment-padding comment-style comment-column) "newcomment" |
| 18732 | ;;;;;; "newcomment.el" (20087 5852)) | 18899 | ;;;;;; "newcomment.el" (20119 34052)) |
| 18733 | ;;; Generated autoloads from newcomment.el | 18900 | ;;; Generated autoloads from newcomment.el |
| 18734 | 18901 | ||
| 18735 | (defalias 'indent-for-comment 'comment-indent) | 18902 | (defalias 'indent-for-comment 'comment-indent) |
| @@ -18929,7 +19096,7 @@ unless optional argument SOFT is non-nil. | |||
| 18929 | ;;;*** | 19096 | ;;;*** |
| 18930 | 19097 | ||
| 18931 | ;;;### (autoloads (newsticker-start newsticker-running-p) "newst-backend" | 19098 | ;;;### (autoloads (newsticker-start newsticker-running-p) "newst-backend" |
| 18932 | ;;;;;; "net/newst-backend.el" (19918 22236)) | 19099 | ;;;;;; "net/newst-backend.el" (20119 34052)) |
| 18933 | ;;; Generated autoloads from net/newst-backend.el | 19100 | ;;; Generated autoloads from net/newst-backend.el |
| 18934 | 19101 | ||
| 18935 | (autoload 'newsticker-running-p "newst-backend" "\ | 19102 | (autoload 'newsticker-running-p "newst-backend" "\ |
| @@ -18951,7 +19118,7 @@ Run `newsticker-start-hook' if newsticker was not running already. | |||
| 18951 | ;;;*** | 19118 | ;;;*** |
| 18952 | 19119 | ||
| 18953 | ;;;### (autoloads (newsticker-plainview) "newst-plainview" "net/newst-plainview.el" | 19120 | ;;;### (autoloads (newsticker-plainview) "newst-plainview" "net/newst-plainview.el" |
| 18954 | ;;;;;; (19918 22236)) | 19121 | ;;;;;; (20119 34052)) |
| 18955 | ;;; Generated autoloads from net/newst-plainview.el | 19122 | ;;; Generated autoloads from net/newst-plainview.el |
| 18956 | 19123 | ||
| 18957 | (autoload 'newsticker-plainview "newst-plainview" "\ | 19124 | (autoload 'newsticker-plainview "newst-plainview" "\ |
| @@ -18962,7 +19129,7 @@ Start newsticker plainview. | |||
| 18962 | ;;;*** | 19129 | ;;;*** |
| 18963 | 19130 | ||
| 18964 | ;;;### (autoloads (newsticker-show-news) "newst-reader" "net/newst-reader.el" | 19131 | ;;;### (autoloads (newsticker-show-news) "newst-reader" "net/newst-reader.el" |
| 18965 | ;;;;;; (20094 65493)) | 19132 | ;;;;;; (20139 41953)) |
| 18966 | ;;; Generated autoloads from net/newst-reader.el | 19133 | ;;; Generated autoloads from net/newst-reader.el |
| 18967 | 19134 | ||
| 18968 | (autoload 'newsticker-show-news "newst-reader" "\ | 19135 | (autoload 'newsticker-show-news "newst-reader" "\ |
| @@ -18973,7 +19140,7 @@ Start reading news. You may want to bind this to a key. | |||
| 18973 | ;;;*** | 19140 | ;;;*** |
| 18974 | 19141 | ||
| 18975 | ;;;### (autoloads (newsticker-start-ticker newsticker-ticker-running-p) | 19142 | ;;;### (autoloads (newsticker-start-ticker newsticker-ticker-running-p) |
| 18976 | ;;;;;; "newst-ticker" "net/newst-ticker.el" (19845 45374)) | 19143 | ;;;;;; "newst-ticker" "net/newst-ticker.el" (20119 34052)) |
| 18977 | ;;; Generated autoloads from net/newst-ticker.el | 19144 | ;;; Generated autoloads from net/newst-ticker.el |
| 18978 | 19145 | ||
| 18979 | (autoload 'newsticker-ticker-running-p "newst-ticker" "\ | 19146 | (autoload 'newsticker-ticker-running-p "newst-ticker" "\ |
| @@ -18994,7 +19161,7 @@ running already. | |||
| 18994 | ;;;*** | 19161 | ;;;*** |
| 18995 | 19162 | ||
| 18996 | ;;;### (autoloads (newsticker-treeview) "newst-treeview" "net/newst-treeview.el" | 19163 | ;;;### (autoloads (newsticker-treeview) "newst-treeview" "net/newst-treeview.el" |
| 18997 | ;;;;;; (19918 22236)) | 19164 | ;;;;;; (20141 61905)) |
| 18998 | ;;; Generated autoloads from net/newst-treeview.el | 19165 | ;;; Generated autoloads from net/newst-treeview.el |
| 18999 | 19166 | ||
| 19000 | (autoload 'newsticker-treeview "newst-treeview" "\ | 19167 | (autoload 'newsticker-treeview "newst-treeview" "\ |
| @@ -19005,7 +19172,7 @@ Start newsticker treeview. | |||
| 19005 | ;;;*** | 19172 | ;;;*** |
| 19006 | 19173 | ||
| 19007 | ;;;### (autoloads (nndiary-generate-nov-databases) "nndiary" "gnus/nndiary.el" | 19174 | ;;;### (autoloads (nndiary-generate-nov-databases) "nndiary" "gnus/nndiary.el" |
| 19008 | ;;;;;; (19845 45374)) | 19175 | ;;;;;; (20119 34052)) |
| 19009 | ;;; Generated autoloads from gnus/nndiary.el | 19176 | ;;; Generated autoloads from gnus/nndiary.el |
| 19010 | 19177 | ||
| 19011 | (autoload 'nndiary-generate-nov-databases "nndiary" "\ | 19178 | (autoload 'nndiary-generate-nov-databases "nndiary" "\ |
| @@ -19015,8 +19182,8 @@ Generate NOV databases in all nndiary directories. | |||
| 19015 | 19182 | ||
| 19016 | ;;;*** | 19183 | ;;;*** |
| 19017 | 19184 | ||
| 19018 | ;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el" (19845 | 19185 | ;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el" (20119 |
| 19019 | ;;;;;; 45374)) | 19186 | ;;;;;; 34052)) |
| 19020 | ;;; Generated autoloads from gnus/nndoc.el | 19187 | ;;; Generated autoloads from gnus/nndoc.el |
| 19021 | 19188 | ||
| 19022 | (autoload 'nndoc-add-type "nndoc" "\ | 19189 | (autoload 'nndoc-add-type "nndoc" "\ |
| @@ -19031,7 +19198,7 @@ symbol in the alist. | |||
| 19031 | ;;;*** | 19198 | ;;;*** |
| 19032 | 19199 | ||
| 19033 | ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el" | 19200 | ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el" |
| 19034 | ;;;;;; (19845 45374)) | 19201 | ;;;;;; (20119 34052)) |
| 19035 | ;;; Generated autoloads from gnus/nnfolder.el | 19202 | ;;; Generated autoloads from gnus/nnfolder.el |
| 19036 | 19203 | ||
| 19037 | (autoload 'nnfolder-generate-active-file "nnfolder" "\ | 19204 | (autoload 'nnfolder-generate-active-file "nnfolder" "\ |
| @@ -19043,7 +19210,7 @@ This command does not work if you use short group names. | |||
| 19043 | ;;;*** | 19210 | ;;;*** |
| 19044 | 19211 | ||
| 19045 | ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el" | 19212 | ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el" |
| 19046 | ;;;;;; (19845 45374)) | 19213 | ;;;;;; (20119 34052)) |
| 19047 | ;;; Generated autoloads from gnus/nnml.el | 19214 | ;;; Generated autoloads from gnus/nnml.el |
| 19048 | 19215 | ||
| 19049 | (autoload 'nnml-generate-nov-databases "nnml" "\ | 19216 | (autoload 'nnml-generate-nov-databases "nnml" "\ |
| @@ -19054,7 +19221,7 @@ Generate NOV databases in all nnml directories. | |||
| 19054 | ;;;*** | 19221 | ;;;*** |
| 19055 | 19222 | ||
| 19056 | ;;;### (autoloads (disable-command enable-command disabled-command-function) | 19223 | ;;;### (autoloads (disable-command enable-command disabled-command-function) |
| 19057 | ;;;;;; "novice" "novice.el" (19845 45374)) | 19224 | ;;;;;; "novice" "novice.el" (20119 34052)) |
| 19058 | ;;; Generated autoloads from novice.el | 19225 | ;;; Generated autoloads from novice.el |
| 19059 | 19226 | ||
| 19060 | (defvar disabled-command-function 'disabled-command-function "\ | 19227 | (defvar disabled-command-function 'disabled-command-function "\ |
| @@ -19087,7 +19254,7 @@ to future sessions. | |||
| 19087 | ;;;*** | 19254 | ;;;*** |
| 19088 | 19255 | ||
| 19089 | ;;;### (autoloads (nroff-mode) "nroff-mode" "textmodes/nroff-mode.el" | 19256 | ;;;### (autoloads (nroff-mode) "nroff-mode" "textmodes/nroff-mode.el" |
| 19090 | ;;;;;; (19845 45374)) | 19257 | ;;;;;; (20127 24590)) |
| 19091 | ;;; Generated autoloads from textmodes/nroff-mode.el | 19258 | ;;; Generated autoloads from textmodes/nroff-mode.el |
| 19092 | 19259 | ||
| 19093 | (autoload 'nroff-mode "nroff-mode" "\ | 19260 | (autoload 'nroff-mode "nroff-mode" "\ |
| @@ -19102,7 +19269,7 @@ closing requests for requests that are used in matched pairs. | |||
| 19102 | ;;;*** | 19269 | ;;;*** |
| 19103 | 19270 | ||
| 19104 | ;;;### (autoloads (nxml-glyph-display-string) "nxml-glyph" "nxml/nxml-glyph.el" | 19271 | ;;;### (autoloads (nxml-glyph-display-string) "nxml-glyph" "nxml/nxml-glyph.el" |
| 19105 | ;;;;;; (19845 45374)) | 19272 | ;;;;;; (20119 34052)) |
| 19106 | ;;; Generated autoloads from nxml/nxml-glyph.el | 19273 | ;;; Generated autoloads from nxml/nxml-glyph.el |
| 19107 | 19274 | ||
| 19108 | (autoload 'nxml-glyph-display-string "nxml-glyph" "\ | 19275 | (autoload 'nxml-glyph-display-string "nxml-glyph" "\ |
| @@ -19114,8 +19281,8 @@ Return nil if the face cannot display a glyph for N. | |||
| 19114 | 19281 | ||
| 19115 | ;;;*** | 19282 | ;;;*** |
| 19116 | 19283 | ||
| 19117 | ;;;### (autoloads (nxml-mode) "nxml-mode" "nxml/nxml-mode.el" (19927 | 19284 | ;;;### (autoloads (nxml-mode) "nxml-mode" "nxml/nxml-mode.el" (20119 |
| 19118 | ;;;;;; 37225)) | 19285 | ;;;;;; 34052)) |
| 19119 | ;;; Generated autoloads from nxml/nxml-mode.el | 19286 | ;;; Generated autoloads from nxml/nxml-mode.el |
| 19120 | 19287 | ||
| 19121 | (autoload 'nxml-mode "nxml-mode" "\ | 19288 | (autoload 'nxml-mode "nxml-mode" "\ |
| @@ -19177,7 +19344,7 @@ Many aspects this mode can be customized using | |||
| 19177 | ;;;*** | 19344 | ;;;*** |
| 19178 | 19345 | ||
| 19179 | ;;;### (autoloads (nxml-enable-unicode-char-name-sets) "nxml-uchnm" | 19346 | ;;;### (autoloads (nxml-enable-unicode-char-name-sets) "nxml-uchnm" |
| 19180 | ;;;;;; "nxml/nxml-uchnm.el" (19845 45374)) | 19347 | ;;;;;; "nxml/nxml-uchnm.el" (20119 34052)) |
| 19181 | ;;; Generated autoloads from nxml/nxml-uchnm.el | 19348 | ;;; Generated autoloads from nxml/nxml-uchnm.el |
| 19182 | 19349 | ||
| 19183 | (autoload 'nxml-enable-unicode-char-name-sets "nxml-uchnm" "\ | 19350 | (autoload 'nxml-enable-unicode-char-name-sets "nxml-uchnm" "\ |
| @@ -19200,7 +19367,7 @@ the variable `nxml-enabled-unicode-blocks'. | |||
| 19200 | ;;;;;; org-babel-pop-to-session-maybe org-babel-load-in-session-maybe | 19367 | ;;;;;; org-babel-pop-to-session-maybe org-babel-load-in-session-maybe |
| 19201 | ;;;;;; org-babel-expand-src-block-maybe org-babel-view-src-block-info | 19368 | ;;;;;; org-babel-expand-src-block-maybe org-babel-view-src-block-info |
| 19202 | ;;;;;; org-babel-execute-maybe org-babel-execute-safely-maybe) "ob" | 19369 | ;;;;;; org-babel-execute-maybe org-babel-execute-safely-maybe) "ob" |
| 19203 | ;;;;;; "org/ob.el" (20045 31431)) | 19370 | ;;;;;; "org/ob.el" (20119 34052)) |
| 19204 | ;;; Generated autoloads from org/ob.el | 19371 | ;;; Generated autoloads from org/ob.el |
| 19205 | 19372 | ||
| 19206 | (autoload 'org-babel-execute-safely-maybe "ob" "\ | 19373 | (autoload 'org-babel-execute-safely-maybe "ob" "\ |
| @@ -19403,7 +19570,7 @@ Mark current src block | |||
| 19403 | ;;;*** | 19570 | ;;;*** |
| 19404 | 19571 | ||
| 19405 | ;;;### (autoloads (org-babel-describe-bindings) "ob-keys" "org/ob-keys.el" | 19572 | ;;;### (autoloads (org-babel-describe-bindings) "ob-keys" "org/ob-keys.el" |
| 19406 | ;;;;;; (20045 30710)) | 19573 | ;;;;;; (20119 34052)) |
| 19407 | ;;; Generated autoloads from org/ob-keys.el | 19574 | ;;; Generated autoloads from org/ob-keys.el |
| 19408 | 19575 | ||
| 19409 | (autoload 'org-babel-describe-bindings "ob-keys" "\ | 19576 | (autoload 'org-babel-describe-bindings "ob-keys" "\ |
| @@ -19414,7 +19581,7 @@ Describe all keybindings behind `org-babel-key-prefix'. | |||
| 19414 | ;;;*** | 19581 | ;;;*** |
| 19415 | 19582 | ||
| 19416 | ;;;### (autoloads (org-babel-lob-get-info org-babel-lob-execute-maybe | 19583 | ;;;### (autoloads (org-babel-lob-get-info org-babel-lob-execute-maybe |
| 19417 | ;;;;;; org-babel-lob-ingest) "ob-lob" "org/ob-lob.el" (20045 31431)) | 19584 | ;;;;;; org-babel-lob-ingest) "ob-lob" "org/ob-lob.el" (20119 34052)) |
| 19418 | ;;; Generated autoloads from org/ob-lob.el | 19585 | ;;; Generated autoloads from org/ob-lob.el |
| 19419 | 19586 | ||
| 19420 | (autoload 'org-babel-lob-ingest "ob-lob" "\ | 19587 | (autoload 'org-babel-lob-ingest "ob-lob" "\ |
| @@ -19439,7 +19606,7 @@ Return a Library of Babel function call as a string. | |||
| 19439 | 19606 | ||
| 19440 | ;;;### (autoloads (org-babel-tangle org-babel-tangle-file org-babel-load-file | 19607 | ;;;### (autoloads (org-babel-tangle org-babel-tangle-file org-babel-load-file |
| 19441 | ;;;;;; org-babel-tangle-lang-exts) "ob-tangle" "org/ob-tangle.el" | 19608 | ;;;;;; org-babel-tangle-lang-exts) "ob-tangle" "org/ob-tangle.el" |
| 19442 | ;;;;;; (20045 30712)) | 19609 | ;;;;;; (20119 34052)) |
| 19443 | ;;; Generated autoloads from org/ob-tangle.el | 19610 | ;;; Generated autoloads from org/ob-tangle.el |
| 19444 | 19611 | ||
| 19445 | (defvar org-babel-tangle-lang-exts '(("emacs-lisp" . "el")) "\ | 19612 | (defvar org-babel-tangle-lang-exts '(("emacs-lisp" . "el")) "\ |
| @@ -19481,7 +19648,7 @@ exported source code blocks by language. | |||
| 19481 | ;;;*** | 19648 | ;;;*** |
| 19482 | 19649 | ||
| 19483 | ;;;### (autoloads (inferior-octave) "octave-inf" "progmodes/octave-inf.el" | 19650 | ;;;### (autoloads (inferior-octave) "octave-inf" "progmodes/octave-inf.el" |
| 19484 | ;;;;;; (19968 28627)) | 19651 | ;;;;;; (20136 50092)) |
| 19485 | ;;; Generated autoloads from progmodes/octave-inf.el | 19652 | ;;; Generated autoloads from progmodes/octave-inf.el |
| 19486 | 19653 | ||
| 19487 | (autoload 'inferior-octave "octave-inf" "\ | 19654 | (autoload 'inferior-octave "octave-inf" "\ |
| @@ -19504,7 +19671,7 @@ startup file, `~/.emacs-octave'. | |||
| 19504 | ;;;*** | 19671 | ;;;*** |
| 19505 | 19672 | ||
| 19506 | ;;;### (autoloads (octave-mode) "octave-mod" "progmodes/octave-mod.el" | 19673 | ;;;### (autoloads (octave-mode) "octave-mod" "progmodes/octave-mod.el" |
| 19507 | ;;;;;; (19968 28627)) | 19674 | ;;;;;; (20136 50092)) |
| 19508 | ;;; Generated autoloads from progmodes/octave-mod.el | 19675 | ;;; Generated autoloads from progmodes/octave-mod.el |
| 19509 | 19676 | ||
| 19510 | (autoload 'octave-mode "octave-mod" "\ | 19677 | (autoload 'octave-mode "octave-mod" "\ |
| @@ -19592,7 +19759,7 @@ including a reproducible test case and send the message. | |||
| 19592 | ;;;;;; org-insert-link-global org-store-link org-run-like-in-org-mode | 19759 | ;;;;;; org-insert-link-global org-store-link org-run-like-in-org-mode |
| 19593 | ;;;;;; turn-on-orgstruct++ turn-on-orgstruct orgstruct-mode org-global-cycle | 19760 | ;;;;;; turn-on-orgstruct++ turn-on-orgstruct orgstruct-mode org-global-cycle |
| 19594 | ;;;;;; org-mode org-babel-do-load-languages) "org" "org/org.el" | 19761 | ;;;;;; org-mode org-babel-do-load-languages) "org" "org/org.el" |
| 19595 | ;;;;;; (20098 4366)) | 19762 | ;;;;;; (20119 34052)) |
| 19596 | ;;; Generated autoloads from org/org.el | 19763 | ;;; Generated autoloads from org/org.el |
| 19597 | 19764 | ||
| 19598 | (autoload 'org-babel-do-load-languages "org" "\ | 19765 | (autoload 'org-babel-do-load-languages "org" "\ |
| @@ -19816,7 +19983,7 @@ Call the customize function with org as argument. | |||
| 19816 | ;;;;;; org-diary org-agenda-list-stuck-projects org-tags-view org-todo-list | 19983 | ;;;;;; org-diary org-agenda-list-stuck-projects org-tags-view org-todo-list |
| 19817 | ;;;;;; org-search-view org-agenda-list org-batch-store-agenda-views | 19984 | ;;;;;; org-search-view org-agenda-list org-batch-store-agenda-views |
| 19818 | ;;;;;; org-store-agenda-views org-batch-agenda-csv org-batch-agenda | 19985 | ;;;;;; org-store-agenda-views org-batch-agenda-csv org-batch-agenda |
| 19819 | ;;;;;; org-agenda) "org-agenda" "org/org-agenda.el" (20065 65310)) | 19986 | ;;;;;; org-agenda) "org-agenda" "org/org-agenda.el" (20119 34052)) |
| 19820 | ;;; Generated autoloads from org/org-agenda.el | 19987 | ;;; Generated autoloads from org/org-agenda.el |
| 19821 | 19988 | ||
| 19822 | (autoload 'org-agenda "org-agenda" "\ | 19989 | (autoload 'org-agenda "org-agenda" "\ |
| @@ -20061,7 +20228,7 @@ belonging to the \"Work\" category. | |||
| 20061 | 20228 | ||
| 20062 | ;;;### (autoloads (org-archive-subtree-default-with-confirmation | 20229 | ;;;### (autoloads (org-archive-subtree-default-with-confirmation |
| 20063 | ;;;;;; org-archive-subtree-default) "org-archive" "org/org-archive.el" | 20230 | ;;;;;; org-archive-subtree-default) "org-archive" "org/org-archive.el" |
| 20064 | ;;;;;; (20045 30713)) | 20231 | ;;;;;; (20119 34052)) |
| 20065 | ;;; Generated autoloads from org/org-archive.el | 20232 | ;;; Generated autoloads from org/org-archive.el |
| 20066 | 20233 | ||
| 20067 | (autoload 'org-archive-subtree-default "org-archive" "\ | 20234 | (autoload 'org-archive-subtree-default "org-archive" "\ |
| @@ -20081,8 +20248,8 @@ This command is set with the variable `org-archive-default-command'. | |||
| 20081 | ;;;### (autoloads (org-export-as-ascii org-export-region-as-ascii | 20248 | ;;;### (autoloads (org-export-as-ascii org-export-region-as-ascii |
| 20082 | ;;;;;; org-replace-region-by-ascii org-export-as-ascii-to-buffer | 20249 | ;;;;;; org-replace-region-by-ascii org-export-as-ascii-to-buffer |
| 20083 | ;;;;;; org-export-as-utf8-to-buffer org-export-as-utf8 org-export-as-latin1-to-buffer | 20250 | ;;;;;; org-export-as-utf8-to-buffer org-export-as-utf8 org-export-as-latin1-to-buffer |
| 20084 | ;;;;;; org-export-as-latin1) "org-ascii" "org/org-ascii.el" (20045 | 20251 | ;;;;;; org-export-as-latin1) "org-ascii" "org/org-ascii.el" (20119 |
| 20085 | ;;;;;; 30713)) | 20252 | ;;;;;; 34052)) |
| 20086 | ;;; Generated autoloads from org/org-ascii.el | 20253 | ;;; Generated autoloads from org/org-ascii.el |
| 20087 | 20254 | ||
| 20088 | (autoload 'org-export-as-latin1 "org-ascii" "\ | 20255 | (autoload 'org-export-as-latin1 "org-ascii" "\ |
| @@ -20155,8 +20322,8 @@ publishing directory. | |||
| 20155 | 20322 | ||
| 20156 | ;;;*** | 20323 | ;;;*** |
| 20157 | 20324 | ||
| 20158 | ;;;### (autoloads (org-attach) "org-attach" "org/org-attach.el" (20045 | 20325 | ;;;### (autoloads (org-attach) "org-attach" "org/org-attach.el" (20119 |
| 20159 | ;;;;;; 30713)) | 20326 | ;;;;;; 34052)) |
| 20160 | ;;; Generated autoloads from org/org-attach.el | 20327 | ;;; Generated autoloads from org/org-attach.el |
| 20161 | 20328 | ||
| 20162 | (autoload 'org-attach "org-attach" "\ | 20329 | (autoload 'org-attach "org-attach" "\ |
| @@ -20168,7 +20335,7 @@ Shows a list of commands and prompts for another key to execute a command. | |||
| 20168 | ;;;*** | 20335 | ;;;*** |
| 20169 | 20336 | ||
| 20170 | ;;;### (autoloads (org-bbdb-anniversaries) "org-bbdb" "org/org-bbdb.el" | 20337 | ;;;### (autoloads (org-bbdb-anniversaries) "org-bbdb" "org/org-bbdb.el" |
| 20171 | ;;;;;; (20045 30713)) | 20338 | ;;;;;; (20119 34052)) |
| 20172 | ;;; Generated autoloads from org/org-bbdb.el | 20339 | ;;; Generated autoloads from org/org-bbdb.el |
| 20173 | 20340 | ||
| 20174 | (autoload 'org-bbdb-anniversaries "org-bbdb" "\ | 20341 | (autoload 'org-bbdb-anniversaries "org-bbdb" "\ |
| @@ -20179,7 +20346,7 @@ Extract anniversaries from BBDB for display in the agenda. | |||
| 20179 | ;;;*** | 20346 | ;;;*** |
| 20180 | 20347 | ||
| 20181 | ;;;### (autoloads (org-capture-import-remember-templates org-capture-insert-template-here | 20348 | ;;;### (autoloads (org-capture-import-remember-templates org-capture-insert-template-here |
| 20182 | ;;;;;; org-capture) "org-capture" "org/org-capture.el" (20065 65310)) | 20349 | ;;;;;; org-capture) "org-capture" "org/org-capture.el" (20119 34052)) |
| 20183 | ;;; Generated autoloads from org/org-capture.el | 20350 | ;;; Generated autoloads from org/org-capture.el |
| 20184 | 20351 | ||
| 20185 | (autoload 'org-capture "org-capture" "\ | 20352 | (autoload 'org-capture "org-capture" "\ |
| @@ -20217,7 +20384,7 @@ Set org-capture-templates to be similar to `org-remember-templates'. | |||
| 20217 | ;;;*** | 20384 | ;;;*** |
| 20218 | 20385 | ||
| 20219 | ;;;### (autoloads (org-clock-persistence-insinuate org-get-clocktable) | 20386 | ;;;### (autoloads (org-clock-persistence-insinuate org-get-clocktable) |
| 20220 | ;;;;;; "org-clock" "org/org-clock.el" (20065 65310)) | 20387 | ;;;;;; "org-clock" "org/org-clock.el" (20119 34052)) |
| 20221 | ;;; Generated autoloads from org/org-clock.el | 20388 | ;;; Generated autoloads from org/org-clock.el |
| 20222 | 20389 | ||
| 20223 | (autoload 'org-get-clocktable "org-clock" "\ | 20390 | (autoload 'org-get-clocktable "org-clock" "\ |
| @@ -20235,7 +20402,7 @@ Set up hooks for clock persistence. | |||
| 20235 | ;;;*** | 20402 | ;;;*** |
| 20236 | 20403 | ||
| 20237 | ;;;### (autoloads (org-datetree-find-date-create) "org-datetree" | 20404 | ;;;### (autoloads (org-datetree-find-date-create) "org-datetree" |
| 20238 | ;;;;;; "org/org-datetree.el" (20045 30713)) | 20405 | ;;;;;; "org/org-datetree.el" (20119 34052)) |
| 20239 | ;;; Generated autoloads from org/org-datetree.el | 20406 | ;;; Generated autoloads from org/org-datetree.el |
| 20240 | 20407 | ||
| 20241 | (autoload 'org-datetree-find-date-create "org-datetree" "\ | 20408 | (autoload 'org-datetree-find-date-create "org-datetree" "\ |
| @@ -20251,7 +20418,7 @@ tree can be found. | |||
| 20251 | ;;;### (autoloads (org-export-as-docbook org-export-as-docbook-pdf-and-open | 20418 | ;;;### (autoloads (org-export-as-docbook org-export-as-docbook-pdf-and-open |
| 20252 | ;;;;;; org-export-as-docbook-pdf org-export-region-as-docbook org-replace-region-by-docbook | 20419 | ;;;;;; org-export-as-docbook-pdf org-export-region-as-docbook org-replace-region-by-docbook |
| 20253 | ;;;;;; org-export-as-docbook-to-buffer org-export-as-docbook-batch) | 20420 | ;;;;;; org-export-as-docbook-to-buffer org-export-as-docbook-batch) |
| 20254 | ;;;;;; "org-docbook" "org/org-docbook.el" (20045 30713)) | 20421 | ;;;;;; "org-docbook" "org/org-docbook.el" (20119 34052)) |
| 20255 | ;;; Generated autoloads from org/org-docbook.el | 20422 | ;;; Generated autoloads from org/org-docbook.el |
| 20256 | 20423 | ||
| 20257 | (autoload 'org-export-as-docbook-batch "org-docbook" "\ | 20424 | (autoload 'org-export-as-docbook-batch "org-docbook" "\ |
| @@ -20328,7 +20495,7 @@ publishing directory. | |||
| 20328 | 20495 | ||
| 20329 | ;;;### (autoloads (org-insert-export-options-template org-export-as-org | 20496 | ;;;### (autoloads (org-insert-export-options-template org-export-as-org |
| 20330 | ;;;;;; org-export-visible org-export) "org-exp" "org/org-exp.el" | 20497 | ;;;;;; org-export-visible org-export) "org-exp" "org/org-exp.el" |
| 20331 | ;;;;;; (20065 65310)) | 20498 | ;;;;;; (20119 34052)) |
| 20332 | ;;; Generated autoloads from org/org-exp.el | 20499 | ;;; Generated autoloads from org/org-exp.el |
| 20333 | 20500 | ||
| 20334 | (autoload 'org-export "org-exp" "\ | 20501 | (autoload 'org-export "org-exp" "\ |
| @@ -20389,8 +20556,8 @@ Insert into the buffer a template with information for exporting. | |||
| 20389 | ;;;*** | 20556 | ;;;*** |
| 20390 | 20557 | ||
| 20391 | ;;;### (autoloads (org-feed-show-raw-feed org-feed-goto-inbox org-feed-update | 20558 | ;;;### (autoloads (org-feed-show-raw-feed org-feed-goto-inbox org-feed-update |
| 20392 | ;;;;;; org-feed-update-all) "org-feed" "org/org-feed.el" (20065 | 20559 | ;;;;;; org-feed-update-all) "org-feed" "org/org-feed.el" (20119 |
| 20393 | ;;;;;; 65310)) | 20560 | ;;;;;; 34052)) |
| 20394 | ;;; Generated autoloads from org/org-feed.el | 20561 | ;;; Generated autoloads from org/org-feed.el |
| 20395 | 20562 | ||
| 20396 | (autoload 'org-feed-update-all "org-feed" "\ | 20563 | (autoload 'org-feed-update-all "org-feed" "\ |
| @@ -20418,7 +20585,7 @@ Show the raw feed buffer of a feed. | |||
| 20418 | ;;;*** | 20585 | ;;;*** |
| 20419 | 20586 | ||
| 20420 | ;;;### (autoloads (org-footnote-normalize org-footnote-action) "org-footnote" | 20587 | ;;;### (autoloads (org-footnote-normalize org-footnote-action) "org-footnote" |
| 20421 | ;;;;;; "org/org-footnote.el" (20045 30715)) | 20588 | ;;;;;; "org/org-footnote.el" (20119 34052)) |
| 20422 | ;;; Generated autoloads from org/org-footnote.el | 20589 | ;;; Generated autoloads from org/org-footnote.el |
| 20423 | 20590 | ||
| 20424 | (autoload 'org-footnote-action "org-footnote" "\ | 20591 | (autoload 'org-footnote-action "org-footnote" "\ |
| @@ -20469,7 +20636,7 @@ Additional note on `org-footnote-insert-pos-for-preprocessor': | |||
| 20469 | ;;;### (autoloads (org-freemind-to-org-mode org-freemind-from-org-sparse-tree | 20636 | ;;;### (autoloads (org-freemind-to-org-mode org-freemind-from-org-sparse-tree |
| 20470 | ;;;;;; org-freemind-from-org-mode org-freemind-from-org-mode-node | 20637 | ;;;;;; org-freemind-from-org-mode org-freemind-from-org-mode-node |
| 20471 | ;;;;;; org-freemind-show org-export-as-freemind) "org-freemind" | 20638 | ;;;;;; org-freemind-show org-export-as-freemind) "org-freemind" |
| 20472 | ;;;;;; "org/org-freemind.el" (20045 31431)) | 20639 | ;;;;;; "org/org-freemind.el" (20119 34052)) |
| 20473 | ;;; Generated autoloads from org/org-freemind.el | 20640 | ;;; Generated autoloads from org/org-freemind.el |
| 20474 | 20641 | ||
| 20475 | (autoload 'org-export-as-freemind "org-freemind" "\ | 20642 | (autoload 'org-export-as-freemind "org-freemind" "\ |
| @@ -20530,7 +20697,7 @@ Convert FreeMind file MM-FILE to `org-mode' file ORG-FILE. | |||
| 20530 | ;;;### (autoloads (org-export-htmlize-generate-css org-export-as-html | 20697 | ;;;### (autoloads (org-export-htmlize-generate-css org-export-as-html |
| 20531 | ;;;;;; org-export-region-as-html org-replace-region-by-html org-export-as-html-to-buffer | 20698 | ;;;;;; org-export-region-as-html org-replace-region-by-html org-export-as-html-to-buffer |
| 20532 | ;;;;;; org-export-as-html-batch org-export-as-html-and-open) "org-html" | 20699 | ;;;;;; org-export-as-html-batch org-export-as-html-and-open) "org-html" |
| 20533 | ;;;;;; "org/org-html.el" (20065 65310)) | 20700 | ;;;;;; "org/org-html.el" (20119 34052)) |
| 20534 | ;;; Generated autoloads from org/org-html.el | 20701 | ;;; Generated autoloads from org/org-html.el |
| 20535 | 20702 | ||
| 20536 | (put 'org-export-html-style-include-default 'safe-local-variable 'booleanp) | 20703 | (put 'org-export-html-style-include-default 'safe-local-variable 'booleanp) |
| @@ -20624,7 +20791,7 @@ that uses these same face definitions. | |||
| 20624 | 20791 | ||
| 20625 | ;;;### (autoloads (org-export-icalendar-combine-agenda-files org-export-icalendar-all-agenda-files | 20792 | ;;;### (autoloads (org-export-icalendar-combine-agenda-files org-export-icalendar-all-agenda-files |
| 20626 | ;;;;;; org-export-icalendar-this-file) "org-icalendar" "org/org-icalendar.el" | 20793 | ;;;;;; org-export-icalendar-this-file) "org-icalendar" "org/org-icalendar.el" |
| 20627 | ;;;;;; (20045 30716)) | 20794 | ;;;;;; (20119 34052)) |
| 20628 | ;;; Generated autoloads from org/org-icalendar.el | 20795 | ;;; Generated autoloads from org/org-icalendar.el |
| 20629 | 20796 | ||
| 20630 | (autoload 'org-export-icalendar-this-file "org-icalendar" "\ | 20797 | (autoload 'org-export-icalendar-this-file "org-icalendar" "\ |
| @@ -20652,7 +20819,7 @@ The file is stored under the name `org-combined-agenda-icalendar-file'. | |||
| 20652 | ;;;### (autoloads (org-id-store-link org-id-find-id-file org-id-find | 20819 | ;;;### (autoloads (org-id-store-link org-id-find-id-file org-id-find |
| 20653 | ;;;;;; org-id-goto org-id-get-with-outline-drilling org-id-get-with-outline-path-completion | 20820 | ;;;;;; org-id-goto org-id-get-with-outline-drilling org-id-get-with-outline-path-completion |
| 20654 | ;;;;;; org-id-get org-id-copy org-id-get-create) "org-id" "org/org-id.el" | 20821 | ;;;;;; org-id-get org-id-copy org-id-get-create) "org-id" "org/org-id.el" |
| 20655 | ;;;;;; (20065 65310)) | 20822 | ;;;;;; (20119 34052)) |
| 20656 | ;;; Generated autoloads from org/org-id.el | 20823 | ;;; Generated autoloads from org/org-id.el |
| 20657 | 20824 | ||
| 20658 | (autoload 'org-id-get-create "org-id" "\ | 20825 | (autoload 'org-id-get-create "org-id" "\ |
| @@ -20721,7 +20888,7 @@ Store a link to the current entry, using its ID. | |||
| 20721 | ;;;*** | 20888 | ;;;*** |
| 20722 | 20889 | ||
| 20723 | ;;;### (autoloads (org-indent-mode) "org-indent" "org/org-indent.el" | 20890 | ;;;### (autoloads (org-indent-mode) "org-indent" "org/org-indent.el" |
| 20724 | ;;;;;; (20045 30716)) | 20891 | ;;;;;; (20119 34052)) |
| 20725 | ;;; Generated autoloads from org/org-indent.el | 20892 | ;;; Generated autoloads from org/org-indent.el |
| 20726 | 20893 | ||
| 20727 | (autoload 'org-indent-mode "org-indent" "\ | 20894 | (autoload 'org-indent-mode "org-indent" "\ |
| @@ -20736,7 +20903,7 @@ FIXME: How to update when broken? | |||
| 20736 | ;;;*** | 20903 | ;;;*** |
| 20737 | 20904 | ||
| 20738 | ;;;### (autoloads (org-irc-store-link) "org-irc" "org/org-irc.el" | 20905 | ;;;### (autoloads (org-irc-store-link) "org-irc" "org/org-irc.el" |
| 20739 | ;;;;;; (20065 65310)) | 20906 | ;;;;;; (20119 34052)) |
| 20740 | ;;; Generated autoloads from org/org-irc.el | 20907 | ;;; Generated autoloads from org/org-irc.el |
| 20741 | 20908 | ||
| 20742 | (autoload 'org-irc-store-link "org-irc" "\ | 20909 | (autoload 'org-irc-store-link "org-irc" "\ |
| @@ -20749,7 +20916,7 @@ Dispatch to the appropriate function to store a link to an IRC session. | |||
| 20749 | ;;;### (autoloads (org-export-as-pdf-and-open org-export-as-pdf org-export-as-latex | 20916 | ;;;### (autoloads (org-export-as-pdf-and-open org-export-as-pdf org-export-as-latex |
| 20750 | ;;;;;; org-export-region-as-latex org-replace-region-by-latex org-export-as-latex-to-buffer | 20917 | ;;;;;; org-export-region-as-latex org-replace-region-by-latex org-export-as-latex-to-buffer |
| 20751 | ;;;;;; org-export-as-latex-batch) "org-latex" "org/org-latex.el" | 20918 | ;;;;;; org-export-as-latex-batch) "org-latex" "org/org-latex.el" |
| 20752 | ;;;;;; (20045 30716)) | 20919 | ;;;;;; (20119 34052)) |
| 20753 | ;;; Generated autoloads from org/org-latex.el | 20920 | ;;; Generated autoloads from org/org-latex.el |
| 20754 | 20921 | ||
| 20755 | (autoload 'org-export-as-latex-batch "org-latex" "\ | 20922 | (autoload 'org-export-as-latex-batch "org-latex" "\ |
| @@ -20829,8 +20996,8 @@ Export as LaTeX, then process through to PDF, and open. | |||
| 20829 | ;;;*** | 20996 | ;;;*** |
| 20830 | 20997 | ||
| 20831 | ;;;### (autoloads (org-mobile-create-sumo-agenda org-mobile-pull | 20998 | ;;;### (autoloads (org-mobile-create-sumo-agenda org-mobile-pull |
| 20832 | ;;;;;; org-mobile-push) "org-mobile" "org/org-mobile.el" (20065 | 20999 | ;;;;;; org-mobile-push) "org-mobile" "org/org-mobile.el" (20119 |
| 20833 | ;;;;;; 65310)) | 21000 | ;;;;;; 34052)) |
| 20834 | ;;; Generated autoloads from org/org-mobile.el | 21001 | ;;; Generated autoloads from org/org-mobile.el |
| 20835 | 21002 | ||
| 20836 | (autoload 'org-mobile-push "org-mobile" "\ | 21003 | (autoload 'org-mobile-push "org-mobile" "\ |
| @@ -20855,7 +21022,7 @@ Create a file that contains all custom agenda views. | |||
| 20855 | ;;;*** | 21022 | ;;;*** |
| 20856 | 21023 | ||
| 20857 | ;;;### (autoloads (org-plot/gnuplot) "org-plot" "org/org-plot.el" | 21024 | ;;;### (autoloads (org-plot/gnuplot) "org-plot" "org/org-plot.el" |
| 20858 | ;;;;;; (20045 30717)) | 21025 | ;;;;;; (20119 34052)) |
| 20859 | ;;; Generated autoloads from org/org-plot.el | 21026 | ;;; Generated autoloads from org/org-plot.el |
| 20860 | 21027 | ||
| 20861 | (autoload 'org-plot/gnuplot "org-plot" "\ | 21028 | (autoload 'org-plot/gnuplot "org-plot" "\ |
| @@ -20869,7 +21036,7 @@ line directly before or after the table. | |||
| 20869 | 21036 | ||
| 20870 | ;;;### (autoloads (org-publish-current-project org-publish-current-file | 21037 | ;;;### (autoloads (org-publish-current-project org-publish-current-file |
| 20871 | ;;;;;; org-publish-all org-publish) "org-publish" "org/org-publish.el" | 21038 | ;;;;;; org-publish-all org-publish) "org-publish" "org/org-publish.el" |
| 20872 | ;;;;;; (20065 65310)) | 21039 | ;;;;;; (20119 34052)) |
| 20873 | ;;; Generated autoloads from org/org-publish.el | 21040 | ;;; Generated autoloads from org/org-publish.el |
| 20874 | 21041 | ||
| 20875 | (defalias 'org-publish-project 'org-publish) | 21042 | (defalias 'org-publish-project 'org-publish) |
| @@ -20903,7 +21070,7 @@ the project. | |||
| 20903 | 21070 | ||
| 20904 | ;;;### (autoloads (org-remember-handler org-remember org-remember-apply-template | 21071 | ;;;### (autoloads (org-remember-handler org-remember org-remember-apply-template |
| 20905 | ;;;;;; org-remember-annotation org-remember-insinuate) "org-remember" | 21072 | ;;;;;; org-remember-annotation org-remember-insinuate) "org-remember" |
| 20906 | ;;;;;; "org/org-remember.el" (20065 65310)) | 21073 | ;;;;;; "org/org-remember.el" (20119 34052)) |
| 20907 | ;;; Generated autoloads from org/org-remember.el | 21074 | ;;; Generated autoloads from org/org-remember.el |
| 20908 | 21075 | ||
| 20909 | (autoload 'org-remember-insinuate "org-remember" "\ | 21076 | (autoload 'org-remember-insinuate "org-remember" "\ |
| @@ -20979,7 +21146,7 @@ See also the variable `org-reverse-note-order'. | |||
| 20979 | ;;;*** | 21146 | ;;;*** |
| 20980 | 21147 | ||
| 20981 | ;;;### (autoloads (org-table-to-lisp orgtbl-mode turn-on-orgtbl) | 21148 | ;;;### (autoloads (org-table-to-lisp orgtbl-mode turn-on-orgtbl) |
| 20982 | ;;;;;; "org-table" "org/org-table.el" (20045 30718)) | 21149 | ;;;;;; "org-table" "org/org-table.el" (20119 34052)) |
| 20983 | ;;; Generated autoloads from org/org-table.el | 21150 | ;;; Generated autoloads from org/org-table.el |
| 20984 | 21151 | ||
| 20985 | (autoload 'turn-on-orgtbl "org-table" "\ | 21152 | (autoload 'turn-on-orgtbl "org-table" "\ |
| @@ -21003,7 +21170,7 @@ The table is taken from the parameter TXT, or from the buffer at point. | |||
| 21003 | ;;;*** | 21170 | ;;;*** |
| 21004 | 21171 | ||
| 21005 | ;;;### (autoloads (org-export-as-taskjuggler-and-open org-export-as-taskjuggler) | 21172 | ;;;### (autoloads (org-export-as-taskjuggler-and-open org-export-as-taskjuggler) |
| 21006 | ;;;;;; "org-taskjuggler" "org/org-taskjuggler.el" (20045 30718)) | 21173 | ;;;;;; "org-taskjuggler" "org/org-taskjuggler.el" (20119 34052)) |
| 21007 | ;;; Generated autoloads from org/org-taskjuggler.el | 21174 | ;;; Generated autoloads from org/org-taskjuggler.el |
| 21008 | 21175 | ||
| 21009 | (autoload 'org-export-as-taskjuggler "org-taskjuggler" "\ | 21176 | (autoload 'org-export-as-taskjuggler "org-taskjuggler" "\ |
| @@ -21031,7 +21198,7 @@ with the TaskJuggler GUI. | |||
| 21031 | 21198 | ||
| 21032 | ;;;### (autoloads (org-timer-set-timer org-timer-item org-timer-change-times-in-region | 21199 | ;;;### (autoloads (org-timer-set-timer org-timer-item org-timer-change-times-in-region |
| 21033 | ;;;;;; org-timer org-timer-start) "org-timer" "org/org-timer.el" | 21200 | ;;;;;; org-timer org-timer-start) "org-timer" "org/org-timer.el" |
| 21034 | ;;;;;; (20045 30718)) | 21201 | ;;;;;; (20119 34052)) |
| 21035 | ;;; Generated autoloads from org/org-timer.el | 21202 | ;;; Generated autoloads from org/org-timer.el |
| 21036 | 21203 | ||
| 21037 | (autoload 'org-timer-start "org-timer" "\ | 21204 | (autoload 'org-timer-start "org-timer" "\ |
| @@ -21092,7 +21259,7 @@ replace any running timer. | |||
| 21092 | ;;;*** | 21259 | ;;;*** |
| 21093 | 21260 | ||
| 21094 | ;;;### (autoloads (org-export-as-xoxo) "org-xoxo" "org/org-xoxo.el" | 21261 | ;;;### (autoloads (org-export-as-xoxo) "org-xoxo" "org/org-xoxo.el" |
| 21095 | ;;;;;; (20045 30719)) | 21262 | ;;;;;; (20119 34052)) |
| 21096 | ;;; Generated autoloads from org/org-xoxo.el | 21263 | ;;; Generated autoloads from org/org-xoxo.el |
| 21097 | 21264 | ||
| 21098 | (autoload 'org-export-as-xoxo "org-xoxo" "\ | 21265 | (autoload 'org-export-as-xoxo "org-xoxo" "\ |
| @@ -21104,7 +21271,7 @@ The XOXO buffer is named *xoxo-<source buffer name>* | |||
| 21104 | ;;;*** | 21271 | ;;;*** |
| 21105 | 21272 | ||
| 21106 | ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "outline.el" | 21273 | ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "outline.el" |
| 21107 | ;;;;;; (20087 5852)) | 21274 | ;;;;;; (20126 50306)) |
| 21108 | ;;; Generated autoloads from outline.el | 21275 | ;;; Generated autoloads from outline.el |
| 21109 | (put 'outline-regexp 'safe-local-variable 'stringp) | 21276 | (put 'outline-regexp 'safe-local-variable 'stringp) |
| 21110 | (put 'outline-heading-end-regexp 'safe-local-variable 'stringp) | 21277 | (put 'outline-heading-end-regexp 'safe-local-variable 'stringp) |
| @@ -21154,7 +21321,10 @@ Turning on outline mode calls the value of `text-mode-hook' and then of | |||
| 21154 | 21321 | ||
| 21155 | (autoload 'outline-minor-mode "outline" "\ | 21322 | (autoload 'outline-minor-mode "outline" "\ |
| 21156 | Toggle Outline minor mode. | 21323 | Toggle Outline minor mode. |
| 21157 | With arg, turn Outline minor mode on if arg is positive, off otherwise. | 21324 | With a prefix argument ARG, enable Outline minor mode if ARG is |
| 21325 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 21326 | the mode if ARG is omitted or nil. | ||
| 21327 | |||
| 21158 | See the command `outline-mode' for more information on this mode. | 21328 | See the command `outline-mode' for more information on this mode. |
| 21159 | 21329 | ||
| 21160 | \(fn &optional ARG)" t nil) | 21330 | \(fn &optional ARG)" t nil) |
| @@ -21163,9 +21333,9 @@ See the command `outline-mode' for more information on this mode. | |||
| 21163 | ;;;*** | 21333 | ;;;*** |
| 21164 | 21334 | ||
| 21165 | ;;;### (autoloads (list-packages describe-package package-initialize | 21335 | ;;;### (autoloads (list-packages describe-package package-initialize |
| 21166 | ;;;;;; package-install-file package-install-from-buffer package-install | 21336 | ;;;;;; package-refresh-contents package-install-file package-install-from-buffer |
| 21167 | ;;;;;; package-enable-at-startup) "package" "emacs-lisp/package.el" | 21337 | ;;;;;; package-install package-enable-at-startup) "package" "emacs-lisp/package.el" |
| 21168 | ;;;;;; (20098 4366)) | 21338 | ;;;;;; (20139 30186)) |
| 21169 | ;;; Generated autoloads from emacs-lisp/package.el | 21339 | ;;; Generated autoloads from emacs-lisp/package.el |
| 21170 | 21340 | ||
| 21171 | (defvar package-enable-at-startup t "\ | 21341 | (defvar package-enable-at-startup t "\ |
| @@ -21204,6 +21374,13 @@ The file can either be a tar file or an Emacs Lisp file. | |||
| 21204 | 21374 | ||
| 21205 | \(fn FILE)" t nil) | 21375 | \(fn FILE)" t nil) |
| 21206 | 21376 | ||
| 21377 | (autoload 'package-refresh-contents "package" "\ | ||
| 21378 | Download the ELPA archive description if needed. | ||
| 21379 | This informs Emacs about the latest versions of all packages, and | ||
| 21380 | makes them available for download. | ||
| 21381 | |||
| 21382 | \(fn)" t nil) | ||
| 21383 | |||
| 21207 | (autoload 'package-initialize "package" "\ | 21384 | (autoload 'package-initialize "package" "\ |
| 21208 | Load Emacs Lisp packages, and activate them. | 21385 | Load Emacs Lisp packages, and activate them. |
| 21209 | The variable `package-load-list' controls which packages to load. | 21386 | The variable `package-load-list' controls which packages to load. |
| @@ -21228,7 +21405,7 @@ The list is displayed in a buffer named `*Packages*'. | |||
| 21228 | 21405 | ||
| 21229 | ;;;*** | 21406 | ;;;*** |
| 21230 | 21407 | ||
| 21231 | ;;;### (autoloads (show-paren-mode) "paren" "paren.el" (20076 35541)) | 21408 | ;;;### (autoloads (show-paren-mode) "paren" "paren.el" (20126 50320)) |
| 21232 | ;;; Generated autoloads from paren.el | 21409 | ;;; Generated autoloads from paren.el |
| 21233 | 21410 | ||
| 21234 | (defvar show-paren-mode nil "\ | 21411 | (defvar show-paren-mode nil "\ |
| @@ -21241,19 +21418,21 @@ or call the function `show-paren-mode'.") | |||
| 21241 | (custom-autoload 'show-paren-mode "paren" nil) | 21418 | (custom-autoload 'show-paren-mode "paren" nil) |
| 21242 | 21419 | ||
| 21243 | (autoload 'show-paren-mode "paren" "\ | 21420 | (autoload 'show-paren-mode "paren" "\ |
| 21244 | Toggle Show Paren mode. | 21421 | Toggle visualization of matching parens (Show Paren mode). |
| 21245 | With prefix ARG, turn Show Paren mode on if and only if ARG is positive. | 21422 | With a prefix argument ARG, enable Show Paren mode if ARG is |
| 21246 | Returns the new status of Show Paren mode (non-nil means on). | 21423 | positive, and disable it otherwise. If called from Lisp, enable |
| 21424 | the mode if ARG is omitted or nil. | ||
| 21247 | 21425 | ||
| 21248 | When Show Paren mode is enabled, any matching parenthesis is highlighted | 21426 | Show Paren mode is a global minor mode. When enabled, any |
| 21249 | in `show-paren-style' after `show-paren-delay' seconds of Emacs idle time. | 21427 | matching parenthesis is highlighted in `show-paren-style' after |
| 21428 | `show-paren-delay' seconds of Emacs idle time. | ||
| 21250 | 21429 | ||
| 21251 | \(fn &optional ARG)" t nil) | 21430 | \(fn &optional ARG)" t nil) |
| 21252 | 21431 | ||
| 21253 | ;;;*** | 21432 | ;;;*** |
| 21254 | 21433 | ||
| 21255 | ;;;### (autoloads (parse-time-string) "parse-time" "calendar/parse-time.el" | 21434 | ;;;### (autoloads (parse-time-string) "parse-time" "calendar/parse-time.el" |
| 21256 | ;;;;;; (19845 45374)) | 21435 | ;;;;;; (20119 34052)) |
| 21257 | ;;; Generated autoloads from calendar/parse-time.el | 21436 | ;;; Generated autoloads from calendar/parse-time.el |
| 21258 | (put 'parse-time-rules 'risky-local-variable t) | 21437 | (put 'parse-time-rules 'risky-local-variable t) |
| 21259 | 21438 | ||
| @@ -21266,8 +21445,8 @@ unknown are returned as nil. | |||
| 21266 | 21445 | ||
| 21267 | ;;;*** | 21446 | ;;;*** |
| 21268 | 21447 | ||
| 21269 | ;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (19968 | 21448 | ;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (20119 |
| 21270 | ;;;;;; 28627)) | 21449 | ;;;;;; 34052)) |
| 21271 | ;;; Generated autoloads from progmodes/pascal.el | 21450 | ;;; Generated autoloads from progmodes/pascal.el |
| 21272 | 21451 | ||
| 21273 | (autoload 'pascal-mode "pascal" "\ | 21452 | (autoload 'pascal-mode "pascal" "\ |
| @@ -21320,7 +21499,7 @@ no args, if that value is non-nil. | |||
| 21320 | ;;;*** | 21499 | ;;;*** |
| 21321 | 21500 | ||
| 21322 | ;;;### (autoloads (password-in-cache-p password-cache-expiry password-cache) | 21501 | ;;;### (autoloads (password-in-cache-p password-cache-expiry password-cache) |
| 21323 | ;;;;;; "password-cache" "password-cache.el" (20089 47591)) | 21502 | ;;;;;; "password-cache" "password-cache.el" (20119 34052)) |
| 21324 | ;;; Generated autoloads from password-cache.el | 21503 | ;;; Generated autoloads from password-cache.el |
| 21325 | 21504 | ||
| 21326 | (defvar password-cache t "\ | 21505 | (defvar password-cache t "\ |
| @@ -21342,7 +21521,7 @@ Check if KEY is in the cache. | |||
| 21342 | ;;;*** | 21521 | ;;;*** |
| 21343 | 21522 | ||
| 21344 | ;;;### (autoloads (pcase-let pcase-let* pcase) "pcase" "emacs-lisp/pcase.el" | 21523 | ;;;### (autoloads (pcase-let pcase-let* pcase) "pcase" "emacs-lisp/pcase.el" |
| 21345 | ;;;;;; (19863 8742)) | 21524 | ;;;;;; (20119 34052)) |
| 21346 | ;;; Generated autoloads from emacs-lisp/pcase.el | 21525 | ;;; Generated autoloads from emacs-lisp/pcase.el |
| 21347 | 21526 | ||
| 21348 | (autoload 'pcase "pcase" "\ | 21527 | (autoload 'pcase "pcase" "\ |
| @@ -21401,8 +21580,8 @@ of the form (UPAT EXP). | |||
| 21401 | 21580 | ||
| 21402 | ;;;*** | 21581 | ;;;*** |
| 21403 | 21582 | ||
| 21404 | ;;;### (autoloads (pcomplete/cvs) "pcmpl-cvs" "pcmpl-cvs.el" (20100 | 21583 | ;;;### (autoloads (pcomplete/cvs) "pcmpl-cvs" "pcmpl-cvs.el" (20119 |
| 21405 | ;;;;;; 17869)) | 21584 | ;;;;;; 34052)) |
| 21406 | ;;; Generated autoloads from pcmpl-cvs.el | 21585 | ;;; Generated autoloads from pcmpl-cvs.el |
| 21407 | 21586 | ||
| 21408 | (autoload 'pcomplete/cvs "pcmpl-cvs" "\ | 21587 | (autoload 'pcomplete/cvs "pcmpl-cvs" "\ |
| @@ -21413,7 +21592,7 @@ Completion rules for the `cvs' command. | |||
| 21413 | ;;;*** | 21592 | ;;;*** |
| 21414 | 21593 | ||
| 21415 | ;;;### (autoloads (pcomplete/tar pcomplete/make pcomplete/bzip2 pcomplete/gzip) | 21594 | ;;;### (autoloads (pcomplete/tar pcomplete/make pcomplete/bzip2 pcomplete/gzip) |
| 21416 | ;;;;;; "pcmpl-gnu" "pcmpl-gnu.el" (20102 59597)) | 21595 | ;;;;;; "pcmpl-gnu" "pcmpl-gnu.el" (20119 34052)) |
| 21417 | ;;; Generated autoloads from pcmpl-gnu.el | 21596 | ;;; Generated autoloads from pcmpl-gnu.el |
| 21418 | 21597 | ||
| 21419 | (autoload 'pcomplete/gzip "pcmpl-gnu" "\ | 21598 | (autoload 'pcomplete/gzip "pcmpl-gnu" "\ |
| @@ -21441,7 +21620,7 @@ Completion for the GNU tar utility. | |||
| 21441 | ;;;*** | 21620 | ;;;*** |
| 21442 | 21621 | ||
| 21443 | ;;;### (autoloads (pcomplete/mount pcomplete/umount pcomplete/kill) | 21622 | ;;;### (autoloads (pcomplete/mount pcomplete/umount pcomplete/kill) |
| 21444 | ;;;;;; "pcmpl-linux" "pcmpl-linux.el" (19986 58615)) | 21623 | ;;;;;; "pcmpl-linux" "pcmpl-linux.el" (20119 34052)) |
| 21445 | ;;; Generated autoloads from pcmpl-linux.el | 21624 | ;;; Generated autoloads from pcmpl-linux.el |
| 21446 | 21625 | ||
| 21447 | (autoload 'pcomplete/kill "pcmpl-linux" "\ | 21626 | (autoload 'pcomplete/kill "pcmpl-linux" "\ |
| @@ -21461,8 +21640,8 @@ Completion for GNU/Linux `mount'. | |||
| 21461 | 21640 | ||
| 21462 | ;;;*** | 21641 | ;;;*** |
| 21463 | 21642 | ||
| 21464 | ;;;### (autoloads (pcomplete/rpm) "pcmpl-rpm" "pcmpl-rpm.el" (19961 | 21643 | ;;;### (autoloads (pcomplete/rpm) "pcmpl-rpm" "pcmpl-rpm.el" (20119 |
| 21465 | ;;;;;; 55377)) | 21644 | ;;;;;; 34052)) |
| 21466 | ;;; Generated autoloads from pcmpl-rpm.el | 21645 | ;;; Generated autoloads from pcmpl-rpm.el |
| 21467 | 21646 | ||
| 21468 | (autoload 'pcomplete/rpm "pcmpl-rpm" "\ | 21647 | (autoload 'pcomplete/rpm "pcmpl-rpm" "\ |
| @@ -21474,7 +21653,7 @@ Completion for the `rpm' command. | |||
| 21474 | 21653 | ||
| 21475 | ;;;### (autoloads (pcomplete/scp pcomplete/ssh pcomplete/chgrp pcomplete/chown | 21654 | ;;;### (autoloads (pcomplete/scp pcomplete/ssh pcomplete/chgrp pcomplete/chown |
| 21476 | ;;;;;; pcomplete/which pcomplete/xargs pcomplete/rm pcomplete/rmdir | 21655 | ;;;;;; pcomplete/which pcomplete/xargs pcomplete/rm pcomplete/rmdir |
| 21477 | ;;;;;; pcomplete/cd) "pcmpl-unix" "pcmpl-unix.el" (19845 45374)) | 21656 | ;;;;;; pcomplete/cd) "pcmpl-unix" "pcmpl-unix.el" (20120 43280)) |
| 21478 | ;;; Generated autoloads from pcmpl-unix.el | 21657 | ;;; Generated autoloads from pcmpl-unix.el |
| 21479 | 21658 | ||
| 21480 | (autoload 'pcomplete/cd "pcmpl-unix" "\ | 21659 | (autoload 'pcomplete/cd "pcmpl-unix" "\ |
| @@ -21531,8 +21710,8 @@ Includes files as well as host names followed by a colon. | |||
| 21531 | 21710 | ||
| 21532 | ;;;### (autoloads (pcomplete-shell-setup pcomplete-comint-setup pcomplete-list | 21711 | ;;;### (autoloads (pcomplete-shell-setup pcomplete-comint-setup pcomplete-list |
| 21533 | ;;;;;; pcomplete-help pcomplete-expand pcomplete-continue pcomplete-expand-and-complete | 21712 | ;;;;;; pcomplete-help pcomplete-expand pcomplete-continue pcomplete-expand-and-complete |
| 21534 | ;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (20088 | 21713 | ;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (20119 |
| 21535 | ;;;;;; 26718)) | 21714 | ;;;;;; 34052)) |
| 21536 | ;;; Generated autoloads from pcomplete.el | 21715 | ;;; Generated autoloads from pcomplete.el |
| 21537 | 21716 | ||
| 21538 | (autoload 'pcomplete "pcomplete" "\ | 21717 | (autoload 'pcomplete "pcomplete" "\ |
| @@ -21591,7 +21770,7 @@ Setup `shell-mode' to use pcomplete. | |||
| 21591 | 21770 | ||
| 21592 | ;;;### (autoloads (cvs-dired-use-hook cvs-dired-action cvs-status | 21771 | ;;;### (autoloads (cvs-dired-use-hook cvs-dired-action cvs-status |
| 21593 | ;;;;;; cvs-update cvs-examine cvs-quickdir cvs-checkout) "pcvs" | 21772 | ;;;;;; cvs-update cvs-examine cvs-quickdir cvs-checkout) "pcvs" |
| 21594 | ;;;;;; "vc/pcvs.el" (19845 45374)) | 21773 | ;;;;;; "vc/pcvs.el" (20119 34052)) |
| 21595 | ;;; Generated autoloads from vc/pcvs.el | 21774 | ;;; Generated autoloads from vc/pcvs.el |
| 21596 | 21775 | ||
| 21597 | (autoload 'cvs-checkout "pcvs" "\ | 21776 | (autoload 'cvs-checkout "pcvs" "\ |
| @@ -21666,7 +21845,7 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d | |||
| 21666 | 21845 | ||
| 21667 | ;;;*** | 21846 | ;;;*** |
| 21668 | 21847 | ||
| 21669 | ;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (20062 2656)) | 21848 | ;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (20119 34052)) |
| 21670 | ;;; Generated autoloads from vc/pcvs-defs.el | 21849 | ;;; Generated autoloads from vc/pcvs-defs.el |
| 21671 | 21850 | ||
| 21672 | (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))) | 21851 | (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))) |
| @@ -21674,7 +21853,7 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d | |||
| 21674 | ;;;*** | 21853 | ;;;*** |
| 21675 | 21854 | ||
| 21676 | ;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el" | 21855 | ;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el" |
| 21677 | ;;;;;; (20098 62550)) | 21856 | ;;;;;; (20119 34052)) |
| 21678 | ;;; Generated autoloads from progmodes/perl-mode.el | 21857 | ;;; Generated autoloads from progmodes/perl-mode.el |
| 21679 | (put 'perl-indent-level 'safe-local-variable 'integerp) | 21858 | (put 'perl-indent-level 'safe-local-variable 'integerp) |
| 21680 | (put 'perl-continued-statement-offset 'safe-local-variable 'integerp) | 21859 | (put 'perl-continued-statement-offset 'safe-local-variable 'integerp) |
| @@ -21736,7 +21915,7 @@ Turning on Perl mode runs the normal hook `perl-mode-hook'. | |||
| 21736 | ;;;*** | 21915 | ;;;*** |
| 21737 | 21916 | ||
| 21738 | ;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el" | 21917 | ;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el" |
| 21739 | ;;;;;; (20093 44623)) | 21918 | ;;;;;; (20119 34052)) |
| 21740 | ;;; Generated autoloads from textmodes/picture.el | 21919 | ;;; Generated autoloads from textmodes/picture.el |
| 21741 | 21920 | ||
| 21742 | (autoload 'picture-mode "picture" "\ | 21921 | (autoload 'picture-mode "picture" "\ |
| @@ -21816,8 +21995,8 @@ they are not defaultly assigned to keys. | |||
| 21816 | 21995 | ||
| 21817 | ;;;*** | 21996 | ;;;*** |
| 21818 | 21997 | ||
| 21819 | ;;;### (autoloads (plstore-open) "plstore" "gnus/plstore.el" (20097 | 21998 | ;;;### (autoloads (plstore-open) "plstore" "gnus/plstore.el" (20119 |
| 21820 | ;;;;;; 41737)) | 21999 | ;;;;;; 34052)) |
| 21821 | ;;; Generated autoloads from gnus/plstore.el | 22000 | ;;; Generated autoloads from gnus/plstore.el |
| 21822 | 22001 | ||
| 21823 | (autoload 'plstore-open "plstore" "\ | 22002 | (autoload 'plstore-open "plstore" "\ |
| @@ -21828,7 +22007,7 @@ Create a plstore instance associated with FILE. | |||
| 21828 | ;;;*** | 22007 | ;;;*** |
| 21829 | 22008 | ||
| 21830 | ;;;### (autoloads (po-find-file-coding-system) "po" "textmodes/po.el" | 22009 | ;;;### (autoloads (po-find-file-coding-system) "po" "textmodes/po.el" |
| 21831 | ;;;;;; (19845 45374)) | 22010 | ;;;;;; (20119 34052)) |
| 21832 | ;;; Generated autoloads from textmodes/po.el | 22011 | ;;; Generated autoloads from textmodes/po.el |
| 21833 | 22012 | ||
| 21834 | (autoload 'po-find-file-coding-system "po" "\ | 22013 | (autoload 'po-find-file-coding-system "po" "\ |
| @@ -21839,7 +22018,7 @@ Called through `file-coding-system-alist', before the file is visited for real. | |||
| 21839 | 22018 | ||
| 21840 | ;;;*** | 22019 | ;;;*** |
| 21841 | 22020 | ||
| 21842 | ;;;### (autoloads (pong) "pong" "play/pong.el" (19845 45374)) | 22021 | ;;;### (autoloads (pong) "pong" "play/pong.el" (20119 34052)) |
| 21843 | ;;; Generated autoloads from play/pong.el | 22022 | ;;; Generated autoloads from play/pong.el |
| 21844 | 22023 | ||
| 21845 | (autoload 'pong "pong" "\ | 22024 | (autoload 'pong "pong" "\ |
| @@ -21855,7 +22034,7 @@ pong-mode keybindings:\\<pong-mode-map> | |||
| 21855 | 22034 | ||
| 21856 | ;;;*** | 22035 | ;;;*** |
| 21857 | 22036 | ||
| 21858 | ;;;### (autoloads (pop3-movemail) "pop3" "gnus/pop3.el" (20097 41737)) | 22037 | ;;;### (autoloads (pop3-movemail) "pop3" "gnus/pop3.el" (20119 34052)) |
| 21859 | ;;; Generated autoloads from gnus/pop3.el | 22038 | ;;; Generated autoloads from gnus/pop3.el |
| 21860 | 22039 | ||
| 21861 | (autoload 'pop3-movemail "pop3" "\ | 22040 | (autoload 'pop3-movemail "pop3" "\ |
| @@ -21868,7 +22047,7 @@ Use streaming commands. | |||
| 21868 | 22047 | ||
| 21869 | ;;;### (autoloads (pp-macroexpand-last-sexp pp-eval-last-sexp pp-macroexpand-expression | 22048 | ;;;### (autoloads (pp-macroexpand-last-sexp pp-eval-last-sexp pp-macroexpand-expression |
| 21870 | ;;;;;; pp-eval-expression pp pp-buffer pp-to-string) "pp" "emacs-lisp/pp.el" | 22049 | ;;;;;; pp-eval-expression pp pp-buffer pp-to-string) "pp" "emacs-lisp/pp.el" |
| 21871 | ;;;;;; (19845 45374)) | 22050 | ;;;;;; (20119 34052)) |
| 21872 | ;;; Generated autoloads from emacs-lisp/pp.el | 22051 | ;;; Generated autoloads from emacs-lisp/pp.el |
| 21873 | 22052 | ||
| 21874 | (autoload 'pp-to-string "pp" "\ | 22053 | (autoload 'pp-to-string "pp" "\ |
| @@ -21936,7 +22115,7 @@ Ignores leading comment characters. | |||
| 21936 | ;;;;;; pr-ps-buffer-print pr-ps-buffer-using-ghostscript pr-ps-buffer-preview | 22115 | ;;;;;; pr-ps-buffer-print pr-ps-buffer-using-ghostscript pr-ps-buffer-preview |
| 21937 | ;;;;;; pr-ps-directory-ps-print pr-ps-directory-print pr-ps-directory-using-ghostscript | 22116 | ;;;;;; pr-ps-directory-ps-print pr-ps-directory-print pr-ps-directory-using-ghostscript |
| 21938 | ;;;;;; pr-ps-directory-preview pr-interface) "printing" "printing.el" | 22117 | ;;;;;; pr-ps-directory-preview pr-interface) "printing" "printing.el" |
| 21939 | ;;;;;; (19999 41597)) | 22118 | ;;;;;; (20119 34052)) |
| 21940 | ;;; Generated autoloads from printing.el | 22119 | ;;; Generated autoloads from printing.el |
| 21941 | 22120 | ||
| 21942 | (autoload 'pr-interface "printing" "\ | 22121 | (autoload 'pr-interface "printing" "\ |
| @@ -22523,7 +22702,7 @@ are both set to t. | |||
| 22523 | 22702 | ||
| 22524 | ;;;*** | 22703 | ;;;*** |
| 22525 | 22704 | ||
| 22526 | ;;;### (autoloads (proced) "proced" "proced.el" (20053 39261)) | 22705 | ;;;### (autoloads (proced) "proced" "proced.el" (20119 34052)) |
| 22527 | ;;; Generated autoloads from proced.el | 22706 | ;;; Generated autoloads from proced.el |
| 22528 | 22707 | ||
| 22529 | (autoload 'proced "proced" "\ | 22708 | (autoload 'proced "proced" "\ |
| @@ -22539,7 +22718,7 @@ See `proced-mode' for a description of features available in Proced buffers. | |||
| 22539 | ;;;*** | 22718 | ;;;*** |
| 22540 | 22719 | ||
| 22541 | ;;;### (autoloads (run-prolog mercury-mode prolog-mode) "prolog" | 22720 | ;;;### (autoloads (run-prolog mercury-mode prolog-mode) "prolog" |
| 22542 | ;;;;;; "progmodes/prolog.el" (19890 42850)) | 22721 | ;;;;;; "progmodes/prolog.el" (20119 34052)) |
| 22543 | ;;; Generated autoloads from progmodes/prolog.el | 22722 | ;;; Generated autoloads from progmodes/prolog.el |
| 22544 | 22723 | ||
| 22545 | (autoload 'prolog-mode "prolog" "\ | 22724 | (autoload 'prolog-mode "prolog" "\ |
| @@ -22574,8 +22753,8 @@ With prefix argument ARG, restart the Prolog process if running before. | |||
| 22574 | 22753 | ||
| 22575 | ;;;*** | 22754 | ;;;*** |
| 22576 | 22755 | ||
| 22577 | ;;;### (autoloads (bdf-directory-list) "ps-bdf" "ps-bdf.el" (19845 | 22756 | ;;;### (autoloads (bdf-directory-list) "ps-bdf" "ps-bdf.el" (20119 |
| 22578 | ;;;;;; 45374)) | 22757 | ;;;;;; 34052)) |
| 22579 | ;;; Generated autoloads from ps-bdf.el | 22758 | ;;; Generated autoloads from ps-bdf.el |
| 22580 | 22759 | ||
| 22581 | (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")) "\ | 22760 | (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")) "\ |
| @@ -22586,8 +22765,8 @@ The default value is '(\"/usr/local/share/emacs/fonts/bdf\").") | |||
| 22586 | 22765 | ||
| 22587 | ;;;*** | 22766 | ;;;*** |
| 22588 | 22767 | ||
| 22589 | ;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (19961 | 22768 | ;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (20119 |
| 22590 | ;;;;;; 55377)) | 22769 | ;;;;;; 34052)) |
| 22591 | ;;; Generated autoloads from progmodes/ps-mode.el | 22770 | ;;; Generated autoloads from progmodes/ps-mode.el |
| 22592 | 22771 | ||
| 22593 | (autoload 'ps-mode "ps-mode" "\ | 22772 | (autoload 'ps-mode "ps-mode" "\ |
| @@ -22638,8 +22817,8 @@ Typing \\<ps-run-mode-map>\\[ps-run-goto-error] when the cursor is at the number | |||
| 22638 | ;;;;;; ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer | 22817 | ;;;;;; ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer |
| 22639 | ;;;;;; ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces | 22818 | ;;;;;; ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces |
| 22640 | ;;;;;; ps-print-buffer ps-print-customize ps-print-color-p ps-paper-type | 22819 | ;;;;;; ps-print-buffer ps-print-customize ps-print-color-p ps-paper-type |
| 22641 | ;;;;;; ps-page-dimensions-database) "ps-print" "ps-print.el" (20088 | 22820 | ;;;;;; ps-page-dimensions-database) "ps-print" "ps-print.el" (20119 |
| 22642 | ;;;;;; 26764)) | 22821 | ;;;;;; 34052)) |
| 22643 | ;;; Generated autoloads from ps-print.el | 22822 | ;;; Generated autoloads from ps-print.el |
| 22644 | 22823 | ||
| 22645 | (defvar ps-page-dimensions-database (purecopy (list (list 'a4 (/ (* 72 21.0) 2.54) (/ (* 72 29.7) 2.54) "A4") (list 'a3 (/ (* 72 29.7) 2.54) (/ (* 72 42.0) 2.54) "A3") (list 'letter (* 72 8.5) (* 72 11.0) "Letter") (list 'legal (* 72 8.5) (* 72 14.0) "Legal") (list 'letter-small (* 72 7.68) (* 72 10.16) "LetterSmall") (list 'tabloid (* 72 11.0) (* 72 17.0) "Tabloid") (list 'ledger (* 72 17.0) (* 72 11.0) "Ledger") (list 'statement (* 72 5.5) (* 72 8.5) "Statement") (list 'executive (* 72 7.5) (* 72 10.0) "Executive") (list 'a4small (* 72 7.47) (* 72 10.85) "A4Small") (list 'b4 (* 72 10.125) (* 72 14.33) "B4") (list 'b5 (* 72 7.16) (* 72 10.125) "B5") '(addresslarge 236.0 99.0 "AddressLarge") '(addresssmall 236.0 68.0 "AddressSmall") '(cuthanging13 90.0 222.0 "CutHanging13") '(cuthanging15 90.0 114.0 "CutHanging15") '(diskette 181.0 136.0 "Diskette") '(eurofilefolder 139.0 112.0 "EuropeanFilefolder") '(eurofoldernarrow 526.0 107.0 "EuroFolderNarrow") '(eurofolderwide 526.0 136.0 "EuroFolderWide") '(euronamebadge 189.0 108.0 "EuroNameBadge") '(euronamebadgelarge 223.0 136.0 "EuroNameBadgeLarge") '(filefolder 230.0 37.0 "FileFolder") '(jewelry 76.0 136.0 "Jewelry") '(mediabadge 180.0 136.0 "MediaBadge") '(multipurpose 126.0 68.0 "MultiPurpose") '(retaillabel 90.0 104.0 "RetailLabel") '(shipping 271.0 136.0 "Shipping") '(slide35mm 26.0 104.0 "Slide35mm") '(spine8mm 187.0 26.0 "Spine8mm") '(topcoated 425.19685 136.0 "TopCoatedPaper") '(topcoatedpaper 396.0 136.0 "TopcoatedPaper150") '(vhsface 205.0 127.0 "VHSFace") '(vhsspine 400.0 50.0 "VHSSpine") '(zipdisk 156.0 136.0 "ZipDisk"))) "\ | 22824 | (defvar ps-page-dimensions-database (purecopy (list (list 'a4 (/ (* 72 21.0) 2.54) (/ (* 72 29.7) 2.54) "A4") (list 'a3 (/ (* 72 29.7) 2.54) (/ (* 72 42.0) 2.54) "A3") (list 'letter (* 72 8.5) (* 72 11.0) "Letter") (list 'legal (* 72 8.5) (* 72 14.0) "Legal") (list 'letter-small (* 72 7.68) (* 72 10.16) "LetterSmall") (list 'tabloid (* 72 11.0) (* 72 17.0) "Tabloid") (list 'ledger (* 72 17.0) (* 72 11.0) "Ledger") (list 'statement (* 72 5.5) (* 72 8.5) "Statement") (list 'executive (* 72 7.5) (* 72 10.0) "Executive") (list 'a4small (* 72 7.47) (* 72 10.85) "A4Small") (list 'b4 (* 72 10.125) (* 72 14.33) "B4") (list 'b5 (* 72 7.16) (* 72 10.125) "B5") '(addresslarge 236.0 99.0 "AddressLarge") '(addresssmall 236.0 68.0 "AddressSmall") '(cuthanging13 90.0 222.0 "CutHanging13") '(cuthanging15 90.0 114.0 "CutHanging15") '(diskette 181.0 136.0 "Diskette") '(eurofilefolder 139.0 112.0 "EuropeanFilefolder") '(eurofoldernarrow 526.0 107.0 "EuroFolderNarrow") '(eurofolderwide 526.0 136.0 "EuroFolderWide") '(euronamebadge 189.0 108.0 "EuroNameBadge") '(euronamebadgelarge 223.0 136.0 "EuroNameBadgeLarge") '(filefolder 230.0 37.0 "FileFolder") '(jewelry 76.0 136.0 "Jewelry") '(mediabadge 180.0 136.0 "MediaBadge") '(multipurpose 126.0 68.0 "MultiPurpose") '(retaillabel 90.0 104.0 "RetailLabel") '(shipping 271.0 136.0 "Shipping") '(slide35mm 26.0 104.0 "Slide35mm") '(spine8mm 187.0 26.0 "Spine8mm") '(topcoated 425.19685 136.0 "TopCoatedPaper") '(topcoatedpaper 396.0 136.0 "TopcoatedPaper150") '(vhsface 205.0 127.0 "VHSFace") '(vhsspine 400.0 50.0 "VHSSpine") '(zipdisk 156.0 136.0 "ZipDisk"))) "\ |
| @@ -22836,7 +23015,7 @@ If EXTENSION is any other symbol, it is ignored. | |||
| 22836 | ;;;*** | 23015 | ;;;*** |
| 22837 | 23016 | ||
| 22838 | ;;;### (autoloads (jython-mode python-mode python-after-info-look | 23017 | ;;;### (autoloads (jython-mode python-mode python-after-info-look |
| 22839 | ;;;;;; run-python) "python" "progmodes/python.el" (20076 35541)) | 23018 | ;;;;;; run-python) "python" "progmodes/python.el" (20119 34052)) |
| 22840 | ;;; Generated autoloads from progmodes/python.el | 23019 | ;;; Generated autoloads from progmodes/python.el |
| 22841 | 23020 | ||
| 22842 | (add-to-list 'interpreter-mode-alist (cons (purecopy "jython") 'jython-mode)) | 23021 | (add-to-list 'interpreter-mode-alist (cons (purecopy "jython") 'jython-mode)) |
| @@ -22922,7 +23101,7 @@ Runs `jython-mode-hook' after `python-mode-hook'. | |||
| 22922 | ;;;*** | 23101 | ;;;*** |
| 22923 | 23102 | ||
| 22924 | ;;;### (autoloads (quoted-printable-decode-region) "qp" "gnus/qp.el" | 23103 | ;;;### (autoloads (quoted-printable-decode-region) "qp" "gnus/qp.el" |
| 22925 | ;;;;;; (19845 45374)) | 23104 | ;;;;;; (20119 34052)) |
| 22926 | ;;; Generated autoloads from gnus/qp.el | 23105 | ;;; Generated autoloads from gnus/qp.el |
| 22927 | 23106 | ||
| 22928 | (autoload 'quoted-printable-decode-region "qp" "\ | 23107 | (autoload 'quoted-printable-decode-region "qp" "\ |
| @@ -22945,7 +23124,7 @@ them into characters should be done separately. | |||
| 22945 | ;;;;;; quail-defrule quail-install-decode-map quail-install-map | 23124 | ;;;;;; quail-defrule quail-install-decode-map quail-install-map |
| 22946 | ;;;;;; quail-define-rules quail-show-keyboard-layout quail-set-keyboard-layout | 23125 | ;;;;;; quail-define-rules quail-show-keyboard-layout quail-set-keyboard-layout |
| 22947 | ;;;;;; quail-define-package quail-use-package quail-title) "quail" | 23126 | ;;;;;; quail-define-package quail-use-package quail-title) "quail" |
| 22948 | ;;;;;; "international/quail.el" (19943 25429)) | 23127 | ;;;;;; "international/quail.el" (20119 34052)) |
| 22949 | ;;; Generated autoloads from international/quail.el | 23128 | ;;; Generated autoloads from international/quail.el |
| 22950 | 23129 | ||
| 22951 | (autoload 'quail-title "quail" "\ | 23130 | (autoload 'quail-title "quail" "\ |
| @@ -23176,8 +23355,8 @@ of each directory. | |||
| 23176 | 23355 | ||
| 23177 | ;;;### (autoloads (quickurl-list quickurl-list-mode quickurl-edit-urls | 23356 | ;;;### (autoloads (quickurl-list quickurl-list-mode quickurl-edit-urls |
| 23178 | ;;;;;; quickurl-browse-url-ask quickurl-browse-url quickurl-add-url | 23357 | ;;;;;; quickurl-browse-url-ask quickurl-browse-url quickurl-add-url |
| 23179 | ;;;;;; quickurl-ask quickurl) "quickurl" "net/quickurl.el" (20098 | 23358 | ;;;;;; quickurl-ask quickurl) "quickurl" "net/quickurl.el" (20119 |
| 23180 | ;;;;;; 62550)) | 23359 | ;;;;;; 34052)) |
| 23181 | ;;; Generated autoloads from net/quickurl.el | 23360 | ;;; Generated autoloads from net/quickurl.el |
| 23182 | 23361 | ||
| 23183 | (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" "\ | 23362 | (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" "\ |
| @@ -23249,7 +23428,7 @@ Display `quickurl-list' as a formatted list using `quickurl-list-mode'. | |||
| 23249 | ;;;*** | 23428 | ;;;*** |
| 23250 | 23429 | ||
| 23251 | ;;;### (autoloads (rcirc-track-minor-mode rcirc-connect rcirc) "rcirc" | 23430 | ;;;### (autoloads (rcirc-track-minor-mode rcirc-connect rcirc) "rcirc" |
| 23252 | ;;;;;; "net/rcirc.el" (20073 59352)) | 23431 | ;;;;;; "net/rcirc.el" (20138 51043)) |
| 23253 | ;;; Generated autoloads from net/rcirc.el | 23432 | ;;; Generated autoloads from net/rcirc.el |
| 23254 | 23433 | ||
| 23255 | (autoload 'rcirc "rcirc" "\ | 23434 | (autoload 'rcirc "rcirc" "\ |
| @@ -23284,8 +23463,8 @@ Global minor mode for tracking activity in rcirc buffers. | |||
| 23284 | 23463 | ||
| 23285 | ;;;*** | 23464 | ;;;*** |
| 23286 | 23465 | ||
| 23287 | ;;;### (autoloads (remote-compile) "rcompile" "net/rcompile.el" (19845 | 23466 | ;;;### (autoloads (remote-compile) "rcompile" "net/rcompile.el" (20119 |
| 23288 | ;;;;;; 45374)) | 23467 | ;;;;;; 34052)) |
| 23289 | ;;; Generated autoloads from net/rcompile.el | 23468 | ;;; Generated autoloads from net/rcompile.el |
| 23290 | 23469 | ||
| 23291 | (autoload 'remote-compile "rcompile" "\ | 23470 | (autoload 'remote-compile "rcompile" "\ |
| @@ -23297,7 +23476,7 @@ See \\[compile]. | |||
| 23297 | ;;;*** | 23476 | ;;;*** |
| 23298 | 23477 | ||
| 23299 | ;;;### (autoloads (re-builder) "re-builder" "emacs-lisp/re-builder.el" | 23478 | ;;;### (autoloads (re-builder) "re-builder" "emacs-lisp/re-builder.el" |
| 23300 | ;;;;;; (19975 1875)) | 23479 | ;;;;;; (20119 34052)) |
| 23301 | ;;; Generated autoloads from emacs-lisp/re-builder.el | 23480 | ;;; Generated autoloads from emacs-lisp/re-builder.el |
| 23302 | 23481 | ||
| 23303 | (defalias 'regexp-builder 're-builder) | 23482 | (defalias 'regexp-builder 're-builder) |
| @@ -23315,7 +23494,7 @@ matching parts of the target buffer will be highlighted. | |||
| 23315 | 23494 | ||
| 23316 | ;;;*** | 23495 | ;;;*** |
| 23317 | 23496 | ||
| 23318 | ;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (19886 45771)) | 23497 | ;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (20126 50335)) |
| 23319 | ;;; Generated autoloads from recentf.el | 23498 | ;;; Generated autoloads from recentf.el |
| 23320 | 23499 | ||
| 23321 | (defvar recentf-mode nil "\ | 23500 | (defvar recentf-mode nil "\ |
| @@ -23328,12 +23507,14 @@ or call the function `recentf-mode'.") | |||
| 23328 | (custom-autoload 'recentf-mode "recentf" nil) | 23507 | (custom-autoload 'recentf-mode "recentf" nil) |
| 23329 | 23508 | ||
| 23330 | (autoload 'recentf-mode "recentf" "\ | 23509 | (autoload 'recentf-mode "recentf" "\ |
| 23331 | Toggle recentf mode. | 23510 | Toggle \"Open Recent\" menu (Recentf mode). |
| 23332 | With prefix argument ARG, turn on if positive, otherwise off. | 23511 | With a prefix argument ARG, enable Recentf mode if ARG is |
| 23333 | Returns non-nil if the new state is enabled. | 23512 | positive, and disable it otherwise. If called from Lisp, enable |
| 23513 | Recentf mode if ARG is omitted or nil. | ||
| 23334 | 23514 | ||
| 23335 | When recentf mode is enabled, it maintains a menu for visiting files | 23515 | When Recentf mode is enabled, a \"Open Recent\" submenu is |
| 23336 | that were operated on recently. | 23516 | displayed in the \"File\" menu, containing a list of files that |
| 23517 | were operated on recently. | ||
| 23337 | 23518 | ||
| 23338 | \(fn &optional ARG)" t nil) | 23519 | \(fn &optional ARG)" t nil) |
| 23339 | 23520 | ||
| @@ -23343,7 +23524,7 @@ that were operated on recently. | |||
| 23343 | ;;;;;; string-rectangle delete-whitespace-rectangle open-rectangle | 23524 | ;;;;;; string-rectangle delete-whitespace-rectangle open-rectangle |
| 23344 | ;;;;;; insert-rectangle yank-rectangle kill-rectangle extract-rectangle | 23525 | ;;;;;; insert-rectangle yank-rectangle kill-rectangle extract-rectangle |
| 23345 | ;;;;;; delete-extract-rectangle delete-rectangle) "rect" "rect.el" | 23526 | ;;;;;; delete-extract-rectangle delete-rectangle) "rect" "rect.el" |
| 23346 | ;;;;;; (19999 41597)) | 23527 | ;;;;;; (20119 34052)) |
| 23347 | ;;; Generated autoloads from rect.el | 23528 | ;;; Generated autoloads from rect.el |
| 23348 | (define-key ctl-x-r-map "c" 'clear-rectangle) | 23529 | (define-key ctl-x-r-map "c" 'clear-rectangle) |
| 23349 | (define-key ctl-x-r-map "k" 'kill-rectangle) | 23530 | (define-key ctl-x-r-map "k" 'kill-rectangle) |
| @@ -23479,24 +23660,29 @@ with a prefix argument, prompt for START-AT and FORMAT. | |||
| 23479 | 23660 | ||
| 23480 | ;;;*** | 23661 | ;;;*** |
| 23481 | 23662 | ||
| 23482 | ;;;### (autoloads (refill-mode) "refill" "textmodes/refill.el" (19845 | 23663 | ;;;### (autoloads (refill-mode) "refill" "textmodes/refill.el" (20127 |
| 23483 | ;;;;;; 45374)) | 23664 | ;;;;;; 24416)) |
| 23484 | ;;; Generated autoloads from textmodes/refill.el | 23665 | ;;; Generated autoloads from textmodes/refill.el |
| 23485 | 23666 | ||
| 23486 | (autoload 'refill-mode "refill" "\ | 23667 | (autoload 'refill-mode "refill" "\ |
| 23487 | Toggle Refill minor mode. | 23668 | Toggle automatic refilling (Refill mode). |
| 23488 | With prefix arg, turn Refill mode on if arg is positive, otherwise turn it off. | 23669 | With a prefix argument ARG, enable Refill mode if ARG is |
| 23670 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 23671 | the mode if ARG is omitted or nil. | ||
| 23489 | 23672 | ||
| 23490 | When Refill mode is on, the current paragraph will be formatted when | 23673 | Refill mode is a buffer-local minor mode. When enabled, the |
| 23491 | changes are made within it. Self-inserting characters only cause | 23674 | current paragraph is refilled as you edit. Self-inserting |
| 23492 | refilling if they would cause auto-filling. | 23675 | characters only cause refilling if they would cause |
| 23676 | auto-filling. | ||
| 23677 | |||
| 23678 | For true \"word wrap\" behavior, use `visual-line-mode' instead. | ||
| 23493 | 23679 | ||
| 23494 | \(fn &optional ARG)" t nil) | 23680 | \(fn &optional ARG)" t nil) |
| 23495 | 23681 | ||
| 23496 | ;;;*** | 23682 | ;;;*** |
| 23497 | 23683 | ||
| 23498 | ;;;### (autoloads (reftex-reset-scanning-information reftex-mode | 23684 | ;;;### (autoloads (reftex-reset-scanning-information reftex-mode |
| 23499 | ;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (19845 45374)) | 23685 | ;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (20136 50092)) |
| 23500 | ;;; Generated autoloads from textmodes/reftex.el | 23686 | ;;; Generated autoloads from textmodes/reftex.el |
| 23501 | 23687 | ||
| 23502 | (autoload 'turn-on-reftex "reftex" "\ | 23688 | (autoload 'turn-on-reftex "reftex" "\ |
| @@ -23505,7 +23691,13 @@ Turn on RefTeX mode. | |||
| 23505 | \(fn)" nil nil) | 23691 | \(fn)" nil nil) |
| 23506 | 23692 | ||
| 23507 | (autoload 'reftex-mode "reftex" "\ | 23693 | (autoload 'reftex-mode "reftex" "\ |
| 23508 | Minor mode with distinct support for \\label, \\ref and \\cite in LaTeX. | 23694 | Toggle RefTeX mode. |
| 23695 | With a prefix argument ARG, enable RefTeX mode if ARG is | ||
| 23696 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 23697 | the mode if ARG is omitted or nil. | ||
| 23698 | |||
| 23699 | RefTeX mode is a buffer-local minor mode with distinct support | ||
| 23700 | for \\label, \\ref and \\cite in LaTeX. | ||
| 23509 | 23701 | ||
| 23510 | \\<reftex-mode-map>A Table of Contents of the entire (multifile) document with browsing | 23702 | \\<reftex-mode-map>A Table of Contents of the entire (multifile) document with browsing |
| 23511 | capabilities is available with `\\[reftex-toc]'. | 23703 | capabilities is available with `\\[reftex-toc]'. |
| @@ -23546,7 +23738,7 @@ This enforces rescanning the buffer on next use. | |||
| 23546 | ;;;*** | 23738 | ;;;*** |
| 23547 | 23739 | ||
| 23548 | ;;;### (autoloads (reftex-citation) "reftex-cite" "textmodes/reftex-cite.el" | 23740 | ;;;### (autoloads (reftex-citation) "reftex-cite" "textmodes/reftex-cite.el" |
| 23549 | ;;;;;; (19845 45374)) | 23741 | ;;;;;; (20119 34052)) |
| 23550 | ;;; Generated autoloads from textmodes/reftex-cite.el | 23742 | ;;; Generated autoloads from textmodes/reftex-cite.el |
| 23551 | 23743 | ||
| 23552 | (autoload 'reftex-citation "reftex-cite" "\ | 23744 | (autoload 'reftex-citation "reftex-cite" "\ |
| @@ -23576,7 +23768,7 @@ While entering the regexp, completion on knows citation keys is possible. | |||
| 23576 | ;;;*** | 23768 | ;;;*** |
| 23577 | 23769 | ||
| 23578 | ;;;### (autoloads (reftex-isearch-minor-mode) "reftex-global" "textmodes/reftex-global.el" | 23770 | ;;;### (autoloads (reftex-isearch-minor-mode) "reftex-global" "textmodes/reftex-global.el" |
| 23579 | ;;;;;; (19845 45374)) | 23771 | ;;;;;; (20119 34052)) |
| 23580 | ;;; Generated autoloads from textmodes/reftex-global.el | 23772 | ;;; Generated autoloads from textmodes/reftex-global.el |
| 23581 | 23773 | ||
| 23582 | (autoload 'reftex-isearch-minor-mode "reftex-global" "\ | 23774 | (autoload 'reftex-isearch-minor-mode "reftex-global" "\ |
| @@ -23593,7 +23785,7 @@ With no argument, this command toggles | |||
| 23593 | ;;;*** | 23785 | ;;;*** |
| 23594 | 23786 | ||
| 23595 | ;;;### (autoloads (reftex-index-phrases-mode) "reftex-index" "textmodes/reftex-index.el" | 23787 | ;;;### (autoloads (reftex-index-phrases-mode) "reftex-index" "textmodes/reftex-index.el" |
| 23596 | ;;;;;; (19845 45374)) | 23788 | ;;;;;; (20119 34052)) |
| 23597 | ;;; Generated autoloads from textmodes/reftex-index.el | 23789 | ;;; Generated autoloads from textmodes/reftex-index.el |
| 23598 | 23790 | ||
| 23599 | (autoload 'reftex-index-phrases-mode "reftex-index" "\ | 23791 | (autoload 'reftex-index-phrases-mode "reftex-index" "\ |
| @@ -23626,7 +23818,7 @@ Here are all local bindings. | |||
| 23626 | ;;;*** | 23818 | ;;;*** |
| 23627 | 23819 | ||
| 23628 | ;;;### (autoloads (reftex-all-document-files) "reftex-parse" "textmodes/reftex-parse.el" | 23820 | ;;;### (autoloads (reftex-all-document-files) "reftex-parse" "textmodes/reftex-parse.el" |
| 23629 | ;;;;;; (19980 19797)) | 23821 | ;;;;;; (20119 34052)) |
| 23630 | ;;; Generated autoloads from textmodes/reftex-parse.el | 23822 | ;;; Generated autoloads from textmodes/reftex-parse.el |
| 23631 | 23823 | ||
| 23632 | (autoload 'reftex-all-document-files "reftex-parse" "\ | 23824 | (autoload 'reftex-all-document-files "reftex-parse" "\ |
| @@ -23638,8 +23830,8 @@ of master file. | |||
| 23638 | 23830 | ||
| 23639 | ;;;*** | 23831 | ;;;*** |
| 23640 | 23832 | ||
| 23641 | ;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (19845 | 23833 | ;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (20119 |
| 23642 | ;;;;;; 45374)) | 23834 | ;;;;;; 34052)) |
| 23643 | ;;; Generated autoloads from textmodes/reftex-vars.el | 23835 | ;;; Generated autoloads from textmodes/reftex-vars.el |
| 23644 | (put 'reftex-vref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) | 23836 | (put 'reftex-vref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) |
| 23645 | (put 'reftex-fref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) | 23837 | (put 'reftex-fref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) |
| @@ -23649,7 +23841,7 @@ of master file. | |||
| 23649 | ;;;*** | 23841 | ;;;*** |
| 23650 | 23842 | ||
| 23651 | ;;;### (autoloads (regexp-opt-depth regexp-opt) "regexp-opt" "emacs-lisp/regexp-opt.el" | 23843 | ;;;### (autoloads (regexp-opt-depth regexp-opt) "regexp-opt" "emacs-lisp/regexp-opt.el" |
| 23652 | ;;;;;; (19845 45374)) | 23844 | ;;;;;; (20119 34052)) |
| 23653 | ;;; Generated autoloads from emacs-lisp/regexp-opt.el | 23845 | ;;; Generated autoloads from emacs-lisp/regexp-opt.el |
| 23654 | 23846 | ||
| 23655 | (autoload 'regexp-opt "regexp-opt" "\ | 23847 | (autoload 'regexp-opt "regexp-opt" "\ |
| @@ -23680,7 +23872,7 @@ This means the number of non-shy regexp grouping constructs | |||
| 23680 | 23872 | ||
| 23681 | ;;;### (autoloads (remember-diary-extract-entries remember-clipboard | 23873 | ;;;### (autoloads (remember-diary-extract-entries remember-clipboard |
| 23682 | ;;;;;; remember-other-frame remember) "remember" "textmodes/remember.el" | 23874 | ;;;;;; remember-other-frame remember) "remember" "textmodes/remember.el" |
| 23683 | ;;;;;; (19845 45374)) | 23875 | ;;;;;; (20119 34052)) |
| 23684 | ;;; Generated autoloads from textmodes/remember.el | 23876 | ;;; Generated autoloads from textmodes/remember.el |
| 23685 | 23877 | ||
| 23686 | (autoload 'remember "remember" "\ | 23878 | (autoload 'remember "remember" "\ |
| @@ -23711,7 +23903,7 @@ Extract diary entries from the region. | |||
| 23711 | 23903 | ||
| 23712 | ;;;*** | 23904 | ;;;*** |
| 23713 | 23905 | ||
| 23714 | ;;;### (autoloads (repeat) "repeat" "repeat.el" (19951 19539)) | 23906 | ;;;### (autoloads (repeat) "repeat" "repeat.el" (20119 34052)) |
| 23715 | ;;; Generated autoloads from repeat.el | 23907 | ;;; Generated autoloads from repeat.el |
| 23716 | 23908 | ||
| 23717 | (autoload 'repeat "repeat" "\ | 23909 | (autoload 'repeat "repeat" "\ |
| @@ -23734,7 +23926,7 @@ recently executed command not bound to an input event\". | |||
| 23734 | ;;;*** | 23926 | ;;;*** |
| 23735 | 23927 | ||
| 23736 | ;;;### (autoloads (reporter-submit-bug-report) "reporter" "mail/reporter.el" | 23928 | ;;;### (autoloads (reporter-submit-bug-report) "reporter" "mail/reporter.el" |
| 23737 | ;;;;;; (20076 35541)) | 23929 | ;;;;;; (20119 34052)) |
| 23738 | ;;; Generated autoloads from mail/reporter.el | 23930 | ;;; Generated autoloads from mail/reporter.el |
| 23739 | 23931 | ||
| 23740 | (autoload 'reporter-submit-bug-report "reporter" "\ | 23932 | (autoload 'reporter-submit-bug-report "reporter" "\ |
| @@ -23766,7 +23958,7 @@ mail-sending package is used for editing and sending the message. | |||
| 23766 | ;;;*** | 23958 | ;;;*** |
| 23767 | 23959 | ||
| 23768 | ;;;### (autoloads (reposition-window) "reposition" "reposition.el" | 23960 | ;;;### (autoloads (reposition-window) "reposition" "reposition.el" |
| 23769 | ;;;;;; (19845 45374)) | 23961 | ;;;;;; (20119 34052)) |
| 23770 | ;;; Generated autoloads from reposition.el | 23962 | ;;; Generated autoloads from reposition.el |
| 23771 | 23963 | ||
| 23772 | (autoload 'reposition-window "reposition" "\ | 23964 | (autoload 'reposition-window "reposition" "\ |
| @@ -23793,16 +23985,17 @@ first comment line visible (if point is in a comment). | |||
| 23793 | ;;;*** | 23985 | ;;;*** |
| 23794 | 23986 | ||
| 23795 | ;;;### (autoloads (global-reveal-mode reveal-mode) "reveal" "reveal.el" | 23987 | ;;;### (autoloads (global-reveal-mode reveal-mode) "reveal" "reveal.el" |
| 23796 | ;;;;;; (19863 8742)) | 23988 | ;;;;;; (20126 50360)) |
| 23797 | ;;; Generated autoloads from reveal.el | 23989 | ;;; Generated autoloads from reveal.el |
| 23798 | 23990 | ||
| 23799 | (autoload 'reveal-mode "reveal" "\ | 23991 | (autoload 'reveal-mode "reveal" "\ |
| 23800 | Toggle Reveal mode on or off. | 23992 | Toggle decloaking of invisible text near point (Reveal mode). |
| 23801 | Reveal mode renders invisible text around point visible again. | 23993 | With a prefix argument ARG, enable Reveal mode if ARG is |
| 23994 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 23995 | Reveal mode if ARG is omitted or nil. | ||
| 23802 | 23996 | ||
| 23803 | Interactively, with no prefix argument, toggle the mode. | 23997 | Reveral mode is a buffer-local minor mode. When enabled, it |
| 23804 | With universal prefix ARG (or if ARG is nil) turn mode on. | 23998 | reveals invisible text around point. |
| 23805 | With zero or negative ARG turn mode off. | ||
| 23806 | 23999 | ||
| 23807 | \(fn &optional ARG)" t nil) | 24000 | \(fn &optional ARG)" t nil) |
| 23808 | 24001 | ||
| @@ -23816,19 +24009,19 @@ or call the function `global-reveal-mode'.") | |||
| 23816 | (custom-autoload 'global-reveal-mode "reveal" nil) | 24009 | (custom-autoload 'global-reveal-mode "reveal" nil) |
| 23817 | 24010 | ||
| 23818 | (autoload 'global-reveal-mode "reveal" "\ | 24011 | (autoload 'global-reveal-mode "reveal" "\ |
| 23819 | Toggle Reveal mode in all buffers on or off. | 24012 | Toggle Reveal mode in all buffers (Global Reveal mode). |
| 23820 | Reveal mode renders invisible text around point visible again. | 24013 | Reveal mode renders invisible text around point visible again. |
| 23821 | 24014 | ||
| 23822 | Interactively, with no prefix argument, toggle the mode. | 24015 | With a prefix argument ARG, enable Global Reveal mode if ARG is |
| 23823 | With universal prefix ARG (or if ARG is nil) turn mode on. | 24016 | positive, and disable it otherwise. If called from Lisp, enable |
| 23824 | With zero or negative ARG turn mode off. | 24017 | the mode if ARG is omitted or nil. |
| 23825 | 24018 | ||
| 23826 | \(fn &optional ARG)" t nil) | 24019 | \(fn &optional ARG)" t nil) |
| 23827 | 24020 | ||
| 23828 | ;;;*** | 24021 | ;;;*** |
| 23829 | 24022 | ||
| 23830 | ;;;### (autoloads (make-ring ring-p) "ring" "emacs-lisp/ring.el" | 24023 | ;;;### (autoloads (make-ring ring-p) "ring" "emacs-lisp/ring.el" |
| 23831 | ;;;;;; (19845 45374)) | 24024 | ;;;;;; (20119 34052)) |
| 23832 | ;;; Generated autoloads from emacs-lisp/ring.el | 24025 | ;;; Generated autoloads from emacs-lisp/ring.el |
| 23833 | 24026 | ||
| 23834 | (autoload 'ring-p "ring" "\ | 24027 | (autoload 'ring-p "ring" "\ |
| @@ -23843,7 +24036,7 @@ Make a ring that can contain SIZE elements. | |||
| 23843 | 24036 | ||
| 23844 | ;;;*** | 24037 | ;;;*** |
| 23845 | 24038 | ||
| 23846 | ;;;### (autoloads (rlogin) "rlogin" "net/rlogin.el" (20077 56412)) | 24039 | ;;;### (autoloads (rlogin) "rlogin" "net/rlogin.el" (20119 34052)) |
| 23847 | ;;; Generated autoloads from net/rlogin.el | 24040 | ;;; Generated autoloads from net/rlogin.el |
| 23848 | 24041 | ||
| 23849 | (autoload 'rlogin "rlogin" "\ | 24042 | (autoload 'rlogin "rlogin" "\ |
| @@ -23892,7 +24085,7 @@ variable. | |||
| 23892 | ;;;;;; rmail-secondary-file-directory rmail-primary-inbox-list rmail-highlighted-headers | 24085 | ;;;;;; rmail-secondary-file-directory rmail-primary-inbox-list rmail-highlighted-headers |
| 23893 | ;;;;;; rmail-retry-ignored-headers rmail-displayed-headers rmail-ignored-headers | 24086 | ;;;;;; rmail-retry-ignored-headers rmail-displayed-headers rmail-ignored-headers |
| 23894 | ;;;;;; rmail-user-mail-address-regexp rmail-movemail-variant-p) | 24087 | ;;;;;; rmail-user-mail-address-regexp rmail-movemail-variant-p) |
| 23895 | ;;;;;; "rmail" "mail/rmail.el" (20093 44623)) | 24088 | ;;;;;; "rmail" "mail/rmail.el" (20138 48832)) |
| 23896 | ;;; Generated autoloads from mail/rmail.el | 24089 | ;;; Generated autoloads from mail/rmail.el |
| 23897 | 24090 | ||
| 23898 | (autoload 'rmail-movemail-variant-p "rmail" "\ | 24091 | (autoload 'rmail-movemail-variant-p "rmail" "\ |
| @@ -24076,7 +24269,7 @@ Set PASSWORD to be used for retrieving mail from a POP or IMAP server. | |||
| 24076 | ;;;*** | 24269 | ;;;*** |
| 24077 | 24270 | ||
| 24078 | ;;;### (autoloads (rmail-output-body-to-file rmail-output-as-seen | 24271 | ;;;### (autoloads (rmail-output-body-to-file rmail-output-as-seen |
| 24079 | ;;;;;; rmail-output) "rmailout" "mail/rmailout.el" (19845 45374)) | 24272 | ;;;;;; rmail-output) "rmailout" "mail/rmailout.el" (20119 34052)) |
| 24080 | ;;; Generated autoloads from mail/rmailout.el | 24273 | ;;; Generated autoloads from mail/rmailout.el |
| 24081 | (put 'rmail-output-file-alist 'risky-local-variable t) | 24274 | (put 'rmail-output-file-alist 'risky-local-variable t) |
| 24082 | 24275 | ||
| @@ -24141,7 +24334,7 @@ than appending to it. Deletes the message after writing if | |||
| 24141 | ;;;*** | 24334 | ;;;*** |
| 24142 | 24335 | ||
| 24143 | ;;;### (autoloads (rng-c-load-schema) "rng-cmpct" "nxml/rng-cmpct.el" | 24336 | ;;;### (autoloads (rng-c-load-schema) "rng-cmpct" "nxml/rng-cmpct.el" |
| 24144 | ;;;;;; (19845 45374)) | 24337 | ;;;;;; (20119 34052)) |
| 24145 | ;;; Generated autoloads from nxml/rng-cmpct.el | 24338 | ;;; Generated autoloads from nxml/rng-cmpct.el |
| 24146 | 24339 | ||
| 24147 | (autoload 'rng-c-load-schema "rng-cmpct" "\ | 24340 | (autoload 'rng-c-load-schema "rng-cmpct" "\ |
| @@ -24153,7 +24346,7 @@ Return a pattern. | |||
| 24153 | ;;;*** | 24346 | ;;;*** |
| 24154 | 24347 | ||
| 24155 | ;;;### (autoloads (rng-nxml-mode-init) "rng-nxml" "nxml/rng-nxml.el" | 24348 | ;;;### (autoloads (rng-nxml-mode-init) "rng-nxml" "nxml/rng-nxml.el" |
| 24156 | ;;;;;; (19845 45374)) | 24349 | ;;;;;; (20119 34052)) |
| 24157 | ;;; Generated autoloads from nxml/rng-nxml.el | 24350 | ;;; Generated autoloads from nxml/rng-nxml.el |
| 24158 | 24351 | ||
| 24159 | (autoload 'rng-nxml-mode-init "rng-nxml" "\ | 24352 | (autoload 'rng-nxml-mode-init "rng-nxml" "\ |
| @@ -24166,7 +24359,7 @@ Validation will be enabled if `rng-nxml-auto-validate-flag' is non-nil. | |||
| 24166 | ;;;*** | 24359 | ;;;*** |
| 24167 | 24360 | ||
| 24168 | ;;;### (autoloads (rng-validate-mode) "rng-valid" "nxml/rng-valid.el" | 24361 | ;;;### (autoloads (rng-validate-mode) "rng-valid" "nxml/rng-valid.el" |
| 24169 | ;;;;;; (19845 45374)) | 24362 | ;;;;;; (20119 34052)) |
| 24170 | ;;; Generated autoloads from nxml/rng-valid.el | 24363 | ;;; Generated autoloads from nxml/rng-valid.el |
| 24171 | 24364 | ||
| 24172 | (autoload 'rng-validate-mode "rng-valid" "\ | 24365 | (autoload 'rng-validate-mode "rng-valid" "\ |
| @@ -24196,8 +24389,8 @@ to use for finding the schema. | |||
| 24196 | 24389 | ||
| 24197 | ;;;*** | 24390 | ;;;*** |
| 24198 | 24391 | ||
| 24199 | ;;;### (autoloads (rng-xsd-compile) "rng-xsd" "nxml/rng-xsd.el" (19930 | 24392 | ;;;### (autoloads (rng-xsd-compile) "rng-xsd" "nxml/rng-xsd.el" (20119 |
| 24200 | ;;;;;; 13389)) | 24393 | ;;;;;; 34052)) |
| 24201 | ;;; Generated autoloads from nxml/rng-xsd.el | 24394 | ;;; Generated autoloads from nxml/rng-xsd.el |
| 24202 | 24395 | ||
| 24203 | (put 'http://www\.w3\.org/2001/XMLSchema-datatypes 'rng-dt-compile 'rng-xsd-compile) | 24396 | (put 'http://www\.w3\.org/2001/XMLSchema-datatypes 'rng-dt-compile 'rng-xsd-compile) |
| @@ -24225,7 +24418,7 @@ must be equal. | |||
| 24225 | ;;;*** | 24418 | ;;;*** |
| 24226 | 24419 | ||
| 24227 | ;;;### (autoloads (robin-use-package robin-modify-package robin-define-package) | 24420 | ;;;### (autoloads (robin-use-package robin-modify-package robin-define-package) |
| 24228 | ;;;;;; "robin" "international/robin.el" (19845 45374)) | 24421 | ;;;;;; "robin" "international/robin.el" (20119 34052)) |
| 24229 | ;;; Generated autoloads from international/robin.el | 24422 | ;;; Generated autoloads from international/robin.el |
| 24230 | 24423 | ||
| 24231 | (autoload 'robin-define-package "robin" "\ | 24424 | (autoload 'robin-define-package "robin" "\ |
| @@ -24258,7 +24451,7 @@ Start using robin package NAME, which is a string. | |||
| 24258 | ;;;*** | 24451 | ;;;*** |
| 24259 | 24452 | ||
| 24260 | ;;;### (autoloads (toggle-rot13-mode rot13-other-window rot13-region | 24453 | ;;;### (autoloads (toggle-rot13-mode rot13-other-window rot13-region |
| 24261 | ;;;;;; rot13-string rot13) "rot13" "rot13.el" (19845 45374)) | 24454 | ;;;;;; rot13-string rot13) "rot13" "rot13.el" (20119 34052)) |
| 24262 | ;;; Generated autoloads from rot13.el | 24455 | ;;; Generated autoloads from rot13.el |
| 24263 | 24456 | ||
| 24264 | (autoload 'rot13 "rot13" "\ | 24457 | (autoload 'rot13 "rot13" "\ |
| @@ -24296,7 +24489,7 @@ Toggle the use of ROT13 encoding for the current window. | |||
| 24296 | ;;;*** | 24489 | ;;;*** |
| 24297 | 24490 | ||
| 24298 | ;;;### (autoloads (rst-minor-mode rst-mode) "rst" "textmodes/rst.el" | 24491 | ;;;### (autoloads (rst-minor-mode rst-mode) "rst" "textmodes/rst.el" |
| 24299 | ;;;;;; (19986 58615)) | 24492 | ;;;;;; (20127 24234)) |
| 24300 | ;;; Generated autoloads from textmodes/rst.el | 24493 | ;;; Generated autoloads from textmodes/rst.el |
| 24301 | (add-to-list 'auto-mode-alist (purecopy '("\\.re?st\\'" . rst-mode))) | 24494 | (add-to-list 'auto-mode-alist (purecopy '("\\.re?st\\'" . rst-mode))) |
| 24302 | 24495 | ||
| @@ -24319,11 +24512,10 @@ font-locking of blocks. | |||
| 24319 | \(fn)" t nil) | 24512 | \(fn)" t nil) |
| 24320 | 24513 | ||
| 24321 | (autoload 'rst-minor-mode "rst" "\ | 24514 | (autoload 'rst-minor-mode "rst" "\ |
| 24322 | ReST Minor Mode. | ||
| 24323 | Toggle ReST minor mode. | 24515 | Toggle ReST minor mode. |
| 24324 | With no argument, this command toggles the mode. | 24516 | With a prefix argument ARG, enable ReST minor mode if ARG is |
| 24325 | Non-null prefix argument turns on the mode. | 24517 | positive, and disable it otherwise. If called from Lisp, enable |
| 24326 | Null prefix argument turns off the mode. | 24518 | the mode if ARG is omitted or nil. |
| 24327 | 24519 | ||
| 24328 | When ReST minor mode is enabled, the ReST mode keybindings | 24520 | When ReST minor mode is enabled, the ReST mode keybindings |
| 24329 | are installed on top of the major mode bindings. Use this | 24521 | are installed on top of the major mode bindings. Use this |
| @@ -24334,7 +24526,7 @@ for modes derived from Text mode, like Mail mode. | |||
| 24334 | ;;;*** | 24526 | ;;;*** |
| 24335 | 24527 | ||
| 24336 | ;;;### (autoloads (ruby-mode) "ruby-mode" "progmodes/ruby-mode.el" | 24528 | ;;;### (autoloads (ruby-mode) "ruby-mode" "progmodes/ruby-mode.el" |
| 24337 | ;;;;;; (19845 45374)) | 24529 | ;;;;;; (20119 34052)) |
| 24338 | ;;; Generated autoloads from progmodes/ruby-mode.el | 24530 | ;;; Generated autoloads from progmodes/ruby-mode.el |
| 24339 | 24531 | ||
| 24340 | (autoload 'ruby-mode "ruby-mode" "\ | 24532 | (autoload 'ruby-mode "ruby-mode" "\ |
| @@ -24355,8 +24547,8 @@ The variable `ruby-indent-level' controls the amount of indentation. | |||
| 24355 | 24547 | ||
| 24356 | ;;;*** | 24548 | ;;;*** |
| 24357 | 24549 | ||
| 24358 | ;;;### (autoloads (ruler-mode) "ruler-mode" "ruler-mode.el" (19845 | 24550 | ;;;### (autoloads (ruler-mode) "ruler-mode" "ruler-mode.el" (20126 |
| 24359 | ;;;;;; 45374)) | 24551 | ;;;;;; 50390)) |
| 24360 | ;;; Generated autoloads from ruler-mode.el | 24552 | ;;; Generated autoloads from ruler-mode.el |
| 24361 | 24553 | ||
| 24362 | (defvar ruler-mode nil "\ | 24554 | (defvar ruler-mode nil "\ |
| @@ -24364,15 +24556,17 @@ Non-nil if Ruler mode is enabled. | |||
| 24364 | Use the command `ruler-mode' to change this variable.") | 24556 | Use the command `ruler-mode' to change this variable.") |
| 24365 | 24557 | ||
| 24366 | (autoload 'ruler-mode "ruler-mode" "\ | 24558 | (autoload 'ruler-mode "ruler-mode" "\ |
| 24367 | Toggle Ruler mode. | 24559 | Toggle display of ruler in header line (Ruler mode). |
| 24368 | In Ruler mode, Emacs displays a ruler in the header line. | 24560 | With a prefix argument ARG, enable Ruler mode if ARG is positive, |
| 24561 | and disable it otherwise. If called from Lisp, enable the mode | ||
| 24562 | if ARG is omitted or nil. | ||
| 24369 | 24563 | ||
| 24370 | \(fn &optional ARG)" t nil) | 24564 | \(fn &optional ARG)" t nil) |
| 24371 | 24565 | ||
| 24372 | ;;;*** | 24566 | ;;;*** |
| 24373 | 24567 | ||
| 24374 | ;;;### (autoloads (rx rx-to-string) "rx" "emacs-lisp/rx.el" (19965 | 24568 | ;;;### (autoloads (rx rx-to-string) "rx" "emacs-lisp/rx.el" (20119 |
| 24375 | ;;;;;; 52428)) | 24569 | ;;;;;; 34052)) |
| 24376 | ;;; Generated autoloads from emacs-lisp/rx.el | 24570 | ;;; Generated autoloads from emacs-lisp/rx.el |
| 24377 | 24571 | ||
| 24378 | (autoload 'rx-to-string "rx" "\ | 24572 | (autoload 'rx-to-string "rx" "\ |
| @@ -24683,8 +24877,8 @@ enclosed in `(and ...)'. | |||
| 24683 | 24877 | ||
| 24684 | ;;;*** | 24878 | ;;;*** |
| 24685 | 24879 | ||
| 24686 | ;;;### (autoloads (savehist-mode) "savehist" "savehist.el" (19886 | 24880 | ;;;### (autoloads (savehist-mode) "savehist" "savehist.el" (20126 |
| 24687 | ;;;;;; 45771)) | 24881 | ;;;;;; 50398)) |
| 24688 | ;;; Generated autoloads from savehist.el | 24882 | ;;; Generated autoloads from savehist.el |
| 24689 | 24883 | ||
| 24690 | (defvar savehist-mode nil "\ | 24884 | (defvar savehist-mode nil "\ |
| @@ -24697,22 +24891,26 @@ or call the function `savehist-mode'.") | |||
| 24697 | (custom-autoload 'savehist-mode "savehist" nil) | 24891 | (custom-autoload 'savehist-mode "savehist" nil) |
| 24698 | 24892 | ||
| 24699 | (autoload 'savehist-mode "savehist" "\ | 24893 | (autoload 'savehist-mode "savehist" "\ |
| 24700 | Toggle savehist-mode. | 24894 | Toggle saving of minibuffer history (Savehist mode). |
| 24701 | Positive ARG turns on `savehist-mode'. When on, savehist-mode causes | 24895 | With a prefix argument ARG, enable Savehist mode if ARG is |
| 24702 | minibuffer history to be saved periodically and when exiting Emacs. | 24896 | positive, and disable it otherwise. If called from Lisp, enable |
| 24703 | When turned on for the first time in an Emacs session, it causes the | 24897 | the mode if ARG is omitted or nil. |
| 24704 | previous minibuffer history to be loaded from `savehist-file'. | 24898 | |
| 24899 | When Savehist mode is enabled, minibuffer history is saved | ||
| 24900 | periodically and when exiting Emacs. When Savehist mode is | ||
| 24901 | enabled for the first time in an Emacs session, it loads the | ||
| 24902 | previous minibuffer history from `savehist-file'. | ||
| 24705 | 24903 | ||
| 24706 | This mode should normally be turned on from your Emacs init file. | 24904 | This mode should normally be turned on from your Emacs init file. |
| 24707 | Calling it at any other time replaces your current minibuffer histories, | 24905 | Calling it at any other time replaces your current minibuffer |
| 24708 | which is probably undesirable. | 24906 | histories, which is probably undesirable. |
| 24709 | 24907 | ||
| 24710 | \(fn &optional ARG)" t nil) | 24908 | \(fn &optional ARG)" t nil) |
| 24711 | 24909 | ||
| 24712 | ;;;*** | 24910 | ;;;*** |
| 24713 | 24911 | ||
| 24714 | ;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el" | 24912 | ;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el" |
| 24715 | ;;;;;; (20079 39251)) | 24913 | ;;;;;; (20119 34052)) |
| 24716 | ;;; Generated autoloads from progmodes/scheme.el | 24914 | ;;; Generated autoloads from progmodes/scheme.el |
| 24717 | 24915 | ||
| 24718 | (autoload 'scheme-mode "scheme" "\ | 24916 | (autoload 'scheme-mode "scheme" "\ |
| @@ -24754,7 +24952,7 @@ that variable's value is a string. | |||
| 24754 | ;;;*** | 24952 | ;;;*** |
| 24755 | 24953 | ||
| 24756 | ;;;### (autoloads (gnus-score-mode) "score-mode" "gnus/score-mode.el" | 24954 | ;;;### (autoloads (gnus-score-mode) "score-mode" "gnus/score-mode.el" |
| 24757 | ;;;;;; (19845 45374)) | 24955 | ;;;;;; (20119 34052)) |
| 24758 | ;;; Generated autoloads from gnus/score-mode.el | 24956 | ;;; Generated autoloads from gnus/score-mode.el |
| 24759 | 24957 | ||
| 24760 | (autoload 'gnus-score-mode "score-mode" "\ | 24958 | (autoload 'gnus-score-mode "score-mode" "\ |
| @@ -24768,7 +24966,7 @@ This mode is an extended emacs-lisp mode. | |||
| 24768 | ;;;*** | 24966 | ;;;*** |
| 24769 | 24967 | ||
| 24770 | ;;;### (autoloads (scroll-all-mode) "scroll-all" "scroll-all.el" | 24968 | ;;;### (autoloads (scroll-all-mode) "scroll-all" "scroll-all.el" |
| 24771 | ;;;;;; (19845 45374)) | 24969 | ;;;;;; (20126 50406)) |
| 24772 | ;;; Generated autoloads from scroll-all.el | 24970 | ;;; Generated autoloads from scroll-all.el |
| 24773 | 24971 | ||
| 24774 | (defvar scroll-all-mode nil "\ | 24972 | (defvar scroll-all-mode nil "\ |
| @@ -24781,17 +24979,20 @@ or call the function `scroll-all-mode'.") | |||
| 24781 | (custom-autoload 'scroll-all-mode "scroll-all" nil) | 24979 | (custom-autoload 'scroll-all-mode "scroll-all" nil) |
| 24782 | 24980 | ||
| 24783 | (autoload 'scroll-all-mode "scroll-all" "\ | 24981 | (autoload 'scroll-all-mode "scroll-all" "\ |
| 24784 | Toggle Scroll-All minor mode. | 24982 | Toggle shared scrolling in same-frame windows (Scroll-All mode). |
| 24785 | With ARG, turn Scroll-All minor mode on if ARG is positive, off otherwise. | 24983 | With a prefix argument ARG, enable Scroll-All mode if ARG is |
| 24786 | When Scroll-All mode is on, scrolling commands entered in one window | 24984 | positive, and disable it otherwise. If called from Lisp, enable |
| 24787 | apply to all visible windows in the same frame. | 24985 | the mode if ARG is omitted or nil. |
| 24986 | |||
| 24987 | When Scroll-All mode is enabled, scrolling commands invoked in | ||
| 24988 | one window apply to all visible windows in the same frame. | ||
| 24788 | 24989 | ||
| 24789 | \(fn &optional ARG)" t nil) | 24990 | \(fn &optional ARG)" t nil) |
| 24790 | 24991 | ||
| 24791 | ;;;*** | 24992 | ;;;*** |
| 24792 | 24993 | ||
| 24793 | ;;;### (autoloads (scroll-lock-mode) "scroll-lock" "scroll-lock.el" | 24994 | ;;;### (autoloads (scroll-lock-mode) "scroll-lock" "scroll-lock.el" |
| 24794 | ;;;;;; (19845 45374)) | 24995 | ;;;;;; (20126 43719)) |
| 24795 | ;;; Generated autoloads from scroll-lock.el | 24996 | ;;; Generated autoloads from scroll-lock.el |
| 24796 | 24997 | ||
| 24797 | (autoload 'scroll-lock-mode "scroll-lock" "\ | 24998 | (autoload 'scroll-lock-mode "scroll-lock" "\ |
| @@ -24805,7 +25006,7 @@ during scrolling. | |||
| 24805 | 25006 | ||
| 24806 | ;;;*** | 25007 | ;;;*** |
| 24807 | 25008 | ||
| 24808 | ;;;### (autoloads nil "secrets" "net/secrets.el" (19845 45374)) | 25009 | ;;;### (autoloads nil "secrets" "net/secrets.el" (20119 34052)) |
| 24809 | ;;; Generated autoloads from net/secrets.el | 25010 | ;;; Generated autoloads from net/secrets.el |
| 24810 | (when (featurep 'dbusbind) | 25011 | (when (featurep 'dbusbind) |
| 24811 | (autoload 'secrets-show-secrets "secrets" nil t)) | 25012 | (autoload 'secrets-show-secrets "secrets" nil t)) |
| @@ -24813,7 +25014,7 @@ during scrolling. | |||
| 24813 | ;;;*** | 25014 | ;;;*** |
| 24814 | 25015 | ||
| 24815 | ;;;### (autoloads (semantic-mode semantic-default-submodes) "semantic" | 25016 | ;;;### (autoloads (semantic-mode semantic-default-submodes) "semantic" |
| 24816 | ;;;;;; "cedet/semantic.el" (19981 40664)) | 25017 | ;;;;;; "cedet/semantic.el" (20127 23255)) |
| 24817 | ;;; Generated autoloads from cedet/semantic.el | 25018 | ;;; Generated autoloads from cedet/semantic.el |
| 24818 | 25019 | ||
| 24819 | (defvar semantic-default-submodes '(global-semantic-idle-scheduler-mode global-semanticdb-minor-mode) "\ | 25020 | (defvar semantic-default-submodes '(global-semantic-idle-scheduler-mode global-semanticdb-minor-mode) "\ |
| @@ -24842,8 +25043,10 @@ or call the function `semantic-mode'.") | |||
| 24842 | (custom-autoload 'semantic-mode "semantic" nil) | 25043 | (custom-autoload 'semantic-mode "semantic" nil) |
| 24843 | 25044 | ||
| 24844 | (autoload 'semantic-mode "semantic" "\ | 25045 | (autoload 'semantic-mode "semantic" "\ |
| 24845 | Toggle Semantic mode. | 25046 | Toggle parser features (Semantic mode). |
| 24846 | With ARG, turn Semantic mode on if ARG is positive, off otherwise. | 25047 | With a prefix argument ARG, enable Semantic mode if ARG is |
| 25048 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 25049 | Semantic mode if ARG is omitted or nil. | ||
| 24847 | 25050 | ||
| 24848 | In Semantic mode, Emacs parses the buffers you visit for their | 25051 | In Semantic mode, Emacs parses the buffers you visit for their |
| 24849 | semantic content. This information is used by a variety of | 25052 | semantic content. This information is used by a variety of |
| @@ -24865,7 +25068,7 @@ Semantic mode. | |||
| 24865 | ;;;;;; mail-personal-alias-file mail-default-reply-to mail-archive-file-name | 25068 | ;;;;;; mail-personal-alias-file mail-default-reply-to mail-archive-file-name |
| 24866 | ;;;;;; mail-header-separator send-mail-function mail-interactive | 25069 | ;;;;;; mail-header-separator send-mail-function mail-interactive |
| 24867 | ;;;;;; mail-self-blind mail-specify-envelope-from mail-from-style) | 25070 | ;;;;;; mail-self-blind mail-specify-envelope-from mail-from-style) |
| 24868 | ;;;;;; "sendmail" "mail/sendmail.el" (20092 23754)) | 25071 | ;;;;;; "sendmail" "mail/sendmail.el" (20121 46524)) |
| 24869 | ;;; Generated autoloads from mail/sendmail.el | 25072 | ;;; Generated autoloads from mail/sendmail.el |
| 24870 | 25073 | ||
| 24871 | (defvar mail-from-style 'default "\ | 25074 | (defvar mail-from-style 'default "\ |
| @@ -24908,7 +25111,7 @@ Otherwise, let mailer send back a message to report errors.") | |||
| 24908 | 25111 | ||
| 24909 | (custom-autoload 'mail-interactive "sendmail" t) | 25112 | (custom-autoload 'mail-interactive "sendmail" t) |
| 24910 | 25113 | ||
| 24911 | (defvar send-mail-function 'sendmail-query-once "\ | 25114 | (defvar send-mail-function (if (and (boundp 'smtpmail-smtp-server) smtpmail-smtp-server) 'smtpmail-send-it 'sendmail-query-once) "\ |
| 24912 | Function to call to send the current buffer as mail. | 25115 | Function to call to send the current buffer as mail. |
| 24913 | The headers should be delimited by a line which is | 25116 | The headers should be delimited by a line which is |
| 24914 | not a valid RFC822 header or continuation line, | 25117 | not a valid RFC822 header or continuation line, |
| @@ -25147,8 +25350,8 @@ Like `mail' command, but display mail buffer in another frame. | |||
| 25147 | ;;;*** | 25350 | ;;;*** |
| 25148 | 25351 | ||
| 25149 | ;;;### (autoloads (server-save-buffers-kill-terminal server-mode | 25352 | ;;;### (autoloads (server-save-buffers-kill-terminal server-mode |
| 25150 | ;;;;;; server-force-delete server-start) "server" "server.el" (20059 | 25353 | ;;;;;; server-force-delete server-start) "server" "server.el" (20126 |
| 25151 | ;;;;;; 26455)) | 25354 | ;;;;;; 50430)) |
| 25152 | ;;; Generated autoloads from server.el | 25355 | ;;; Generated autoloads from server.el |
| 25153 | 25356 | ||
| 25154 | (put 'server-host 'risky-local-variable t) | 25357 | (put 'server-host 'risky-local-variable t) |
| @@ -25194,9 +25397,13 @@ or call the function `server-mode'.") | |||
| 25194 | 25397 | ||
| 25195 | (autoload 'server-mode "server" "\ | 25398 | (autoload 'server-mode "server" "\ |
| 25196 | Toggle Server mode. | 25399 | Toggle Server mode. |
| 25197 | With ARG, turn Server mode on if ARG is positive, off otherwise. | 25400 | With a prefix argument ARG, enable Server mode if ARG is |
| 25401 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 25402 | Server mode if ARG is omitted or nil. | ||
| 25403 | |||
| 25198 | Server mode runs a process that accepts commands from the | 25404 | Server mode runs a process that accepts commands from the |
| 25199 | `emacsclient' program. See `server-start' and Info node `Emacs server'. | 25405 | `emacsclient' program. See Info node `Emacs server' and |
| 25406 | `server-start' for details. | ||
| 25200 | 25407 | ||
| 25201 | \(fn &optional ARG)" t nil) | 25408 | \(fn &optional ARG)" t nil) |
| 25202 | 25409 | ||
| @@ -25211,7 +25418,7 @@ only these files will be asked to be saved. | |||
| 25211 | 25418 | ||
| 25212 | ;;;*** | 25419 | ;;;*** |
| 25213 | 25420 | ||
| 25214 | ;;;### (autoloads (ses-mode) "ses" "ses.el" (19980 19797)) | 25421 | ;;;### (autoloads (ses-mode) "ses" "ses.el" (20119 34052)) |
| 25215 | ;;; Generated autoloads from ses.el | 25422 | ;;; Generated autoloads from ses.el |
| 25216 | 25423 | ||
| 25217 | (autoload 'ses-mode "ses" "\ | 25424 | (autoload 'ses-mode "ses" "\ |
| @@ -25230,7 +25437,7 @@ These are active only in the minibuffer, when entering or editing a formula: | |||
| 25230 | ;;;*** | 25437 | ;;;*** |
| 25231 | 25438 | ||
| 25232 | ;;;### (autoloads (html-mode sgml-mode) "sgml-mode" "textmodes/sgml-mode.el" | 25439 | ;;;### (autoloads (html-mode sgml-mode) "sgml-mode" "textmodes/sgml-mode.el" |
| 25233 | ;;;;;; (19845 45374)) | 25440 | ;;;;;; (20127 24193)) |
| 25234 | ;;; Generated autoloads from textmodes/sgml-mode.el | 25441 | ;;; Generated autoloads from textmodes/sgml-mode.el |
| 25235 | 25442 | ||
| 25236 | (autoload 'sgml-mode "sgml-mode" "\ | 25443 | (autoload 'sgml-mode "sgml-mode" "\ |
| @@ -25296,7 +25503,7 @@ To work around that, do: | |||
| 25296 | ;;;*** | 25503 | ;;;*** |
| 25297 | 25504 | ||
| 25298 | ;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el" | 25505 | ;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el" |
| 25299 | ;;;;;; (20051 32345)) | 25506 | ;;;;;; (20120 43373)) |
| 25300 | ;;; Generated autoloads from progmodes/sh-script.el | 25507 | ;;; Generated autoloads from progmodes/sh-script.el |
| 25301 | (put 'sh-shell 'safe-local-variable 'symbolp) | 25508 | (put 'sh-shell 'safe-local-variable 'symbolp) |
| 25302 | 25509 | ||
| @@ -25361,7 +25568,7 @@ with your script for an edit-interpret-debug cycle. | |||
| 25361 | ;;;*** | 25568 | ;;;*** |
| 25362 | 25569 | ||
| 25363 | ;;;### (autoloads (list-load-path-shadows) "shadow" "emacs-lisp/shadow.el" | 25570 | ;;;### (autoloads (list-load-path-shadows) "shadow" "emacs-lisp/shadow.el" |
| 25364 | ;;;;;; (19845 45374)) | 25571 | ;;;;;; (20119 34052)) |
| 25365 | ;;; Generated autoloads from emacs-lisp/shadow.el | 25572 | ;;; Generated autoloads from emacs-lisp/shadow.el |
| 25366 | 25573 | ||
| 25367 | (autoload 'list-load-path-shadows "shadow" "\ | 25574 | (autoload 'list-load-path-shadows "shadow" "\ |
| @@ -25411,8 +25618,8 @@ function, `load-path-shadows-find'. | |||
| 25411 | ;;;*** | 25618 | ;;;*** |
| 25412 | 25619 | ||
| 25413 | ;;;### (autoloads (shadow-initialize shadow-define-regexp-group shadow-define-literal-group | 25620 | ;;;### (autoloads (shadow-initialize shadow-define-regexp-group shadow-define-literal-group |
| 25414 | ;;;;;; shadow-define-cluster) "shadowfile" "shadowfile.el" (19886 | 25621 | ;;;;;; shadow-define-cluster) "shadowfile" "shadowfile.el" (20119 |
| 25415 | ;;;;;; 45771)) | 25622 | ;;;;;; 34052)) |
| 25416 | ;;; Generated autoloads from shadowfile.el | 25623 | ;;; Generated autoloads from shadowfile.el |
| 25417 | 25624 | ||
| 25418 | (autoload 'shadow-define-cluster "shadowfile" "\ | 25625 | (autoload 'shadow-define-cluster "shadowfile" "\ |
| @@ -25451,7 +25658,7 @@ Set up file shadowing. | |||
| 25451 | ;;;*** | 25658 | ;;;*** |
| 25452 | 25659 | ||
| 25453 | ;;;### (autoloads (shell shell-dumb-shell-regexp) "shell" "shell.el" | 25660 | ;;;### (autoloads (shell shell-dumb-shell-regexp) "shell" "shell.el" |
| 25454 | ;;;;;; (20092 23754)) | 25661 | ;;;;;; (20126 50438)) |
| 25455 | ;;; Generated autoloads from shell.el | 25662 | ;;; Generated autoloads from shell.el |
| 25456 | 25663 | ||
| 25457 | (defvar shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe") "\ | 25664 | (defvar shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe") "\ |
| @@ -25499,8 +25706,8 @@ Otherwise, one argument `-i' is passed to the shell. | |||
| 25499 | 25706 | ||
| 25500 | ;;;*** | 25707 | ;;;*** |
| 25501 | 25708 | ||
| 25502 | ;;;### (autoloads (shr-insert-document) "shr" "gnus/shr.el" (20097 | 25709 | ;;;### (autoloads (shr-insert-document) "shr" "gnus/shr.el" (20119 |
| 25503 | ;;;;;; 41737)) | 25710 | ;;;;;; 34052)) |
| 25504 | ;;; Generated autoloads from gnus/shr.el | 25711 | ;;; Generated autoloads from gnus/shr.el |
| 25505 | 25712 | ||
| 25506 | (autoload 'shr-insert-document "shr" "\ | 25713 | (autoload 'shr-insert-document "shr" "\ |
| @@ -25511,7 +25718,7 @@ Otherwise, one argument `-i' is passed to the shell. | |||
| 25511 | ;;;*** | 25718 | ;;;*** |
| 25512 | 25719 | ||
| 25513 | ;;;### (autoloads (sieve-upload-and-bury sieve-upload sieve-manage) | 25720 | ;;;### (autoloads (sieve-upload-and-bury sieve-upload sieve-manage) |
| 25514 | ;;;;;; "sieve" "gnus/sieve.el" (19845 45374)) | 25721 | ;;;;;; "sieve" "gnus/sieve.el" (20119 34052)) |
| 25515 | ;;; Generated autoloads from gnus/sieve.el | 25722 | ;;; Generated autoloads from gnus/sieve.el |
| 25516 | 25723 | ||
| 25517 | (autoload 'sieve-manage "sieve" "\ | 25724 | (autoload 'sieve-manage "sieve" "\ |
| @@ -25532,7 +25739,7 @@ Otherwise, one argument `-i' is passed to the shell. | |||
| 25532 | ;;;*** | 25739 | ;;;*** |
| 25533 | 25740 | ||
| 25534 | ;;;### (autoloads (sieve-mode) "sieve-mode" "gnus/sieve-mode.el" | 25741 | ;;;### (autoloads (sieve-mode) "sieve-mode" "gnus/sieve-mode.el" |
| 25535 | ;;;;;; (19845 45374)) | 25742 | ;;;;;; (20119 34052)) |
| 25536 | ;;; Generated autoloads from gnus/sieve-mode.el | 25743 | ;;; Generated autoloads from gnus/sieve-mode.el |
| 25537 | 25744 | ||
| 25538 | (autoload 'sieve-mode "sieve-mode" "\ | 25745 | (autoload 'sieve-mode "sieve-mode" "\ |
| @@ -25547,8 +25754,8 @@ Turning on Sieve mode runs `sieve-mode-hook'. | |||
| 25547 | 25754 | ||
| 25548 | ;;;*** | 25755 | ;;;*** |
| 25549 | 25756 | ||
| 25550 | ;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (19890 | 25757 | ;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (20119 |
| 25551 | ;;;;;; 42850)) | 25758 | ;;;;;; 34052)) |
| 25552 | ;;; Generated autoloads from progmodes/simula.el | 25759 | ;;; Generated autoloads from progmodes/simula.el |
| 25553 | 25760 | ||
| 25554 | (autoload 'simula-mode "simula" "\ | 25761 | (autoload 'simula-mode "simula" "\ |
| @@ -25597,7 +25804,7 @@ with no arguments, if that value is non-nil. | |||
| 25597 | ;;;*** | 25804 | ;;;*** |
| 25598 | 25805 | ||
| 25599 | ;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy-new | 25806 | ;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy-new |
| 25600 | ;;;;;; define-skeleton) "skeleton" "skeleton.el" (19845 45374)) | 25807 | ;;;;;; define-skeleton) "skeleton" "skeleton.el" (20119 34052)) |
| 25601 | ;;; Generated autoloads from skeleton.el | 25808 | ;;; Generated autoloads from skeleton.el |
| 25602 | 25809 | ||
| 25603 | (defvar skeleton-filter-function 'identity "\ | 25810 | (defvar skeleton-filter-function 'identity "\ |
| @@ -25707,7 +25914,7 @@ symmetrical ones, and the same character twice for the others. | |||
| 25707 | ;;;*** | 25914 | ;;;*** |
| 25708 | 25915 | ||
| 25709 | ;;;### (autoloads (smerge-start-session smerge-mode smerge-ediff) | 25916 | ;;;### (autoloads (smerge-start-session smerge-mode smerge-ediff) |
| 25710 | ;;;;;; "smerge-mode" "vc/smerge-mode.el" (19946 1612)) | 25917 | ;;;;;; "smerge-mode" "vc/smerge-mode.el" (20119 34052)) |
| 25711 | ;;; Generated autoloads from vc/smerge-mode.el | 25918 | ;;; Generated autoloads from vc/smerge-mode.el |
| 25712 | 25919 | ||
| 25713 | (autoload 'smerge-ediff "smerge-mode" "\ | 25920 | (autoload 'smerge-ediff "smerge-mode" "\ |
| @@ -25732,7 +25939,7 @@ If no conflict maker is found, turn off `smerge-mode'. | |||
| 25732 | ;;;*** | 25939 | ;;;*** |
| 25733 | 25940 | ||
| 25734 | ;;;### (autoloads (smiley-buffer smiley-region) "smiley" "gnus/smiley.el" | 25941 | ;;;### (autoloads (smiley-buffer smiley-region) "smiley" "gnus/smiley.el" |
| 25735 | ;;;;;; (19939 28373)) | 25942 | ;;;;;; (20119 34052)) |
| 25736 | ;;; Generated autoloads from gnus/smiley.el | 25943 | ;;; Generated autoloads from gnus/smiley.el |
| 25737 | 25944 | ||
| 25738 | (autoload 'smiley-region "smiley" "\ | 25945 | (autoload 'smiley-region "smiley" "\ |
| @@ -25750,7 +25957,7 @@ interactively. If there's no argument, do it at the current buffer. | |||
| 25750 | ;;;*** | 25957 | ;;;*** |
| 25751 | 25958 | ||
| 25752 | ;;;### (autoloads (smtpmail-send-queued-mail smtpmail-send-it) "smtpmail" | 25959 | ;;;### (autoloads (smtpmail-send-queued-mail smtpmail-send-it) "smtpmail" |
| 25753 | ;;;;;; "mail/smtpmail.el" (20098 4366)) | 25960 | ;;;;;; "mail/smtpmail.el" (20119 34052)) |
| 25754 | ;;; Generated autoloads from mail/smtpmail.el | 25961 | ;;; Generated autoloads from mail/smtpmail.el |
| 25755 | 25962 | ||
| 25756 | (autoload 'smtpmail-send-it "smtpmail" "\ | 25963 | (autoload 'smtpmail-send-it "smtpmail" "\ |
| @@ -25765,7 +25972,7 @@ Send mail that was queued as a result of setting `smtpmail-queue-mail'. | |||
| 25765 | 25972 | ||
| 25766 | ;;;*** | 25973 | ;;;*** |
| 25767 | 25974 | ||
| 25768 | ;;;### (autoloads (snake) "snake" "play/snake.el" (19845 45374)) | 25975 | ;;;### (autoloads (snake) "snake" "play/snake.el" (20119 34052)) |
| 25769 | ;;; Generated autoloads from play/snake.el | 25976 | ;;; Generated autoloads from play/snake.el |
| 25770 | 25977 | ||
| 25771 | (autoload 'snake "snake" "\ | 25978 | (autoload 'snake "snake" "\ |
| @@ -25789,7 +25996,7 @@ Snake mode keybindings: | |||
| 25789 | ;;;*** | 25996 | ;;;*** |
| 25790 | 25997 | ||
| 25791 | ;;;### (autoloads (snmpv2-mode snmp-mode) "snmp-mode" "net/snmp-mode.el" | 25998 | ;;;### (autoloads (snmpv2-mode snmp-mode) "snmp-mode" "net/snmp-mode.el" |
| 25792 | ;;;;;; (19845 45374)) | 25999 | ;;;;;; (20119 34052)) |
| 25793 | ;;; Generated autoloads from net/snmp-mode.el | 26000 | ;;; Generated autoloads from net/snmp-mode.el |
| 25794 | 26001 | ||
| 25795 | (autoload 'snmp-mode "snmp-mode" "\ | 26002 | (autoload 'snmp-mode "snmp-mode" "\ |
| @@ -25818,8 +26025,8 @@ then `snmpv2-mode-hook'. | |||
| 25818 | 26025 | ||
| 25819 | ;;;*** | 26026 | ;;;*** |
| 25820 | 26027 | ||
| 25821 | ;;;### (autoloads (sunrise-sunset) "solar" "calendar/solar.el" (19886 | 26028 | ;;;### (autoloads (sunrise-sunset) "solar" "calendar/solar.el" (20119 |
| 25822 | ;;;;;; 45771)) | 26029 | ;;;;;; 34052)) |
| 25823 | ;;; Generated autoloads from calendar/solar.el | 26030 | ;;; Generated autoloads from calendar/solar.el |
| 25824 | 26031 | ||
| 25825 | (autoload 'sunrise-sunset "solar" "\ | 26032 | (autoload 'sunrise-sunset "solar" "\ |
| @@ -25834,8 +26041,8 @@ This function is suitable for execution in a .emacs file. | |||
| 25834 | 26041 | ||
| 25835 | ;;;*** | 26042 | ;;;*** |
| 25836 | 26043 | ||
| 25837 | ;;;### (autoloads (solitaire) "solitaire" "play/solitaire.el" (19889 | 26044 | ;;;### (autoloads (solitaire) "solitaire" "play/solitaire.el" (20119 |
| 25838 | ;;;;;; 21967)) | 26045 | ;;;;;; 34052)) |
| 25839 | ;;; Generated autoloads from play/solitaire.el | 26046 | ;;; Generated autoloads from play/solitaire.el |
| 25840 | 26047 | ||
| 25841 | (autoload 'solitaire "solitaire" "\ | 26048 | (autoload 'solitaire "solitaire" "\ |
| @@ -25912,7 +26119,7 @@ Pick your favourite shortcuts: | |||
| 25912 | 26119 | ||
| 25913 | ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields | 26120 | ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields |
| 25914 | ;;;;;; sort-fields sort-numeric-fields sort-pages sort-paragraphs | 26121 | ;;;;;; sort-fields sort-numeric-fields sort-pages sort-paragraphs |
| 25915 | ;;;;;; sort-lines sort-subr) "sort" "sort.el" (19845 45374)) | 26122 | ;;;;;; sort-lines sort-subr) "sort" "sort.el" (20119 34052)) |
| 25916 | ;;; Generated autoloads from sort.el | 26123 | ;;; Generated autoloads from sort.el |
| 25917 | (put 'sort-fold-case 'safe-local-variable 'booleanp) | 26124 | (put 'sort-fold-case 'safe-local-variable 'booleanp) |
| 25918 | 26125 | ||
| @@ -26056,8 +26263,8 @@ From a program takes two point or marker arguments, BEG and END. | |||
| 26056 | 26263 | ||
| 26057 | ;;;*** | 26264 | ;;;*** |
| 26058 | 26265 | ||
| 26059 | ;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (20022 | 26266 | ;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (20119 |
| 26060 | ;;;;;; 32083)) | 26267 | ;;;;;; 34052)) |
| 26061 | ;;; Generated autoloads from gnus/spam.el | 26268 | ;;; Generated autoloads from gnus/spam.el |
| 26062 | 26269 | ||
| 26063 | (autoload 'spam-initialize "spam" "\ | 26270 | (autoload 'spam-initialize "spam" "\ |
| @@ -26073,7 +26280,7 @@ installed through `spam-necessary-extra-headers'. | |||
| 26073 | 26280 | ||
| 26074 | ;;;### (autoloads (spam-report-deagentize spam-report-agentize spam-report-url-to-file | 26281 | ;;;### (autoloads (spam-report-deagentize spam-report-agentize spam-report-url-to-file |
| 26075 | ;;;;;; spam-report-url-ping-mm-url spam-report-process-queue) "spam-report" | 26282 | ;;;;;; spam-report-url-ping-mm-url spam-report-process-queue) "spam-report" |
| 26076 | ;;;;;; "gnus/spam-report.el" (19845 45374)) | 26283 | ;;;;;; "gnus/spam-report.el" (20119 34052)) |
| 26077 | ;;; Generated autoloads from gnus/spam-report.el | 26284 | ;;; Generated autoloads from gnus/spam-report.el |
| 26078 | 26285 | ||
| 26079 | (autoload 'spam-report-process-queue "spam-report" "\ | 26286 | (autoload 'spam-report-process-queue "spam-report" "\ |
| @@ -26116,7 +26323,7 @@ Spam reports will be queued with the method used when | |||
| 26116 | ;;;*** | 26323 | ;;;*** |
| 26117 | 26324 | ||
| 26118 | ;;;### (autoloads (speedbar-get-focus speedbar-frame-mode) "speedbar" | 26325 | ;;;### (autoloads (speedbar-get-focus speedbar-frame-mode) "speedbar" |
| 26119 | ;;;;;; "speedbar.el" (19886 45771)) | 26326 | ;;;;;; "speedbar.el" (20119 34052)) |
| 26120 | ;;; Generated autoloads from speedbar.el | 26327 | ;;; Generated autoloads from speedbar.el |
| 26121 | 26328 | ||
| 26122 | (defalias 'speedbar 'speedbar-frame-mode) | 26329 | (defalias 'speedbar 'speedbar-frame-mode) |
| @@ -26140,8 +26347,8 @@ selected. If the speedbar frame is active, then select the attached frame. | |||
| 26140 | 26347 | ||
| 26141 | ;;;*** | 26348 | ;;;*** |
| 26142 | 26349 | ||
| 26143 | ;;;### (autoloads (snarf-spooks spook) "spook" "play/spook.el" (19845 | 26350 | ;;;### (autoloads (snarf-spooks spook) "spook" "play/spook.el" (20119 |
| 26144 | ;;;;;; 45374)) | 26351 | ;;;;;; 34052)) |
| 26145 | ;;; Generated autoloads from play/spook.el | 26352 | ;;; Generated autoloads from play/spook.el |
| 26146 | 26353 | ||
| 26147 | (autoload 'spook "spook" "\ | 26354 | (autoload 'spook "spook" "\ |
| @@ -26160,7 +26367,7 @@ Return a vector containing the lines from `spook-phrases-file'. | |||
| 26160 | ;;;;;; sql-ms sql-ingres sql-solid sql-mysql sql-sqlite sql-informix | 26367 | ;;;;;; sql-ms sql-ingres sql-solid sql-mysql sql-sqlite sql-informix |
| 26161 | ;;;;;; sql-sybase sql-oracle sql-product-interactive sql-connect | 26368 | ;;;;;; sql-sybase sql-oracle sql-product-interactive sql-connect |
| 26162 | ;;;;;; sql-mode sql-help sql-add-product-keywords) "sql" "progmodes/sql.el" | 26369 | ;;;;;; sql-mode sql-help sql-add-product-keywords) "sql" "progmodes/sql.el" |
| 26163 | ;;;;;; (20091 2935)) | 26370 | ;;;;;; (20119 34052)) |
| 26164 | ;;; Generated autoloads from progmodes/sql.el | 26371 | ;;; Generated autoloads from progmodes/sql.el |
| 26165 | 26372 | ||
| 26166 | (autoload 'sql-add-product-keywords "sql" "\ | 26373 | (autoload 'sql-add-product-keywords "sql" "\ |
| @@ -26656,7 +26863,7 @@ buffer. | |||
| 26656 | ;;;*** | 26863 | ;;;*** |
| 26657 | 26864 | ||
| 26658 | ;;;### (autoloads (srecode-template-mode) "srecode/srt-mode" "cedet/srecode/srt-mode.el" | 26865 | ;;;### (autoloads (srecode-template-mode) "srecode/srt-mode" "cedet/srecode/srt-mode.el" |
| 26659 | ;;;;;; (19845 45374)) | 26866 | ;;;;;; (20119 34052)) |
| 26660 | ;;; Generated autoloads from cedet/srecode/srt-mode.el | 26867 | ;;; Generated autoloads from cedet/srecode/srt-mode.el |
| 26661 | 26868 | ||
| 26662 | (autoload 'srecode-template-mode "srecode/srt-mode" "\ | 26869 | (autoload 'srecode-template-mode "srecode/srt-mode" "\ |
| @@ -26669,7 +26876,7 @@ Major-mode for writing SRecode macros. | |||
| 26669 | ;;;*** | 26876 | ;;;*** |
| 26670 | 26877 | ||
| 26671 | ;;;### (autoloads (starttls-open-stream) "starttls" "gnus/starttls.el" | 26878 | ;;;### (autoloads (starttls-open-stream) "starttls" "gnus/starttls.el" |
| 26672 | ;;;;;; (20047 35303)) | 26879 | ;;;;;; (20119 34052)) |
| 26673 | ;;; Generated autoloads from gnus/starttls.el | 26880 | ;;; Generated autoloads from gnus/starttls.el |
| 26674 | 26881 | ||
| 26675 | (autoload 'starttls-open-stream "starttls" "\ | 26882 | (autoload 'starttls-open-stream "starttls" "\ |
| @@ -26696,8 +26903,8 @@ GNUTLS requires a port number. | |||
| 26696 | ;;;;;; strokes-mode strokes-list-strokes strokes-load-user-strokes | 26903 | ;;;;;; strokes-mode strokes-list-strokes strokes-load-user-strokes |
| 26697 | ;;;;;; strokes-help strokes-describe-stroke strokes-do-complex-stroke | 26904 | ;;;;;; strokes-help strokes-describe-stroke strokes-do-complex-stroke |
| 26698 | ;;;;;; strokes-do-stroke strokes-read-complex-stroke strokes-read-stroke | 26905 | ;;;;;; strokes-do-stroke strokes-read-complex-stroke strokes-read-stroke |
| 26699 | ;;;;;; strokes-global-set-stroke) "strokes" "strokes.el" (19886 | 26906 | ;;;;;; strokes-global-set-stroke) "strokes" "strokes.el" (20126 |
| 26700 | ;;;;;; 45771)) | 26907 | ;;;;;; 50576)) |
| 26701 | ;;; Generated autoloads from strokes.el | 26908 | ;;; Generated autoloads from strokes.el |
| 26702 | 26909 | ||
| 26703 | (autoload 'strokes-global-set-stroke "strokes" "\ | 26910 | (autoload 'strokes-global-set-stroke "strokes" "\ |
| @@ -26776,8 +26983,12 @@ or call the function `strokes-mode'.") | |||
| 26776 | (custom-autoload 'strokes-mode "strokes" nil) | 26983 | (custom-autoload 'strokes-mode "strokes" nil) |
| 26777 | 26984 | ||
| 26778 | (autoload 'strokes-mode "strokes" "\ | 26985 | (autoload 'strokes-mode "strokes" "\ |
| 26779 | Toggle Strokes global minor mode.\\<strokes-mode-map> | 26986 | Toggle Strokes mode, a global minor mode. |
| 26780 | With ARG, turn strokes on if and only if ARG is positive. | 26987 | With a prefix argument ARG, enable Strokes mode if ARG is |
| 26988 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 26989 | the mode if ARG is omitted or nil. | ||
| 26990 | |||
| 26991 | \\<strokes-mode-map> | ||
| 26781 | Strokes are pictographic mouse gestures which invoke commands. | 26992 | Strokes are pictographic mouse gestures which invoke commands. |
| 26782 | Strokes are invoked with \\[strokes-do-stroke]. You can define | 26993 | Strokes are invoked with \\[strokes-do-stroke]. You can define |
| 26783 | new strokes with \\[strokes-global-set-stroke]. See also | 26994 | new strokes with \\[strokes-global-set-stroke]. See also |
| @@ -26807,7 +27018,7 @@ Read a complex stroke and insert its glyph into the current buffer. | |||
| 26807 | ;;;*** | 27018 | ;;;*** |
| 26808 | 27019 | ||
| 26809 | ;;;### (autoloads (studlify-buffer studlify-word studlify-region) | 27020 | ;;;### (autoloads (studlify-buffer studlify-word studlify-region) |
| 26810 | ;;;;;; "studly" "play/studly.el" (19845 45374)) | 27021 | ;;;;;; "studly" "play/studly.el" (20119 34052)) |
| 26811 | ;;; Generated autoloads from play/studly.el | 27022 | ;;; Generated autoloads from play/studly.el |
| 26812 | 27023 | ||
| 26813 | (autoload 'studlify-region "studly" "\ | 27024 | (autoload 'studlify-region "studly" "\ |
| @@ -26828,17 +27039,23 @@ Studlify-case the current buffer. | |||
| 26828 | ;;;*** | 27039 | ;;;*** |
| 26829 | 27040 | ||
| 26830 | ;;;### (autoloads (global-subword-mode subword-mode) "subword" "progmodes/subword.el" | 27041 | ;;;### (autoloads (global-subword-mode subword-mode) "subword" "progmodes/subword.el" |
| 26831 | ;;;;;; (19845 45374)) | 27042 | ;;;;;; (20127 25236)) |
| 26832 | ;;; Generated autoloads from progmodes/subword.el | 27043 | ;;; Generated autoloads from progmodes/subword.el |
| 26833 | 27044 | ||
| 26834 | (autoload 'subword-mode "subword" "\ | 27045 | (autoload 'subword-mode "subword" "\ |
| 26835 | Mode enabling subword movement and editing keys. | 27046 | Toggle subword movement and editing (Subword mode). |
| 26836 | In spite of GNU Coding Standards, it is popular to name a symbol by | 27047 | With a prefix argument ARG, enable Subword mode if ARG is |
| 26837 | mixing uppercase and lowercase letters, e.g. \"GtkWidget\", | 27048 | positive, and disable it otherwise. If called from Lisp, enable |
| 26838 | \"EmacsFrameClass\", \"NSGraphicsContext\", etc. Here we call these | 27049 | the mode if ARG is omitted or nil. |
| 26839 | mixed case symbols `nomenclatures'. Also, each capitalized (or | 27050 | |
| 26840 | completely uppercase) part of a nomenclature is called a `subword'. | 27051 | Subword mode is a buffer-local minor mode. Enabling it remaps |
| 26841 | Here are some examples: | 27052 | word-based editing commands to subword-based commands that handle |
| 27053 | symbols with mixed uppercase and lowercase letters, | ||
| 27054 | e.g. \"GtkWidget\", \"EmacsFrameClass\", \"NSGraphicsContext\". | ||
| 27055 | |||
| 27056 | Here we call these mixed case symbols `nomenclatures'. Each | ||
| 27057 | capitalized (or completely uppercase) part of a nomenclature is | ||
| 27058 | called a `subword'. Here are some examples: | ||
| 26842 | 27059 | ||
| 26843 | Nomenclature Subwords | 27060 | Nomenclature Subwords |
| 26844 | =========================================================== | 27061 | =========================================================== |
| @@ -26864,9 +27081,11 @@ or call the function `global-subword-mode'.") | |||
| 26864 | (custom-autoload 'global-subword-mode "subword" nil) | 27081 | (custom-autoload 'global-subword-mode "subword" nil) |
| 26865 | 27082 | ||
| 26866 | (autoload 'global-subword-mode "subword" "\ | 27083 | (autoload 'global-subword-mode "subword" "\ |
| 26867 | Toggle Subword mode in every possible buffer. | 27084 | Toggle Subword mode in all buffers. |
| 26868 | With prefix ARG, turn Global-Subword mode on if and only if | 27085 | With prefix ARG, enable Global-Subword mode if ARG is positive; |
| 26869 | ARG is positive. | 27086 | otherwise, disable it. If called from Lisp, enable the mode if |
| 27087 | ARG is omitted or nil. | ||
| 27088 | |||
| 26870 | Subword mode is enabled in all buffers where | 27089 | Subword mode is enabled in all buffers where |
| 26871 | `(lambda nil (subword-mode 1))' would do it. | 27090 | `(lambda nil (subword-mode 1))' would do it. |
| 26872 | See `subword-mode' for more information on Subword mode. | 27091 | See `subword-mode' for more information on Subword mode. |
| @@ -26876,7 +27095,7 @@ See `subword-mode' for more information on Subword mode. | |||
| 26876 | ;;;*** | 27095 | ;;;*** |
| 26877 | 27096 | ||
| 26878 | ;;;### (autoloads (sc-cite-original) "supercite" "mail/supercite.el" | 27097 | ;;;### (autoloads (sc-cite-original) "supercite" "mail/supercite.el" |
| 26879 | ;;;;;; (19931 11784)) | 27098 | ;;;;;; (20119 34052)) |
| 26880 | ;;; Generated autoloads from mail/supercite.el | 27099 | ;;; Generated autoloads from mail/supercite.el |
| 26881 | 27100 | ||
| 26882 | (autoload 'sc-cite-original "supercite" "\ | 27101 | (autoload 'sc-cite-original "supercite" "\ |
| @@ -26908,8 +27127,8 @@ and `sc-post-hook' is run after the guts of this function. | |||
| 26908 | 27127 | ||
| 26909 | ;;;*** | 27128 | ;;;*** |
| 26910 | 27129 | ||
| 26911 | ;;;### (autoloads (gpm-mouse-mode) "t-mouse" "t-mouse.el" (19845 | 27130 | ;;;### (autoloads (gpm-mouse-mode) "t-mouse" "t-mouse.el" (20126 |
| 26912 | ;;;;;; 45374)) | 27131 | ;;;;;; 50587)) |
| 26913 | ;;; Generated autoloads from t-mouse.el | 27132 | ;;; Generated autoloads from t-mouse.el |
| 26914 | 27133 | ||
| 26915 | (define-obsolete-function-alias 't-mouse-mode 'gpm-mouse-mode "23.1") | 27134 | (define-obsolete-function-alias 't-mouse-mode 'gpm-mouse-mode "23.1") |
| @@ -26924,9 +27143,10 @@ or call the function `gpm-mouse-mode'.") | |||
| 26924 | (custom-autoload 'gpm-mouse-mode "t-mouse" nil) | 27143 | (custom-autoload 'gpm-mouse-mode "t-mouse" nil) |
| 26925 | 27144 | ||
| 26926 | (autoload 'gpm-mouse-mode "t-mouse" "\ | 27145 | (autoload 'gpm-mouse-mode "t-mouse" "\ |
| 26927 | Toggle gpm-mouse mode to use the mouse in GNU/Linux consoles. | 27146 | Toggle mouse support in GNU/Linux consoles (GPM Mouse mode). |
| 26928 | With prefix arg, turn gpm-mouse mode on if arg is positive, | 27147 | With a prefix argument ARG, enable GPM Mouse mode if ARG is |
| 26929 | otherwise turn it off. | 27148 | positive, and disable it otherwise. If called from Lisp, enable |
| 27149 | the mode if ARG is omitted or nil. | ||
| 26930 | 27150 | ||
| 26931 | This allows the use of the mouse when operating on a GNU/Linux console, | 27151 | This allows the use of the mouse when operating on a GNU/Linux console, |
| 26932 | in the same way as you can use the mouse under X11. | 27152 | in the same way as you can use the mouse under X11. |
| @@ -26936,7 +27156,7 @@ It relies on the `gpm' daemon being activated. | |||
| 26936 | 27156 | ||
| 26937 | ;;;*** | 27157 | ;;;*** |
| 26938 | 27158 | ||
| 26939 | ;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (19998 49767)) | 27159 | ;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (20119 34052)) |
| 26940 | ;;; Generated autoloads from tabify.el | 27160 | ;;; Generated autoloads from tabify.el |
| 26941 | 27161 | ||
| 26942 | (autoload 'untabify "tabify" "\ | 27162 | (autoload 'untabify "tabify" "\ |
| @@ -26971,7 +27191,7 @@ The variable `tab-width' controls the spacing of tab stops. | |||
| 26971 | ;;;;;; table-recognize table-insert-row-column table-insert-column | 27191 | ;;;;;; table-recognize table-insert-row-column table-insert-column |
| 26972 | ;;;;;; table-insert-row table-insert table-point-left-cell-hook | 27192 | ;;;;;; table-insert-row table-insert table-point-left-cell-hook |
| 26973 | ;;;;;; table-point-entered-cell-hook table-load-hook table-cell-map-hook) | 27193 | ;;;;;; table-point-entered-cell-hook table-load-hook table-cell-map-hook) |
| 26974 | ;;;;;; "table" "textmodes/table.el" (19845 45374)) | 27194 | ;;;;;; "table" "textmodes/table.el" (20119 34052)) |
| 26975 | ;;; Generated autoloads from textmodes/table.el | 27195 | ;;; Generated autoloads from textmodes/table.el |
| 26976 | 27196 | ||
| 26977 | (defvar table-cell-map-hook nil "\ | 27197 | (defvar table-cell-map-hook nil "\ |
| @@ -27560,7 +27780,7 @@ converts a table into plain text without frames. It is a companion to | |||
| 27560 | ;;;*** | 27780 | ;;;*** |
| 27561 | 27781 | ||
| 27562 | ;;;### (autoloads (tabulated-list-mode) "tabulated-list" "emacs-lisp/tabulated-list.el" | 27782 | ;;;### (autoloads (tabulated-list-mode) "tabulated-list" "emacs-lisp/tabulated-list.el" |
| 27563 | ;;;;;; (20045 30688)) | 27783 | ;;;;;; (20119 34052)) |
| 27564 | ;;; Generated autoloads from emacs-lisp/tabulated-list.el | 27784 | ;;; Generated autoloads from emacs-lisp/tabulated-list.el |
| 27565 | 27785 | ||
| 27566 | (autoload 'tabulated-list-mode "tabulated-list" "\ | 27786 | (autoload 'tabulated-list-mode "tabulated-list" "\ |
| @@ -27602,7 +27822,7 @@ as the ewoc pretty-printer. | |||
| 27602 | 27822 | ||
| 27603 | ;;;*** | 27823 | ;;;*** |
| 27604 | 27824 | ||
| 27605 | ;;;### (autoloads (talk talk-connect) "talk" "talk.el" (19886 45771)) | 27825 | ;;;### (autoloads (talk talk-connect) "talk" "talk.el" (20140 44272)) |
| 27606 | ;;; Generated autoloads from talk.el | 27826 | ;;; Generated autoloads from talk.el |
| 27607 | 27827 | ||
| 27608 | (autoload 'talk-connect "talk" "\ | 27828 | (autoload 'talk-connect "talk" "\ |
| @@ -27617,7 +27837,7 @@ Connect to the Emacs talk group from the current X display or tty frame. | |||
| 27617 | 27837 | ||
| 27618 | ;;;*** | 27838 | ;;;*** |
| 27619 | 27839 | ||
| 27620 | ;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (19977 43600)) | 27840 | ;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (20129 34168)) |
| 27621 | ;;; Generated autoloads from tar-mode.el | 27841 | ;;; Generated autoloads from tar-mode.el |
| 27622 | 27842 | ||
| 27623 | (autoload 'tar-mode "tar-mode" "\ | 27843 | (autoload 'tar-mode "tar-mode" "\ |
| @@ -27641,7 +27861,7 @@ See also: variables `tar-update-datestamp' and `tar-anal-blocksize'. | |||
| 27641 | ;;;*** | 27861 | ;;;*** |
| 27642 | 27862 | ||
| 27643 | ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" | 27863 | ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" |
| 27644 | ;;;;;; "progmodes/tcl.el" (19890 42850)) | 27864 | ;;;;;; "progmodes/tcl.el" (20119 34052)) |
| 27645 | ;;; Generated autoloads from progmodes/tcl.el | 27865 | ;;; Generated autoloads from progmodes/tcl.el |
| 27646 | 27866 | ||
| 27647 | (autoload 'tcl-mode "tcl" "\ | 27867 | (autoload 'tcl-mode "tcl" "\ |
| @@ -27689,7 +27909,7 @@ Prefix argument means invert sense of `tcl-use-smart-word-finder'. | |||
| 27689 | 27909 | ||
| 27690 | ;;;*** | 27910 | ;;;*** |
| 27691 | 27911 | ||
| 27692 | ;;;### (autoloads (rsh telnet) "telnet" "net/telnet.el" (20077 56412)) | 27912 | ;;;### (autoloads (rsh telnet) "telnet" "net/telnet.el" (20119 34052)) |
| 27693 | ;;; Generated autoloads from net/telnet.el | 27913 | ;;; Generated autoloads from net/telnet.el |
| 27694 | 27914 | ||
| 27695 | (autoload 'telnet "telnet" "\ | 27915 | (autoload 'telnet "telnet" "\ |
| @@ -27715,7 +27935,7 @@ Normally input is edited in Emacs and sent a line at a time. | |||
| 27715 | ;;;*** | 27935 | ;;;*** |
| 27716 | 27936 | ||
| 27717 | ;;;### (autoloads (serial-term ansi-term term make-term) "term" "term.el" | 27937 | ;;;### (autoloads (serial-term ansi-term term make-term) "term" "term.el" |
| 27718 | ;;;;;; (20050 11479)) | 27938 | ;;;;;; (20119 34052)) |
| 27719 | ;;; Generated autoloads from term.el | 27939 | ;;; Generated autoloads from term.el |
| 27720 | 27940 | ||
| 27721 | (autoload 'make-term "term" "\ | 27941 | (autoload 'make-term "term" "\ |
| @@ -27757,8 +27977,8 @@ use in that buffer. | |||
| 27757 | 27977 | ||
| 27758 | ;;;*** | 27978 | ;;;*** |
| 27759 | 27979 | ||
| 27760 | ;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (19931 | 27980 | ;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (20119 |
| 27761 | ;;;;;; 11784)) | 27981 | ;;;;;; 34052)) |
| 27762 | ;;; Generated autoloads from terminal.el | 27982 | ;;; Generated autoloads from terminal.el |
| 27763 | 27983 | ||
| 27764 | (autoload 'terminal-emulator "terminal" "\ | 27984 | (autoload 'terminal-emulator "terminal" "\ |
| @@ -27795,7 +28015,7 @@ subprocess started. | |||
| 27795 | ;;;*** | 28015 | ;;;*** |
| 27796 | 28016 | ||
| 27797 | ;;;### (autoloads (testcover-this-defun) "testcover" "emacs-lisp/testcover.el" | 28017 | ;;;### (autoloads (testcover-this-defun) "testcover" "emacs-lisp/testcover.el" |
| 27798 | ;;;;;; (19998 49767)) | 28018 | ;;;;;; (20119 34052)) |
| 27799 | ;;; Generated autoloads from emacs-lisp/testcover.el | 28019 | ;;; Generated autoloads from emacs-lisp/testcover.el |
| 27800 | 28020 | ||
| 27801 | (autoload 'testcover-this-defun "testcover" "\ | 28021 | (autoload 'testcover-this-defun "testcover" "\ |
| @@ -27805,7 +28025,7 @@ Start coverage on function under point. | |||
| 27805 | 28025 | ||
| 27806 | ;;;*** | 28026 | ;;;*** |
| 27807 | 28027 | ||
| 27808 | ;;;### (autoloads (tetris) "tetris" "play/tetris.el" (19889 21967)) | 28028 | ;;;### (autoloads (tetris) "tetris" "play/tetris.el" (20119 34052)) |
| 27809 | ;;; Generated autoloads from play/tetris.el | 28029 | ;;; Generated autoloads from play/tetris.el |
| 27810 | 28030 | ||
| 27811 | (autoload 'tetris "tetris" "\ | 28031 | (autoload 'tetris "tetris" "\ |
| @@ -27836,7 +28056,7 @@ tetris-mode keybindings: | |||
| 27836 | ;;;;;; tex-start-commands tex-start-options slitex-run-command latex-run-command | 28056 | ;;;;;; tex-start-commands tex-start-options slitex-run-command latex-run-command |
| 27837 | ;;;;;; tex-run-command tex-offer-save tex-main-file tex-first-line-header-regexp | 28057 | ;;;;;; tex-run-command tex-offer-save tex-main-file tex-first-line-header-regexp |
| 27838 | ;;;;;; tex-directory tex-shell-file-name) "tex-mode" "textmodes/tex-mode.el" | 28058 | ;;;;;; tex-directory tex-shell-file-name) "tex-mode" "textmodes/tex-mode.el" |
| 27839 | ;;;;;; (19845 45374)) | 28059 | ;;;;;; (20134 8463)) |
| 27840 | ;;; Generated autoloads from textmodes/tex-mode.el | 28060 | ;;; Generated autoloads from textmodes/tex-mode.el |
| 27841 | 28061 | ||
| 27842 | (defvar tex-shell-file-name nil "\ | 28062 | (defvar tex-shell-file-name nil "\ |
| @@ -28138,7 +28358,7 @@ Major mode to edit DocTeX files. | |||
| 28138 | ;;;*** | 28358 | ;;;*** |
| 28139 | 28359 | ||
| 28140 | ;;;### (autoloads (texi2info texinfo-format-region texinfo-format-buffer) | 28360 | ;;;### (autoloads (texi2info texinfo-format-region texinfo-format-buffer) |
| 28141 | ;;;;;; "texinfmt" "textmodes/texinfmt.el" (19845 45374)) | 28361 | ;;;;;; "texinfmt" "textmodes/texinfmt.el" (20119 34052)) |
| 28142 | ;;; Generated autoloads from textmodes/texinfmt.el | 28362 | ;;; Generated autoloads from textmodes/texinfmt.el |
| 28143 | 28363 | ||
| 28144 | (autoload 'texinfo-format-buffer "texinfmt" "\ | 28364 | (autoload 'texinfo-format-buffer "texinfmt" "\ |
| @@ -28178,7 +28398,7 @@ if large. You can use `Info-split' to do this manually. | |||
| 28178 | ;;;*** | 28398 | ;;;*** |
| 28179 | 28399 | ||
| 28180 | ;;;### (autoloads (texinfo-mode texinfo-close-quote texinfo-open-quote) | 28400 | ;;;### (autoloads (texinfo-mode texinfo-close-quote texinfo-open-quote) |
| 28181 | ;;;;;; "texinfo" "textmodes/texinfo.el" (19845 45374)) | 28401 | ;;;;;; "texinfo" "textmodes/texinfo.el" (20119 34052)) |
| 28182 | ;;; Generated autoloads from textmodes/texinfo.el | 28402 | ;;; Generated autoloads from textmodes/texinfo.el |
| 28183 | 28403 | ||
| 28184 | (defvar texinfo-open-quote (purecopy "``") "\ | 28404 | (defvar texinfo-open-quote (purecopy "``") "\ |
| @@ -28264,7 +28484,7 @@ value of `texinfo-mode-hook'. | |||
| 28264 | 28484 | ||
| 28265 | ;;;### (autoloads (thai-composition-function thai-compose-buffer | 28485 | ;;;### (autoloads (thai-composition-function thai-compose-buffer |
| 28266 | ;;;;;; thai-compose-string thai-compose-region) "thai-util" "language/thai-util.el" | 28486 | ;;;;;; thai-compose-string thai-compose-region) "thai-util" "language/thai-util.el" |
| 28267 | ;;;;;; (19845 45374)) | 28487 | ;;;;;; (20119 34052)) |
| 28268 | ;;; Generated autoloads from language/thai-util.el | 28488 | ;;; Generated autoloads from language/thai-util.el |
| 28269 | 28489 | ||
| 28270 | (autoload 'thai-compose-region "thai-util" "\ | 28490 | (autoload 'thai-compose-region "thai-util" "\ |
| @@ -28293,7 +28513,7 @@ Compose Thai characters in the current buffer. | |||
| 28293 | 28513 | ||
| 28294 | ;;;### (autoloads (list-at-point number-at-point symbol-at-point | 28514 | ;;;### (autoloads (list-at-point number-at-point symbol-at-point |
| 28295 | ;;;;;; sexp-at-point thing-at-point bounds-of-thing-at-point forward-thing) | 28515 | ;;;;;; sexp-at-point thing-at-point bounds-of-thing-at-point forward-thing) |
| 28296 | ;;;;;; "thingatpt" "thingatpt.el" (19990 55648)) | 28516 | ;;;;;; "thingatpt" "thingatpt.el" (20119 34052)) |
| 28297 | ;;; Generated autoloads from thingatpt.el | 28517 | ;;; Generated autoloads from thingatpt.el |
| 28298 | 28518 | ||
| 28299 | (autoload 'forward-thing "thingatpt" "\ | 28519 | (autoload 'forward-thing "thingatpt" "\ |
| @@ -28356,7 +28576,7 @@ Return the Lisp list at point, or nil if none is found. | |||
| 28356 | 28576 | ||
| 28357 | ;;;### (autoloads (thumbs-dired-setroot thumbs-dired-show thumbs-dired-show-marked | 28577 | ;;;### (autoloads (thumbs-dired-setroot thumbs-dired-show thumbs-dired-show-marked |
| 28358 | ;;;;;; thumbs-show-from-dir thumbs-find-thumb) "thumbs" "thumbs.el" | 28578 | ;;;;;; thumbs-show-from-dir thumbs-find-thumb) "thumbs" "thumbs.el" |
| 28359 | ;;;;;; (19931 11784)) | 28579 | ;;;;;; (20119 34052)) |
| 28360 | ;;; Generated autoloads from thumbs.el | 28580 | ;;; Generated autoloads from thumbs.el |
| 28361 | 28581 | ||
| 28362 | (autoload 'thumbs-find-thumb "thumbs" "\ | 28582 | (autoload 'thumbs-find-thumb "thumbs" "\ |
| @@ -28394,8 +28614,8 @@ In dired, call the setroot program on the image at point. | |||
| 28394 | ;;;;;; tibetan-post-read-conversion tibetan-compose-buffer tibetan-decompose-buffer | 28614 | ;;;;;; tibetan-post-read-conversion tibetan-compose-buffer tibetan-decompose-buffer |
| 28395 | ;;;;;; tibetan-decompose-string tibetan-decompose-region tibetan-compose-region | 28615 | ;;;;;; tibetan-decompose-string tibetan-decompose-region tibetan-compose-region |
| 28396 | ;;;;;; tibetan-compose-string tibetan-transcription-to-tibetan tibetan-tibetan-to-transcription | 28616 | ;;;;;; tibetan-compose-string tibetan-transcription-to-tibetan tibetan-tibetan-to-transcription |
| 28397 | ;;;;;; tibetan-char-p) "tibet-util" "language/tibet-util.el" (19845 | 28617 | ;;;;;; tibetan-char-p) "tibet-util" "language/tibet-util.el" (20119 |
| 28398 | ;;;;;; 45374)) | 28618 | ;;;;;; 34052)) |
| 28399 | ;;; Generated autoloads from language/tibet-util.el | 28619 | ;;; Generated autoloads from language/tibet-util.el |
| 28400 | 28620 | ||
| 28401 | (autoload 'tibetan-char-p "tibet-util" "\ | 28621 | (autoload 'tibetan-char-p "tibet-util" "\ |
| @@ -28469,7 +28689,7 @@ See also docstring of the function tibetan-compose-region. | |||
| 28469 | ;;;*** | 28689 | ;;;*** |
| 28470 | 28690 | ||
| 28471 | ;;;### (autoloads (tildify-buffer tildify-region) "tildify" "textmodes/tildify.el" | 28691 | ;;;### (autoloads (tildify-buffer tildify-region) "tildify" "textmodes/tildify.el" |
| 28472 | ;;;;;; (19845 45374)) | 28692 | ;;;;;; (20119 34052)) |
| 28473 | ;;; Generated autoloads from textmodes/tildify.el | 28693 | ;;; Generated autoloads from textmodes/tildify.el |
| 28474 | 28694 | ||
| 28475 | (autoload 'tildify-region "tildify" "\ | 28695 | (autoload 'tildify-region "tildify" "\ |
| @@ -28494,7 +28714,7 @@ This function performs no refilling of the changed text. | |||
| 28494 | 28714 | ||
| 28495 | ;;;### (autoloads (emacs-init-time emacs-uptime display-time-world | 28715 | ;;;### (autoloads (emacs-init-time emacs-uptime display-time-world |
| 28496 | ;;;;;; display-time-mode display-time display-time-day-and-date) | 28716 | ;;;;;; display-time-mode display-time display-time-day-and-date) |
| 28497 | ;;;;;; "time" "time.el" (20033 22846)) | 28717 | ;;;;;; "time" "time.el" (20126 50604)) |
| 28498 | ;;; Generated autoloads from time.el | 28718 | ;;; Generated autoloads from time.el |
| 28499 | 28719 | ||
| 28500 | (defvar display-time-day-and-date nil "\ | 28720 | (defvar display-time-day-and-date nil "\ |
| @@ -28523,14 +28743,15 @@ or call the function `display-time-mode'.") | |||
| 28523 | 28743 | ||
| 28524 | (autoload 'display-time-mode "time" "\ | 28744 | (autoload 'display-time-mode "time" "\ |
| 28525 | Toggle display of time, load level, and mail flag in mode lines. | 28745 | Toggle display of time, load level, and mail flag in mode lines. |
| 28526 | With a numeric arg, enable this display if arg is positive. | 28746 | With a prefix argument ARG, enable Display Time mode if ARG is |
| 28747 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 28748 | it if ARG is omitted or nil. | ||
| 28527 | 28749 | ||
| 28528 | When this display is enabled, it updates automatically every minute | 28750 | When Display Time mode is enabled, it updates every minute (you |
| 28529 | \(you can control the number of seconds between updates by | 28751 | can control the number of seconds between updates by customizing |
| 28530 | customizing `display-time-interval'). | 28752 | `display-time-interval'). If `display-time-day-and-date' is |
| 28531 | If `display-time-day-and-date' is non-nil, the current day and date | 28753 | non-nil, the current day and date are displayed as well. This |
| 28532 | are displayed as well. | 28754 | runs the normal hook `display-time-hook' after each update. |
| 28533 | This runs the normal hook `display-time-hook' after each update. | ||
| 28534 | 28755 | ||
| 28535 | \(fn &optional ARG)" t nil) | 28756 | \(fn &optional ARG)" t nil) |
| 28536 | 28757 | ||
| @@ -28559,7 +28780,7 @@ Return a string giving the duration of the Emacs initialization. | |||
| 28559 | ;;;;;; time-to-day-in-year date-leap-year-p days-between date-to-day | 28780 | ;;;;;; time-to-day-in-year date-leap-year-p days-between date-to-day |
| 28560 | ;;;;;; time-add time-subtract time-since days-to-time time-less-p | 28781 | ;;;;;; time-add time-subtract time-since days-to-time time-less-p |
| 28561 | ;;;;;; seconds-to-time date-to-time) "time-date" "calendar/time-date.el" | 28782 | ;;;;;; seconds-to-time date-to-time) "time-date" "calendar/time-date.el" |
| 28562 | ;;;;;; (19885 24894)) | 28783 | ;;;;;; (20119 34052)) |
| 28563 | ;;; Generated autoloads from calendar/time-date.el | 28784 | ;;; Generated autoloads from calendar/time-date.el |
| 28564 | 28785 | ||
| 28565 | (autoload 'date-to-time "time-date" "\ | 28786 | (autoload 'date-to-time "time-date" "\ |
| @@ -28673,7 +28894,7 @@ This function does not work for SECONDS greater than `most-positive-fixnum'. | |||
| 28673 | ;;;*** | 28894 | ;;;*** |
| 28674 | 28895 | ||
| 28675 | ;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp" | 28896 | ;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp" |
| 28676 | ;;;;;; "time-stamp.el" (20033 22846)) | 28897 | ;;;;;; "time-stamp.el" (20119 34052)) |
| 28677 | ;;; Generated autoloads from time-stamp.el | 28898 | ;;; Generated autoloads from time-stamp.el |
| 28678 | (put 'time-stamp-format 'safe-local-variable 'stringp) | 28899 | (put 'time-stamp-format 'safe-local-variable 'stringp) |
| 28679 | (put 'time-stamp-time-zone 'safe-local-variable 'string-or-null-p) | 28900 | (put 'time-stamp-time-zone 'safe-local-variable 'string-or-null-p) |
| @@ -28717,7 +28938,7 @@ With ARG, turn time stamping on if and only if arg is positive. | |||
| 28717 | ;;;;;; timeclock-workday-remaining-string timeclock-reread-log timeclock-query-out | 28938 | ;;;;;; timeclock-workday-remaining-string timeclock-reread-log timeclock-query-out |
| 28718 | ;;;;;; timeclock-change timeclock-status-string timeclock-out timeclock-in | 28939 | ;;;;;; timeclock-change timeclock-status-string timeclock-out timeclock-in |
| 28719 | ;;;;;; timeclock-modeline-display) "timeclock" "calendar/timeclock.el" | 28940 | ;;;;;; timeclock-modeline-display) "timeclock" "calendar/timeclock.el" |
| 28720 | ;;;;;; (19981 40664)) | 28941 | ;;;;;; (20119 34052)) |
| 28721 | ;;; Generated autoloads from calendar/timeclock.el | 28942 | ;;; Generated autoloads from calendar/timeclock.el |
| 28722 | 28943 | ||
| 28723 | (autoload 'timeclock-modeline-display "timeclock" "\ | 28944 | (autoload 'timeclock-modeline-display "timeclock" "\ |
| @@ -28817,7 +29038,7 @@ relative only to the time worked today, and not to past time. | |||
| 28817 | ;;;*** | 29038 | ;;;*** |
| 28818 | 29039 | ||
| 28819 | ;;;### (autoloads (batch-titdic-convert titdic-convert) "titdic-cnv" | 29040 | ;;;### (autoloads (batch-titdic-convert titdic-convert) "titdic-cnv" |
| 28820 | ;;;;;; "international/titdic-cnv.el" (19845 45374)) | 29041 | ;;;;;; "international/titdic-cnv.el" (20119 34052)) |
| 28821 | ;;; Generated autoloads from international/titdic-cnv.el | 29042 | ;;; Generated autoloads from international/titdic-cnv.el |
| 28822 | 29043 | ||
| 28823 | (autoload 'titdic-convert "titdic-cnv" "\ | 29044 | (autoload 'titdic-convert "titdic-cnv" "\ |
| @@ -28840,7 +29061,7 @@ To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\". | |||
| 28840 | ;;;*** | 29061 | ;;;*** |
| 28841 | 29062 | ||
| 28842 | ;;;### (autoloads (tmm-prompt tmm-menubar-mouse tmm-menubar) "tmm" | 29063 | ;;;### (autoloads (tmm-prompt tmm-menubar-mouse tmm-menubar) "tmm" |
| 28843 | ;;;;;; "tmm.el" (19845 45374)) | 29064 | ;;;;;; "tmm.el" (20119 34052)) |
| 28844 | ;;; Generated autoloads from tmm.el | 29065 | ;;; Generated autoloads from tmm.el |
| 28845 | (define-key global-map "\M-`" 'tmm-menubar) | 29066 | (define-key global-map "\M-`" 'tmm-menubar) |
| 28846 | (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse) | 29067 | (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse) |
| @@ -28880,7 +29101,7 @@ Its value should be an event that has a binding in MENU. | |||
| 28880 | 29101 | ||
| 28881 | ;;;### (autoloads (todo-show todo-cp todo-mode todo-print todo-top-priorities | 29102 | ;;;### (autoloads (todo-show todo-cp todo-mode todo-print todo-top-priorities |
| 28882 | ;;;;;; todo-insert-item todo-add-item-non-interactively todo-add-category) | 29103 | ;;;;;; todo-insert-item todo-add-item-non-interactively todo-add-category) |
| 28883 | ;;;;;; "todo-mode" "calendar/todo-mode.el" (19845 45374)) | 29104 | ;;;;;; "todo-mode" "calendar/todo-mode.el" (20119 34052)) |
| 28884 | ;;; Generated autoloads from calendar/todo-mode.el | 29105 | ;;; Generated autoloads from calendar/todo-mode.el |
| 28885 | 29106 | ||
| 28886 | (autoload 'todo-add-category "todo-mode" "\ | 29107 | (autoload 'todo-add-category "todo-mode" "\ |
| @@ -28940,7 +29161,7 @@ Show TODO list. | |||
| 28940 | 29161 | ||
| 28941 | ;;;### (autoloads (tool-bar-local-item-from-menu tool-bar-add-item-from-menu | 29162 | ;;;### (autoloads (tool-bar-local-item-from-menu tool-bar-add-item-from-menu |
| 28942 | ;;;;;; tool-bar-local-item tool-bar-add-item toggle-tool-bar-mode-from-frame) | 29163 | ;;;;;; tool-bar-local-item tool-bar-add-item toggle-tool-bar-mode-from-frame) |
| 28943 | ;;;;;; "tool-bar" "tool-bar.el" (19994 52720)) | 29164 | ;;;;;; "tool-bar" "tool-bar.el" (20126 50619)) |
| 28944 | ;;; Generated autoloads from tool-bar.el | 29165 | ;;; Generated autoloads from tool-bar.el |
| 28945 | 29166 | ||
| 28946 | (autoload 'toggle-tool-bar-mode-from-frame "tool-bar" "\ | 29167 | (autoload 'toggle-tool-bar-mode-from-frame "tool-bar" "\ |
| @@ -29011,7 +29232,7 @@ holds a keymap. | |||
| 29011 | ;;;*** | 29232 | ;;;*** |
| 29012 | 29233 | ||
| 29013 | ;;;### (autoloads (tpu-edt-on tpu-edt-mode) "tpu-edt" "emulation/tpu-edt.el" | 29234 | ;;;### (autoloads (tpu-edt-on tpu-edt-mode) "tpu-edt" "emulation/tpu-edt.el" |
| 29014 | ;;;;;; (19931 11784)) | 29235 | ;;;;;; (20140 44316)) |
| 29015 | ;;; Generated autoloads from emulation/tpu-edt.el | 29236 | ;;; Generated autoloads from emulation/tpu-edt.el |
| 29016 | 29237 | ||
| 29017 | (defvar tpu-edt-mode nil "\ | 29238 | (defvar tpu-edt-mode nil "\ |
| @@ -29038,7 +29259,7 @@ Turn on TPU/edt emulation. | |||
| 29038 | ;;;*** | 29259 | ;;;*** |
| 29039 | 29260 | ||
| 29040 | ;;;### (autoloads (tpu-mapper) "tpu-mapper" "emulation/tpu-mapper.el" | 29261 | ;;;### (autoloads (tpu-mapper) "tpu-mapper" "emulation/tpu-mapper.el" |
| 29041 | ;;;;;; (19845 45374)) | 29262 | ;;;;;; (20119 34052)) |
| 29042 | ;;; Generated autoloads from emulation/tpu-mapper.el | 29263 | ;;; Generated autoloads from emulation/tpu-mapper.el |
| 29043 | 29264 | ||
| 29044 | (autoload 'tpu-mapper "tpu-mapper" "\ | 29265 | (autoload 'tpu-mapper "tpu-mapper" "\ |
| @@ -29072,7 +29293,7 @@ your local X guru can try to figure out why the key is being ignored. | |||
| 29072 | 29293 | ||
| 29073 | ;;;*** | 29294 | ;;;*** |
| 29074 | 29295 | ||
| 29075 | ;;;### (autoloads (tq-create) "tq" "emacs-lisp/tq.el" (19845 45374)) | 29296 | ;;;### (autoloads (tq-create) "tq" "emacs-lisp/tq.el" (20119 34052)) |
| 29076 | ;;; Generated autoloads from emacs-lisp/tq.el | 29297 | ;;; Generated autoloads from emacs-lisp/tq.el |
| 29077 | 29298 | ||
| 29078 | (autoload 'tq-create "tq" "\ | 29299 | (autoload 'tq-create "tq" "\ |
| @@ -29086,7 +29307,7 @@ to a tcp server on another machine. | |||
| 29086 | ;;;*** | 29307 | ;;;*** |
| 29087 | 29308 | ||
| 29088 | ;;;### (autoloads (trace-function-background trace-function trace-buffer) | 29309 | ;;;### (autoloads (trace-function-background trace-function trace-buffer) |
| 29089 | ;;;;;; "trace" "emacs-lisp/trace.el" (19845 45374)) | 29310 | ;;;;;; "trace" "emacs-lisp/trace.el" (20119 34052)) |
| 29090 | ;;; Generated autoloads from emacs-lisp/trace.el | 29311 | ;;; Generated autoloads from emacs-lisp/trace.el |
| 29091 | 29312 | ||
| 29092 | (defvar trace-buffer (purecopy "*trace-output*") "\ | 29313 | (defvar trace-buffer (purecopy "*trace-output*") "\ |
| @@ -29123,7 +29344,7 @@ BUFFER defaults to `trace-buffer'. | |||
| 29123 | ;;;### (autoloads (tramp-unload-tramp tramp-completion-handle-file-name-completion | 29344 | ;;;### (autoloads (tramp-unload-tramp tramp-completion-handle-file-name-completion |
| 29124 | ;;;;;; tramp-completion-handle-file-name-all-completions tramp-unload-file-name-handlers | 29345 | ;;;;;; tramp-completion-handle-file-name-all-completions tramp-unload-file-name-handlers |
| 29125 | ;;;;;; tramp-file-name-handler tramp-syntax tramp-mode) "tramp" | 29346 | ;;;;;; tramp-file-name-handler tramp-syntax tramp-mode) "tramp" |
| 29126 | ;;;;;; "net/tramp.el" (20090 9229)) | 29347 | ;;;;;; "net/tramp.el" (20127 27092)) |
| 29127 | ;;; Generated autoloads from net/tramp.el | 29348 | ;;; Generated autoloads from net/tramp.el |
| 29128 | 29349 | ||
| 29129 | (defvar tramp-mode t "\ | 29350 | (defvar tramp-mode t "\ |
| @@ -29256,7 +29477,7 @@ Discard Tramp from loading remote files. | |||
| 29256 | ;;;*** | 29477 | ;;;*** |
| 29257 | 29478 | ||
| 29258 | ;;;### (autoloads (tramp-ftp-enable-ange-ftp) "tramp-ftp" "net/tramp-ftp.el" | 29479 | ;;;### (autoloads (tramp-ftp-enable-ange-ftp) "tramp-ftp" "net/tramp-ftp.el" |
| 29259 | ;;;;;; (19946 29209)) | 29480 | ;;;;;; (20119 34052)) |
| 29260 | ;;; Generated autoloads from net/tramp-ftp.el | 29481 | ;;; Generated autoloads from net/tramp-ftp.el |
| 29261 | 29482 | ||
| 29262 | (autoload 'tramp-ftp-enable-ange-ftp "tramp-ftp" "\ | 29483 | (autoload 'tramp-ftp-enable-ange-ftp "tramp-ftp" "\ |
| @@ -29266,8 +29487,8 @@ Discard Tramp from loading remote files. | |||
| 29266 | 29487 | ||
| 29267 | ;;;*** | 29488 | ;;;*** |
| 29268 | 29489 | ||
| 29269 | ;;;### (autoloads (help-with-tutorial) "tutorial" "tutorial.el" (20048 | 29490 | ;;;### (autoloads (help-with-tutorial) "tutorial" "tutorial.el" (20140 |
| 29270 | ;;;;;; 56149)) | 29491 | ;;;;;; 41907)) |
| 29271 | ;;; Generated autoloads from tutorial.el | 29492 | ;;; Generated autoloads from tutorial.el |
| 29272 | 29493 | ||
| 29273 | (autoload 'help-with-tutorial "tutorial" "\ | 29494 | (autoload 'help-with-tutorial "tutorial" "\ |
| @@ -29292,7 +29513,7 @@ resumed later. | |||
| 29292 | ;;;*** | 29513 | ;;;*** |
| 29293 | 29514 | ||
| 29294 | ;;;### (autoloads (tai-viet-composition-function) "tv-util" "language/tv-util.el" | 29515 | ;;;### (autoloads (tai-viet-composition-function) "tv-util" "language/tv-util.el" |
| 29295 | ;;;;;; (19845 45374)) | 29516 | ;;;;;; (20119 34052)) |
| 29296 | ;;; Generated autoloads from language/tv-util.el | 29517 | ;;; Generated autoloads from language/tv-util.el |
| 29297 | 29518 | ||
| 29298 | (autoload 'tai-viet-composition-function "tv-util" "\ | 29519 | (autoload 'tai-viet-composition-function "tv-util" "\ |
| @@ -29303,7 +29524,7 @@ resumed later. | |||
| 29303 | ;;;*** | 29524 | ;;;*** |
| 29304 | 29525 | ||
| 29305 | ;;;### (autoloads (2C-split 2C-associate-buffer 2C-two-columns) "two-column" | 29526 | ;;;### (autoloads (2C-split 2C-associate-buffer 2C-two-columns) "two-column" |
| 29306 | ;;;;;; "textmodes/two-column.el" (19845 45374)) | 29527 | ;;;;;; "textmodes/two-column.el" (20140 44080)) |
| 29307 | ;;; Generated autoloads from textmodes/two-column.el | 29528 | ;;; Generated autoloads from textmodes/two-column.el |
| 29308 | (autoload '2C-command "two-column" () t 'keymap) | 29529 | (autoload '2C-command "two-column" () t 'keymap) |
| 29309 | (global-set-key "\C-x6" '2C-command) | 29530 | (global-set-key "\C-x6" '2C-command) |
| @@ -29354,7 +29575,7 @@ First column's text sSs Second column's text | |||
| 29354 | ;;;;;; type-break type-break-mode type-break-keystroke-threshold | 29575 | ;;;;;; type-break type-break-mode type-break-keystroke-threshold |
| 29355 | ;;;;;; type-break-good-break-interval type-break-good-rest-interval | 29576 | ;;;;;; type-break-good-break-interval type-break-good-rest-interval |
| 29356 | ;;;;;; type-break-interval type-break-mode) "type-break" "type-break.el" | 29577 | ;;;;;; type-break-interval type-break-mode) "type-break" "type-break.el" |
| 29357 | ;;;;;; (19985 37722)) | 29578 | ;;;;;; (20126 50662)) |
| 29358 | ;;; Generated autoloads from type-break.el | 29579 | ;;; Generated autoloads from type-break.el |
| 29359 | 29580 | ||
| 29360 | (defvar type-break-mode nil "\ | 29581 | (defvar type-break-mode nil "\ |
| @@ -29536,7 +29757,7 @@ FRAC should be the inverse of the fractional value; for example, a value of | |||
| 29536 | 29757 | ||
| 29537 | ;;;*** | 29758 | ;;;*** |
| 29538 | 29759 | ||
| 29539 | ;;;### (autoloads (uce-reply-to-uce) "uce" "mail/uce.el" (19845 45374)) | 29760 | ;;;### (autoloads (uce-reply-to-uce) "uce" "mail/uce.el" (20119 34052)) |
| 29540 | ;;; Generated autoloads from mail/uce.el | 29761 | ;;; Generated autoloads from mail/uce.el |
| 29541 | 29762 | ||
| 29542 | (autoload 'uce-reply-to-uce "uce" "\ | 29763 | (autoload 'uce-reply-to-uce "uce" "\ |
| @@ -29554,7 +29775,7 @@ You might need to set `uce-mail-reader' before using this. | |||
| 29554 | ;;;;;; ucs-normalize-NFKC-string ucs-normalize-NFKC-region ucs-normalize-NFKD-string | 29775 | ;;;;;; ucs-normalize-NFKC-string ucs-normalize-NFKC-region ucs-normalize-NFKD-string |
| 29555 | ;;;;;; ucs-normalize-NFKD-region ucs-normalize-NFC-string ucs-normalize-NFC-region | 29776 | ;;;;;; ucs-normalize-NFKD-region ucs-normalize-NFC-string ucs-normalize-NFC-region |
| 29556 | ;;;;;; ucs-normalize-NFD-string ucs-normalize-NFD-region) "ucs-normalize" | 29777 | ;;;;;; ucs-normalize-NFD-string ucs-normalize-NFD-region) "ucs-normalize" |
| 29557 | ;;;;;; "international/ucs-normalize.el" (20052 53218)) | 29778 | ;;;;;; "international/ucs-normalize.el" (20119 34052)) |
| 29558 | ;;; Generated autoloads from international/ucs-normalize.el | 29779 | ;;; Generated autoloads from international/ucs-normalize.el |
| 29559 | 29780 | ||
| 29560 | (autoload 'ucs-normalize-NFD-region "ucs-normalize" "\ | 29781 | (autoload 'ucs-normalize-NFD-region "ucs-normalize" "\ |
| @@ -29620,7 +29841,7 @@ Normalize the string STR by the Unicode NFC and Mac OS's HFS Plus. | |||
| 29620 | ;;;*** | 29841 | ;;;*** |
| 29621 | 29842 | ||
| 29622 | ;;;### (autoloads (ununderline-region underline-region) "underline" | 29843 | ;;;### (autoloads (ununderline-region underline-region) "underline" |
| 29623 | ;;;;;; "textmodes/underline.el" (19845 45374)) | 29844 | ;;;;;; "textmodes/underline.el" (20119 34052)) |
| 29624 | ;;; Generated autoloads from textmodes/underline.el | 29845 | ;;; Generated autoloads from textmodes/underline.el |
| 29625 | 29846 | ||
| 29626 | (autoload 'underline-region "underline" "\ | 29847 | (autoload 'underline-region "underline" "\ |
| @@ -29641,7 +29862,7 @@ which specify the range to operate on. | |||
| 29641 | ;;;*** | 29862 | ;;;*** |
| 29642 | 29863 | ||
| 29643 | ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "mail/unrmail.el" | 29864 | ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "mail/unrmail.el" |
| 29644 | ;;;;;; (19845 45374)) | 29865 | ;;;;;; (20119 34052)) |
| 29645 | ;;; Generated autoloads from mail/unrmail.el | 29866 | ;;; Generated autoloads from mail/unrmail.el |
| 29646 | 29867 | ||
| 29647 | (autoload 'batch-unrmail "unrmail" "\ | 29868 | (autoload 'batch-unrmail "unrmail" "\ |
| @@ -29660,8 +29881,8 @@ Convert old-style Rmail Babyl file FILE to system inbox format file TO-FILE. | |||
| 29660 | 29881 | ||
| 29661 | ;;;*** | 29882 | ;;;*** |
| 29662 | 29883 | ||
| 29663 | ;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (19845 | 29884 | ;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (20119 |
| 29664 | ;;;;;; 45374)) | 29885 | ;;;;;; 34052)) |
| 29665 | ;;; Generated autoloads from emacs-lisp/unsafep.el | 29886 | ;;; Generated autoloads from emacs-lisp/unsafep.el |
| 29666 | 29887 | ||
| 29667 | (autoload 'unsafep "unsafep" "\ | 29888 | (autoload 'unsafep "unsafep" "\ |
| @@ -29674,7 +29895,7 @@ UNSAFEP-VARS is a list of symbols with local bindings. | |||
| 29674 | ;;;*** | 29895 | ;;;*** |
| 29675 | 29896 | ||
| 29676 | ;;;### (autoloads (url-retrieve-synchronously url-retrieve) "url" | 29897 | ;;;### (autoloads (url-retrieve-synchronously url-retrieve) "url" |
| 29677 | ;;;;;; "url/url.el" (19845 45374)) | 29898 | ;;;;;; "url/url.el" (20119 34052)) |
| 29678 | ;;; Generated autoloads from url/url.el | 29899 | ;;; Generated autoloads from url/url.el |
| 29679 | 29900 | ||
| 29680 | (autoload 'url-retrieve "url" "\ | 29901 | (autoload 'url-retrieve "url" "\ |
| @@ -29716,7 +29937,7 @@ no further processing). URL is either a string or a parsed URL. | |||
| 29716 | ;;;*** | 29937 | ;;;*** |
| 29717 | 29938 | ||
| 29718 | ;;;### (autoloads (url-register-auth-scheme url-get-authentication) | 29939 | ;;;### (autoloads (url-register-auth-scheme url-get-authentication) |
| 29719 | ;;;;;; "url-auth" "url/url-auth.el" (19845 45374)) | 29940 | ;;;;;; "url-auth" "url/url-auth.el" (20119 34052)) |
| 29720 | ;;; Generated autoloads from url/url-auth.el | 29941 | ;;; Generated autoloads from url/url-auth.el |
| 29721 | 29942 | ||
| 29722 | (autoload 'url-get-authentication "url-auth" "\ | 29943 | (autoload 'url-get-authentication "url-auth" "\ |
| @@ -29758,7 +29979,7 @@ RATING a rating between 1 and 10 of the strength of the authentication. | |||
| 29758 | ;;;*** | 29979 | ;;;*** |
| 29759 | 29980 | ||
| 29760 | ;;;### (autoloads (url-cache-extract url-is-cached url-store-in-cache) | 29981 | ;;;### (autoloads (url-cache-extract url-is-cached url-store-in-cache) |
| 29761 | ;;;;;; "url-cache" "url/url-cache.el" (19988 13913)) | 29982 | ;;;;;; "url-cache" "url/url-cache.el" (20119 34052)) |
| 29762 | ;;; Generated autoloads from url/url-cache.el | 29983 | ;;; Generated autoloads from url/url-cache.el |
| 29763 | 29984 | ||
| 29764 | (autoload 'url-store-in-cache "url-cache" "\ | 29985 | (autoload 'url-store-in-cache "url-cache" "\ |
| @@ -29779,7 +30000,7 @@ Extract FNAM from the local disk cache. | |||
| 29779 | 30000 | ||
| 29780 | ;;;*** | 30001 | ;;;*** |
| 29781 | 30002 | ||
| 29782 | ;;;### (autoloads (url-cid) "url-cid" "url/url-cid.el" (19845 45374)) | 30003 | ;;;### (autoloads (url-cid) "url-cid" "url/url-cid.el" (20119 34052)) |
| 29783 | ;;; Generated autoloads from url/url-cid.el | 30004 | ;;; Generated autoloads from url/url-cid.el |
| 29784 | 30005 | ||
| 29785 | (autoload 'url-cid "url-cid" "\ | 30006 | (autoload 'url-cid "url-cid" "\ |
| @@ -29790,7 +30011,7 @@ Extract FNAM from the local disk cache. | |||
| 29790 | ;;;*** | 30011 | ;;;*** |
| 29791 | 30012 | ||
| 29792 | ;;;### (autoloads (url-dav-vc-registered url-dav-supported-p) "url-dav" | 30013 | ;;;### (autoloads (url-dav-vc-registered url-dav-supported-p) "url-dav" |
| 29793 | ;;;;;; "url/url-dav.el" (19845 45374)) | 30014 | ;;;;;; "url/url-dav.el" (20119 34052)) |
| 29794 | ;;; Generated autoloads from url/url-dav.el | 30015 | ;;; Generated autoloads from url/url-dav.el |
| 29795 | 30016 | ||
| 29796 | (autoload 'url-dav-supported-p "url-dav" "\ | 30017 | (autoload 'url-dav-supported-p "url-dav" "\ |
| @@ -29805,8 +30026,8 @@ Extract FNAM from the local disk cache. | |||
| 29805 | 30026 | ||
| 29806 | ;;;*** | 30027 | ;;;*** |
| 29807 | 30028 | ||
| 29808 | ;;;### (autoloads (url-file) "url-file" "url/url-file.el" (19845 | 30029 | ;;;### (autoloads (url-file) "url-file" "url/url-file.el" (20119 |
| 29809 | ;;;;;; 45374)) | 30030 | ;;;;;; 34052)) |
| 29810 | ;;; Generated autoloads from url/url-file.el | 30031 | ;;; Generated autoloads from url/url-file.el |
| 29811 | 30032 | ||
| 29812 | (autoload 'url-file "url-file" "\ | 30033 | (autoload 'url-file "url-file" "\ |
| @@ -29817,7 +30038,7 @@ Handle file: and ftp: URLs. | |||
| 29817 | ;;;*** | 30038 | ;;;*** |
| 29818 | 30039 | ||
| 29819 | ;;;### (autoloads (url-open-stream url-gateway-nslookup-host) "url-gw" | 30040 | ;;;### (autoloads (url-open-stream url-gateway-nslookup-host) "url-gw" |
| 29820 | ;;;;;; "url/url-gw.el" (19864 29553)) | 30041 | ;;;;;; "url/url-gw.el" (20119 34052)) |
| 29821 | ;;; Generated autoloads from url/url-gw.el | 30042 | ;;; Generated autoloads from url/url-gw.el |
| 29822 | 30043 | ||
| 29823 | (autoload 'url-gateway-nslookup-host "url-gw" "\ | 30044 | (autoload 'url-gateway-nslookup-host "url-gw" "\ |
| @@ -29837,7 +30058,7 @@ Might do a non-blocking connection; use `process-status' to check. | |||
| 29837 | 30058 | ||
| 29838 | ;;;### (autoloads (url-insert-file-contents url-file-local-copy url-copy-file | 30059 | ;;;### (autoloads (url-insert-file-contents url-file-local-copy url-copy-file |
| 29839 | ;;;;;; url-file-handler url-handler-mode) "url-handlers" "url/url-handlers.el" | 30060 | ;;;;;; url-file-handler url-handler-mode) "url-handlers" "url/url-handlers.el" |
| 29840 | ;;;;;; (19845 45374)) | 30061 | ;;;;;; (20127 23866)) |
| 29841 | ;;; Generated autoloads from url/url-handlers.el | 30062 | ;;; Generated autoloads from url/url-handlers.el |
| 29842 | 30063 | ||
| 29843 | (defvar url-handler-mode nil "\ | 30064 | (defvar url-handler-mode nil "\ |
| @@ -29850,7 +30071,10 @@ or call the function `url-handler-mode'.") | |||
| 29850 | (custom-autoload 'url-handler-mode "url-handlers" nil) | 30071 | (custom-autoload 'url-handler-mode "url-handlers" nil) |
| 29851 | 30072 | ||
| 29852 | (autoload 'url-handler-mode "url-handlers" "\ | 30073 | (autoload 'url-handler-mode "url-handlers" "\ |
| 29853 | Use URL to handle URL-like file names. | 30074 | Toggle using `url' library for URL filenames (URL Handler mode). |
| 30075 | With a prefix argument ARG, enable URL Handler mode if ARG is | ||
| 30076 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 30077 | the mode if ARG is omitted or nil. | ||
| 29854 | 30078 | ||
| 29855 | \(fn &optional ARG)" t nil) | 30079 | \(fn &optional ARG)" t nil) |
| 29856 | 30080 | ||
| @@ -29889,7 +30113,7 @@ accessible. | |||
| 29889 | ;;;*** | 30113 | ;;;*** |
| 29890 | 30114 | ||
| 29891 | ;;;### (autoloads (url-http-options url-http-file-attributes url-http-file-exists-p | 30115 | ;;;### (autoloads (url-http-options url-http-file-attributes url-http-file-exists-p |
| 29892 | ;;;;;; url-http) "url-http" "url/url-http.el" (20094 65493)) | 30116 | ;;;;;; url-http) "url-http" "url/url-http.el" (20119 34052)) |
| 29893 | ;;; Generated autoloads from url/url-http.el | 30117 | ;;; Generated autoloads from url/url-http.el |
| 29894 | 30118 | ||
| 29895 | (autoload 'url-http "url-http" "\ | 30119 | (autoload 'url-http "url-http" "\ |
| @@ -29955,7 +30179,7 @@ HTTPS retrievals are asynchronous.") | |||
| 29955 | 30179 | ||
| 29956 | ;;;*** | 30180 | ;;;*** |
| 29957 | 30181 | ||
| 29958 | ;;;### (autoloads (url-irc) "url-irc" "url/url-irc.el" (19845 45374)) | 30182 | ;;;### (autoloads (url-irc) "url-irc" "url/url-irc.el" (20119 34052)) |
| 29959 | ;;; Generated autoloads from url/url-irc.el | 30183 | ;;; Generated autoloads from url/url-irc.el |
| 29960 | 30184 | ||
| 29961 | (autoload 'url-irc "url-irc" "\ | 30185 | (autoload 'url-irc "url-irc" "\ |
| @@ -29965,8 +30189,8 @@ HTTPS retrievals are asynchronous.") | |||
| 29965 | 30189 | ||
| 29966 | ;;;*** | 30190 | ;;;*** |
| 29967 | 30191 | ||
| 29968 | ;;;### (autoloads (url-ldap) "url-ldap" "url/url-ldap.el" (19845 | 30192 | ;;;### (autoloads (url-ldap) "url-ldap" "url/url-ldap.el" (20119 |
| 29969 | ;;;;;; 45374)) | 30193 | ;;;;;; 34052)) |
| 29970 | ;;; Generated autoloads from url/url-ldap.el | 30194 | ;;; Generated autoloads from url/url-ldap.el |
| 29971 | 30195 | ||
| 29972 | (autoload 'url-ldap "url-ldap" "\ | 30196 | (autoload 'url-ldap "url-ldap" "\ |
| @@ -29980,7 +30204,7 @@ URL can be a URL string, or a URL vector of the type returned by | |||
| 29980 | ;;;*** | 30204 | ;;;*** |
| 29981 | 30205 | ||
| 29982 | ;;;### (autoloads (url-mailto url-mail) "url-mailto" "url/url-mailto.el" | 30206 | ;;;### (autoloads (url-mailto url-mail) "url-mailto" "url/url-mailto.el" |
| 29983 | ;;;;;; (19845 45374)) | 30207 | ;;;;;; (20119 34052)) |
| 29984 | ;;; Generated autoloads from url/url-mailto.el | 30208 | ;;; Generated autoloads from url/url-mailto.el |
| 29985 | 30209 | ||
| 29986 | (autoload 'url-mail "url-mailto" "\ | 30210 | (autoload 'url-mail "url-mailto" "\ |
| @@ -29996,7 +30220,7 @@ Handle the mailto: URL syntax. | |||
| 29996 | ;;;*** | 30220 | ;;;*** |
| 29997 | 30221 | ||
| 29998 | ;;;### (autoloads (url-data url-generic-emulator-loader url-info | 30222 | ;;;### (autoloads (url-data url-generic-emulator-loader url-info |
| 29999 | ;;;;;; url-man) "url-misc" "url/url-misc.el" (19845 45374)) | 30223 | ;;;;;; url-man) "url-misc" "url/url-misc.el" (20119 34052)) |
| 30000 | ;;; Generated autoloads from url/url-misc.el | 30224 | ;;; Generated autoloads from url/url-misc.el |
| 30001 | 30225 | ||
| 30002 | (autoload 'url-man "url-misc" "\ | 30226 | (autoload 'url-man "url-misc" "\ |
| @@ -30028,7 +30252,7 @@ Fetch a data URL (RFC 2397). | |||
| 30028 | ;;;*** | 30252 | ;;;*** |
| 30029 | 30253 | ||
| 30030 | ;;;### (autoloads (url-snews url-news) "url-news" "url/url-news.el" | 30254 | ;;;### (autoloads (url-snews url-news) "url-news" "url/url-news.el" |
| 30031 | ;;;;;; (19845 45374)) | 30255 | ;;;;;; (20119 34052)) |
| 30032 | ;;; Generated autoloads from url/url-news.el | 30256 | ;;; Generated autoloads from url/url-news.el |
| 30033 | 30257 | ||
| 30034 | (autoload 'url-news "url-news" "\ | 30258 | (autoload 'url-news "url-news" "\ |
| @@ -30045,7 +30269,7 @@ Fetch a data URL (RFC 2397). | |||
| 30045 | 30269 | ||
| 30046 | ;;;### (autoloads (url-ns-user-pref url-ns-prefs isInNet isResolvable | 30270 | ;;;### (autoloads (url-ns-user-pref url-ns-prefs isInNet isResolvable |
| 30047 | ;;;;;; dnsResolve dnsDomainIs isPlainHostName) "url-ns" "url/url-ns.el" | 30271 | ;;;;;; dnsResolve dnsDomainIs isPlainHostName) "url-ns" "url/url-ns.el" |
| 30048 | ;;;;;; (19845 45374)) | 30272 | ;;;;;; (20119 34052)) |
| 30049 | ;;; Generated autoloads from url/url-ns.el | 30273 | ;;; Generated autoloads from url/url-ns.el |
| 30050 | 30274 | ||
| 30051 | (autoload 'isPlainHostName "url-ns" "\ | 30275 | (autoload 'isPlainHostName "url-ns" "\ |
| @@ -30086,7 +30310,7 @@ Fetch a data URL (RFC 2397). | |||
| 30086 | ;;;*** | 30310 | ;;;*** |
| 30087 | 30311 | ||
| 30088 | ;;;### (autoloads (url-generic-parse-url url-recreate-url) "url-parse" | 30312 | ;;;### (autoloads (url-generic-parse-url url-recreate-url) "url-parse" |
| 30089 | ;;;;;; "url/url-parse.el" (19845 45374)) | 30313 | ;;;;;; "url/url-parse.el" (20119 34052)) |
| 30090 | ;;; Generated autoloads from url/url-parse.el | 30314 | ;;; Generated autoloads from url/url-parse.el |
| 30091 | 30315 | ||
| 30092 | (autoload 'url-recreate-url "url-parse" "\ | 30316 | (autoload 'url-recreate-url "url-parse" "\ |
| @@ -30104,7 +30328,7 @@ TYPE USER PASSWORD HOST PORTSPEC FILENAME TARGET ATTRIBUTES FULLNESS. | |||
| 30104 | ;;;*** | 30328 | ;;;*** |
| 30105 | 30329 | ||
| 30106 | ;;;### (autoloads (url-setup-privacy-info) "url-privacy" "url/url-privacy.el" | 30330 | ;;;### (autoloads (url-setup-privacy-info) "url-privacy" "url/url-privacy.el" |
| 30107 | ;;;;;; (19845 45374)) | 30331 | ;;;;;; (20119 34052)) |
| 30108 | ;;; Generated autoloads from url/url-privacy.el | 30332 | ;;; Generated autoloads from url/url-privacy.el |
| 30109 | 30333 | ||
| 30110 | (autoload 'url-setup-privacy-info "url-privacy" "\ | 30334 | (autoload 'url-setup-privacy-info "url-privacy" "\ |
| @@ -30115,7 +30339,7 @@ Setup variables that expose info about you and your system. | |||
| 30115 | ;;;*** | 30339 | ;;;*** |
| 30116 | 30340 | ||
| 30117 | ;;;### (autoloads (url-queue-retrieve) "url-queue" "url/url-queue.el" | 30341 | ;;;### (autoloads (url-queue-retrieve) "url-queue" "url/url-queue.el" |
| 30118 | ;;;;;; (19943 25429)) | 30342 | ;;;;;; (20119 34052)) |
| 30119 | ;;; Generated autoloads from url/url-queue.el | 30343 | ;;; Generated autoloads from url/url-queue.el |
| 30120 | 30344 | ||
| 30121 | (autoload 'url-queue-retrieve "url-queue" "\ | 30345 | (autoload 'url-queue-retrieve "url-queue" "\ |
| @@ -30134,7 +30358,7 @@ controls the level of parallelism via the | |||
| 30134 | ;;;;;; url-pretty-length url-strip-leading-spaces url-eat-trailing-space | 30358 | ;;;;;; url-pretty-length url-strip-leading-spaces url-eat-trailing-space |
| 30135 | ;;;;;; url-get-normalized-date url-lazy-message url-normalize-url | 30359 | ;;;;;; url-get-normalized-date url-lazy-message url-normalize-url |
| 30136 | ;;;;;; url-insert-entities-in-string url-parse-args url-debug url-debug) | 30360 | ;;;;;; url-insert-entities-in-string url-parse-args url-debug url-debug) |
| 30137 | ;;;;;; "url-util" "url/url-util.el" (19867 59212)) | 30361 | ;;;;;; "url-util" "url/url-util.el" (20119 34052)) |
| 30138 | ;;; Generated autoloads from url/url-util.el | 30362 | ;;; Generated autoloads from url/url-util.el |
| 30139 | 30363 | ||
| 30140 | (defvar url-debug nil "\ | 30364 | (defvar url-debug nil "\ |
| @@ -30270,7 +30494,7 @@ This uses `url-current-object', set locally to the buffer. | |||
| 30270 | ;;;*** | 30494 | ;;;*** |
| 30271 | 30495 | ||
| 30272 | ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) | 30496 | ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) |
| 30273 | ;;;;;; "userlock" "userlock.el" (19845 45374)) | 30497 | ;;;;;; "userlock" "userlock.el" (20119 34052)) |
| 30274 | ;;; Generated autoloads from userlock.el | 30498 | ;;; Generated autoloads from userlock.el |
| 30275 | 30499 | ||
| 30276 | (autoload 'ask-user-about-lock "userlock" "\ | 30500 | (autoload 'ask-user-about-lock "userlock" "\ |
| @@ -30300,7 +30524,7 @@ The buffer in question is current when this function is called. | |||
| 30300 | 30524 | ||
| 30301 | ;;;### (autoloads (utf-7-imap-pre-write-conversion utf-7-pre-write-conversion | 30525 | ;;;### (autoloads (utf-7-imap-pre-write-conversion utf-7-pre-write-conversion |
| 30302 | ;;;;;; utf-7-imap-post-read-conversion utf-7-post-read-conversion) | 30526 | ;;;;;; utf-7-imap-post-read-conversion utf-7-post-read-conversion) |
| 30303 | ;;;;;; "utf-7" "international/utf-7.el" (19845 45374)) | 30527 | ;;;;;; "utf-7" "international/utf-7.el" (20119 34052)) |
| 30304 | ;;; Generated autoloads from international/utf-7.el | 30528 | ;;; Generated autoloads from international/utf-7.el |
| 30305 | 30529 | ||
| 30306 | (autoload 'utf-7-post-read-conversion "utf-7" "\ | 30530 | (autoload 'utf-7-post-read-conversion "utf-7" "\ |
| @@ -30325,7 +30549,7 @@ The buffer in question is current when this function is called. | |||
| 30325 | 30549 | ||
| 30326 | ;;;*** | 30550 | ;;;*** |
| 30327 | 30551 | ||
| 30328 | ;;;### (autoloads (utf7-encode) "utf7" "gnus/utf7.el" (19845 45374)) | 30552 | ;;;### (autoloads (utf7-encode) "utf7" "gnus/utf7.el" (20119 34052)) |
| 30329 | ;;; Generated autoloads from gnus/utf7.el | 30553 | ;;; Generated autoloads from gnus/utf7.el |
| 30330 | 30554 | ||
| 30331 | (autoload 'utf7-encode "utf7" "\ | 30555 | (autoload 'utf7-encode "utf7" "\ |
| @@ -30337,7 +30561,7 @@ Encode UTF-7 STRING. Use IMAP modification if FOR-IMAP is non-nil. | |||
| 30337 | 30561 | ||
| 30338 | ;;;### (autoloads (uudecode-decode-region uudecode-decode-region-internal | 30562 | ;;;### (autoloads (uudecode-decode-region uudecode-decode-region-internal |
| 30339 | ;;;;;; uudecode-decode-region-external) "uudecode" "mail/uudecode.el" | 30563 | ;;;;;; uudecode-decode-region-external) "uudecode" "mail/uudecode.el" |
| 30340 | ;;;;;; (19845 45374)) | 30564 | ;;;;;; (20119 34052)) |
| 30341 | ;;; Generated autoloads from mail/uudecode.el | 30565 | ;;; Generated autoloads from mail/uudecode.el |
| 30342 | 30566 | ||
| 30343 | (autoload 'uudecode-decode-region-external "uudecode" "\ | 30567 | (autoload 'uudecode-decode-region-external "uudecode" "\ |
| @@ -30367,8 +30591,8 @@ If FILE-NAME is non-nil, save the result to FILE-NAME. | |||
| 30367 | ;;;;;; vc-print-log vc-retrieve-tag vc-create-tag vc-merge vc-insert-headers | 30591 | ;;;;;; vc-print-log vc-retrieve-tag vc-create-tag vc-merge vc-insert-headers |
| 30368 | ;;;;;; vc-revision-other-window vc-root-diff vc-ediff vc-version-ediff | 30592 | ;;;;;; vc-revision-other-window vc-root-diff vc-ediff vc-version-ediff |
| 30369 | ;;;;;; vc-diff vc-version-diff vc-register vc-next-action vc-before-checkin-hook | 30593 | ;;;;;; vc-diff vc-version-diff vc-register vc-next-action vc-before-checkin-hook |
| 30370 | ;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc/vc.el" (19997 | 30594 | ;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc/vc.el" (20128 |
| 30371 | ;;;;;; 28887)) | 30595 | ;;;;;; 38948)) |
| 30372 | ;;; Generated autoloads from vc/vc.el | 30596 | ;;; Generated autoloads from vc/vc.el |
| 30373 | 30597 | ||
| 30374 | (defvar vc-checkout-hook nil "\ | 30598 | (defvar vc-checkout-hook nil "\ |
| @@ -30651,7 +30875,7 @@ Return the branch part of a revision number REV. | |||
| 30651 | ;;;*** | 30875 | ;;;*** |
| 30652 | 30876 | ||
| 30653 | ;;;### (autoloads (vc-annotate) "vc-annotate" "vc/vc-annotate.el" | 30877 | ;;;### (autoloads (vc-annotate) "vc-annotate" "vc/vc-annotate.el" |
| 30654 | ;;;;;; (19920 63959)) | 30878 | ;;;;;; (20119 34052)) |
| 30655 | ;;; Generated autoloads from vc/vc-annotate.el | 30879 | ;;; Generated autoloads from vc/vc-annotate.el |
| 30656 | 30880 | ||
| 30657 | (autoload 'vc-annotate "vc-annotate" "\ | 30881 | (autoload 'vc-annotate "vc-annotate" "\ |
| @@ -30688,7 +30912,7 @@ mode-specific menu. `vc-annotate-color-map' and | |||
| 30688 | 30912 | ||
| 30689 | ;;;*** | 30913 | ;;;*** |
| 30690 | 30914 | ||
| 30691 | ;;;### (autoloads nil "vc-arch" "vc/vc-arch.el" (19984 16846)) | 30915 | ;;;### (autoloads nil "vc-arch" "vc/vc-arch.el" (20119 34052)) |
| 30692 | ;;; Generated autoloads from vc/vc-arch.el | 30916 | ;;; Generated autoloads from vc/vc-arch.el |
| 30693 | (defun vc-arch-registered (file) | 30917 | (defun vc-arch-registered (file) |
| 30694 | (if (vc-find-root file "{arch}/=tagging-method") | 30918 | (if (vc-find-root file "{arch}/=tagging-method") |
| @@ -30698,7 +30922,7 @@ mode-specific menu. `vc-annotate-color-map' and | |||
| 30698 | 30922 | ||
| 30699 | ;;;*** | 30923 | ;;;*** |
| 30700 | 30924 | ||
| 30701 | ;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (20087 5852)) | 30925 | ;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (20127 27092)) |
| 30702 | ;;; Generated autoloads from vc/vc-bzr.el | 30926 | ;;; Generated autoloads from vc/vc-bzr.el |
| 30703 | 30927 | ||
| 30704 | (defconst vc-bzr-admin-dirname ".bzr" "\ | 30928 | (defconst vc-bzr-admin-dirname ".bzr" "\ |
| @@ -30713,7 +30937,7 @@ Name of the directory containing Bzr repository status files.") | |||
| 30713 | 30937 | ||
| 30714 | ;;;*** | 30938 | ;;;*** |
| 30715 | 30939 | ||
| 30716 | ;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (19845 45374)) | 30940 | ;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (20119 34052)) |
| 30717 | ;;; Generated autoloads from vc/vc-cvs.el | 30941 | ;;; Generated autoloads from vc/vc-cvs.el |
| 30718 | (defun vc-cvs-registered (f) | 30942 | (defun vc-cvs-registered (f) |
| 30719 | (when (file-readable-p (expand-file-name | 30943 | (when (file-readable-p (expand-file-name |
| @@ -30723,7 +30947,7 @@ Name of the directory containing Bzr repository status files.") | |||
| 30723 | 30947 | ||
| 30724 | ;;;*** | 30948 | ;;;*** |
| 30725 | 30949 | ||
| 30726 | ;;;### (autoloads (vc-dir) "vc-dir" "vc/vc-dir.el" (20087 5852)) | 30950 | ;;;### (autoloads (vc-dir) "vc-dir" "vc/vc-dir.el" (20119 34052)) |
| 30727 | ;;; Generated autoloads from vc/vc-dir.el | 30951 | ;;; Generated autoloads from vc/vc-dir.el |
| 30728 | 30952 | ||
| 30729 | (autoload 'vc-dir "vc-dir" "\ | 30953 | (autoload 'vc-dir "vc-dir" "\ |
| @@ -30748,7 +30972,7 @@ These are the commands available for use in the file status buffer: | |||
| 30748 | ;;;*** | 30972 | ;;;*** |
| 30749 | 30973 | ||
| 30750 | ;;;### (autoloads (vc-do-command) "vc-dispatcher" "vc/vc-dispatcher.el" | 30974 | ;;;### (autoloads (vc-do-command) "vc-dispatcher" "vc/vc-dispatcher.el" |
| 30751 | ;;;;;; (19845 45374)) | 30975 | ;;;;;; (20119 34052)) |
| 30752 | ;;; Generated autoloads from vc/vc-dispatcher.el | 30976 | ;;; Generated autoloads from vc/vc-dispatcher.el |
| 30753 | 30977 | ||
| 30754 | (autoload 'vc-do-command "vc-dispatcher" "\ | 30978 | (autoload 'vc-do-command "vc-dispatcher" "\ |
| @@ -30771,7 +30995,7 @@ case, and the process object in the asynchronous case. | |||
| 30771 | 30995 | ||
| 30772 | ;;;*** | 30996 | ;;;*** |
| 30773 | 30997 | ||
| 30774 | ;;;### (autoloads nil "vc-git" "vc/vc-git.el" (20087 5852)) | 30998 | ;;;### (autoloads nil "vc-git" "vc/vc-git.el" (20119 34052)) |
| 30775 | ;;; Generated autoloads from vc/vc-git.el | 30999 | ;;; Generated autoloads from vc/vc-git.el |
| 30776 | (defun vc-git-registered (file) | 31000 | (defun vc-git-registered (file) |
| 30777 | "Return non-nil if FILE is registered with git." | 31001 | "Return non-nil if FILE is registered with git." |
| @@ -30782,7 +31006,7 @@ case, and the process object in the asynchronous case. | |||
| 30782 | 31006 | ||
| 30783 | ;;;*** | 31007 | ;;;*** |
| 30784 | 31008 | ||
| 30785 | ;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (19845 45374)) | 31009 | ;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (20119 34052)) |
| 30786 | ;;; Generated autoloads from vc/vc-hg.el | 31010 | ;;; Generated autoloads from vc/vc-hg.el |
| 30787 | (defun vc-hg-registered (file) | 31011 | (defun vc-hg-registered (file) |
| 30788 | "Return non-nil if FILE is registered with hg." | 31012 | "Return non-nil if FILE is registered with hg." |
| @@ -30793,7 +31017,7 @@ case, and the process object in the asynchronous case. | |||
| 30793 | 31017 | ||
| 30794 | ;;;*** | 31018 | ;;;*** |
| 30795 | 31019 | ||
| 30796 | ;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (19845 45374)) | 31020 | ;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (20119 34052)) |
| 30797 | ;;; Generated autoloads from vc/vc-mtn.el | 31021 | ;;; Generated autoloads from vc/vc-mtn.el |
| 30798 | 31022 | ||
| 30799 | (defconst vc-mtn-admin-dir "_MTN") | 31023 | (defconst vc-mtn-admin-dir "_MTN") |
| @@ -30808,7 +31032,7 @@ case, and the process object in the asynchronous case. | |||
| 30808 | ;;;*** | 31032 | ;;;*** |
| 30809 | 31033 | ||
| 30810 | ;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc/vc-rcs.el" | 31034 | ;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc/vc-rcs.el" |
| 30811 | ;;;;;; (20064 44441)) | 31035 | ;;;;;; (20119 34052)) |
| 30812 | ;;; Generated autoloads from vc/vc-rcs.el | 31036 | ;;; Generated autoloads from vc/vc-rcs.el |
| 30813 | 31037 | ||
| 30814 | (defvar vc-rcs-master-templates (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ | 31038 | (defvar vc-rcs-master-templates (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ |
| @@ -30822,7 +31046,7 @@ For a description of possible values, see `vc-check-master-templates'.") | |||
| 30822 | ;;;*** | 31046 | ;;;*** |
| 30823 | 31047 | ||
| 30824 | ;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc/vc-sccs.el" | 31048 | ;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc/vc-sccs.el" |
| 30825 | ;;;;;; (19845 45374)) | 31049 | ;;;;;; (20119 34052)) |
| 30826 | ;;; Generated autoloads from vc/vc-sccs.el | 31050 | ;;; Generated autoloads from vc/vc-sccs.el |
| 30827 | 31051 | ||
| 30828 | (defvar vc-sccs-master-templates (purecopy '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ | 31052 | (defvar vc-sccs-master-templates (purecopy '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ |
| @@ -30839,7 +31063,7 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) | |||
| 30839 | 31063 | ||
| 30840 | ;;;*** | 31064 | ;;;*** |
| 30841 | 31065 | ||
| 30842 | ;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (19845 45374)) | 31066 | ;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (20119 34052)) |
| 30843 | ;;; Generated autoloads from vc/vc-svn.el | 31067 | ;;; Generated autoloads from vc/vc-svn.el |
| 30844 | (defun vc-svn-registered (f) | 31068 | (defun vc-svn-registered (f) |
| 30845 | (let ((admin-dir (cond ((and (eq system-type 'windows-nt) | 31069 | (let ((admin-dir (cond ((and (eq system-type 'windows-nt) |
| @@ -30853,7 +31077,7 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) | |||
| 30853 | ;;;*** | 31077 | ;;;*** |
| 30854 | 31078 | ||
| 30855 | ;;;### (autoloads (vera-mode) "vera-mode" "progmodes/vera-mode.el" | 31079 | ;;;### (autoloads (vera-mode) "vera-mode" "progmodes/vera-mode.el" |
| 30856 | ;;;;;; (19890 42850)) | 31080 | ;;;;;; (20129 34267)) |
| 30857 | ;;; Generated autoloads from progmodes/vera-mode.el | 31081 | ;;; Generated autoloads from progmodes/vera-mode.el |
| 30858 | (add-to-list 'auto-mode-alist (cons (purecopy "\\.vr[hi]?\\'") 'vera-mode)) | 31082 | (add-to-list 'auto-mode-alist (cons (purecopy "\\.vr[hi]?\\'") 'vera-mode)) |
| 30859 | 31083 | ||
| @@ -30911,7 +31135,7 @@ Key bindings: | |||
| 30911 | ;;;*** | 31135 | ;;;*** |
| 30912 | 31136 | ||
| 30913 | ;;;### (autoloads (verilog-mode) "verilog-mode" "progmodes/verilog-mode.el" | 31137 | ;;;### (autoloads (verilog-mode) "verilog-mode" "progmodes/verilog-mode.el" |
| 30914 | ;;;;;; (19973 46551)) | 31138 | ;;;;;; (20119 34052)) |
| 30915 | ;;; Generated autoloads from progmodes/verilog-mode.el | 31139 | ;;; Generated autoloads from progmodes/verilog-mode.el |
| 30916 | 31140 | ||
| 30917 | (autoload 'verilog-mode "verilog-mode" "\ | 31141 | (autoload 'verilog-mode "verilog-mode" "\ |
| @@ -31048,7 +31272,7 @@ Key bindings specific to `verilog-mode-map' are: | |||
| 31048 | ;;;*** | 31272 | ;;;*** |
| 31049 | 31273 | ||
| 31050 | ;;;### (autoloads (vhdl-mode) "vhdl-mode" "progmodes/vhdl-mode.el" | 31274 | ;;;### (autoloads (vhdl-mode) "vhdl-mode" "progmodes/vhdl-mode.el" |
| 31051 | ;;;;;; (19914 25180)) | 31275 | ;;;;;; (20127 25049)) |
| 31052 | ;;; Generated autoloads from progmodes/vhdl-mode.el | 31276 | ;;; Generated autoloads from progmodes/vhdl-mode.el |
| 31053 | 31277 | ||
| 31054 | (autoload 'vhdl-mode "vhdl-mode" "\ | 31278 | (autoload 'vhdl-mode "vhdl-mode" "\ |
| @@ -31589,7 +31813,7 @@ Key bindings: | |||
| 31589 | 31813 | ||
| 31590 | ;;;*** | 31814 | ;;;*** |
| 31591 | 31815 | ||
| 31592 | ;;;### (autoloads (vi-mode) "vi" "emulation/vi.el" (19845 45374)) | 31816 | ;;;### (autoloads (vi-mode) "vi" "emulation/vi.el" (20119 34052)) |
| 31593 | ;;; Generated autoloads from emulation/vi.el | 31817 | ;;; Generated autoloads from emulation/vi.el |
| 31594 | 31818 | ||
| 31595 | (autoload 'vi-mode "vi" "\ | 31819 | (autoload 'vi-mode "vi" "\ |
| @@ -31644,7 +31868,7 @@ Syntax table and abbrevs while in vi mode remain as they were in Emacs. | |||
| 31644 | ;;;### (autoloads (viqr-pre-write-conversion viqr-post-read-conversion | 31868 | ;;;### (autoloads (viqr-pre-write-conversion viqr-post-read-conversion |
| 31645 | ;;;;;; viet-encode-viqr-buffer viet-encode-viqr-region viet-decode-viqr-buffer | 31869 | ;;;;;; viet-encode-viqr-buffer viet-encode-viqr-region viet-decode-viqr-buffer |
| 31646 | ;;;;;; viet-decode-viqr-region viet-encode-viscii-char) "viet-util" | 31870 | ;;;;;; viet-decode-viqr-region viet-encode-viscii-char) "viet-util" |
| 31647 | ;;;;;; "language/viet-util.el" (19845 45374)) | 31871 | ;;;;;; "language/viet-util.el" (20119 34052)) |
| 31648 | ;;; Generated autoloads from language/viet-util.el | 31872 | ;;; Generated autoloads from language/viet-util.el |
| 31649 | 31873 | ||
| 31650 | (autoload 'viet-encode-viscii-char "viet-util" "\ | 31874 | (autoload 'viet-encode-viscii-char "viet-util" "\ |
| @@ -31692,7 +31916,7 @@ Convert Vietnamese characters of the current buffer to `VIQR' mnemonics. | |||
| 31692 | ;;;;;; view-mode view-buffer-other-frame view-buffer-other-window | 31916 | ;;;;;; view-mode view-buffer-other-frame view-buffer-other-window |
| 31693 | ;;;;;; view-buffer view-file-other-frame view-file-other-window | 31917 | ;;;;;; view-buffer view-file-other-frame view-file-other-window |
| 31694 | ;;;;;; view-file kill-buffer-if-not-modified view-remove-frame-by-deleting) | 31918 | ;;;;;; view-file kill-buffer-if-not-modified view-remove-frame-by-deleting) |
| 31695 | ;;;;;; "view" "view.el" (20065 65310)) | 31919 | ;;;;;; "view" "view.el" (20126 50686)) |
| 31696 | ;;; Generated autoloads from view.el | 31920 | ;;; Generated autoloads from view.el |
| 31697 | 31921 | ||
| 31698 | (defvar view-remove-frame-by-deleting t "\ | 31922 | (defvar view-remove-frame-by-deleting t "\ |
| @@ -31815,19 +32039,24 @@ this argument instead of explicitly setting `view-exit-action'. | |||
| 31815 | 32039 | ||
| 31816 | (autoload 'view-mode "view" "\ | 32040 | (autoload 'view-mode "view" "\ |
| 31817 | Toggle View mode, a minor mode for viewing text but not editing it. | 32041 | Toggle View mode, a minor mode for viewing text but not editing it. |
| 31818 | With prefix argument ARG, turn View mode on if ARG is positive, otherwise | 32042 | With a prefix argument ARG, enable View mode if ARG is positive, |
| 31819 | turn it off. | 32043 | and disable it otherwise. If called from Lisp, enable View mode |
| 32044 | if ARG is omitted or nil. | ||
| 32045 | |||
| 32046 | When View mode is enabled, commands that do not change the buffer | ||
| 32047 | contents are available as usual. Kill commands insert text in | ||
| 32048 | kill buffers but do not delete. Most other commands beep and | ||
| 32049 | tell the user that the buffer is read-only. | ||
| 31820 | 32050 | ||
| 31821 | Emacs commands that do not change the buffer contents are available as usual. | ||
| 31822 | Kill commands insert text in kill buffers but do not delete. Other commands | ||
| 31823 | \(among them most letters and punctuation) beep and tell that the buffer is | ||
| 31824 | read-only. | ||
| 31825 | \\<view-mode-map> | 32051 | \\<view-mode-map> |
| 31826 | The following additional commands are provided. Most commands take prefix | 32052 | |
| 31827 | arguments. Page commands default to \"page size\" lines which is almost a whole | 32053 | The following additional commands are provided. Most commands |
| 31828 | window full, or number of lines set by \\[View-scroll-page-forward-set-page-size] or \\[View-scroll-page-backward-set-page-size]. Half page commands default to | 32054 | take prefix arguments. Page commands default to \"page size\" |
| 31829 | and set \"half page size\" lines which initially is half a window full. Search | 32055 | lines which is almost a whole window, or number of lines set by |
| 31830 | commands default to a repeat count of one. | 32056 | \\[View-scroll-page-forward-set-page-size] or \\[View-scroll-page-backward-set-page-size]. |
| 32057 | Half page commands default to and set \"half page size\" lines | ||
| 32058 | which initially is half a window full. Search commands default | ||
| 32059 | to a repeat count of one. | ||
| 31831 | 32060 | ||
| 31832 | H, h, ? This message. | 32061 | H, h, ? This message. |
| 31833 | Digits provide prefix arguments. | 32062 | Digits provide prefix arguments. |
| @@ -31929,8 +32158,8 @@ Exit View mode and make the current buffer editable. | |||
| 31929 | 32158 | ||
| 31930 | ;;;*** | 32159 | ;;;*** |
| 31931 | 32160 | ||
| 31932 | ;;;### (autoloads (vip-mode vip-setup) "vip" "emulation/vip.el" (19845 | 32161 | ;;;### (autoloads (vip-mode vip-setup) "vip" "emulation/vip.el" (20140 |
| 31933 | ;;;;;; 45374)) | 32162 | ;;;;;; 44329)) |
| 31934 | ;;; Generated autoloads from emulation/vip.el | 32163 | ;;; Generated autoloads from emulation/vip.el |
| 31935 | 32164 | ||
| 31936 | (autoload 'vip-setup "vip" "\ | 32165 | (autoload 'vip-setup "vip" "\ |
| @@ -31946,7 +32175,7 @@ Turn on VIP emulation of VI. | |||
| 31946 | ;;;*** | 32175 | ;;;*** |
| 31947 | 32176 | ||
| 31948 | ;;;### (autoloads (viper-mode toggle-viper-mode) "viper" "emulation/viper.el" | 32177 | ;;;### (autoloads (viper-mode toggle-viper-mode) "viper" "emulation/viper.el" |
| 31949 | ;;;;;; (19931 11784)) | 32178 | ;;;;;; (20119 34052)) |
| 31950 | ;;; Generated autoloads from emulation/viper.el | 32179 | ;;; Generated autoloads from emulation/viper.el |
| 31951 | 32180 | ||
| 31952 | (autoload 'toggle-viper-mode "viper" "\ | 32181 | (autoload 'toggle-viper-mode "viper" "\ |
| @@ -31963,7 +32192,7 @@ Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Top'. | |||
| 31963 | ;;;*** | 32192 | ;;;*** |
| 31964 | 32193 | ||
| 31965 | ;;;### (autoloads (warn lwarn display-warning) "warnings" "emacs-lisp/warnings.el" | 32194 | ;;;### (autoloads (warn lwarn display-warning) "warnings" "emacs-lisp/warnings.el" |
| 31966 | ;;;;;; (19906 31087)) | 32195 | ;;;;;; (20119 34052)) |
| 31967 | ;;; Generated autoloads from emacs-lisp/warnings.el | 32196 | ;;; Generated autoloads from emacs-lisp/warnings.el |
| 31968 | 32197 | ||
| 31969 | (defvar warning-prefix-function nil "\ | 32198 | (defvar warning-prefix-function nil "\ |
| @@ -32053,7 +32282,7 @@ this is equivalent to `display-warning', using | |||
| 32053 | ;;;*** | 32282 | ;;;*** |
| 32054 | 32283 | ||
| 32055 | ;;;### (autoloads (wdired-change-to-wdired-mode) "wdired" "wdired.el" | 32284 | ;;;### (autoloads (wdired-change-to-wdired-mode) "wdired" "wdired.el" |
| 32056 | ;;;;;; (20075 14682)) | 32285 | ;;;;;; (20119 34052)) |
| 32057 | ;;; Generated autoloads from wdired.el | 32286 | ;;; Generated autoloads from wdired.el |
| 32058 | 32287 | ||
| 32059 | (autoload 'wdired-change-to-wdired-mode "wdired" "\ | 32288 | (autoload 'wdired-change-to-wdired-mode "wdired" "\ |
| @@ -32069,7 +32298,7 @@ See `wdired-mode'. | |||
| 32069 | 32298 | ||
| 32070 | ;;;*** | 32299 | ;;;*** |
| 32071 | 32300 | ||
| 32072 | ;;;### (autoloads (webjump) "webjump" "net/webjump.el" (19931 11784)) | 32301 | ;;;### (autoloads (webjump) "webjump" "net/webjump.el" (20119 34052)) |
| 32073 | ;;; Generated autoloads from net/webjump.el | 32302 | ;;; Generated autoloads from net/webjump.el |
| 32074 | 32303 | ||
| 32075 | (autoload 'webjump "webjump" "\ | 32304 | (autoload 'webjump "webjump" "\ |
| @@ -32086,7 +32315,7 @@ Please submit bug reports and other feedback to the author, Neil W. Van Dyke | |||
| 32086 | ;;;*** | 32315 | ;;;*** |
| 32087 | 32316 | ||
| 32088 | ;;;### (autoloads (which-function-mode) "which-func" "progmodes/which-func.el" | 32317 | ;;;### (autoloads (which-function-mode) "which-func" "progmodes/which-func.el" |
| 32089 | ;;;;;; (19988 13913)) | 32318 | ;;;;;; (20127 25007)) |
| 32090 | ;;; Generated autoloads from progmodes/which-func.el | 32319 | ;;; Generated autoloads from progmodes/which-func.el |
| 32091 | (put 'which-func-format 'risky-local-variable t) | 32320 | (put 'which-func-format 'risky-local-variable t) |
| 32092 | (put 'which-func-current 'risky-local-variable t) | 32321 | (put 'which-func-current 'risky-local-variable t) |
| @@ -32103,12 +32332,14 @@ or call the function `which-function-mode'.") | |||
| 32103 | (custom-autoload 'which-function-mode "which-func" nil) | 32332 | (custom-autoload 'which-function-mode "which-func" nil) |
| 32104 | 32333 | ||
| 32105 | (autoload 'which-function-mode "which-func" "\ | 32334 | (autoload 'which-function-mode "which-func" "\ |
| 32106 | Toggle Which Function mode, globally. | 32335 | Toggle mode line display of current function (Which Function mode). |
| 32107 | When Which Function mode is enabled, the current function name is | 32336 | With a prefix argument ARG, enable Which Function mode if ARG is |
| 32108 | continuously displayed in the mode line, in certain major modes. | 32337 | positive, and disable it otherwise. If called from Lisp, enable |
| 32338 | the mode if ARG is omitted or nil. | ||
| 32109 | 32339 | ||
| 32110 | With prefix ARG, turn Which Function mode on if arg is positive, | 32340 | Which Function mode is a global minor mode. When enabled, the |
| 32111 | and off otherwise. | 32341 | current function name is continuously displayed in the mode line, |
| 32342 | in certain major modes. | ||
| 32112 | 32343 | ||
| 32113 | \(fn &optional ARG)" t nil) | 32344 | \(fn &optional ARG)" t nil) |
| 32114 | 32345 | ||
| @@ -32117,15 +32348,14 @@ and off otherwise. | |||
| 32117 | ;;;### (autoloads (whitespace-report-region whitespace-report whitespace-cleanup-region | 32348 | ;;;### (autoloads (whitespace-report-region whitespace-report whitespace-cleanup-region |
| 32118 | ;;;;;; whitespace-cleanup global-whitespace-toggle-options whitespace-toggle-options | 32349 | ;;;;;; whitespace-cleanup global-whitespace-toggle-options whitespace-toggle-options |
| 32119 | ;;;;;; global-whitespace-newline-mode global-whitespace-mode whitespace-newline-mode | 32350 | ;;;;;; global-whitespace-newline-mode global-whitespace-mode whitespace-newline-mode |
| 32120 | ;;;;;; whitespace-mode) "whitespace" "whitespace.el" (20088 26718)) | 32351 | ;;;;;; whitespace-mode) "whitespace" "whitespace.el" (20142 405)) |
| 32121 | ;;; Generated autoloads from whitespace.el | 32352 | ;;; Generated autoloads from whitespace.el |
| 32122 | 32353 | ||
| 32123 | (autoload 'whitespace-mode "whitespace" "\ | 32354 | (autoload 'whitespace-mode "whitespace" "\ |
| 32124 | Toggle whitespace minor mode visualization (\"ws\" on modeline). | 32355 | Toggle whitespace visualization (Whitespace mode). |
| 32125 | 32356 | With a prefix argument ARG, enable Whitespace mode if ARG is | |
| 32126 | If ARG is null, toggle whitespace visualization. | 32357 | positive, and disable it otherwise. If called from Lisp, enable |
| 32127 | If ARG is a number greater than zero, turn on visualization; | 32358 | the mode if ARG is omitted or nil. |
| 32128 | otherwise, turn off visualization. | ||
| 32129 | 32359 | ||
| 32130 | See also `whitespace-style', `whitespace-newline' and | 32360 | See also `whitespace-style', `whitespace-newline' and |
| 32131 | `whitespace-display-mappings'. | 32361 | `whitespace-display-mappings'. |
| @@ -32133,11 +32363,10 @@ See also `whitespace-style', `whitespace-newline' and | |||
| 32133 | \(fn &optional ARG)" t nil) | 32363 | \(fn &optional ARG)" t nil) |
| 32134 | 32364 | ||
| 32135 | (autoload 'whitespace-newline-mode "whitespace" "\ | 32365 | (autoload 'whitespace-newline-mode "whitespace" "\ |
| 32136 | Toggle NEWLINE minor mode visualization (\"nl\" on modeline). | 32366 | Toggle newline visualization (Whitespace Newline mode). |
| 32137 | 32367 | With a prefix argument ARG, enable Whitespace Newline mode if ARG | |
| 32138 | If ARG is null, toggle NEWLINE visualization. | 32368 | is positive, and disable it otherwise. If called from Lisp, |
| 32139 | If ARG is a number greater than zero, turn on visualization; | 32369 | enable the mode if ARG is omitted or nil. |
| 32140 | otherwise, turn off visualization. | ||
| 32141 | 32370 | ||
| 32142 | Use `whitespace-newline-mode' only for NEWLINE visualization | 32371 | Use `whitespace-newline-mode' only for NEWLINE visualization |
| 32143 | exclusively. For other visualizations, including NEWLINE | 32372 | exclusively. For other visualizations, including NEWLINE |
| @@ -32158,11 +32387,10 @@ or call the function `global-whitespace-mode'.") | |||
| 32158 | (custom-autoload 'global-whitespace-mode "whitespace" nil) | 32387 | (custom-autoload 'global-whitespace-mode "whitespace" nil) |
| 32159 | 32388 | ||
| 32160 | (autoload 'global-whitespace-mode "whitespace" "\ | 32389 | (autoload 'global-whitespace-mode "whitespace" "\ |
| 32161 | Toggle whitespace global minor mode visualization (\"WS\" on modeline). | 32390 | Toggle whitespace visualization globally (Global Whitespace mode). |
| 32162 | 32391 | With a prefix argument ARG, enable Global Whitespace mode if ARG | |
| 32163 | If ARG is null, toggle whitespace visualization. | 32392 | is positive, and disable it otherwise. If called from Lisp, |
| 32164 | If ARG is a number greater than zero, turn on visualization; | 32393 | enable it if ARG is omitted or nil. |
| 32165 | otherwise, turn off visualization. | ||
| 32166 | 32394 | ||
| 32167 | See also `whitespace-style', `whitespace-newline' and | 32395 | See also `whitespace-style', `whitespace-newline' and |
| 32168 | `whitespace-display-mappings'. | 32396 | `whitespace-display-mappings'. |
| @@ -32179,11 +32407,10 @@ or call the function `global-whitespace-newline-mode'.") | |||
| 32179 | (custom-autoload 'global-whitespace-newline-mode "whitespace" nil) | 32407 | (custom-autoload 'global-whitespace-newline-mode "whitespace" nil) |
| 32180 | 32408 | ||
| 32181 | (autoload 'global-whitespace-newline-mode "whitespace" "\ | 32409 | (autoload 'global-whitespace-newline-mode "whitespace" "\ |
| 32182 | Toggle NEWLINE global minor mode visualization (\"NL\" on modeline). | 32410 | Toggle global newline visualization (Global Whitespace Newline mode). |
| 32183 | 32411 | With a prefix argument ARG, enable Global Whitespace Newline mode | |
| 32184 | If ARG is null, toggle NEWLINE visualization. | 32412 | if ARG is positive, and disable it otherwise. If called from |
| 32185 | If ARG is a number greater than zero, turn on visualization; | 32413 | Lisp, enable it if ARG is omitted or nil. |
| 32186 | otherwise, turn off visualization. | ||
| 32187 | 32414 | ||
| 32188 | Use `global-whitespace-newline-mode' only for NEWLINE | 32415 | Use `global-whitespace-newline-mode' only for NEWLINE |
| 32189 | visualization exclusively. For other visualizations, including | 32416 | visualization exclusively. For other visualizations, including |
| @@ -32520,7 +32747,7 @@ cleaning up these problems. | |||
| 32520 | ;;;*** | 32747 | ;;;*** |
| 32521 | 32748 | ||
| 32522 | ;;;### (autoloads (widget-minor-mode widget-browse-other-window widget-browse | 32749 | ;;;### (autoloads (widget-minor-mode widget-browse-other-window widget-browse |
| 32523 | ;;;;;; widget-browse-at) "wid-browse" "wid-browse.el" (19886 45771)) | 32750 | ;;;;;; widget-browse-at) "wid-browse" "wid-browse.el" (20126 45211)) |
| 32524 | ;;; Generated autoloads from wid-browse.el | 32751 | ;;; Generated autoloads from wid-browse.el |
| 32525 | 32752 | ||
| 32526 | (autoload 'widget-browse-at "wid-browse" "\ | 32753 | (autoload 'widget-browse-at "wid-browse" "\ |
| @@ -32539,16 +32766,15 @@ Show widget browser for WIDGET in other window. | |||
| 32539 | \(fn &optional WIDGET)" t nil) | 32766 | \(fn &optional WIDGET)" t nil) |
| 32540 | 32767 | ||
| 32541 | (autoload 'widget-minor-mode "wid-browse" "\ | 32768 | (autoload 'widget-minor-mode "wid-browse" "\ |
| 32542 | Togle minor mode for traversing widgets. | 32769 | Minor mode for traversing widgets. |
| 32543 | With arg, turn widget mode on if and only if arg is positive. | ||
| 32544 | 32770 | ||
| 32545 | \(fn &optional ARG)" t nil) | 32771 | \(fn &optional ARG)" t nil) |
| 32546 | 32772 | ||
| 32547 | ;;;*** | 32773 | ;;;*** |
| 32548 | 32774 | ||
| 32549 | ;;;### (autoloads (widget-setup widget-insert widget-delete widget-create | 32775 | ;;;### (autoloads (widget-setup widget-insert widget-delete widget-create |
| 32550 | ;;;;;; widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (19968 | 32776 | ;;;;;; widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (20119 |
| 32551 | ;;;;;; 28627)) | 32777 | ;;;;;; 34052)) |
| 32552 | ;;; Generated autoloads from wid-edit.el | 32778 | ;;; Generated autoloads from wid-edit.el |
| 32553 | 32779 | ||
| 32554 | (autoload 'widgetp "wid-edit" "\ | 32780 | (autoload 'widgetp "wid-edit" "\ |
| @@ -32591,8 +32817,8 @@ Setup current buffer so editing string widgets works. | |||
| 32591 | ;;;*** | 32817 | ;;;*** |
| 32592 | 32818 | ||
| 32593 | ;;;### (autoloads (windmove-default-keybindings windmove-down windmove-right | 32819 | ;;;### (autoloads (windmove-default-keybindings windmove-down windmove-right |
| 32594 | ;;;;;; windmove-up windmove-left) "windmove" "windmove.el" (19886 | 32820 | ;;;;;; windmove-up windmove-left) "windmove" "windmove.el" (20119 |
| 32595 | ;;;;;; 45771)) | 32821 | ;;;;;; 34052)) |
| 32596 | ;;; Generated autoloads from windmove.el | 32822 | ;;; Generated autoloads from windmove.el |
| 32597 | 32823 | ||
| 32598 | (autoload 'windmove-left "windmove" "\ | 32824 | (autoload 'windmove-left "windmove" "\ |
| @@ -32645,7 +32871,7 @@ Default MODIFIER is 'shift. | |||
| 32645 | ;;;*** | 32871 | ;;;*** |
| 32646 | 32872 | ||
| 32647 | ;;;### (autoloads (winner-mode winner-mode) "winner" "winner.el" | 32873 | ;;;### (autoloads (winner-mode winner-mode) "winner" "winner.el" |
| 32648 | ;;;;;; (19998 49767)) | 32874 | ;;;;;; (20119 34052)) |
| 32649 | ;;; Generated autoloads from winner.el | 32875 | ;;; Generated autoloads from winner.el |
| 32650 | 32876 | ||
| 32651 | (defvar winner-mode nil "\ | 32877 | (defvar winner-mode nil "\ |
| @@ -32664,7 +32890,7 @@ With arg, turn Winner mode on if and only if arg is positive. | |||
| 32664 | ;;;*** | 32890 | ;;;*** |
| 32665 | 32891 | ||
| 32666 | ;;;### (autoloads (woman-bookmark-jump woman-find-file woman-dired-find-file | 32892 | ;;;### (autoloads (woman-bookmark-jump woman-find-file woman-dired-find-file |
| 32667 | ;;;;;; woman woman-locale) "woman" "woman.el" (20087 5852)) | 32893 | ;;;;;; woman woman-locale) "woman" "woman.el" (20119 34052)) |
| 32668 | ;;; Generated autoloads from woman.el | 32894 | ;;; Generated autoloads from woman.el |
| 32669 | 32895 | ||
| 32670 | (defvar woman-locale nil "\ | 32896 | (defvar woman-locale nil "\ |
| @@ -32713,7 +32939,7 @@ Default bookmark handler for Woman buffers. | |||
| 32713 | ;;;*** | 32939 | ;;;*** |
| 32714 | 32940 | ||
| 32715 | ;;;### (autoloads (wordstar-mode) "ws-mode" "emulation/ws-mode.el" | 32941 | ;;;### (autoloads (wordstar-mode) "ws-mode" "emulation/ws-mode.el" |
| 32716 | ;;;;;; (19845 45374)) | 32942 | ;;;;;; (20140 44344)) |
| 32717 | ;;; Generated autoloads from emulation/ws-mode.el | 32943 | ;;; Generated autoloads from emulation/ws-mode.el |
| 32718 | 32944 | ||
| 32719 | (autoload 'wordstar-mode "ws-mode" "\ | 32945 | (autoload 'wordstar-mode "ws-mode" "\ |
| @@ -32793,9 +33019,9 @@ The key bindings are: | |||
| 32793 | C-o r set-fill-column | 33019 | C-o r set-fill-column |
| 32794 | C-o C-u keyboard-quit | 33020 | C-o C-u keyboard-quit |
| 32795 | C-o wd delete-other-windows | 33021 | C-o wd delete-other-windows |
| 32796 | C-o wh split-window-horizontally | 33022 | C-o wh split-window-right |
| 32797 | C-o wo other-window | 33023 | C-o wo other-window |
| 32798 | C-o wv split-window-vertically | 33024 | C-o wv split-window-below |
| 32799 | 33025 | ||
| 32800 | C-q 0 ws-find-marker-0 | 33026 | C-q 0 ws-find-marker-0 |
| 32801 | C-q 1 ws-find-marker-1 | 33027 | C-q 1 ws-find-marker-1 |
| @@ -32825,7 +33051,7 @@ The key bindings are: | |||
| 32825 | 33051 | ||
| 32826 | ;;;*** | 33052 | ;;;*** |
| 32827 | 33053 | ||
| 32828 | ;;;### (autoloads (xesam-search) "xesam" "net/xesam.el" (19845 45374)) | 33054 | ;;;### (autoloads (xesam-search) "xesam" "net/xesam.el" (20127 25788)) |
| 32829 | ;;; Generated autoloads from net/xesam.el | 33055 | ;;; Generated autoloads from net/xesam.el |
| 32830 | 33056 | ||
| 32831 | (autoload 'xesam-search "xesam" "\ | 33057 | (autoload 'xesam-search "xesam" "\ |
| @@ -32845,7 +33071,7 @@ Example: | |||
| 32845 | ;;;*** | 33071 | ;;;*** |
| 32846 | 33072 | ||
| 32847 | ;;;### (autoloads (xml-parse-region xml-parse-file) "xml" "xml.el" | 33073 | ;;;### (autoloads (xml-parse-region xml-parse-file) "xml" "xml.el" |
| 32848 | ;;;;;; (19886 45771)) | 33074 | ;;;;;; (20119 34052)) |
| 32849 | ;;; Generated autoloads from xml.el | 33075 | ;;; Generated autoloads from xml.el |
| 32850 | 33076 | ||
| 32851 | (autoload 'xml-parse-file "xml" "\ | 33077 | (autoload 'xml-parse-file "xml" "\ |
| @@ -32871,7 +33097,7 @@ If PARSE-NS is non-nil, then QNAMES are expanded. | |||
| 32871 | ;;;*** | 33097 | ;;;*** |
| 32872 | 33098 | ||
| 32873 | ;;;### (autoloads (xmltok-get-declared-encoding-position) "xmltok" | 33099 | ;;;### (autoloads (xmltok-get-declared-encoding-position) "xmltok" |
| 32874 | ;;;;;; "nxml/xmltok.el" (19845 45374)) | 33100 | ;;;;;; "nxml/xmltok.el" (20119 34052)) |
| 32875 | ;;; Generated autoloads from nxml/xmltok.el | 33101 | ;;; Generated autoloads from nxml/xmltok.el |
| 32876 | 33102 | ||
| 32877 | (autoload 'xmltok-get-declared-encoding-position "xmltok" "\ | 33103 | (autoload 'xmltok-get-declared-encoding-position "xmltok" "\ |
| @@ -32889,8 +33115,8 @@ If LIMIT is non-nil, then do not consider characters beyond LIMIT. | |||
| 32889 | 33115 | ||
| 32890 | ;;;*** | 33116 | ;;;*** |
| 32891 | 33117 | ||
| 32892 | ;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (20034 | 33118 | ;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (20126 |
| 32893 | ;;;;;; 23247)) | 33119 | ;;;;;; 50742)) |
| 32894 | ;;; Generated autoloads from xt-mouse.el | 33120 | ;;; Generated autoloads from xt-mouse.el |
| 32895 | 33121 | ||
| 32896 | (defvar xterm-mouse-mode nil "\ | 33122 | (defvar xterm-mouse-mode nil "\ |
| @@ -32904,8 +33130,9 @@ or call the function `xterm-mouse-mode'.") | |||
| 32904 | 33130 | ||
| 32905 | (autoload 'xterm-mouse-mode "xt-mouse" "\ | 33131 | (autoload 'xterm-mouse-mode "xt-mouse" "\ |
| 32906 | Toggle XTerm mouse mode. | 33132 | Toggle XTerm mouse mode. |
| 32907 | With prefix arg, turn XTerm mouse mode on if arg is positive, otherwise turn | 33133 | With a prefix argument ARG, enable XTerm mouse mode if ARG is |
| 32908 | it off. | 33134 | positive, and disable it otherwise. If called from Lisp, enable |
| 33135 | the mode if ARG is omitted or nil. | ||
| 32909 | 33136 | ||
| 32910 | Turn it on to use Emacs mouse commands, and off to use xterm mouse commands. | 33137 | Turn it on to use Emacs mouse commands, and off to use xterm mouse commands. |
| 32911 | This works in terminal emulators compatible with xterm. It only | 33138 | This works in terminal emulators compatible with xterm. It only |
| @@ -32919,7 +33146,7 @@ down the SHIFT key while pressing the mouse button. | |||
| 32919 | ;;;*** | 33146 | ;;;*** |
| 32920 | 33147 | ||
| 32921 | ;;;### (autoloads (yenc-extract-filename yenc-decode-region) "yenc" | 33148 | ;;;### (autoloads (yenc-extract-filename yenc-decode-region) "yenc" |
| 32922 | ;;;;;; "gnus/yenc.el" (19845 45374)) | 33149 | ;;;;;; "gnus/yenc.el" (20119 34052)) |
| 32923 | ;;; Generated autoloads from gnus/yenc.el | 33150 | ;;; Generated autoloads from gnus/yenc.el |
| 32924 | 33151 | ||
| 32925 | (autoload 'yenc-decode-region "yenc" "\ | 33152 | (autoload 'yenc-decode-region "yenc" "\ |
| @@ -32935,7 +33162,7 @@ Extract file name from an yenc header. | |||
| 32935 | ;;;*** | 33162 | ;;;*** |
| 32936 | 33163 | ||
| 32937 | ;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism | 33164 | ;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism |
| 32938 | ;;;;;; yow) "yow" "play/yow.el" (19845 45374)) | 33165 | ;;;;;; yow) "yow" "play/yow.el" (20119 34052)) |
| 32939 | ;;; Generated autoloads from play/yow.el | 33166 | ;;; Generated autoloads from play/yow.el |
| 32940 | 33167 | ||
| 32941 | (autoload 'yow "yow" "\ | 33168 | (autoload 'yow "yow" "\ |
| @@ -32961,7 +33188,7 @@ Zippy goes to the analyst. | |||
| 32961 | 33188 | ||
| 32962 | ;;;*** | 33189 | ;;;*** |
| 32963 | 33190 | ||
| 32964 | ;;;### (autoloads (zone) "zone" "play/zone.el" (19889 21967)) | 33191 | ;;;### (autoloads (zone) "zone" "play/zone.el" (20119 34052)) |
| 32965 | ;;; Generated autoloads from play/zone.el | 33192 | ;;; Generated autoloads from play/zone.el |
| 32966 | 33193 | ||
| 32967 | (autoload 'zone "zone" "\ | 33194 | (autoload 'zone "zone" "\ |
| @@ -32977,47 +33204,46 @@ Zone out, completely. | |||
| 32977 | ;;;;;; "calc/calc-fin.el" "calc/calc-forms.el" "calc/calc-frac.el" | 33204 | ;;;;;; "calc/calc-fin.el" "calc/calc-forms.el" "calc/calc-frac.el" |
| 32978 | ;;;;;; "calc/calc-funcs.el" "calc/calc-graph.el" "calc/calc-help.el" | 33205 | ;;;;;; "calc/calc-funcs.el" "calc/calc-graph.el" "calc/calc-help.el" |
| 32979 | ;;;;;; "calc/calc-incom.el" "calc/calc-keypd.el" "calc/calc-lang.el" | 33206 | ;;;;;; "calc/calc-incom.el" "calc/calc-keypd.el" "calc/calc-lang.el" |
| 32980 | ;;;;;; "calc/calc-loaddefs.el" "calc/calc-macs.el" "calc/calc-map.el" | 33207 | ;;;;;; "calc/calc-macs.el" "calc/calc-map.el" "calc/calc-math.el" |
| 32981 | ;;;;;; "calc/calc-math.el" "calc/calc-menu.el" "calc/calc-misc.el" | 33208 | ;;;;;; "calc/calc-menu.el" "calc/calc-misc.el" "calc/calc-mode.el" |
| 32982 | ;;;;;; "calc/calc-mode.el" "calc/calc-mtx.el" "calc/calc-nlfit.el" | 33209 | ;;;;;; "calc/calc-mtx.el" "calc/calc-nlfit.el" "calc/calc-poly.el" |
| 32983 | ;;;;;; "calc/calc-poly.el" "calc/calc-prog.el" "calc/calc-rewr.el" | 33210 | ;;;;;; "calc/calc-prog.el" "calc/calc-rewr.el" "calc/calc-rules.el" |
| 32984 | ;;;;;; "calc/calc-rules.el" "calc/calc-sel.el" "calc/calc-stat.el" | 33211 | ;;;;;; "calc/calc-sel.el" "calc/calc-stat.el" "calc/calc-store.el" |
| 32985 | ;;;;;; "calc/calc-store.el" "calc/calc-stuff.el" "calc/calc-trail.el" | 33212 | ;;;;;; "calc/calc-stuff.el" "calc/calc-trail.el" "calc/calc-units.el" |
| 32986 | ;;;;;; "calc/calc-units.el" "calc/calc-vec.el" "calc/calc-yank.el" | 33213 | ;;;;;; "calc/calc-vec.el" "calc/calc-yank.el" "calc/calcalg2.el" |
| 32987 | ;;;;;; "calc/calcalg2.el" "calc/calcalg3.el" "calc/calccomp.el" | 33214 | ;;;;;; "calc/calcalg3.el" "calc/calccomp.el" "calc/calcsel2.el" |
| 32988 | ;;;;;; "calc/calcsel2.el" "calendar/cal-bahai.el" "calendar/cal-coptic.el" | 33215 | ;;;;;; "calendar/cal-bahai.el" "calendar/cal-coptic.el" "calendar/cal-french.el" |
| 32989 | ;;;;;; "calendar/cal-french.el" "calendar/cal-html.el" "calendar/cal-islam.el" | 33216 | ;;;;;; "calendar/cal-html.el" "calendar/cal-islam.el" "calendar/cal-iso.el" |
| 32990 | ;;;;;; "calendar/cal-iso.el" "calendar/cal-julian.el" "calendar/cal-loaddefs.el" | 33217 | ;;;;;; "calendar/cal-julian.el" "calendar/cal-loaddefs.el" "calendar/cal-mayan.el" |
| 32991 | ;;;;;; "calendar/cal-mayan.el" "calendar/cal-menu.el" "calendar/cal-move.el" | 33218 | ;;;;;; "calendar/cal-menu.el" "calendar/cal-move.el" "calendar/cal-persia.el" |
| 32992 | ;;;;;; "calendar/cal-persia.el" "calendar/cal-tex.el" "calendar/cal-x.el" | 33219 | ;;;;;; "calendar/cal-tex.el" "calendar/cal-x.el" "calendar/diary-loaddefs.el" |
| 32993 | ;;;;;; "calendar/diary-loaddefs.el" "calendar/hol-loaddefs.el" "cdl.el" | 33220 | ;;;;;; "calendar/hol-loaddefs.el" "cdl.el" "cedet/cedet-cscope.el" |
| 32994 | ;;;;;; "cedet/cedet-cscope.el" "cedet/cedet-files.el" "cedet/cedet-global.el" | 33221 | ;;;;;; "cedet/cedet-files.el" "cedet/cedet-global.el" "cedet/cedet-idutils.el" |
| 32995 | ;;;;;; "cedet/cedet-idutils.el" "cedet/cedet.el" "cedet/ede/auto.el" | 33222 | ;;;;;; "cedet/cedet.el" "cedet/ede/auto.el" "cedet/ede/autoconf-edit.el" |
| 32996 | ;;;;;; "cedet/ede/autoconf-edit.el" "cedet/ede/base.el" "cedet/ede/cpp-root.el" | 33223 | ;;;;;; "cedet/ede/base.el" "cedet/ede/cpp-root.el" "cedet/ede/custom.el" |
| 32997 | ;;;;;; "cedet/ede/custom.el" "cedet/ede/dired.el" "cedet/ede/emacs.el" | 33224 | ;;;;;; "cedet/ede/dired.el" "cedet/ede/emacs.el" "cedet/ede/files.el" |
| 32998 | ;;;;;; "cedet/ede/files.el" "cedet/ede/generic.el" "cedet/ede/linux.el" | 33225 | ;;;;;; "cedet/ede/generic.el" "cedet/ede/linux.el" "cedet/ede/locate.el" |
| 32999 | ;;;;;; "cedet/ede/loaddefs.el" "cedet/ede/locate.el" "cedet/ede/make.el" | 33226 | ;;;;;; "cedet/ede/make.el" "cedet/ede/makefile-edit.el" "cedet/ede/pconf.el" |
| 33000 | ;;;;;; "cedet/ede/makefile-edit.el" "cedet/ede/pconf.el" "cedet/ede/pmake.el" | 33227 | ;;;;;; "cedet/ede/pmake.el" "cedet/ede/proj-archive.el" "cedet/ede/proj-aux.el" |
| 33001 | ;;;;;; "cedet/ede/proj-archive.el" "cedet/ede/proj-aux.el" "cedet/ede/proj-comp.el" | 33228 | ;;;;;; "cedet/ede/proj-comp.el" "cedet/ede/proj-elisp.el" "cedet/ede/proj-info.el" |
| 33002 | ;;;;;; "cedet/ede/proj-elisp.el" "cedet/ede/proj-info.el" "cedet/ede/proj-misc.el" | 33229 | ;;;;;; "cedet/ede/proj-misc.el" "cedet/ede/proj-obj.el" "cedet/ede/proj-prog.el" |
| 33003 | ;;;;;; "cedet/ede/proj-obj.el" "cedet/ede/proj-prog.el" "cedet/ede/proj-scheme.el" | 33230 | ;;;;;; "cedet/ede/proj-scheme.el" "cedet/ede/proj-shared.el" "cedet/ede/proj.el" |
| 33004 | ;;;;;; "cedet/ede/proj-shared.el" "cedet/ede/proj.el" "cedet/ede/project-am.el" | 33231 | ;;;;;; "cedet/ede/project-am.el" "cedet/ede/shell.el" "cedet/ede/simple.el" |
| 33005 | ;;;;;; "cedet/ede/shell.el" "cedet/ede/simple.el" "cedet/ede/source.el" | 33232 | ;;;;;; "cedet/ede/source.el" "cedet/ede/speedbar.el" "cedet/ede/srecode.el" |
| 33006 | ;;;;;; "cedet/ede/speedbar.el" "cedet/ede/srecode.el" "cedet/ede/system.el" | 33233 | ;;;;;; "cedet/ede/system.el" "cedet/ede/util.el" "cedet/inversion.el" |
| 33007 | ;;;;;; "cedet/ede/util.el" "cedet/inversion.el" "cedet/mode-local.el" | 33234 | ;;;;;; "cedet/mode-local.el" "cedet/pulse.el" "cedet/semantic/analyze.el" |
| 33008 | ;;;;;; "cedet/pulse.el" "cedet/semantic/analyze.el" "cedet/semantic/analyze/complete.el" | 33235 | ;;;;;; "cedet/semantic/analyze/complete.el" "cedet/semantic/analyze/debug.el" |
| 33009 | ;;;;;; "cedet/semantic/analyze/debug.el" "cedet/semantic/analyze/fcn.el" | 33236 | ;;;;;; "cedet/semantic/analyze/fcn.el" "cedet/semantic/analyze/refs.el" |
| 33010 | ;;;;;; "cedet/semantic/analyze/refs.el" "cedet/semantic/bovine.el" | 33237 | ;;;;;; "cedet/semantic/bovine.el" "cedet/semantic/bovine/c-by.el" |
| 33011 | ;;;;;; "cedet/semantic/bovine/c-by.el" "cedet/semantic/bovine/c.el" | 33238 | ;;;;;; "cedet/semantic/bovine/c.el" "cedet/semantic/bovine/debug.el" |
| 33012 | ;;;;;; "cedet/semantic/bovine/debug.el" "cedet/semantic/bovine/el.el" | 33239 | ;;;;;; "cedet/semantic/bovine/el.el" "cedet/semantic/bovine/gcc.el" |
| 33013 | ;;;;;; "cedet/semantic/bovine/gcc.el" "cedet/semantic/bovine/make-by.el" | 33240 | ;;;;;; "cedet/semantic/bovine/make-by.el" "cedet/semantic/bovine/make.el" |
| 33014 | ;;;;;; "cedet/semantic/bovine/make.el" "cedet/semantic/bovine/scm-by.el" | 33241 | ;;;;;; "cedet/semantic/bovine/scm-by.el" "cedet/semantic/bovine/scm.el" |
| 33015 | ;;;;;; "cedet/semantic/bovine/scm.el" "cedet/semantic/chart.el" | 33242 | ;;;;;; "cedet/semantic/chart.el" "cedet/semantic/complete.el" "cedet/semantic/ctxt.el" |
| 33016 | ;;;;;; "cedet/semantic/complete.el" "cedet/semantic/ctxt.el" "cedet/semantic/db-debug.el" | 33243 | ;;;;;; "cedet/semantic/db-debug.el" "cedet/semantic/db-ebrowse.el" |
| 33017 | ;;;;;; "cedet/semantic/db-ebrowse.el" "cedet/semantic/db-el.el" | 33244 | ;;;;;; "cedet/semantic/db-el.el" "cedet/semantic/db-file.el" "cedet/semantic/db-find.el" |
| 33018 | ;;;;;; "cedet/semantic/db-file.el" "cedet/semantic/db-find.el" "cedet/semantic/db-global.el" | 33245 | ;;;;;; "cedet/semantic/db-global.el" "cedet/semantic/db-javascript.el" |
| 33019 | ;;;;;; "cedet/semantic/db-javascript.el" "cedet/semantic/db-mode.el" | 33246 | ;;;;;; "cedet/semantic/db-mode.el" "cedet/semantic/db-ref.el" "cedet/semantic/db-typecache.el" |
| 33020 | ;;;;;; "cedet/semantic/db-ref.el" "cedet/semantic/db-typecache.el" | ||
| 33021 | ;;;;;; "cedet/semantic/db.el" "cedet/semantic/debug.el" "cedet/semantic/decorate.el" | 33247 | ;;;;;; "cedet/semantic/db.el" "cedet/semantic/debug.el" "cedet/semantic/decorate.el" |
| 33022 | ;;;;;; "cedet/semantic/decorate/include.el" "cedet/semantic/decorate/mode.el" | 33248 | ;;;;;; "cedet/semantic/decorate/include.el" "cedet/semantic/decorate/mode.el" |
| 33023 | ;;;;;; "cedet/semantic/dep.el" "cedet/semantic/doc.el" "cedet/semantic/ede-grammar.el" | 33249 | ;;;;;; "cedet/semantic/dep.el" "cedet/semantic/doc.el" "cedet/semantic/ede-grammar.el" |
| @@ -33025,13 +33251,13 @@ Zone out, completely. | |||
| 33025 | ;;;;;; "cedet/semantic/fw.el" "cedet/semantic/grammar-wy.el" "cedet/semantic/grammar.el" | 33251 | ;;;;;; "cedet/semantic/fw.el" "cedet/semantic/grammar-wy.el" "cedet/semantic/grammar.el" |
| 33026 | ;;;;;; "cedet/semantic/html.el" "cedet/semantic/ia-sb.el" "cedet/semantic/ia.el" | 33252 | ;;;;;; "cedet/semantic/html.el" "cedet/semantic/ia-sb.el" "cedet/semantic/ia.el" |
| 33027 | ;;;;;; "cedet/semantic/idle.el" "cedet/semantic/imenu.el" "cedet/semantic/java.el" | 33253 | ;;;;;; "cedet/semantic/idle.el" "cedet/semantic/imenu.el" "cedet/semantic/java.el" |
| 33028 | ;;;;;; "cedet/semantic/lex-spp.el" "cedet/semantic/lex.el" "cedet/semantic/loaddefs.el" | 33254 | ;;;;;; "cedet/semantic/lex-spp.el" "cedet/semantic/lex.el" "cedet/semantic/mru-bookmark.el" |
| 33029 | ;;;;;; "cedet/semantic/mru-bookmark.el" "cedet/semantic/sb.el" "cedet/semantic/scope.el" | 33255 | ;;;;;; "cedet/semantic/sb.el" "cedet/semantic/scope.el" "cedet/semantic/senator.el" |
| 33030 | ;;;;;; "cedet/semantic/senator.el" "cedet/semantic/sort.el" "cedet/semantic/symref.el" | 33256 | ;;;;;; "cedet/semantic/sort.el" "cedet/semantic/symref.el" "cedet/semantic/symref/cscope.el" |
| 33031 | ;;;;;; "cedet/semantic/symref/cscope.el" "cedet/semantic/symref/filter.el" | 33257 | ;;;;;; "cedet/semantic/symref/filter.el" "cedet/semantic/symref/global.el" |
| 33032 | ;;;;;; "cedet/semantic/symref/global.el" "cedet/semantic/symref/grep.el" | 33258 | ;;;;;; "cedet/semantic/symref/grep.el" "cedet/semantic/symref/idutils.el" |
| 33033 | ;;;;;; "cedet/semantic/symref/idutils.el" "cedet/semantic/symref/list.el" | 33259 | ;;;;;; "cedet/semantic/symref/list.el" "cedet/semantic/tag-file.el" |
| 33034 | ;;;;;; "cedet/semantic/tag-file.el" "cedet/semantic/tag-ls.el" "cedet/semantic/tag-write.el" | 33260 | ;;;;;; "cedet/semantic/tag-ls.el" "cedet/semantic/tag-write.el" |
| 33035 | ;;;;;; "cedet/semantic/tag.el" "cedet/semantic/texi.el" "cedet/semantic/util-modes.el" | 33261 | ;;;;;; "cedet/semantic/tag.el" "cedet/semantic/texi.el" "cedet/semantic/util-modes.el" |
| 33036 | ;;;;;; "cedet/semantic/util.el" "cedet/semantic/wisent.el" "cedet/semantic/wisent/comp.el" | 33262 | ;;;;;; "cedet/semantic/util.el" "cedet/semantic/wisent.el" "cedet/semantic/wisent/comp.el" |
| 33037 | ;;;;;; "cedet/semantic/wisent/java-tags.el" "cedet/semantic/wisent/javascript.el" | 33263 | ;;;;;; "cedet/semantic/wisent/java-tags.el" "cedet/semantic/wisent/javascript.el" |
| @@ -33043,33 +33269,32 @@ Zone out, completely. | |||
| 33043 | ;;;;;; "cedet/srecode/el.el" "cedet/srecode/expandproto.el" "cedet/srecode/extract.el" | 33269 | ;;;;;; "cedet/srecode/el.el" "cedet/srecode/expandproto.el" "cedet/srecode/extract.el" |
| 33044 | ;;;;;; "cedet/srecode/fields.el" "cedet/srecode/filters.el" "cedet/srecode/find.el" | 33270 | ;;;;;; "cedet/srecode/fields.el" "cedet/srecode/filters.el" "cedet/srecode/find.el" |
| 33045 | ;;;;;; "cedet/srecode/getset.el" "cedet/srecode/insert.el" "cedet/srecode/java.el" | 33271 | ;;;;;; "cedet/srecode/getset.el" "cedet/srecode/insert.el" "cedet/srecode/java.el" |
| 33046 | ;;;;;; "cedet/srecode/loaddefs.el" "cedet/srecode/map.el" "cedet/srecode/mode.el" | 33272 | ;;;;;; "cedet/srecode/map.el" "cedet/srecode/mode.el" "cedet/srecode/semantic.el" |
| 33047 | ;;;;;; "cedet/srecode/semantic.el" "cedet/srecode/srt-wy.el" "cedet/srecode/srt.el" | 33273 | ;;;;;; "cedet/srecode/srt-wy.el" "cedet/srecode/srt.el" "cedet/srecode/table.el" |
| 33048 | ;;;;;; "cedet/srecode/table.el" "cedet/srecode/template.el" "cedet/srecode/texi.el" | 33274 | ;;;;;; "cedet/srecode/template.el" "cedet/srecode/texi.el" "cus-dep.el" |
| 33049 | ;;;;;; "cus-dep.el" "dframe.el" "dired-aux.el" "dired-x.el" "dos-fns.el" | 33275 | ;;;;;; "dframe.el" "dired-aux.el" "dired-x.el" "dos-fns.el" "dos-vars.el" |
| 33050 | ;;;;;; "dos-vars.el" "dos-w32.el" "dynamic-setting.el" "emacs-lisp/assoc.el" | 33276 | ;;;;;; "dos-w32.el" "dynamic-setting.el" "emacs-lisp/assoc.el" "emacs-lisp/authors.el" |
| 33051 | ;;;;;; "emacs-lisp/authors.el" "emacs-lisp/avl-tree.el" "emacs-lisp/bindat.el" | 33277 | ;;;;;; "emacs-lisp/avl-tree.el" "emacs-lisp/bindat.el" "emacs-lisp/byte-opt.el" |
| 33052 | ;;;;;; "emacs-lisp/byte-opt.el" "emacs-lisp/chart.el" "emacs-lisp/cl-extra.el" | 33278 | ;;;;;; "emacs-lisp/chart.el" "emacs-lisp/cl-extra.el" "emacs-lisp/cl-loaddefs.el" |
| 33053 | ;;;;;; "emacs-lisp/cl-loaddefs.el" "emacs-lisp/cl-macs.el" "emacs-lisp/cl-seq.el" | 33279 | ;;;;;; "emacs-lisp/cl-macs.el" "emacs-lisp/cl-seq.el" "emacs-lisp/cl-specs.el" |
| 33054 | ;;;;;; "emacs-lisp/cl-specs.el" "emacs-lisp/cust-print.el" "emacs-lisp/eieio-base.el" | 33280 | ;;;;;; "emacs-lisp/cust-print.el" "emacs-lisp/eieio-base.el" "emacs-lisp/eieio-custom.el" |
| 33055 | ;;;;;; "emacs-lisp/eieio-custom.el" "emacs-lisp/eieio-datadebug.el" | 33281 | ;;;;;; "emacs-lisp/eieio-datadebug.el" "emacs-lisp/eieio-opt.el" |
| 33056 | ;;;;;; "emacs-lisp/eieio-opt.el" "emacs-lisp/eieio-speedbar.el" | 33282 | ;;;;;; "emacs-lisp/eieio-speedbar.el" "emacs-lisp/eieio.el" "emacs-lisp/find-gc.el" |
| 33057 | ;;;;;; "emacs-lisp/eieio.el" "emacs-lisp/find-gc.el" "emacs-lisp/gulp.el" | 33283 | ;;;;;; "emacs-lisp/gulp.el" "emacs-lisp/lisp-mnt.el" "emacs-lisp/package-x.el" |
| 33058 | ;;;;;; "emacs-lisp/lisp-mnt.el" "emacs-lisp/package-x.el" "emacs-lisp/regi.el" | 33284 | ;;;;;; "emacs-lisp/regi.el" "emacs-lisp/smie.el" "emacs-lisp/tcover-ses.el" |
| 33059 | ;;;;;; "emacs-lisp/smie.el" "emacs-lisp/tcover-ses.el" "emacs-lisp/tcover-unsafep.el" | 33285 | ;;;;;; "emacs-lisp/tcover-unsafep.el" "emulation/cua-gmrk.el" "emulation/cua-rect.el" |
| 33060 | ;;;;;; "emulation/cua-gmrk.el" "emulation/cua-rect.el" "emulation/edt-lk201.el" | 33286 | ;;;;;; "emulation/edt-lk201.el" "emulation/edt-mapper.el" "emulation/edt-pc.el" |
| 33061 | ;;;;;; "emulation/edt-mapper.el" "emulation/edt-pc.el" "emulation/edt-vt100.el" | 33287 | ;;;;;; "emulation/edt-vt100.el" "emulation/tpu-extras.el" "emulation/viper-cmd.el" |
| 33062 | ;;;;;; "emulation/tpu-extras.el" "emulation/viper-cmd.el" "emulation/viper-ex.el" | 33288 | ;;;;;; "emulation/viper-ex.el" "emulation/viper-init.el" "emulation/viper-keym.el" |
| 33063 | ;;;;;; "emulation/viper-init.el" "emulation/viper-keym.el" "emulation/viper-macs.el" | 33289 | ;;;;;; "emulation/viper-macs.el" "emulation/viper-mous.el" "emulation/viper-util.el" |
| 33064 | ;;;;;; "emulation/viper-mous.el" "emulation/viper-util.el" "erc/erc-backend.el" | 33290 | ;;;;;; "erc/erc-backend.el" "erc/erc-goodies.el" "erc/erc-ibuffer.el" |
| 33065 | ;;;;;; "erc/erc-goodies.el" "erc/erc-ibuffer.el" "erc/erc-lang.el" | 33291 | ;;;;;; "erc/erc-lang.el" "eshell/em-alias.el" "eshell/em-banner.el" |
| 33066 | ;;;;;; "eshell/em-alias.el" "eshell/em-banner.el" "eshell/em-basic.el" | 33292 | ;;;;;; "eshell/em-basic.el" "eshell/em-cmpl.el" "eshell/em-dirs.el" |
| 33067 | ;;;;;; "eshell/em-cmpl.el" "eshell/em-dirs.el" "eshell/em-glob.el" | 33293 | ;;;;;; "eshell/em-glob.el" "eshell/em-hist.el" "eshell/em-ls.el" |
| 33068 | ;;;;;; "eshell/em-hist.el" "eshell/em-ls.el" "eshell/em-pred.el" | 33294 | ;;;;;; "eshell/em-pred.el" "eshell/em-prompt.el" "eshell/em-rebind.el" |
| 33069 | ;;;;;; "eshell/em-prompt.el" "eshell/em-rebind.el" "eshell/em-script.el" | 33295 | ;;;;;; "eshell/em-script.el" "eshell/em-smart.el" "eshell/em-term.el" |
| 33070 | ;;;;;; "eshell/em-smart.el" "eshell/em-term.el" "eshell/em-unix.el" | 33296 | ;;;;;; "eshell/em-unix.el" "eshell/em-xtra.el" "eshell/esh-arg.el" |
| 33071 | ;;;;;; "eshell/em-xtra.el" "eshell/esh-arg.el" "eshell/esh-cmd.el" | 33297 | ;;;;;; "eshell/esh-cmd.el" "eshell/esh-ext.el" "eshell/esh-io.el" |
| 33072 | ;;;;;; "eshell/esh-ext.el" "eshell/esh-groups.el" "eshell/esh-io.el" | ||
| 33073 | ;;;;;; "eshell/esh-module.el" "eshell/esh-opt.el" "eshell/esh-proc.el" | 33298 | ;;;;;; "eshell/esh-module.el" "eshell/esh-opt.el" "eshell/esh-proc.el" |
| 33074 | ;;;;;; "eshell/esh-util.el" "eshell/esh-var.el" "ezimage.el" "foldout.el" | 33299 | ;;;;;; "eshell/esh-util.el" "eshell/esh-var.el" "ezimage.el" "foldout.el" |
| 33075 | ;;;;;; "format-spec.el" "forms-d2.el" "forms-pass.el" "fringe.el" | 33300 | ;;;;;; "format-spec.el" "forms-d2.el" "forms-pass.el" "fringe.el" |
| @@ -33172,8 +33397,8 @@ Zone out, completely. | |||
| 33172 | ;;;;;; "vc/ediff-init.el" "vc/ediff-merg.el" "vc/ediff-ptch.el" | 33397 | ;;;;;; "vc/ediff-init.el" "vc/ediff-merg.el" "vc/ediff-ptch.el" |
| 33173 | ;;;;;; "vc/ediff-vers.el" "vc/ediff-wind.el" "vc/pcvs-info.el" "vc/pcvs-parse.el" | 33398 | ;;;;;; "vc/ediff-vers.el" "vc/ediff-wind.el" "vc/pcvs-info.el" "vc/pcvs-parse.el" |
| 33174 | ;;;;;; "vc/pcvs-util.el" "vc/vc-dav.el" "vcursor.el" "vt-control.el" | 33399 | ;;;;;; "vc/pcvs-util.el" "vc/vc-dav.el" "vcursor.el" "vt-control.el" |
| 33175 | ;;;;;; "vt100-led.el" "w32-fns.el" "w32-vars.el" "x-dnd.el") (20102 | 33400 | ;;;;;; "vt100-led.el" "w32-fns.el" "w32-vars.el" "x-dnd.el") (20142 |
| 33176 | ;;;;;; 59774 629987)) | 33401 | ;;;;;; 850 416521)) |
| 33177 | 33402 | ||
| 33178 | ;;;*** | 33403 | ;;;*** |
| 33179 | 33404 | ||
diff --git a/lisp/net/newst-treeview.el b/lisp/net/newst-treeview.el index 26dddffb6ed..5e38a905ad5 100644 --- a/lisp/net/newst-treeview.el +++ b/lisp/net/newst-treeview.el | |||
| @@ -7,7 +7,6 @@ | |||
| 7 | ;; URL: http://www.nongnu.org/newsticker | 7 | ;; URL: http://www.nongnu.org/newsticker |
| 8 | ;; Created: 2007 | 8 | ;; Created: 2007 |
| 9 | ;; Keywords: News, RSS, Atom | 9 | ;; Keywords: News, RSS, Atom |
| 10 | ;; Time-stamp: "13. Mai 2011, 20:56:49 (ulf)" | ||
| 11 | ;; Package: newsticker | 10 | ;; Package: newsticker |
| 12 | 11 | ||
| 13 | ;; ====================================================================== | 12 | ;; ====================================================================== |
| @@ -1193,7 +1192,8 @@ Arguments IGNORE are ignored." | |||
| 1193 | Note: does not update the layout." | 1192 | Note: does not update the layout." |
| 1194 | (interactive) | 1193 | (interactive) |
| 1195 | (let ((cur-item (newsticker--treeview-get-selected-item))) | 1194 | (let ((cur-item (newsticker--treeview-get-selected-item))) |
| 1196 | (newsticker--group-manage-orphan-feeds) | 1195 | (if (newsticker--group-manage-orphan-feeds) |
| 1196 | (newsticker--treeview-tree-update)) | ||
| 1197 | (newsticker--treeview-list-update t) | 1197 | (newsticker--treeview-list-update t) |
| 1198 | (newsticker--treeview-item-update) | 1198 | (newsticker--treeview-item-update) |
| 1199 | (newsticker--treeview-tree-update-tags) | 1199 | (newsticker--treeview-tree-update-tags) |
| @@ -1811,7 +1811,8 @@ Update teeview afterwards unless NO-UPDATE is non-nil." | |||
| 1811 | 1811 | ||
| 1812 | (defun newsticker--group-manage-orphan-feeds () | 1812 | (defun newsticker--group-manage-orphan-feeds () |
| 1813 | "Put unmanaged feeds into `newsticker-groups'. | 1813 | "Put unmanaged feeds into `newsticker-groups'. |
| 1814 | Remove obsolete feeds as well." | 1814 | Remove obsolete feeds as well. |
| 1815 | Return t if groups have changed, nil otherwise." | ||
| 1815 | (unless newsticker-groups | 1816 | (unless newsticker-groups |
| 1816 | (setq newsticker-groups '("Feeds"))) | 1817 | (setq newsticker-groups '("Feeds"))) |
| 1817 | (let ((new-feed nil) | 1818 | (let ((new-feed nil) |
| @@ -1823,10 +1824,9 @@ Remove obsolete feeds as well." | |||
| 1823 | (append newsticker-url-list-defaults newsticker-url-list)) | 1824 | (append newsticker-url-list-defaults newsticker-url-list)) |
| 1824 | (setq newsticker-groups | 1825 | (setq newsticker-groups |
| 1825 | (newsticker--group-remove-obsolete-feeds newsticker-groups)) | 1826 | (newsticker--group-remove-obsolete-feeds newsticker-groups)) |
| 1826 | (if (or new-feed | 1827 | (or new-feed |
| 1827 | (not (= grouped-feeds | 1828 | (not (= grouped-feeds |
| 1828 | (newsticker--count-grouped-feeds newsticker-groups)))) | 1829 | (newsticker--count-grouped-feeds newsticker-groups)))))) |
| 1829 | (newsticker--treeview-tree-update)))) | ||
| 1830 | 1830 | ||
| 1831 | ;; ====================================================================== | 1831 | ;; ====================================================================== |
| 1832 | ;;; Modes | 1832 | ;;; Modes |
| @@ -2036,7 +2036,8 @@ POS gives the position where EVENT occurred." | |||
| 2036 | (newsticker--treeview-frame-init) | 2036 | (newsticker--treeview-frame-init) |
| 2037 | (newsticker--treeview-window-init) | 2037 | (newsticker--treeview-window-init) |
| 2038 | (newsticker--treeview-buffer-init) | 2038 | (newsticker--treeview-buffer-init) |
| 2039 | (newsticker--group-manage-orphan-feeds) | 2039 | (if (newsticker--group-manage-orphan-feeds) |
| 2040 | (newsticker--treeview-tree-update)) | ||
| 2040 | (newsticker--treeview-set-current-node newsticker--treeview-feed-tree) | 2041 | (newsticker--treeview-set-current-node newsticker--treeview-feed-tree) |
| 2041 | (newsticker-start t) ;; will start only if not running | 2042 | (newsticker-start t) ;; will start only if not running |
| 2042 | (newsticker-treeview-update) | 2043 | (newsticker-treeview-update) |
diff --git a/lisp/subr.el b/lisp/subr.el index 50ea49bd8c9..d5120826812 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -624,6 +624,7 @@ Don't call this function; it is for internal use only." | |||
| 624 | (defun keymap--menu-item-with-binding (item binding) | 624 | (defun keymap--menu-item-with-binding (item binding) |
| 625 | "Build a menu-item like ITEM but with its binding changed to BINDING." | 625 | "Build a menu-item like ITEM but with its binding changed to BINDING." |
| 626 | (cond | 626 | (cond |
| 627 | ((not (consp item)) binding) ;Not a menu-item. | ||
| 627 | ((eq 'menu-item (car item)) | 628 | ((eq 'menu-item (car item)) |
| 628 | (setq item (copy-sequence item)) | 629 | (setq item (copy-sequence item)) |
| 629 | (let ((tail (nthcdr 2 item))) | 630 | (let ((tail (nthcdr 2 item))) |
diff --git a/lisp/whitespace.el b/lisp/whitespace.el index 8dc1996734d..f50386b1827 100644 --- a/lisp/whitespace.el +++ b/lisp/whitespace.el | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | ;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br> | 5 | ;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br> |
| 6 | ;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br> | 6 | ;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br> |
| 7 | ;; Keywords: data, wp | 7 | ;; Keywords: data, wp |
| 8 | ;; Version: 13.2.1 | 8 | ;; Version: 13.2.2 |
| 9 | ;; X-URL: http://www.emacswiki.org/cgi-bin/wiki/ViniciusJoseLatorre | 9 | ;; X-URL: http://www.emacswiki.org/cgi-bin/wiki/ViniciusJoseLatorre |
| 10 | 10 | ||
| 11 | ;; This file is part of GNU Emacs. | 11 | ;; This file is part of GNU Emacs. |
| @@ -1103,9 +1103,10 @@ See also `whitespace-newline' and `whitespace-display-mappings'." | |||
| 1103 | :global nil | 1103 | :global nil |
| 1104 | :group 'whitespace | 1104 | :group 'whitespace |
| 1105 | (let ((whitespace-style '(face newline-mark newline))) | 1105 | (let ((whitespace-style '(face newline-mark newline))) |
| 1106 | (whitespace-mode (if whitespace-newline-mode 1 -1)) | 1106 | (whitespace-mode (if whitespace-newline-mode |
| 1107 | ;; Sync states (running a batch job). | 1107 | 1 -1))) |
| 1108 | (setq whitespace-newline-mode whitespace-mode))) | 1108 | ;; sync states (running a batch job) |
| 1109 | (setq whitespace-newline-mode whitespace-mode)) | ||
| 1109 | 1110 | ||
| 1110 | 1111 | ||
| 1111 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 1112 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| @@ -2407,8 +2408,8 @@ resultant list will be returned." | |||
| 2407 | "Match trailing spaces which do not contain the point at end of line." | 2408 | "Match trailing spaces which do not contain the point at end of line." |
| 2408 | (let ((status t)) | 2409 | (let ((status t)) |
| 2409 | (while (if (re-search-forward whitespace-trailing-regexp limit t) | 2410 | (while (if (re-search-forward whitespace-trailing-regexp limit t) |
| 2410 | (= whitespace-point (match-end 1)) ;; Loop if point at eol. | 2411 | (= whitespace-point (match-end 1)) ;; loop if point at eol |
| 2411 | (setq status nil))) ;; End of buffer. | 2412 | (setq status nil))) ;; end of buffer |
| 2412 | status)) | 2413 | status)) |
| 2413 | 2414 | ||
| 2414 | 2415 | ||
diff --git a/lisp/window.el b/lisp/window.el index e9f3a779785..d254248c2c7 100644 --- a/lisp/window.el +++ b/lisp/window.el | |||
| @@ -196,7 +196,7 @@ narrower, explictly specify the SIZE argument of that function." | |||
| 196 | :version "24.1" | 196 | :version "24.1" |
| 197 | :group 'windows) | 197 | :group 'windows) |
| 198 | 198 | ||
| 199 | (defun window-iso-combination-p (&optional window horizontal) | 199 | (defun window-combination-p (&optional window horizontal) |
| 200 | "If WINDOW is a vertical combination return WINDOW's first child. | 200 | "If WINDOW is a vertical combination return WINDOW's first child. |
| 201 | WINDOW can be any window and defaults to the selected one. | 201 | WINDOW can be any window and defaults to the selected one. |
| 202 | Optional argument HORIZONTAL non-nil means return WINDOW's first | 202 | Optional argument HORIZONTAL non-nil means return WINDOW's first |
| @@ -206,16 +206,16 @@ child if WINDOW is a horizontal combination." | |||
| 206 | (window-left-child window) | 206 | (window-left-child window) |
| 207 | (window-top-child window))) | 207 | (window-top-child window))) |
| 208 | 208 | ||
| 209 | (defsubst window-iso-combined-p (&optional window horizontal) | 209 | (defsubst window-combined-p (&optional window horizontal) |
| 210 | "Return non-nil if and only if WINDOW is vertically combined. | 210 | "Return non-nil if and only if WINDOW is vertically combined. |
| 211 | WINDOW can be any window and defaults to the selected one. | 211 | WINDOW can be any window and defaults to the selected one. |
| 212 | Optional argument HORIZONTAL non-nil means return non-nil if and | 212 | Optional argument HORIZONTAL non-nil means return non-nil if and |
| 213 | only if WINDOW is horizontally combined." | 213 | only if WINDOW is horizontally combined." |
| 214 | (setq window (window-normalize-any-window window)) | 214 | (setq window (window-normalize-any-window window)) |
| 215 | (let ((parent (window-parent window))) | 215 | (let ((parent (window-parent window))) |
| 216 | (and parent (window-iso-combination-p parent horizontal)))) | 216 | (and parent (window-combination-p parent horizontal)))) |
| 217 | 217 | ||
| 218 | (defun window-iso-combinations (&optional window horizontal) | 218 | (defun window-combinations (&optional window horizontal) |
| 219 | "Return largest number of vertically arranged subwindows of WINDOW. | 219 | "Return largest number of vertically arranged subwindows of WINDOW. |
| 220 | WINDOW can be any window and defaults to the selected one. | 220 | WINDOW can be any window and defaults to the selected one. |
| 221 | Optional argument HORIZONTAL non-nil means to return the largest | 221 | Optional argument HORIZONTAL non-nil means to return the largest |
| @@ -225,14 +225,14 @@ number of horizontally arranged subwindows of WINDOW." | |||
| 225 | ((window-live-p window) | 225 | ((window-live-p window) |
| 226 | ;; If WINDOW is live, return 1. | 226 | ;; If WINDOW is live, return 1. |
| 227 | 1) | 227 | 1) |
| 228 | ((window-iso-combination-p window horizontal) | 228 | ((window-combination-p window horizontal) |
| 229 | ;; If WINDOW is iso-combined, return the sum of the values for all | 229 | ;; If WINDOW is iso-combined, return the sum of the values for all |
| 230 | ;; subwindows of WINDOW. | 230 | ;; subwindows of WINDOW. |
| 231 | (let ((child (window-child window)) | 231 | (let ((child (window-child window)) |
| 232 | (count 0)) | 232 | (count 0)) |
| 233 | (while child | 233 | (while child |
| 234 | (setq count | 234 | (setq count |
| 235 | (+ (window-iso-combinations child horizontal) | 235 | (+ (window-combinations child horizontal) |
| 236 | count)) | 236 | count)) |
| 237 | (setq child (window-right child))) | 237 | (setq child (window-right child))) |
| 238 | count)) | 238 | count)) |
| @@ -243,7 +243,7 @@ number of horizontally arranged subwindows of WINDOW." | |||
| 243 | (count 1)) | 243 | (count 1)) |
| 244 | (while child | 244 | (while child |
| 245 | (setq count | 245 | (setq count |
| 246 | (max (window-iso-combinations child horizontal) | 246 | (max (window-combinations child horizontal) |
| 247 | count)) | 247 | count)) |
| 248 | (setq child (window-right child))) | 248 | (setq child (window-right child))) |
| 249 | count)))) | 249 | count)))) |
| @@ -555,7 +555,7 @@ restrictions for that window only." | |||
| 555 | (if sub | 555 | (if sub |
| 556 | (let ((value 0)) | 556 | (let ((value 0)) |
| 557 | ;; WINDOW is an internal window. | 557 | ;; WINDOW is an internal window. |
| 558 | (if (window-iso-combined-p sub horizontal) | 558 | (if (window-combined-p sub horizontal) |
| 559 | ;; The minimum size of an iso-combination is the sum of | 559 | ;; The minimum size of an iso-combination is the sum of |
| 560 | ;; the minimum sizes of its subwindows. | 560 | ;; the minimum sizes of its subwindows. |
| 561 | (while sub | 561 | (while sub |
| @@ -669,7 +669,7 @@ doc-string of `window-sizable'." | |||
| 669 | (catch 'fixed | 669 | (catch 'fixed |
| 670 | (if sub | 670 | (if sub |
| 671 | ;; WINDOW is an internal window. | 671 | ;; WINDOW is an internal window. |
| 672 | (if (window-iso-combined-p sub horizontal) | 672 | (if (window-combined-p sub horizontal) |
| 673 | ;; An iso-combination is fixed size if all its subwindows | 673 | ;; An iso-combination is fixed size if all its subwindows |
| 674 | ;; are fixed-size. | 674 | ;; are fixed-size. |
| 675 | (progn | 675 | (progn |
| @@ -717,7 +717,7 @@ WINDOW can be resized in the desired direction. The functions | |||
| 717 | (let* ((parent (window-parent window)) | 717 | (let* ((parent (window-parent window)) |
| 718 | (sub (window-child parent))) | 718 | (sub (window-child parent))) |
| 719 | (catch 'done | 719 | (catch 'done |
| 720 | (if (window-iso-combined-p sub horizontal) | 720 | (if (window-combined-p sub horizontal) |
| 721 | ;; In an iso-combination throw DELTA if we find at least one | 721 | ;; In an iso-combination throw DELTA if we find at least one |
| 722 | ;; subwindow and that subwindow is either not of fixed-size | 722 | ;; subwindow and that subwindow is either not of fixed-size |
| 723 | ;; or we can ignore fixed-sizeness. | 723 | ;; or we can ignore fixed-sizeness. |
| @@ -797,7 +797,7 @@ least one other windows can be enlarged appropriately." | |||
| 797 | (let* ((parent (window-parent window)) | 797 | (let* ((parent (window-parent window)) |
| 798 | (sub (window-child parent))) | 798 | (sub (window-child parent))) |
| 799 | (catch 'fixed | 799 | (catch 'fixed |
| 800 | (if (window-iso-combined-p sub horizontal) | 800 | (if (window-combined-p sub horizontal) |
| 801 | ;; For an iso-combination calculate how much we can get from | 801 | ;; For an iso-combination calculate how much we can get from |
| 802 | ;; other subwindows. | 802 | ;; other subwindows. |
| 803 | (let ((skip (eq trail 'after))) | 803 | (let ((skip (eq trail 'after))) |
| @@ -1498,7 +1498,7 @@ instead." | |||
| 1498 | (window--resize-reset frame horizontal) | 1498 | (window--resize-reset frame horizontal) |
| 1499 | (window--resize-this-window window delta horizontal ignore t) | 1499 | (window--resize-this-window window delta horizontal ignore t) |
| 1500 | (if (and (not (window-splits window)) | 1500 | (if (and (not (window-splits window)) |
| 1501 | (window-iso-combined-p window horizontal) | 1501 | (window-combined-p window horizontal) |
| 1502 | (setq sibling (or (window-right window) (window-left window))) | 1502 | (setq sibling (or (window-right window) (window-left window))) |
| 1503 | (window-sizable-p sibling (- delta) horizontal ignore)) | 1503 | (window-sizable-p sibling (- delta) horizontal ignore)) |
| 1504 | ;; If window-splits returns nil for WINDOW, WINDOW is part of | 1504 | ;; If window-splits returns nil for WINDOW, WINDOW is part of |
| @@ -1819,7 +1819,7 @@ preferably only resize windows adjacent to EDGE." | |||
| 1819 | (when (window-parent window) | 1819 | (when (window-parent window) |
| 1820 | (let* ((parent (window-parent window)) | 1820 | (let* ((parent (window-parent window)) |
| 1821 | (sub (window-child parent))) | 1821 | (sub (window-child parent))) |
| 1822 | (if (window-iso-combined-p sub horizontal) | 1822 | (if (window-combined-p sub horizontal) |
| 1823 | ;; In an iso-combination try to extract DELTA from WINDOW's | 1823 | ;; In an iso-combination try to extract DELTA from WINDOW's |
| 1824 | ;; siblings. | 1824 | ;; siblings. |
| 1825 | (let ((first sub) | 1825 | (let ((first sub) |
| @@ -1935,7 +1935,7 @@ actually take effect." | |||
| 1935 | (let ((sub (window-child window))) | 1935 | (let ((sub (window-child window))) |
| 1936 | (cond | 1936 | (cond |
| 1937 | ((not sub)) | 1937 | ((not sub)) |
| 1938 | ((window-iso-combined-p sub horizontal) | 1938 | ((window-combined-p sub horizontal) |
| 1939 | ;; In an iso-combination resize subwindows according to their | 1939 | ;; In an iso-combination resize subwindows according to their |
| 1940 | ;; normal sizes. | 1940 | ;; normal sizes. |
| 1941 | (window--resize-subwindows | 1941 | (window--resize-subwindows |
| @@ -2010,7 +2010,7 @@ move it as far as possible in the desired direction." | |||
| 2010 | (right window) | 2010 | (right window) |
| 2011 | left this-delta min-delta max-delta failed) | 2011 | left this-delta min-delta max-delta failed) |
| 2012 | ;; Find the edge we want to move. | 2012 | ;; Find the edge we want to move. |
| 2013 | (while (and (or (not (window-iso-combined-p right horizontal)) | 2013 | (while (and (or (not (window-combined-p right horizontal)) |
| 2014 | (not (window-right right))) | 2014 | (not (window-right right))) |
| 2015 | (setq right (window-parent right)))) | 2015 | (setq right (window-parent right)))) |
| 2016 | (cond | 2016 | (cond |
| @@ -2029,7 +2029,7 @@ move it as far as possible in the desired direction." | |||
| 2029 | (or (window-left left) | 2029 | (or (window-left left) |
| 2030 | (progn | 2030 | (progn |
| 2031 | (while (and (setq left (window-parent left)) | 2031 | (while (and (setq left (window-parent left)) |
| 2032 | (not (window-iso-combined-p left horizontal)))) | 2032 | (not (window-combined-p left horizontal)))) |
| 2033 | (window-left left))))) | 2033 | (window-left left))))) |
| 2034 | (unless left | 2034 | (unless left |
| 2035 | (if horizontal | 2035 | (if horizontal |
| @@ -2043,7 +2043,7 @@ move it as far as possible in the desired direction." | |||
| 2043 | (or (window-right right) | 2043 | (or (window-right right) |
| 2044 | (progn | 2044 | (progn |
| 2045 | (while (and (setq right (window-parent right)) | 2045 | (while (and (setq right (window-parent right)) |
| 2046 | (not (window-iso-combined-p right horizontal)))) | 2046 | (not (window-combined-p right horizontal)))) |
| 2047 | (window-right right))))) | 2047 | (window-right right))))) |
| 2048 | (unless right | 2048 | (unless right |
| 2049 | (if horizontal | 2049 | (if horizontal |
| @@ -3142,7 +3142,7 @@ frame. The selected window is not changed by this function." | |||
| 3142 | (resize | 3142 | (resize |
| 3143 | (and window-splits (not window-nest) | 3143 | (and window-splits (not window-nest) |
| 3144 | ;; Resize makes sense in iso-combinations only. | 3144 | ;; Resize makes sense in iso-combinations only. |
| 3145 | (window-iso-combined-p window horizontal))) | 3145 | (window-combined-p window horizontal))) |
| 3146 | ;; `old-size' is the current size of WINDOW. | 3146 | ;; `old-size' is the current size of WINDOW. |
| 3147 | (old-size (window-total-size window horizontal)) | 3147 | (old-size (window-total-size window horizontal)) |
| 3148 | ;; `new-size' is the specified or calculated size of the | 3148 | ;; `new-size' is the specified or calculated size of the |
| @@ -3157,7 +3157,7 @@ frame. The selected window is not changed by this function." | |||
| 3157 | (min (- parent-size | 3157 | (min (- parent-size |
| 3158 | (window-min-size parent horizontal)) | 3158 | (window-min-size parent horizontal)) |
| 3159 | (/ parent-size | 3159 | (/ parent-size |
| 3160 | (1+ (window-iso-combinations | 3160 | (1+ (window-combinations |
| 3161 | parent horizontal)))) | 3161 | parent horizontal)))) |
| 3162 | ;; Else try to give the new window half the size | 3162 | ;; Else try to give the new window half the size |
| 3163 | ;; of WINDOW (plus an eventual odd line). | 3163 | ;; of WINDOW (plus an eventual odd line). |
| @@ -3220,13 +3220,13 @@ frame. The selected window is not changed by this function." | |||
| 3220 | ;; Make new-parent non-nil if we need a new parent window; | 3220 | ;; Make new-parent non-nil if we need a new parent window; |
| 3221 | ;; either because we want to nest or because WINDOW is not | 3221 | ;; either because we want to nest or because WINDOW is not |
| 3222 | ;; iso-combined. | 3222 | ;; iso-combined. |
| 3223 | (or window-nest (not (window-iso-combined-p window horizontal)))) | 3223 | (or window-nest (not (window-combined-p window horizontal)))) |
| 3224 | (setq new-normal | 3224 | (setq new-normal |
| 3225 | ;; Make new-normal the normal size of the new window. | 3225 | ;; Make new-normal the normal size of the new window. |
| 3226 | (cond | 3226 | (cond |
| 3227 | (size (/ (float new-size) (if new-parent old-size parent-size))) | 3227 | (size (/ (float new-size) (if new-parent old-size parent-size))) |
| 3228 | (new-parent 0.5) | 3228 | (new-parent 0.5) |
| 3229 | (resize (/ 1.0 (1+ (window-iso-combinations parent horizontal)))) | 3229 | (resize (/ 1.0 (1+ (window-combinations parent horizontal)))) |
| 3230 | (t (/ (window-normal-size window horizontal) 2.0)))) | 3230 | (t (/ (window-normal-size window horizontal) 2.0)))) |
| 3231 | 3231 | ||
| 3232 | (if resize | 3232 | (if resize |
| @@ -3359,7 +3359,8 @@ right, if any." | |||
| 3359 | ;; the smallest window). | 3359 | ;; the smallest window). |
| 3360 | (defun balance-windows-2 (window horizontal) | 3360 | (defun balance-windows-2 (window horizontal) |
| 3361 | "Subroutine of `balance-windows-1'. | 3361 | "Subroutine of `balance-windows-1'. |
| 3362 | WINDOW must be an iso-combination." | 3362 | WINDOW must be a vertical combination (horizontal if HORIZONTAL |
| 3363 | is non-nil." | ||
| 3363 | (let* ((first (window-child window)) | 3364 | (let* ((first (window-child window)) |
| 3364 | (sub first) | 3365 | (sub first) |
| 3365 | (number-of-children 0) | 3366 | (number-of-children 0) |
| @@ -3432,7 +3433,7 @@ WINDOW must be an iso-combination." | |||
| 3432 | "Subroutine of `balance-windows'." | 3433 | "Subroutine of `balance-windows'." |
| 3433 | (if (window-child window) | 3434 | (if (window-child window) |
| 3434 | (let ((sub (window-child window))) | 3435 | (let ((sub (window-child window))) |
| 3435 | (if (window-iso-combined-p sub horizontal) | 3436 | (if (window-combined-p sub horizontal) |
| 3436 | (balance-windows-2 window horizontal) | 3437 | (balance-windows-2 window horizontal) |
| 3437 | (let ((size (window-new-total window))) | 3438 | (let ((size (window-new-total window))) |
| 3438 | (while sub | 3439 | (while sub |
| @@ -5281,14 +5282,8 @@ WINDOW was scrolled." | |||
| 5281 | WINDOW defaults to the selected window." | 5282 | WINDOW defaults to the selected window." |
| 5282 | (with-selected-window (or window (selected-window)) | 5283 | (with-selected-window (or window (selected-window)) |
| 5283 | (let ((edges (window-edges))) | 5284 | (let ((edges (window-edges))) |
| 5284 | ;; The following doesn't satisfy the doc-string's claim when | ||
| 5285 | ;; window and previous-/next-window are not part of the same | ||
| 5286 | ;; combination but still share a common edge. Using | ||
| 5287 | ;; `window-iso-combined-p' instead should handle that. | ||
| 5288 | (or (= (nth 2 edges) (nth 2 (window-edges (previous-window)))) | 5285 | (or (= (nth 2 edges) (nth 2 (window-edges (previous-window)))) |
| 5289 | (= (nth 0 edges) (nth 0 (window-edges (next-window)))))))) | 5286 | (= (nth 0 edges) (nth 0 (window-edges (next-window)))))))) |
| 5290 | ;; (make-obsolete | ||
| 5291 | ;; 'window-safely-shrinkable-p "use `window-iso-combined-p' instead." "24.1") | ||
| 5292 | 5287 | ||
| 5293 | (defun shrink-window-if-larger-than-buffer (&optional window) | 5288 | (defun shrink-window-if-larger-than-buffer (&optional window) |
| 5294 | "Shrink height of WINDOW if its buffer doesn't need so many lines. | 5289 | "Shrink height of WINDOW if its buffer doesn't need so many lines. |
| @@ -5308,7 +5303,7 @@ Return non-nil if the window was shrunk, nil otherwise." | |||
| 5308 | ;; Make sure that WINDOW is vertically combined and `point-min' is | 5303 | ;; Make sure that WINDOW is vertically combined and `point-min' is |
| 5309 | ;; visible (for whatever reason that's needed). The remaining issues | 5304 | ;; visible (for whatever reason that's needed). The remaining issues |
| 5310 | ;; should be taken care of by `fit-window-to-buffer'. | 5305 | ;; should be taken care of by `fit-window-to-buffer'. |
| 5311 | (when (and (window-iso-combined-p window) | 5306 | (when (and (window-combined-p window) |
| 5312 | (pos-visible-in-window-p (point-min) window)) | 5307 | (pos-visible-in-window-p (point-min) window)) |
| 5313 | (fit-window-to-buffer window (window-total-size window)))) | 5308 | (fit-window-to-buffer window (window-total-size window)))) |
| 5314 | 5309 | ||
| @@ -419,6 +419,7 @@ echo "Making links to \`nt/icons'" | |||
| 419 | echo "Making links to \`msdos'" | 419 | echo "Making links to \`msdos'" |
| 420 | (cd msdos | 420 | (cd msdos |
| 421 | ln ChangeLog INSTALL README emacs.ico emacs.pif ../${tempdir}/msdos | 421 | ln ChangeLog INSTALL README emacs.ico emacs.pif ../${tempdir}/msdos |
| 422 | ln depfiles.bat inttypes.h ../${tempdir}/msdos | ||
| 422 | ln is_exec.c sigaction.c mainmake.v2 sed*.inp ../${tempdir}/msdos) | 423 | ln is_exec.c sigaction.c mainmake.v2 sed*.inp ../${tempdir}/msdos) |
| 423 | 424 | ||
| 424 | echo "Making links to \`nextstep'" | 425 | echo "Making links to \`nextstep'" |
diff --git a/msdos/ChangeLog b/msdos/ChangeLog index 78ea6ebf1c5..eeb363e951f 100644 --- a/msdos/ChangeLog +++ b/msdos/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-10-31 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * sed3v2.inp (insrcdir): Comment out definition. | ||
| 4 | $(insrcdir): Edit into MS-DOS existence test. | ||
| 5 | |||
| 1 | 2011-09-29 Eli Zaretskii <eliz@gnu.org> | 6 | 2011-09-29 Eli Zaretskii <eliz@gnu.org> |
| 2 | 7 | ||
| 3 | * mainmake.v2 (boot): Condition the value on the existence of | 8 | * mainmake.v2 (boot): Condition the value on the existence of |
diff --git a/msdos/sed2v2.inp b/msdos/sed2v2.inp index ea35a29c6b1..ce00e82cdd4 100644 --- a/msdos/sed2v2.inp +++ b/msdos/sed2v2.inp | |||
| @@ -59,7 +59,7 @@ | |||
| 59 | /^#undef PACKAGE_STRING/s/^.*$/#define PACKAGE_STRING ""/ | 59 | /^#undef PACKAGE_STRING/s/^.*$/#define PACKAGE_STRING ""/ |
| 60 | /^#undef PACKAGE_TARNAME/s/^.*$/#define PACKAGE_TARNAME ""/ | 60 | /^#undef PACKAGE_TARNAME/s/^.*$/#define PACKAGE_TARNAME ""/ |
| 61 | /^#undef PACKAGE_VERSION/s/^.*$/#define PACKAGE_VERSION ""/ | 61 | /^#undef PACKAGE_VERSION/s/^.*$/#define PACKAGE_VERSION ""/ |
| 62 | /^#undef VERSION/s/^.*$/#define VERSION "24.0.90"/ | 62 | /^#undef VERSION/s/^.*$/#define VERSION "24.0.91"/ |
| 63 | /^#undef HAVE_DECL_GETENV/s/^.*$/#define HAVE_DECL_GETENV 1/ | 63 | /^#undef HAVE_DECL_GETENV/s/^.*$/#define HAVE_DECL_GETENV 1/ |
| 64 | /^#undef SYS_SIGLIST_DECLARED/s/^.*$/#define SYS_SIGLIST_DECLARED 1/ | 64 | /^#undef SYS_SIGLIST_DECLARED/s/^.*$/#define SYS_SIGLIST_DECLARED 1/ |
| 65 | /^#undef HAVE_DIRENT_H/s/^.*$/#define HAVE_DIRENT_H 1/ | 65 | /^#undef HAVE_DIRENT_H/s/^.*$/#define HAVE_DIRENT_H 1/ |
diff --git a/msdos/sed3v2.inp b/msdos/sed3v2.inp index 346f4e07e77..3b2065157e0 100644 --- a/msdos/sed3v2.inp +++ b/msdos/sed3v2.inp | |||
| @@ -49,4 +49,6 @@ s!^ \./! ! | |||
| 49 | /^UTILITIES *=/,/^$/{ | 49 | /^UTILITIES *=/,/^$/{ |
| 50 | s/movemail[^ ]* *// | 50 | s/movemail[^ ]* *// |
| 51 | } | 51 | } |
| 52 | /^insrcdir=/s/^.*$/\#&/ | ||
| 53 | /^ *\$(insrcdir) ||/s,\$(insrcdir) ||,command.com /c if not exist $<, | ||
| 52 | 54 | ||
diff --git a/nextstep/Cocoa/Emacs.base/Contents/Info.plist b/nextstep/Cocoa/Emacs.base/Contents/Info.plist index 54c5da9a7ab..ca5b0671268 100644 --- a/nextstep/Cocoa/Emacs.base/Contents/Info.plist +++ b/nextstep/Cocoa/Emacs.base/Contents/Info.plist | |||
| @@ -553,7 +553,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. | |||
| 553 | <key>CFBundleExecutable</key> | 553 | <key>CFBundleExecutable</key> |
| 554 | <string>Emacs</string> | 554 | <string>Emacs</string> |
| 555 | <key>CFBundleGetInfoString</key> | 555 | <key>CFBundleGetInfoString</key> |
| 556 | <string>Emacs 24.0.90 Copyright (C) 2011 Free Software Foundation, Inc.</string> | 556 | <string>Emacs 24.0.91 Copyright (C) 2011 Free Software Foundation, Inc.</string> |
| 557 | <key>CFBundleIconFile</key> | 557 | <key>CFBundleIconFile</key> |
| 558 | <string>Emacs.icns</string> | 558 | <string>Emacs.icns</string> |
| 559 | <key>CFBundleIdentifier</key> | 559 | <key>CFBundleIdentifier</key> |
| @@ -566,7 +566,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. | |||
| 566 | <string>APPL</string> | 566 | <string>APPL</string> |
| 567 | <!-- This should be the emacs version number. --> | 567 | <!-- This should be the emacs version number. --> |
| 568 | <key>CFBundleShortVersionString</key> | 568 | <key>CFBundleShortVersionString</key> |
| 569 | <string>24.0.90</string> | 569 | <string>24.0.91</string> |
| 570 | <key>CFBundleSignature</key> | 570 | <key>CFBundleSignature</key> |
| 571 | <string>EMAx</string> | 571 | <string>EMAx</string> |
| 572 | <!-- This SHOULD be a build number. --> | 572 | <!-- This SHOULD be a build number. --> |
diff --git a/nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj/InfoPlist.strings b/nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj/InfoPlist.strings index 67e7de1e0bd..21e4dd977ca 100644 --- a/nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj/InfoPlist.strings +++ b/nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj/InfoPlist.strings | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* Localized versions of Info.plist keys */ | 1 | /* Localized versions of Info.plist keys */ |
| 2 | 2 | ||
| 3 | CFBundleName = "Emacs"; | 3 | CFBundleName = "Emacs"; |
| 4 | CFBundleShortVersionString = "Version 24.0.90"; | 4 | CFBundleShortVersionString = "Version 24.0.91"; |
| 5 | CFBundleGetInfoString = "Emacs version 24.0.90, NS Windowing"; | 5 | CFBundleGetInfoString = "Emacs version 24.0.91, NS Windowing"; |
| 6 | NSHumanReadableCopyright = "Copyright (C) 2011 Free Software Foundation, Inc."; | 6 | NSHumanReadableCopyright = "Copyright (C) 2011 Free Software Foundation, Inc."; |
diff --git a/nextstep/GNUstep/Emacs.base/Resources/Emacs.desktop b/nextstep/GNUstep/Emacs.base/Resources/Emacs.desktop index 366e9bb7c2b..5ccb7b38a5b 100644 --- a/nextstep/GNUstep/Emacs.base/Resources/Emacs.desktop +++ b/nextstep/GNUstep/Emacs.base/Resources/Emacs.desktop | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | [Desktop Entry] | 1 | [Desktop Entry] |
| 2 | Encoding=UTF-8 | 2 | Encoding=UTF-8 |
| 3 | Type=Application | 3 | Type=Application |
| 4 | Version=24.0.90 | 4 | Version=24.0.91 |
| 5 | Categories=GNUstep | 5 | Categories=GNUstep |
| 6 | Name=Emacs | 6 | Name=Emacs |
| 7 | Comment=GNU Emacs for NeXT/Open/GNUstep and OS X | 7 | Comment=GNU Emacs for NeXT/Open/GNUstep and OS X |
diff --git a/nextstep/GNUstep/Emacs.base/Resources/Info-gnustep.plist b/nextstep/GNUstep/Emacs.base/Resources/Info-gnustep.plist index 9c259006225..7212ef41f41 100644 --- a/nextstep/GNUstep/Emacs.base/Resources/Info-gnustep.plist +++ b/nextstep/GNUstep/Emacs.base/Resources/Info-gnustep.plist | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | ApplicationDescription = "GNU Emacs for GNUstep / OS X"; | 2 | ApplicationDescription = "GNU Emacs for GNUstep / OS X"; |
| 3 | ApplicationIcon = emacs.tiff; | 3 | ApplicationIcon = emacs.tiff; |
| 4 | ApplicationName = Emacs; | 4 | ApplicationName = Emacs; |
| 5 | ApplicationRelease = "24.0.90"; | 5 | ApplicationRelease = "24.0.91"; |
| 6 | Authors = ( | 6 | Authors = ( |
| 7 | "Adrian Robert (GNUstep)", | 7 | "Adrian Robert (GNUstep)", |
| 8 | "Christophe de Dinechin (MacOS X)", | 8 | "Christophe de Dinechin (MacOS X)", |
| @@ -13,7 +13,7 @@ | |||
| 13 | ); | 13 | ); |
| 14 | Copyright = "Copyright (C) 2011 Free Software Foundation, Inc."; | 14 | Copyright = "Copyright (C) 2011 Free Software Foundation, Inc."; |
| 15 | CopyrightDescription = "Released under the GNU General Public License Version 3 or later"; | 15 | CopyrightDescription = "Released under the GNU General Public License Version 3 or later"; |
| 16 | FullVersionID = "Emacs 24.0.90, NS Windowing"; | 16 | FullVersionID = "Emacs 24.0.91, NS Windowing"; |
| 17 | NSExecutable = Emacs; | 17 | NSExecutable = Emacs; |
| 18 | NSIcon = emacs.tiff; | 18 | NSIcon = emacs.tiff; |
| 19 | NSPrincipalClass = NSApplication; | 19 | NSPrincipalClass = NSApplication; |
diff --git a/nt/config.nt b/nt/config.nt index 7ab89add0fc..87c5f5cc8aa 100644 --- a/nt/config.nt +++ b/nt/config.nt | |||
| @@ -324,7 +324,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 324 | #define PACKAGE "emacs" | 324 | #define PACKAGE "emacs" |
| 325 | 325 | ||
| 326 | /* Version number of package */ | 326 | /* Version number of package */ |
| 327 | #define VERSION "24.0.90" | 327 | #define VERSION "24.0.91" |
| 328 | 328 | ||
| 329 | /* Define to `__inline__' or `__inline' if that's what the C compiler | 329 | /* Define to `__inline__' or `__inline' if that's what the C compiler |
| 330 | calls it, or to nothing if 'inline' is not supported under any name. */ | 330 | calls it, or to nothing if 'inline' is not supported under any name. */ |
diff --git a/nt/emacs.rc b/nt/emacs.rc index 8d0df022646..9f7fc6f14aa 100644 --- a/nt/emacs.rc +++ b/nt/emacs.rc | |||
| @@ -7,8 +7,8 @@ Emacs ICON icons\emacs.ico | |||
| 7 | #endif | 7 | #endif |
| 8 | 8 | ||
| 9 | VS_VERSION_INFO VERSIONINFO | 9 | VS_VERSION_INFO VERSIONINFO |
| 10 | FILEVERSION 24,0,90,0 | 10 | FILEVERSION 24,0,91,0 |
| 11 | PRODUCTVERSION 24,0,90,0 | 11 | PRODUCTVERSION 24,0,91,0 |
| 12 | FILEFLAGSMASK 0x3FL | 12 | FILEFLAGSMASK 0x3FL |
| 13 | #ifdef EMACSDEBUG | 13 | #ifdef EMACSDEBUG |
| 14 | FILEFLAGS 0x1L | 14 | FILEFLAGS 0x1L |
| @@ -25,12 +25,12 @@ BEGIN | |||
| 25 | BEGIN | 25 | BEGIN |
| 26 | VALUE "CompanyName", "Free Software Foundation\0" | 26 | VALUE "CompanyName", "Free Software Foundation\0" |
| 27 | VALUE "FileDescription", "GNU Emacs: The extensible self-documenting text editor\0" | 27 | VALUE "FileDescription", "GNU Emacs: The extensible self-documenting text editor\0" |
| 28 | VALUE "FileVersion", "24, 0, 90, 0\0" | 28 | VALUE "FileVersion", "24, 0, 91, 0\0" |
| 29 | VALUE "InternalName", "Emacs\0" | 29 | VALUE "InternalName", "Emacs\0" |
| 30 | VALUE "LegalCopyright", "Copyright (C) 2001-2011\0" | 30 | VALUE "LegalCopyright", "Copyright (C) 2001-2011\0" |
| 31 | VALUE "OriginalFilename", "emacs.exe" | 31 | VALUE "OriginalFilename", "emacs.exe" |
| 32 | VALUE "ProductName", "Emacs\0" | 32 | VALUE "ProductName", "Emacs\0" |
| 33 | VALUE "ProductVersion", "24, 0, 90, 0\0" | 33 | VALUE "ProductVersion", "24, 0, 91, 0\0" |
| 34 | VALUE "OLESelfRegister", "\0" | 34 | VALUE "OLESelfRegister", "\0" |
| 35 | END | 35 | END |
| 36 | END | 36 | END |
diff --git a/nt/emacsclient.rc b/nt/emacsclient.rc index db98b46fb15..6de1daeb959 100644 --- a/nt/emacsclient.rc +++ b/nt/emacsclient.rc | |||
| @@ -5,8 +5,8 @@ Emacs ICON icons\emacs.ico | |||
| 5 | #endif | 5 | #endif |
| 6 | 6 | ||
| 7 | VS_VERSION_INFO VERSIONINFO | 7 | VS_VERSION_INFO VERSIONINFO |
| 8 | FILEVERSION 24,0,90,0 | 8 | FILEVERSION 24,0,91,0 |
| 9 | PRODUCTVERSION 24,0,90,0 | 9 | PRODUCTVERSION 24,0,91,0 |
| 10 | FILEFLAGSMASK 0x3FL | 10 | FILEFLAGSMASK 0x3FL |
| 11 | #ifdef EMACSDEBUG | 11 | #ifdef EMACSDEBUG |
| 12 | FILEFLAGS 0x1L | 12 | FILEFLAGS 0x1L |
| @@ -23,12 +23,12 @@ BEGIN | |||
| 23 | BEGIN | 23 | BEGIN |
| 24 | VALUE "CompanyName", "Free Software Foundation\0" | 24 | VALUE "CompanyName", "Free Software Foundation\0" |
| 25 | VALUE "FileDescription", "GNU EmacsClient: Client for the extensible self-documenting text editor\0" | 25 | VALUE "FileDescription", "GNU EmacsClient: Client for the extensible self-documenting text editor\0" |
| 26 | VALUE "FileVersion", "24, 0, 90, 0\0" | 26 | VALUE "FileVersion", "24, 0, 91, 0\0" |
| 27 | VALUE "InternalName", "EmacsClient\0" | 27 | VALUE "InternalName", "EmacsClient\0" |
| 28 | VALUE "LegalCopyright", "Copyright (C) 2001-2011\0" | 28 | VALUE "LegalCopyright", "Copyright (C) 2001-2011\0" |
| 29 | VALUE "OriginalFilename", "emacsclientw.exe" | 29 | VALUE "OriginalFilename", "emacsclientw.exe" |
| 30 | VALUE "ProductName", "EmacsClient\0" | 30 | VALUE "ProductName", "EmacsClient\0" |
| 31 | VALUE "ProductVersion", "24, 0, 90, 0\0" | 31 | VALUE "ProductVersion", "24, 0, 91, 0\0" |
| 32 | VALUE "OLESelfRegister", "\0" | 32 | VALUE "OLESelfRegister", "\0" |
| 33 | END | 33 | END |
| 34 | END | 34 | END |
diff --git a/nt/makefile.w32-in b/nt/makefile.w32-in index 07d9be2c117..05631855f6a 100644 --- a/nt/makefile.w32-in +++ b/nt/makefile.w32-in | |||
| @@ -22,7 +22,7 @@ | |||
| 22 | # FIXME: This file uses DOS EOLs. Convert to Unix after 22.1 is out | 22 | # FIXME: This file uses DOS EOLs. Convert to Unix after 22.1 is out |
| 23 | # (and remove or replace this comment). | 23 | # (and remove or replace this comment). |
| 24 | 24 | ||
| 25 | VERSION = 24.0.90 | 25 | VERSION = 24.0.91 |
| 26 | 26 | ||
| 27 | TMP_DIST_DIR = emacs-$(VERSION) | 27 | TMP_DIST_DIR = emacs-$(VERSION) |
| 28 | 28 | ||
diff --git a/src/ChangeLog b/src/ChangeLog index 272354c48d1..0b4da8f5e40 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -786,6 +786,31 @@ | |||
| 786 | rather than rolling our own approximation. | 786 | rather than rolling our own approximation. |
| 787 | (SCROLL_BAR_VEC_SIZE): Remove; not used. | 787 | (SCROLL_BAR_VEC_SIZE): Remove; not used. |
| 788 | 788 | ||
| 789 | 2011-10-30 Eli Zaretskii <eliz@gnu.org> | ||
| 790 | |||
| 791 | * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented | ||
| 792 | past the beginning of the current glyph matrix. | ||
| 793 | |||
| 794 | 2011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change) | ||
| 795 | |||
| 796 | * xterm.c: Include X11/Xproto.h if HAVE_GTK3. | ||
| 797 | (x_error_handler): Ignore BadMatch for X_SetInputFocus for | ||
| 798 | HAVE_GTK3 (Bug#9869). | ||
| 799 | |||
| 800 | * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize | ||
| 801 | type to GDK_NOTHING so valgrind does not complain (Bug#9901). | ||
| 802 | |||
| 803 | * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893). | ||
| 804 | |||
| 805 | * xterm.c: Declare x_handle_net_wm_state to return int. | ||
| 806 | (handle_one_xevent): Check if we are iconified but don't have | ||
| 807 | _NET_WM_STATE_HIDDEN. If do, treat as deiconify (Bug#9893). | ||
| 808 | (get_current_wm_state): Return non-zero if not hidden, | ||
| 809 | check for _NET_WM_STATE_HIDDEN (Bug#9893). | ||
| 810 | (do_ewmh_fullscreen): Ignore return value from get_current_wm_state. | ||
| 811 | (x_handle_net_wm_state): Return what get_current_wm_state returns. | ||
| 812 | (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden. | ||
| 813 | |||
| 789 | 2011-10-29 Paul Eggert <eggert@cs.ucla.edu> | 814 | 2011-10-29 Paul Eggert <eggert@cs.ucla.edu> |
| 790 | 815 | ||
| 791 | * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE, | 816 | * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE, |
diff --git a/src/gtkutil.c b/src/gtkutil.c index 2712297a5b2..e13a7540715 100644 --- a/src/gtkutil.c +++ b/src/gtkutil.c | |||
| @@ -987,6 +987,7 @@ xg_win_to_widget (Display *dpy, Window wdesc) | |||
| 987 | { | 987 | { |
| 988 | GdkEvent event; | 988 | GdkEvent event; |
| 989 | event.any.window = gdkwin; | 989 | event.any.window = gdkwin; |
| 990 | event.any.type = GDK_NOTHING; | ||
| 990 | gwdesc = gtk_get_event_widget (&event); | 991 | gwdesc = gtk_get_event_widget (&event); |
| 991 | } | 992 | } |
| 992 | 993 | ||
| @@ -3254,6 +3255,7 @@ xg_event_is_for_menubar (FRAME_PTR f, XEvent *event) | |||
| 3254 | gw = gdk_x11_window_lookup_for_display (gdpy, event->xbutton.window); | 3255 | gw = gdk_x11_window_lookup_for_display (gdpy, event->xbutton.window); |
| 3255 | if (! gw) return 0; | 3256 | if (! gw) return 0; |
| 3256 | gevent.any.window = gw; | 3257 | gevent.any.window = gw; |
| 3258 | gevent.any.type = GDK_NOTHING; | ||
| 3257 | gwdesc = gtk_get_event_widget (&gevent); | 3259 | gwdesc = gtk_get_event_widget (&gevent); |
| 3258 | if (! gwdesc) return 0; | 3260 | if (! gwdesc) return 0; |
| 3259 | if (! GTK_IS_MENU_BAR (gwdesc) | 3261 | if (! GTK_IS_MENU_BAR (gwdesc) |
diff --git a/src/xdisp.c b/src/xdisp.c index 53e56e0bd7c..a177a8aca87 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -14836,8 +14836,6 @@ try_cursor_movement (Lisp_Object window, struct text_pos startp, int *scroll_ste | |||
| 14836 | bidi-reordered rows. */ | 14836 | bidi-reordered rows. */ |
| 14837 | while (MATRIX_ROW_CONTINUATION_LINE_P (row)) | 14837 | while (MATRIX_ROW_CONTINUATION_LINE_P (row)) |
| 14838 | { | 14838 | { |
| 14839 | xassert (row->enabled_p); | ||
| 14840 | --row; | ||
| 14841 | /* If we hit the beginning of the displayed portion | 14839 | /* If we hit the beginning of the displayed portion |
| 14842 | without finding the first row of a continued | 14840 | without finding the first row of a continued |
| 14843 | line, give up. */ | 14841 | line, give up. */ |
| @@ -14846,7 +14844,8 @@ try_cursor_movement (Lisp_Object window, struct text_pos startp, int *scroll_ste | |||
| 14846 | rc = CURSOR_MOVEMENT_MUST_SCROLL; | 14844 | rc = CURSOR_MOVEMENT_MUST_SCROLL; |
| 14847 | break; | 14845 | break; |
| 14848 | } | 14846 | } |
| 14849 | 14847 | xassert (row->enabled_p); | |
| 14848 | --row; | ||
| 14850 | } | 14849 | } |
| 14851 | } | 14850 | } |
| 14852 | if (must_scroll) | 14851 | if (must_scroll) |
diff --git a/src/xterm.c b/src/xterm.c index df83941f0d1..9603c41fce2 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -93,6 +93,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 93 | 93 | ||
| 94 | #ifdef USE_GTK | 94 | #ifdef USE_GTK |
| 95 | #include "gtkutil.h" | 95 | #include "gtkutil.h" |
| 96 | #ifdef HAVE_GTK3 | ||
| 97 | #include <X11/Xproto.h> | ||
| 98 | #endif | ||
| 96 | #endif | 99 | #endif |
| 97 | 100 | ||
| 98 | #ifdef USE_LUCID | 101 | #ifdef USE_LUCID |
| @@ -343,7 +346,7 @@ static void x_scroll_bar_report_motion (struct frame **, Lisp_Object *, | |||
| 343 | enum scroll_bar_part *, | 346 | enum scroll_bar_part *, |
| 344 | Lisp_Object *, Lisp_Object *, | 347 | Lisp_Object *, Lisp_Object *, |
| 345 | Time *); | 348 | Time *); |
| 346 | static void x_handle_net_wm_state (struct frame *, XPropertyEvent *); | 349 | static int x_handle_net_wm_state (struct frame *, XPropertyEvent *); |
| 347 | static void x_check_fullscreen (struct frame *); | 350 | static void x_check_fullscreen (struct frame *); |
| 348 | static void x_check_expected_move (struct frame *, int, int); | 351 | static void x_check_expected_move (struct frame *, int, int); |
| 349 | static void x_sync_with_move (struct frame *, int, int, int); | 352 | static void x_sync_with_move (struct frame *, int, int, int); |
| @@ -6112,7 +6115,19 @@ handle_one_xevent (struct x_display_info *dpyinfo, XEvent *eventptr, | |||
| 6112 | last_user_time = event.xproperty.time; | 6115 | last_user_time = event.xproperty.time; |
| 6113 | f = x_top_window_to_frame (dpyinfo, event.xproperty.window); | 6116 | f = x_top_window_to_frame (dpyinfo, event.xproperty.window); |
| 6114 | if (f && event.xproperty.atom == dpyinfo->Xatom_net_wm_state) | 6117 | if (f && event.xproperty.atom == dpyinfo->Xatom_net_wm_state) |
| 6115 | x_handle_net_wm_state (f, &event.xproperty); | 6118 | if (x_handle_net_wm_state (f, &event.xproperty) && f->iconified) |
| 6119 | { | ||
| 6120 | /* Gnome shell does not iconify us when C-z is pressed. It hides | ||
| 6121 | the frame. So if our state says we aren't hidden anymore, | ||
| 6122 | treat is as deiconfied. */ | ||
| 6123 | if (! f->async_iconified) | ||
| 6124 | SET_FRAME_GARBAGED (f); | ||
| 6125 | f->async_visible = 1; | ||
| 6126 | f->async_iconified = 0; | ||
| 6127 | f->output_data.x->has_been_visible = 1; | ||
| 6128 | inev.ie.kind = DEICONIFY_EVENT; | ||
| 6129 | XSETFRAME (inev.ie.frame_or_window, f); | ||
| 6130 | } | ||
| 6116 | 6131 | ||
| 6117 | x_handle_property_notify (&event.xproperty); | 6132 | x_handle_property_notify (&event.xproperty); |
| 6118 | xft_settings_event (dpyinfo, &event); | 6133 | xft_settings_event (dpyinfo, &event); |
| @@ -7857,6 +7872,15 @@ static void x_error_quitter (Display *, XErrorEvent *); | |||
| 7857 | static int | 7872 | static int |
| 7858 | x_error_handler (Display *display, XErrorEvent *event) | 7873 | x_error_handler (Display *display, XErrorEvent *event) |
| 7859 | { | 7874 | { |
| 7875 | #ifdef HAVE_GTK3 | ||
| 7876 | if (event->error_code == BadMatch | ||
| 7877 | && event->request_code == X_SetInputFocus | ||
| 7878 | && event->minor_code == 0) | ||
| 7879 | { | ||
| 7880 | return 0; | ||
| 7881 | } | ||
| 7882 | #endif | ||
| 7883 | |||
| 7860 | if (x_error_message) | 7884 | if (x_error_message) |
| 7861 | x_error_catcher (display, event); | 7885 | x_error_catcher (display, event); |
| 7862 | else | 7886 | else |
| @@ -8415,9 +8439,11 @@ x_set_sticky (struct frame *f, Lisp_Object new_value, Lisp_Object old_value) | |||
| 8415 | 8439 | ||
| 8416 | /* Return the current _NET_WM_STATE. | 8440 | /* Return the current _NET_WM_STATE. |
| 8417 | SIZE_STATE is set to one of the FULLSCREEN_* values. | 8441 | SIZE_STATE is set to one of the FULLSCREEN_* values. |
| 8418 | STICKY is set to 1 if the sticky state is set, 0 if not. */ | 8442 | STICKY is set to 1 if the sticky state is set, 0 if not. |
| 8419 | 8443 | ||
| 8420 | static void | 8444 | Return non-zero if we are not hidden, zero if we are. */ |
| 8445 | |||
| 8446 | static int | ||
| 8421 | get_current_wm_state (struct frame *f, | 8447 | get_current_wm_state (struct frame *f, |
| 8422 | Window window, | 8448 | Window window, |
| 8423 | int *size_state, | 8449 | int *size_state, |
| @@ -8425,7 +8451,7 @@ get_current_wm_state (struct frame *f, | |||
| 8425 | { | 8451 | { |
| 8426 | Atom actual_type; | 8452 | Atom actual_type; |
| 8427 | unsigned long actual_size, bytes_remaining; | 8453 | unsigned long actual_size, bytes_remaining; |
| 8428 | int i, rc, actual_format; | 8454 | int i, rc, actual_format, is_hidden = 0; |
| 8429 | struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f); | 8455 | struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f); |
| 8430 | long max_len = 65536; | 8456 | long max_len = 65536; |
| 8431 | Display *dpy = FRAME_X_DISPLAY (f); | 8457 | Display *dpy = FRAME_X_DISPLAY (f); |
| @@ -8447,7 +8473,7 @@ get_current_wm_state (struct frame *f, | |||
| 8447 | if (tmp_data) XFree (tmp_data); | 8473 | if (tmp_data) XFree (tmp_data); |
| 8448 | x_uncatch_errors (); | 8474 | x_uncatch_errors (); |
| 8449 | UNBLOCK_INPUT; | 8475 | UNBLOCK_INPUT; |
| 8450 | return; | 8476 | return ! f->iconified; |
| 8451 | } | 8477 | } |
| 8452 | 8478 | ||
| 8453 | x_uncatch_errors (); | 8479 | x_uncatch_errors (); |
| @@ -8455,7 +8481,9 @@ get_current_wm_state (struct frame *f, | |||
| 8455 | for (i = 0; i < actual_size; ++i) | 8481 | for (i = 0; i < actual_size; ++i) |
| 8456 | { | 8482 | { |
| 8457 | Atom a = ((Atom*)tmp_data)[i]; | 8483 | Atom a = ((Atom*)tmp_data)[i]; |
| 8458 | if (a == dpyinfo->Xatom_net_wm_state_maximized_horz) | 8484 | if (a == dpyinfo->Xatom_net_wm_state_hidden) |
| 8485 | is_hidden = 1; | ||
| 8486 | else if (a == dpyinfo->Xatom_net_wm_state_maximized_horz) | ||
| 8459 | { | 8487 | { |
| 8460 | if (*size_state == FULLSCREEN_HEIGHT) | 8488 | if (*size_state == FULLSCREEN_HEIGHT) |
| 8461 | *size_state = FULLSCREEN_MAXIMIZED; | 8489 | *size_state = FULLSCREEN_MAXIMIZED; |
| @@ -8477,6 +8505,7 @@ get_current_wm_state (struct frame *f, | |||
| 8477 | 8505 | ||
| 8478 | if (tmp_data) XFree (tmp_data); | 8506 | if (tmp_data) XFree (tmp_data); |
| 8479 | UNBLOCK_INPUT; | 8507 | UNBLOCK_INPUT; |
| 8508 | return ! is_hidden; | ||
| 8480 | } | 8509 | } |
| 8481 | 8510 | ||
| 8482 | /* Do fullscreen as specified in extended window manager hints */ | 8511 | /* Do fullscreen as specified in extended window manager hints */ |
| @@ -8488,7 +8517,7 @@ do_ewmh_fullscreen (struct frame *f) | |||
| 8488 | int have_net_atom = wm_supports (f, dpyinfo->Xatom_net_wm_state); | 8517 | int have_net_atom = wm_supports (f, dpyinfo->Xatom_net_wm_state); |
| 8489 | int cur, dummy; | 8518 | int cur, dummy; |
| 8490 | 8519 | ||
| 8491 | get_current_wm_state (f, FRAME_OUTER_WINDOW (f), &cur, &dummy); | 8520 | (void)get_current_wm_state (f, FRAME_OUTER_WINDOW (f), &cur, &dummy); |
| 8492 | 8521 | ||
| 8493 | /* Some window managers don't say they support _NET_WM_STATE, but they do say | 8522 | /* Some window managers don't say they support _NET_WM_STATE, but they do say |
| 8494 | they support _NET_WM_STATE_FULLSCREEN. Try that also. */ | 8523 | they support _NET_WM_STATE_FULLSCREEN. Try that also. */ |
| @@ -8563,14 +8592,14 @@ XTfullscreen_hook (FRAME_PTR f) | |||
| 8563 | } | 8592 | } |
| 8564 | 8593 | ||
| 8565 | 8594 | ||
| 8566 | static void | 8595 | static int |
| 8567 | x_handle_net_wm_state (struct frame *f, XPropertyEvent *event) | 8596 | x_handle_net_wm_state (struct frame *f, XPropertyEvent *event) |
| 8568 | { | 8597 | { |
| 8569 | int value = FULLSCREEN_NONE; | 8598 | int value = FULLSCREEN_NONE; |
| 8570 | Lisp_Object lval; | 8599 | Lisp_Object lval; |
| 8571 | int sticky = 0; | 8600 | int sticky = 0; |
| 8601 | int not_hidden = get_current_wm_state (f, event->window, &value, &sticky); | ||
| 8572 | 8602 | ||
| 8573 | get_current_wm_state (f, event->window, &value, &sticky); | ||
| 8574 | lval = Qnil; | 8603 | lval = Qnil; |
| 8575 | switch (value) | 8604 | switch (value) |
| 8576 | { | 8605 | { |
| @@ -8590,6 +8619,8 @@ x_handle_net_wm_state (struct frame *f, XPropertyEvent *event) | |||
| 8590 | 8619 | ||
| 8591 | store_frame_param (f, Qfullscreen, lval); | 8620 | store_frame_param (f, Qfullscreen, lval); |
| 8592 | store_frame_param (f, Qsticky, sticky ? Qt : Qnil); | 8621 | store_frame_param (f, Qsticky, sticky ? Qt : Qnil); |
| 8622 | |||
| 8623 | return not_hidden; | ||
| 8593 | } | 8624 | } |
| 8594 | 8625 | ||
| 8595 | /* Check if we need to resize the frame due to a fullscreen request. | 8626 | /* Check if we need to resize the frame due to a fullscreen request. |
| @@ -9273,7 +9304,7 @@ x_iconify_frame (struct frame *f) | |||
| 9273 | if (!NILP (type)) | 9304 | if (!NILP (type)) |
| 9274 | x_bitmap_icon (f, type); | 9305 | x_bitmap_icon (f, type); |
| 9275 | 9306 | ||
| 9276 | #ifdef USE_GTK | 9307 | #if defined (USE_GTK) |
| 9277 | if (FRAME_GTK_OUTER_WIDGET (f)) | 9308 | if (FRAME_GTK_OUTER_WIDGET (f)) |
| 9278 | { | 9309 | { |
| 9279 | if (! FRAME_VISIBLE_P (f)) | 9310 | if (! FRAME_VISIBLE_P (f)) |
| @@ -10253,6 +10284,7 @@ x_term_init (Lisp_Object display_name, char *xrm_option, char *resource_name) | |||
| 10253 | { "_NET_WM_STATE_MAXIMIZED_VERT", | 10284 | { "_NET_WM_STATE_MAXIMIZED_VERT", |
| 10254 | &dpyinfo->Xatom_net_wm_state_maximized_vert }, | 10285 | &dpyinfo->Xatom_net_wm_state_maximized_vert }, |
| 10255 | { "_NET_WM_STATE_STICKY", &dpyinfo->Xatom_net_wm_state_sticky }, | 10286 | { "_NET_WM_STATE_STICKY", &dpyinfo->Xatom_net_wm_state_sticky }, |
| 10287 | { "_NET_WM_STATE_HIDDEN", &dpyinfo->Xatom_net_wm_state_hidden }, | ||
| 10256 | { "_NET_WM_WINDOW_TYPE", &dpyinfo->Xatom_net_window_type }, | 10288 | { "_NET_WM_WINDOW_TYPE", &dpyinfo->Xatom_net_window_type }, |
| 10257 | { "_NET_WM_WINDOW_TYPE_TOOLTIP", | 10289 | { "_NET_WM_WINDOW_TYPE_TOOLTIP", |
| 10258 | &dpyinfo->Xatom_net_window_type_tooltip }, | 10290 | &dpyinfo->Xatom_net_window_type_tooltip }, |
diff --git a/src/xterm.h b/src/xterm.h index d244aa4be0b..af2e94ed112 100644 --- a/src/xterm.h +++ b/src/xterm.h | |||
| @@ -341,7 +341,8 @@ struct x_display_info | |||
| 341 | /* Atoms dealing with EWMH (i.e. _NET_...) */ | 341 | /* Atoms dealing with EWMH (i.e. _NET_...) */ |
| 342 | Atom Xatom_net_wm_state, Xatom_net_wm_state_fullscreen, | 342 | Atom Xatom_net_wm_state, Xatom_net_wm_state_fullscreen, |
| 343 | Xatom_net_wm_state_maximized_horz, Xatom_net_wm_state_maximized_vert, | 343 | Xatom_net_wm_state_maximized_horz, Xatom_net_wm_state_maximized_vert, |
| 344 | Xatom_net_wm_state_sticky, Xatom_net_frame_extents; | 344 | Xatom_net_wm_state_sticky, Xatom_net_wm_state_hidden, |
| 345 | Xatom_net_frame_extents; | ||
| 345 | 346 | ||
| 346 | /* XSettings atoms and windows. */ | 347 | /* XSettings atoms and windows. */ |
| 347 | Atom Xatom_xsettings_sel, Xatom_xsettings_prop, Xatom_xsettings_mgr; | 348 | Atom Xatom_xsettings_sel, Xatom_xsettings_prop, Xatom_xsettings_mgr; |
diff --git a/test/ChangeLog b/test/ChangeLog index dcdef6399e4..de4fb270440 100644 --- a/test/ChangeLog +++ b/test/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2011-10-30 Ulf Jasper <ulf.jasper@web.de> | ||
| 2 | |||
| 3 | * automated/newsticker-tests.el | ||
| 4 | (newsticker--group-manage-orphan-feeds): Removed fsetting of | ||
| 5 | newsticker--treeview-tree-update. | ||
| 6 | |||
| 1 | 2011-10-29 Ulf Jasper <ulf.jasper@web.de> | 7 | 2011-10-29 Ulf Jasper <ulf.jasper@web.de> |
| 2 | 8 | ||
| 3 | * automated/newsticker-tests.el | 9 | * automated/newsticker-tests.el |
diff --git a/test/automated/newsticker-tests.el b/test/automated/newsticker-tests.el index ba7fe20786b..76f4345da55 100644 --- a/test/automated/newsticker-tests.el +++ b/test/automated/newsticker-tests.el | |||
| @@ -138,14 +138,8 @@ Apply to INPUT and compare with EXPECTED." | |||
| 138 | Signals an error if something goes wrong." | 138 | Signals an error if something goes wrong." |
| 139 | (let ((newsticker-groups '("Feeds")) | 139 | (let ((newsticker-groups '("Feeds")) |
| 140 | (newsticker-url-list-defaults nil) | 140 | (newsticker-url-list-defaults nil) |
| 141 | (newsticker-url-list '(("feed1") ("feed2") ("feed3"))) | 141 | (newsticker-url-list '(("feed1") ("feed2") ("feed3")))) |
| 142 | t-nttvtu) | ||
| 143 | ;; prevent updating the treeview as it does not exist during fully | ||
| 144 | ;; automated tests | ||
| 145 | (fset 't-nttvtu (symbol-function 'newsticker--treeview-tree-update)) | ||
| 146 | (fset 'newsticker--treeview-tree-update (lambda() nil)) | ||
| 147 | (newsticker--group-manage-orphan-feeds) | 142 | (newsticker--group-manage-orphan-feeds) |
| 148 | (fset 'newsticker--treeview-tree-update (symbol-function 't-nttvtu)) | ||
| 149 | (should (equal '("Feeds" "feed3" "feed2" "feed1") | 143 | (should (equal '("Feeds" "feed3" "feed2" "feed1") |
| 150 | newsticker-groups)))) | 144 | newsticker-groups)))) |
| 151 | 145 | ||