aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2011-04-05 21:52:22 -0700
committerPaul Eggert2011-04-05 21:52:22 -0700
commitb70d23ff742098877b929e8a4982d5e56f6513da (patch)
treecb7c3c028f14c20e41ce6f8bffad11992946a40b
parent06c550d2b8e71409c0bbff25f228206242d0f1b8 (diff)
parent11043dbd42f18b18f174dca8f04693907ff47a5c (diff)
downloademacs-b70d23ff742098877b929e8a4982d5e56f6513da.tar.gz
emacs-b70d23ff742098877b929e8a4982d5e56f6513da.zip
Merge from mainline.
-rw-r--r--ChangeLog14
-rwxr-xr-xautogen/update_autogen149
-rw-r--r--lisp/ChangeLog38
-rw-r--r--lisp/Makefile.in20
-rw-r--r--lisp/calendar/cal-move.el12
-rw-r--r--lisp/calendar/calendar.el17
-rw-r--r--lisp/font-lock.el3
-rw-r--r--lisp/gnus/ChangeLog32
-rw-r--r--lisp/gnus/gnus-registry.el1364
-rw-r--r--lisp/gnus/nnregistry.el2
-rw-r--r--lisp/gnus/registry.el411
-rw-r--r--lisp/gnus/spam.el27
-rw-r--r--lisp/info.el186
-rw-r--r--lisp/ldefs-boot.el2659
-rw-r--r--lisp/mh-e/ChangeLog5
-rw-r--r--lisp/mh-e/mh-funcs.el5
-rw-r--r--lisp/minibuffer.el7
17 files changed, 2619 insertions, 2332 deletions
diff --git a/ChangeLog b/ChangeLog
index 5caab5fe8e2..d01cf106eda 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,14 +1,22 @@
12011-04-05 Paul Eggert <eggert@cs.ucla.edu> 12011-04-06 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * configure.in (ATTRIBUTE_FORMAT, ATTRIBUTE_FORMAT_PRINTF): New macros. 3 * configure.in (ATTRIBUTE_FORMAT, ATTRIBUTE_FORMAT_PRINTF): New macros.
4 4
52011-04-01 Paul Eggert <eggert@cs.ucla.edu>
6
7 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401). 5 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
8 * Makefile.in (GNULIB_MODULES): Add careadlinkat. 6 * Makefile.in (GNULIB_MODULES): Add careadlinkat.
9 * lib/allocator.h, lib/careadlinkat.c, lib/careadlinkat.h: 7 * lib/allocator.h, lib/careadlinkat.c, lib/careadlinkat.h:
10 * m4/ssize_t.m4: New files, automatically generated from gnulib. 8 * m4/ssize_t.m4: New files, automatically generated from gnulib.
11 9
102011-04-06 Glenn Morris <rgm@gnu.org>
11
12 * autogen/update_autogen: Handle loaddefs-like files as well.
13 (usage): Add -l, -C.
14 (clean, ldefs_flag, ldefs_in, ldefs_out): New variables.
15 With -l, check status of lisp/ as well.
16 With -C, clean before building.
17 (autoreconf): Only pass -f in the `clean' case.
18 (commit): New function.
19
122011-03-28 Glenn Morris <rgm@gnu.org> 202011-03-28 Glenn Morris <rgm@gnu.org>
13 21
14 * autogen/update_autogen: Pass -f to autoreconf. 22 * autogen/update_autogen: Pass -f to autoreconf.
diff --git a/autogen/update_autogen b/autogen/update_autogen
index b2a6d0b42a4..d1687b293e9 100755
--- a/autogen/update_autogen
+++ b/autogen/update_autogen
@@ -25,6 +25,9 @@
25## This is a helper script to update the pre-built generated files in 25## This is a helper script to update the pre-built generated files in
26## the autogen/ directory. This is suitable for running from cron. 26## the autogen/ directory. This is suitable for running from cron.
27## Only Emacs maintainers need use this, so it uses bash features. 27## Only Emacs maintainers need use this, so it uses bash features.
28##
29## With the -l option, it also updates the versioned loaddefs-like
30## files in lisp/. These include ldefs-boot, cl-loaddefs, rmail, etc.
28 31
29### Code: 32### Code:
30 33
@@ -48,13 +51,17 @@ cd ../
48usage () 51usage ()
49{ 52{
50 cat 1>&2 <<EOF 53 cat 1>&2 <<EOF
51Usage: ${PN} [-f] [-c] [-q] 54Usage: ${PN} [-f] [-c] [-q] [-l [-L]] [-C] [-- make-flags]
52Update the generated files in the Emacs autogen/ directory. 55Update the generated files in the Emacs autogen/ directory.
53Options: 56Options:
54-f: force an update even if the source files are locally modified. 57-f: force an update even if the source files are locally modified.
55-c: if the update succeeds and the generated files are modified, 58-c: if the update succeeds and the generated files are modified,
56 commit them (caution). 59 commit them (caution).
57-q: be quiet; only give error messages, not status messages. 60-q: be quiet; only give error messages, not status messages.
61-l: also update the versioned loaddefs-like files in lisp/.
62This requires a build. Passes any non-option args to make (eg -- -j2).
63-L: also update ldefs-boot.el.
64-C: start from a clean state. Slower, but more correct.
58EOF 65EOF
59 exit 1 66 exit 1
60} 67}
@@ -65,8 +72,13 @@ EOF
65force= 72force=
66commit= 73commit=
67quiet= 74quiet=
75clean=
76ldefs_flag=
77lboot_flag=
68 78
69## Parameters. 79## Parameters.
80ldefs_in=lisp/loaddefs.el
81ldefs_out=lisp/ldefs-boot.el
70sources="configure.in lib/Makefile.am" 82sources="configure.in lib/Makefile.am"
71genfiles="configure aclocal.m4 src/config.in lib/Makefile.in compile config.guess config.sub depcomp install-sh missing" 83genfiles="configure aclocal.m4 src/config.in lib/Makefile.in compile config.guess config.sub depcomp install-sh missing"
72 84
@@ -81,7 +93,7 @@ tempfile=/tmp/$PN.$$
81trap "rm -f $tempfile 2> /dev/null" EXIT 93trap "rm -f $tempfile 2> /dev/null" EXIT
82 94
83 95
84while getopts ":hcfq" option ; do 96while getopts ":hcflqCL" option ; do
85 case $option in 97 case $option in
86 (h) usage ;; 98 (h) usage ;;
87 99
@@ -89,8 +101,14 @@ while getopts ":hcfq" option ; do
89 101
90 (f) force=1 ;; 102 (f) force=1 ;;
91 103
104 (l) ldefs_flag=1 ;;
105
92 (q) quiet=1 ;; 106 (q) quiet=1 ;;
93 107
108 (C) clean=1 ;;
109
110 (L) lboot_flag=1 ;;
111
94 (\?) die "Bad option -$OPTARG" ;; 112 (\?) die "Bad option -$OPTARG" ;;
95 113
96 (:) die "Option -$OPTARG requires an argument" ;; 114 (:) die "Option -$OPTARG requires an argument" ;;
@@ -101,16 +119,17 @@ done
101shift $(( --OPTIND )) 119shift $(( --OPTIND ))
102OPTIND=1 120OPTIND=1
103 121
104[ $# -eq 0 ] || die "Wrong number of arguments"
105
106 122
123## Does not work 100% because a lot of Emacs batch output comes on stderr (?).
107[ "$quiet" ] && exec 1> /dev/null 124[ "$quiet" ] && exec 1> /dev/null
108 125
109 126
110echo "Running bzr status..." 127echo "Running bzr status..."
111 128
112bzr status -S $sources >| $tempfile || die "bzr status error for sources" 129bzr status -S $sources ${ldefs_flag:+lisp} >| $tempfile || \
130 die "bzr status error for sources"
113 131
132## The lisp portion could be more permissive, eg only care about .el files.
114while read stat file; do 133while read stat file; do
115 134
116 case $stat in 135 case $stat in
@@ -124,9 +143,21 @@ while read stat file; do
124done < $tempfile 143done < $tempfile
125 144
126 145
146## Probably this is overkill, and there's no need to "bootstrap" just
147## for making autoloads.
148[ "$clean" ] && {
149
150 echo "Running 'make maintainer-clean'..."
151
152 make maintainer-clean #|| die "Cleaning error"
153
154 rm -f $ldefs_in
155}
156
157
127echo "Running autoreconf..." 158echo "Running autoreconf..."
128 159
129autoreconf -f -i -I m4 2>| $tempfile 160autoreconf ${clean:+-f} -i -I m4 2>| $tempfile
130 161
131retval=$? 162retval=$?
132 163
@@ -162,27 +193,111 @@ while read stat file; do
162done < $tempfile 193done < $tempfile
163 194
164 195
165[ "$modified" ] || { 196cd ../
166 echo "No files were modified" 197
167 exit 0 198
199## Uses global $commit.
200commit ()
201{
202 local type=$1
203 shift
204
205 [ $# -gt 0 ] || {
206 echo "No files were modified"
207 return 0
208 }
209
210 echo "Modified file(s): $@"
211
212 [ "$commit" ] || return 0
213
214 echo "Committing..."
215
216 ## bzr status output is always relative to top-level, not PWD.
217 bzr commit -m "Auto-commit of $type files." "$@" || return $?
218
219 echo "Committed files: $@"
220} # function commit
221
222
223commit "generated" $modified || die "bzr commit error"
224
225
226[ "$ldefs_flag" ] || exit 0
227
228
229echo "Finding loaddef targets..."
230
231sed -n -e '/^AUTOGEN_VCS/,/^$/ s/\\//p' lisp/Makefile.in | \
232 sed '/AUTOGEN_VCS/d' >| $tempfile || die "sed error"
233
234genfiles=
235
236while read genfile; do
237
238 [ -r lisp/$genfile ] || die "Unable to read $genfile"
239
240 genfiles="$genfiles $genfile"
241done < $tempfile
242
243
244[ "$genfiles" ] || die "Error setting genfiles"
245
246
247[ -e Makefile ] || {
248 echo "Running ./configure..."
249
250 ## Minimize required packages.
251 ./configure --without-x || die "configure error"
168} 252}
169 253
170echo "Modified file(s): $modified"
171 254
172[ "$commit" ] || exit 0 255## Build the minimum needed to get the autoloads.
256echo "Running lib/ make..."
257
258make -C lib "$@" all || die "make lib error"
259
260
261echo "Running src/ make..."
262
263make -C src "$@" bootstrap-emacs || die "make src error"
264
265
266echo "Running lisp/ make..."
267
268make -C lisp "$@" autoloads EMACS=../src/bootstrap-emacs || die "make src error"
269
173 270
271[ ! "$lboot_flag" ] || cp $ldefs_in $ldefs_out || die "cp ldefs_boot error"
272
273
274cd lisp
275
276echo "Checking status of loaddef files..."
277
278## It probably would be fine to just check+commit lisp/, since
279## making autoloads should not effect any other files. But better
280## safe than sorry.
281bzr status -S $genfiles ${ldefs_out#lisp/} >| $tempfile || \
282 die "bzr status error for generated files"
283
284
285modified=
286
287while read stat file; do
288
289 [ "$stat" != "M" ] && die "Unexpected status ($stat) for generated $file"
290 modified="$modified $file"
291
292done < $tempfile
174 293
175echo "Committing..."
176 294
177## bzr status output is annoyingly always relative to top-level, not PWD.
178cd ../ 295cd ../
179 296
180bzr commit -m "Auto-commit of generated files." $modified || \
181 die "bzr commit error"
182 297
298commit "loaddefs" $modified || die "bzr commit error"
183 299
184echo "Committed files: $modified"
185 300
186exit 301exit 0
187 302
188### update_autogen ends here 303### update_autogen ends here
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2a58b306111..856cb05cb8c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,41 @@
12011-04-06 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (AUTOGEN_VCS): New variable.
4 (autoloads): Use $AUTOGEN_VCS.
5
6 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
7 * calendar/calendar.el (calendar-mode-map):
8 Check for toolkit scroll bars. (Bug#8305)
9
102011-04-05 Chong Yidong <cyd@stupidchicken.com>
11
12 * minibuffer.el (completion-in-region--postch)
13 (completion-in-region-mode): Remove unnecessary messages.
14
152011-04-05 Juanma Barranquero <lekktu@gmail.com>
16
17 * font-lock.el (font-lock-refresh-defaults):
18 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
19 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
20
21 * info.el (Info-directory-list, Info-read-node-name-2)
22 (Info-split-parameter-string): Doc fixes.
23 (Info-virtual-nodes): Reflow docstring.
24 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
25 (Info-apropos-toc-nodes, info-finder, Info-get-token)
26 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
27 Fix typos in docstrings.
28 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
29 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
30 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
31 (Info-restore-desktop-buffer): Mark unused parameters.
32 (Info-directory-find-file, Info-directory-find-node)
33 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
34 (Info-virtual-index-find-node, Info-apropos-find-file)
35 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
36 Mark unused parameters; fix typos in docstrings.
37 (Info-virtual-index): Remove unused local variable `nodename'.
38
12011-04-05 Deniz Dogan <deniz@dogan.se> 392011-04-05 Deniz Dogan <deniz@dogan.se>
2 40
3 * net/rcirc.el: Update my e-mail address. 41 * net/rcirc.el: Update my e-mail address.
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index 083f312d613..d4ff6a4384b 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -70,6 +70,18 @@ AUTOGENEL = loaddefs.el \
70 cedet/ede/loaddefs.el \ 70 cedet/ede/loaddefs.el \
71 cedet/srecode/loaddefs.el 71 cedet/srecode/loaddefs.el
72 72
73# Versioned files that are the value of someone's `generated-autoload-file'.
74# Note that update_loaddefs parses this.
75AUTOGEN_VCS = \
76 ps-print.el \
77 emulation/tpu-edt.el \
78 emacs-lisp/cl-loaddefs.el \
79 mail/rmail.el \
80 dired.el \
81 ibuffer.el \
82 htmlfontify.el \
83 emacs-lisp/eieio.el
84
73# Value of max-lisp-eval-depth when compiling initially. 85# Value of max-lisp-eval-depth when compiling initially.
74# During bootstrapping the byte-compiler is run interpreted when compiling 86# During bootstrapping the byte-compiler is run interpreted when compiling
75# itself, and uses more stack than usual. 87# itself, and uses more stack than usual.
@@ -153,13 +165,9 @@ finder-data: doit
153 echo Directories: $$wins; \ 165 echo Directories: $$wins; \
154 $(emacs) -l finder --eval '(setq generated-finder-keywords-file "$(lisp)/finder-inf.el")' -f finder-compile-keywords-make-dist $$wins 166 $(emacs) -l finder --eval '(setq generated-finder-keywords-file "$(lisp)/finder-inf.el")' -f finder-compile-keywords-make-dist $$wins
155 167
156# The chmod +w is to handle env var CVSREAD=1. Files named 168# The chmod +w is to handle env var CVSREAD=1.
157# are identified by being the value of `generated-autoload-file'.
158autoloads: $(LOADDEFS) doit 169autoloads: $(LOADDEFS) doit
159 chmod +w $(lisp)/ps-print.el $(lisp)/emulation/tpu-edt.el \ 170 cd $(lisp) && chmod +w $(AUTOGEN_VCS)
160 $(lisp)/emacs-lisp/cl-loaddefs.el $(lisp)/mail/rmail.el \
161 $(lisp)/dired.el $(lisp)/ibuffer.el $(lisp)/htmlfontify.el \
162 $(lisp)/emacs-lisp/eieio.el
163 cd $(lisp); $(setwins_almost); \ 171 cd $(lisp); $(setwins_almost); \
164 echo Directories: $$wins; \ 172 echo Directories: $$wins; \
165 $(emacs) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins 173 $(emacs) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins
diff --git a/lisp/calendar/cal-move.el b/lisp/calendar/cal-move.el
index c13a9a0a73a..72b34beda6b 100644
--- a/lisp/calendar/cal-move.el
+++ b/lisp/calendar/cal-move.el
@@ -204,6 +204,18 @@ EVENT is an event like `last-nonmenu-event'."
204(define-obsolete-function-alias 'scroll-calendar-left-three-months 204(define-obsolete-function-alias 'scroll-calendar-left-three-months
205 'calendar-scroll-left-three-months "23.1") 205 'calendar-scroll-left-three-months "23.1")
206 206
207;; cf scroll-bar-toolkit-scroll
208;;;###cal-autoload
209(defun calendar-scroll-toolkit-scroll (event)
210 "Function to scroll the calendar after a toolkit scroll-bar click."
211 (interactive "e")
212 (let ((part (nth 4 (event-end event))))
213 ;; Not bothering with drag events (handle, end-scroll).
214 (cond ((memq part '(above-handle up top))
215 (calendar-scroll-right nil event))
216 ((memq part '(below-handle down bottom))
217 (calendar-scroll-left nil event)))))
218
207;;;###cal-autoload 219;;;###cal-autoload
208(defun calendar-scroll-right-three-months (arg &optional event) 220(defun calendar-scroll-right-three-months (arg &optional event)
209 "Scroll the displayed calendar window right by 3*ARG months. 221 "Scroll the displayed calendar window right by 3*ARG months.
diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el
index a4e53670530..99b0c21c94c 100644
--- a/lisp/calendar/calendar.el
+++ b/lisp/calendar/calendar.el
@@ -1648,14 +1648,17 @@ line."
1648 (define-key map [down-mouse-2] 1648 (define-key map [down-mouse-2]
1649 (easy-menu-binding cal-menu-global-mouse-menu)) 1649 (easy-menu-binding cal-menu-global-mouse-menu))
1650 1650
1651 ;; Left-click moves us forward in time, right-click backwards.
1652 ;; cf scroll-bar.el. 1651 ;; cf scroll-bar.el.
1653 (define-key map [vertical-scroll-bar mouse-1] 'calendar-scroll-left) 1652 (if (and (boundp 'x-toolkit-scroll-bars) x-toolkit-scroll-bars)
1654 (define-key map [vertical-scroll-bar drag-mouse-1] 'calendar-scroll-left) 1653 (define-key map [vertical-scroll-bar mouse-1]
1655 ;; down-mouse-2 stays as scroll-bar-drag. 1654 'calendar-scroll-toolkit-scroll)
1656 (define-key map [vertical-scroll-bar mouse-3] 'calendar-scroll-right) 1655 ;; Left-click moves us forward in time, right-click backwards.
1657 (define-key map [vertical-scroll-bar drag-mouse-3] 'calendar-scroll-right) 1656 (define-key map [vertical-scroll-bar mouse-1] 'calendar-scroll-left)
1658 1657 (define-key map [vertical-scroll-bar drag-mouse-1] 'calendar-scroll-left)
1658 ;; down-mouse-2 stays as scroll-bar-drag.
1659 (define-key map [vertical-scroll-bar mouse-3] 'calendar-scroll-right)
1660 (define-key map [vertical-scroll-bar drag-mouse-3]
1661 'calendar-scroll-right))
1659 map) 1662 map)
1660 "Keymap for `calendar-mode'.") 1663 "Keymap for `calendar-mode'.")
1661 1664
diff --git a/lisp/font-lock.el b/lisp/font-lock.el
index 988e821d7e2..32fbb0608a2 100644
--- a/lisp/font-lock.el
+++ b/lisp/font-lock.el
@@ -1765,8 +1765,7 @@ variables directly.
1765Note: This function will erase modifications done by 1765Note: This function will erase modifications done by
1766`font-lock-add-keywords' or `font-lock-remove-keywords', but will 1766`font-lock-add-keywords' or `font-lock-remove-keywords', but will
1767preserve `hi-lock-mode' highlighting patterns." 1767preserve `hi-lock-mode' highlighting patterns."
1768 (let ((hi-lock--inhibit-font-lock-hook t)) 1768 (font-lock-mode -1)
1769 (font-lock-mode -1))
1770 (kill-local-variable 'font-lock-set-defaults) 1769 (kill-local-variable 'font-lock-set-defaults)
1771 (font-lock-mode 1)) 1770 (font-lock-mode 1))
1772 1771
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 64cc6eb4f8b..35acbfdb4bb 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,35 @@
12011-04-05 Teodor Zlatanov <tzz@lifelogs.com>
2
3 * gnus-registry.el (gnus-registry-fixup-registry): New function to
4 fixup the parameters that can be customized by the user between
5 save/read cycles.
6 (gnus-registry-read): Use it.
7 (gnus-registry-make-db): Use it.
8 (gnus-registry-spool-action, gnus-registry-handle-action): Fix
9 messaging.
10 (gnus-registry--split-fancy-with-parent-internal): Fix loop. Map
11 references to actual group names with sender and subject tracking.
12 (gnus-registry-post-process-groups): Use `cond' for better messaging.
13 (gnus-registry-usage-test): Add subject lookup test.
14
15 * registry.el (registry-db, initialize-instance): Set up constructor
16 instead of :initform arguments for the sake of older Emacsen.
17 (registry-lookup-breaks-before-lexbind): New method to demonstrate
18 pre-lexbind merge bug.
19 (registry-usage-test): Use it.
20 (initialize-instance, registry-db): Move the non-function initforms
21 back to the class definition.
22
232011-04-03 Teodor Zlatanov <tzz@lifelogs.com>
24
25 * registry.el: New library to manage gnus-registry-style data.
26
27 * gnus-registry.el: Use it (major rewrite).
28
29 * nnregistry.el: Use it.
30
31 * spam.el: Use it.
32
12011-04-03 Lars Magne Ingebrigtsen <larsi@gnus.org> 332011-04-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 34
3 * gnus-sum.el (gnus-update-marks): Reinstate the code to not alter 35 * gnus-sum.el (gnus-update-marks): Reinstate the code to not alter
diff --git a/lisp/gnus/gnus-registry.el b/lisp/gnus/gnus-registry.el
index db3cc06e9aa..3ab8400a500 100644
--- a/lisp/gnus/gnus-registry.el
+++ b/lisp/gnus/gnus-registry.el
@@ -23,7 +23,7 @@
23;;; Commentary: 23;;; Commentary:
24 24
25;; This is the gnus-registry.el package, which works with all 25;; This is the gnus-registry.el package, which works with all
26;; backends, not just nnmail (e.g. NNTP). The major issue is that it 26;; Gnus backends, not just nnmail. The major issue is that it
27;; doesn't go across backends, so for instance if an article is in 27;; doesn't go across backends, so for instance if an article is in
28;; nnml:sys and you see a reference to it in nnimap splitting, the 28;; nnml:sys and you see a reference to it in nnimap splitting, the
29;; article will end up in nnimap:sys 29;; article will end up in nnimap:sys
@@ -35,8 +35,7 @@
35 35
36;; Put this in your startup file (~/.gnus.el for instance) 36;; Put this in your startup file (~/.gnus.el for instance)
37 37
38;; (setq gnus-registry-max-entries 2500 38;; (setq gnus-registry-max-entries 2500)
39;; gnus-registry-use-long-group-names t)
40 39
41;; (gnus-registry-initialize) 40;; (gnus-registry-initialize)
42 41
@@ -51,18 +50,22 @@
51 50
52;; - get the correct group on spool actions 51;; - get the correct group on spool actions
53 52
54;; - articles that are spooled to a different backend should be handled 53;; - articles that are spooled to a different backend should be moved
54;; after splitting
55 55
56;;; Code: 56;;; Code:
57 57
58(eval-when-compile (require 'cl)) 58(eval-when-compile (require 'cl))
59 59
60(require 'ert)
60(require 'gnus) 61(require 'gnus)
61(require 'gnus-int) 62(require 'gnus-int)
62(require 'gnus-sum) 63(require 'gnus-sum)
64(require 'gnus-art)
63(require 'gnus-util) 65(require 'gnus-util)
64(require 'nnmail) 66(require 'nnmail)
65(require 'easymenu) 67(require 'easymenu)
68(require 'registry)
66 69
67(defvar gnus-adaptive-word-syntax-table) 70(defvar gnus-adaptive-word-syntax-table)
68 71
@@ -74,12 +77,7 @@
74 :version "22.1" 77 :version "22.1"
75 :group 'gnus) 78 :group 'gnus)
76 79
77(defvar gnus-registry-hashtb (make-hash-table 80(defvar gnus-registry-marks
78 :size 256
79 :test 'equal)
80 "*The article registry by Message ID.")
81
82(defcustom gnus-registry-marks
83 '((Important 81 '((Important
84 :char ?i 82 :char ?i
85 :image "summary_important") 83 :image "summary_important")
@@ -105,29 +103,25 @@ Each entry must have a character to be useful for summary mode
105line display and for keyboard shortcuts. 103line display and for keyboard shortcuts.
106 104
107Each entry must have an image string to be useful for visual 105Each entry must have an image string to be useful for visual
108display." 106display.")
109 :group 'gnus-registry
110 :type '(repeat :tag "Registry Marks"
111 (cons :tag "Mark"
112 (symbol :tag "Name")
113 (checklist :tag "Options" :greedy t
114 (group :inline t
115 (const :format "" :value :char)
116 (character :tag "Character code"))
117 (group :inline t
118 (const :format "" :value :image)
119 (string :tag "Image"))))))
120 107
121(defcustom gnus-registry-default-mark 'To-Do 108(defcustom gnus-registry-default-mark 'To-Do
122 "The default mark. Should be a valid key for `gnus-registry-marks'." 109 "The default mark. Should be a valid key for `gnus-registry-marks'."
123 :group 'gnus-registry 110 :group 'gnus-registry
124 :type 'symbol) 111 :type 'symbol)
125 112
113(defcustom gnus-registry-unfollowed-addresses
114 (list (regexp-quote user-mail-address))
115 "List of addresses that gnus-registry-split-fancy-with-parent won't trace.
116The addresses are matched, they don't have to be fully qualified."
117 :group 'gnus-registry
118 :type '(repeat regexp))
119
126(defcustom gnus-registry-unfollowed-groups 120(defcustom gnus-registry-unfollowed-groups
127 '("delayed$" "drafts$" "queue$" "INBOX$" "^nnmairix:" "archive") 121 '("delayed$" "drafts$" "queue$" "INBOX$" "^nnmairix:" "archive")
128 "List of groups that gnus-registry-split-fancy-with-parent won't return. 122 "List of groups that gnus-registry-split-fancy-with-parent won't return.
129The group names are matched, they don't have to be fully 123The group names are matched, they don't have to be fully
130qualified. This parameter tells the Registry 'never split a 124qualified. This parameter tells the Gnus registry 'never split a
131message into a group that matches one of these, regardless of 125message into a group that matches one of these, regardless of
132references.' 126references.'
133 127
@@ -139,35 +133,23 @@ nnmairix groups are specifically excluded because they are ephemeral."
139 "Whether the registry should be installed." 133 "Whether the registry should be installed."
140 :group 'gnus-registry 134 :group 'gnus-registry
141 :type '(choice (const :tag "Never Install" nil) 135 :type '(choice (const :tag "Never Install" nil)
142 (const :tag "Always Install" t) 136 (const :tag "Always Install" t)
143 (const :tag "Ask Me" ask))) 137 (const :tag "Ask Me" ask)))
144 138
145(defvar gnus-summary-misc-menu) ;; Avoid byte compiler warning. 139(defvar gnus-summary-misc-menu) ;; Avoid byte compiler warning.
146 140
147(defvar gnus-registry-misc-menus nil) ; ugly way to keep the menus 141(defvar gnus-registry-misc-menus nil) ; ugly way to keep the menus
148
149(defcustom gnus-registry-clean-empty t
150 "Whether the empty registry entries should be deleted.
151Registry entries are considered empty when they have no groups
152and no extra data."
153 :group 'gnus-registry
154 :type 'boolean)
155
156(defcustom gnus-registry-use-long-group-names t
157 "Whether the registry should use long group names."
158 :group 'gnus-registry
159 :type 'boolean)
160 142
161(defcustom gnus-registry-max-track-groups 20 143(make-obsolete-variable 'gnus-registry-clean-empty nil "23.4")
162 "The maximum number of non-unique group matches to check for a message ID." 144(make-obsolete-variable 'gnus-registry-use-long-group-names nil "23.4")
163 :group 'gnus-registry 145(make-obsolete-variable 'gnus-registry-max-track-groups nil "23.4")
164 :type '(radio (const :format "Unlimited " nil) 146(make-obsolete-variable 'gnus-registry-entry-caching nil "23.4")
165 (integer :format "Maximum non-unique matches: %v"))) 147(make-obsolete-variable 'gnus-registry-trim-articles-without-groups nil "23.4")
166 148
167(defcustom gnus-registry-track-extra nil 149(defcustom gnus-registry-track-extra '(subject sender)
168 "Whether the registry should track extra data about a message. 150 "Whether the registry should track extra data about a message.
169The Subject and Sender (From:) headers are currently tracked this 151The Subject and Sender (From:) headers are tracked this way by
170way." 152default."
171 :group 'gnus-registry 153 :group 'gnus-registry
172 :type 154 :type
173 '(set :tag "Tracking choices" 155 '(set :tag "Tracking choices"
@@ -175,45 +157,49 @@ way."
175 (const :tag "Track by sender (From: header)" sender))) 157 (const :tag "Track by sender (From: header)" sender)))
176 158
177(defcustom gnus-registry-split-strategy nil 159(defcustom gnus-registry-split-strategy nil
178 "Whether the registry should track extra data about a message. 160 "The splitting strategy applied to the keys in `gnus-registry-track-extra'.
179The Subject and Sender (From:) headers are currently tracked this
180way."
181 :group 'gnus-registry
182 :type
183 '(choice :tag "Tracking choices"
184 (const :tag "Only use single choices, discard multiple matches" nil)
185 (const :tag "Majority of matches wins" majority)
186 (const :tag "First found wins" first)))
187 161
188(defcustom gnus-registry-entry-caching t 162Given a set of unique found groups G and counts for each element
189 "Whether the registry should cache extra information." 163of G, and a key K (typically 'sender or 'subject):
164
165When nil, if G has only one element, use it. Otherwise give up.
166This is the fastest but also least useful strategy.
167
168When 'majority, use the majority by count. So if there is a
169group with the most articles counted by K, use that. Ties are
170resolved in no particular order, simply the first one found wins.
171This is the slowest strategy but also the most accurate one.
172
173When 'first, the first element of G wins. This is fast and
174should be OK if your senders and subjects don't \"bleed\" across
175groups."
190 :group 'gnus-registry 176 :group 'gnus-registry
191 :type 'boolean) 177 :type
178 '(choice :tag "Splitting strategy"
179 (const :tag "Only use single choices, discard multiple matches" nil)
180 (const :tag "Majority of matches wins" majority)
181 (const :tag "First found wins" first)))
192 182
193(defcustom gnus-registry-minimum-subject-length 5 183(defcustom gnus-registry-minimum-subject-length 5
194 "The minimum length of a subject before it's considered trackable." 184 "The minimum length of a subject before it's considered trackable."
195 :group 'gnus-registry 185 :group 'gnus-registry
196 :type 'integer) 186 :type 'integer)
197 187
198(defcustom gnus-registry-trim-articles-without-groups t 188(defcustom gnus-registry-extra-entries-precious '(mark)
199 "Whether the registry should clean out message IDs without groups." 189 "What extra keys are precious, meaning entries with them won't get pruned.
200 :group 'gnus-registry 190By default, 'mark is included, so articles with marks are
201 :type 'boolean) 191considered precious.
202 192
203(defcustom gnus-registry-extra-entries-precious '(marks) 193Before you save the Gnus registry, it's pruned. Any entries with
204 "What extra entries are precious, meaning they won't get trimmed. 194keys in this list will not be pruned. All other entries go to
205When you save the Gnus registry, it's trimmed to be no longer 195the Bit Bucket."
206than `gnus-registry-max-entries' (which is nil by default, so no
207trimming happens). Any entries with extra data in this list (by
208default, marks are included, so articles with marks are
209considered precious) will not be trimmed."
210 :group 'gnus-registry 196 :group 'gnus-registry
211 :type '(repeat symbol)) 197 :type '(repeat symbol))
212 198
213(defcustom gnus-registry-cache-file 199(defcustom gnus-registry-cache-file
214 (nnheader-concat 200 (nnheader-concat
215 (or gnus-dribble-directory gnus-home-directory "~/") 201 (or gnus-dribble-directory gnus-home-directory "~/")
216 ".gnus.registry.eld") 202 ".gnus.registry.eioio")
217 "File where the Gnus registry will be stored." 203 "File where the Gnus registry will be stored."
218 :group 'gnus-registry 204 :group 'gnus-registry
219 :type 'file) 205 :type 'file)
@@ -222,253 +208,138 @@ considered precious) will not be trimmed."
222 "Maximum number of entries in the registry, nil for unlimited." 208 "Maximum number of entries in the registry, nil for unlimited."
223 :group 'gnus-registry 209 :group 'gnus-registry
224 :type '(radio (const :format "Unlimited " nil) 210 :type '(radio (const :format "Unlimited " nil)
225 (integer :format "Maximum number: %v"))) 211 (integer :format "Maximum number: %v")))
226
227(defun gnus-registry-track-subject-p ()
228 (memq 'subject gnus-registry-track-extra))
229 212
230(defun gnus-registry-track-sender-p () 213(defcustom gnus-registry-max-pruned-entries nil
231 (memq 'sender gnus-registry-track-extra)) 214 "Maximum number of pruned entries in the registry, nil for unlimited."
215 :group 'gnus-registry
216 :type '(radio (const :format "Unlimited " nil)
217 (integer :format "Maximum number: %v")))
218
219(defun gnus-registry-fixup-registry (db)
220 (when db
221 (oset db :precious
222 (append gnus-registry-extra-entries-precious
223 '()))
224 (oset db :max-hard
225 (or gnus-registry-max-entries
226 most-positive-fixnum))
227 (oset db :max-soft
228 (or gnus-registry-max-pruned-entries
229 most-positive-fixnum))
230 (oset db :tracked
231 (append gnus-registry-track-extra
232 '(mark group keyword))))
233 db)
234
235(defun gnus-registry-make-db (&optional file)
236 (interactive "fGnus registry persistence file: \n")
237 (gnus-registry-fixup-registry
238 (registry-db
239 "Gnus Registry"
240 :file (or file gnus-registry-cache-file)
241 ;; these parameters are set in `gnus-registry-fixup-registry'
242 :max-hard most-positive-fixnum
243 :max-soft most-positive-fixnum
244 :precious nil
245 :tracked nil)))
246
247(defvar gnus-registry-db (gnus-registry-make-db)
248 "*The article registry by Message ID. See `registry-db'")
249
250;; top-level registry data management
251(defun gnus-registry-remake-db (&optional forsure)
252 "Remake the registry database after customization.
253This is not required after changing `gnus-registry-cache-file'."
254 (interactive (list (y-or-n-p "Remake and CLEAR the Gnus registry? ")))
255 (when forsure
256 (gnus-message 1 "Remaking the Gnus registry")
257 (setq gnus-registry-db (gnus-registry-make-db))))
232 258
233(defun gnus-registry-cache-read () 259(defun gnus-registry-read ()
234 "Read the registry cache file." 260 "Read the registry cache file."
235 (interactive) 261 (interactive)
236 (let ((file gnus-registry-cache-file)) 262 (let ((file gnus-registry-cache-file))
237 (when (file-exists-p file) 263 (condition-case nil
238 (gnus-message 5 "Reading %s..." file) 264 (progn
239 (gnus-load file) 265 (gnus-message 5 "Reading Gnus registry from %s..." file)
240 (gnus-message 5 "Reading %s...done" file)))) 266 (setq gnus-registry-db (gnus-registry-fixup-registry
241 267 (eieio-persistent-read file)))
242;; FIXME: Get rid of duplicated code, cf. `gnus-save-newsrc-file' in 268 (gnus-message 5 "Reading Gnus registry from %s...done" file))
243;; `gnus-start.el'. --rsteib 269 (error
244(defun gnus-registry-cache-save () 270 (gnus-message
271 1
272 "The Gnus registry could not be loaded from %s, creating a new one"
273 file)
274 (gnus-registry-remake-db t)))))
275
276(defun gnus-registry-save (&optional file db)
245 "Save the registry cache file." 277 "Save the registry cache file."
246 (interactive) 278 (interactive)
247 (let ((file gnus-registry-cache-file)) 279 (let ((file (or file gnus-registry-cache-file))
248 (with-current-buffer (gnus-get-buffer-create " *Gnus-registry-cache*") 280 (db (or db gnus-registry-db)))
249 (make-local-variable 'version-control) 281 (gnus-message 5 "Saving Gnus registry (%d entries) to %s..."
250 (setq version-control gnus-backup-startup-file) 282 (registry-size db) file)
251 (setq buffer-file-name file) 283 (registry-prune db)
252 (setq default-directory (file-name-directory buffer-file-name)) 284 ;; TODO: call (gnus-string-remove-all-properties v) on all elements?
253 (buffer-disable-undo) 285 (eieio-persistent-save db file)
254 (erase-buffer) 286 (gnus-message 5 "Saving Gnus registry (size %d) to %s...done"
255 (gnus-message 5 "Saving %s..." file) 287 (registry-size db) file)))
256 (if gnus-save-startup-file-via-temp-buffer 288
257 (let ((coding-system-for-write gnus-ding-file-coding-system) 289;; article move/copy/spool/delete actions
258 (standard-output (current-buffer)))
259 (gnus-gnus-to-quick-newsrc-format
260 t "gnus registry startup file" 'gnus-registry-alist)
261 (gnus-registry-cache-whitespace file)
262 (save-buffer))
263 (let ((coding-system-for-write gnus-ding-file-coding-system)
264 (version-control gnus-backup-startup-file)
265 (startup-file file)
266 (working-dir (file-name-directory file))
267 working-file
268 (i -1))
269 ;; Generate the name of a non-existent file.
270 (while (progn (setq working-file
271 (format
272 (if (and (eq system-type 'ms-dos)
273 (not (gnus-long-file-names)))
274 "%s#%d.tm#" ; MSDOS limits files to 8+3
275 "%s#tmp#%d")
276 working-dir (setq i (1+ i))))
277 (file-exists-p working-file)))
278
279 (unwind-protect
280 (progn
281 (gnus-with-output-to-file working-file
282 (gnus-gnus-to-quick-newsrc-format
283 t "gnus registry startup file" 'gnus-registry-alist))
284
285 ;; These bindings will mislead the current buffer
286 ;; into thinking that it is visiting the startup
287 ;; file.
288 (let ((buffer-backed-up nil)
289 (buffer-file-name startup-file)
290 (file-precious-flag t)
291 (setmodes (file-modes startup-file)))
292 ;; Backup the current version of the startup file.
293 (backup-buffer)
294
295 ;; Replace the existing startup file with the temp file.
296 (rename-file working-file startup-file t)
297 (gnus-set-file-modes startup-file setmodes)))
298 (condition-case nil
299 (delete-file working-file)
300 (file-error nil)))))
301
302 (gnus-kill-buffer (current-buffer))
303 (gnus-message 5 "Saving %s...done" file))))
304
305;; Idea from Dan Christensen <jdc@chow.mat.jhu.edu>
306;; Save the gnus-registry file with extra line breaks.
307(defun gnus-registry-cache-whitespace (filename)
308 (gnus-message 7 "Adding whitespace to %s" filename)
309 (save-excursion
310 (goto-char (point-min))
311 (while (re-search-forward "^(\\|(\\\"" nil t)
312 (replace-match "\n\\&" t))
313 (goto-char (point-min))
314 (while (re-search-forward " $" nil t)
315 (replace-match "" t t))))
316
317(defun gnus-registry-save (&optional force)
318 (when (or gnus-registry-dirty force)
319 (let ((caching gnus-registry-entry-caching))
320 ;; turn off entry caching, so mtime doesn't get recorded
321 (setq gnus-registry-entry-caching nil)
322 ;; remove entry caches
323 (maphash
324 (lambda (key value)
325 (if (hash-table-p value)
326 (remhash key gnus-registry-hashtb)))
327 gnus-registry-hashtb)
328 ;; remove empty entries
329 (when gnus-registry-clean-empty
330 (gnus-registry-clean-empty-function))
331 ;; now trim and clean text properties from the registry appropriately
332 (setq gnus-registry-alist
333 (gnus-registry-remove-alist-text-properties
334 (gnus-registry-trim
335 (gnus-hashtable-to-alist
336 gnus-registry-hashtb))))
337 ;; really save
338 (gnus-registry-cache-save)
339 (setq gnus-registry-entry-caching caching)
340 (setq gnus-registry-dirty nil))))
341
342(defun gnus-registry-clean-empty-function ()
343 "Remove all empty entries from the registry. Returns count thereof."
344 (let ((count 0))
345
346 (maphash
347 (lambda (key value)
348 (when (stringp key)
349 (dolist (group (gnus-registry-fetch-groups key))
350 (when (gnus-parameter-registry-ignore group)
351 (gnus-message
352 10
353 "gnus-registry: deleted ignored group %s from key %s"
354 group key)
355 (gnus-registry-delete-group key group)))
356
357 (unless (gnus-registry-group-count key)
358 (gnus-registry-delete-id key))
359
360 (unless (or
361 (gnus-registry-fetch-group key)
362 ;; TODO: look for specific extra data here!
363 ;; in this example, we look for 'label
364 (gnus-registry-fetch-extra key 'label))
365 (incf count)
366 (gnus-registry-delete-id key))
367
368 (unless (stringp key)
369 (gnus-message
370 10
371 "gnus-registry key %s was not a string, removing"
372 key)
373 (gnus-registry-delete-id key))))
374
375 gnus-registry-hashtb)
376 count))
377
378(defun gnus-registry-read ()
379 (gnus-registry-cache-read)
380 (setq gnus-registry-hashtb (gnus-alist-to-hashtable gnus-registry-alist))
381 (setq gnus-registry-dirty nil))
382
383(defun gnus-registry-remove-alist-text-properties (v)
384 "Remove text properties from all strings in alist."
385 (if (stringp v)
386 (gnus-string-remove-all-properties v)
387 (if (and (listp v) (listp (cdr v)))
388 (mapcar 'gnus-registry-remove-alist-text-properties v)
389 (if (and (listp v) (stringp (cdr v)))
390 (cons (gnus-registry-remove-alist-text-properties (car v))
391 (gnus-registry-remove-alist-text-properties (cdr v)))
392 v))))
393
394(defun gnus-registry-trim (alist)
395 "Trim alist to size, using gnus-registry-max-entries.
396Any entries with extra data (marks, currently) are left alone."
397 (if (null gnus-registry-max-entries)
398 alist ; just return the alist
399 ;; else, when given max-entries, trim the alist
400 (let* ((timehash (make-hash-table
401 :size 20000
402 :test 'equal))
403 (precious (make-hash-table
404 :size 20000
405 :test 'equal))
406 (trim-length (- (length alist) gnus-registry-max-entries))
407 (trim-length (if (natnump trim-length) trim-length 0))
408 precious-list junk-list)
409 (maphash
410 (lambda (key value)
411 (let ((extra (gnus-registry-fetch-extra key)))
412 (dolist (item gnus-registry-extra-entries-precious)
413 (dolist (e extra)
414 (when (equal (nth 0 e) item)
415 (puthash key t precious)
416 (return))))
417 (puthash key (gnus-registry-fetch-extra key 'mtime) timehash)))
418 gnus-registry-hashtb)
419
420 (dolist (item alist)
421 (let ((key (nth 0 item)))
422 (if (gethash key precious)
423 (push item precious-list)
424 (push item junk-list))))
425
426 (sort
427 junk-list
428 (lambda (a b)
429 (let ((t1 (or (cdr (gethash (car a) timehash))
430 '(0 0 0)))
431 (t2 (or (cdr (gethash (car b) timehash))
432 '(0 0 0))))
433 (time-less-p t1 t2))))
434
435 ;; we use the return value of this setq, which is the trimmed alist
436 (setq alist (append precious-list
437 (nthcdr trim-length junk-list))))))
438
439(defun gnus-registry-action (action data-header from &optional to method) 290(defun gnus-registry-action (action data-header from &optional to method)
440 (let* ((id (mail-header-id data-header)) 291 (let* ((id (mail-header-id data-header))
441 (subject (gnus-string-remove-all-properties 292 (subject (gnus-string-remove-all-properties
442 (gnus-registry-simplify-subject 293 (gnus-registry-simplify-subject
443 (mail-header-subject data-header)))) 294 (mail-header-subject data-header))))
444 (sender (gnus-string-remove-all-properties 295 (sender (gnus-string-remove-all-properties
445 (mail-header-from data-header))) 296 (mail-header-from data-header)))
446 (from (gnus-group-guess-full-name-from-command-method from)) 297 (from (gnus-group-guess-full-name-from-command-method from))
447 (to (if to (gnus-group-guess-full-name-from-command-method to) nil)) 298 (to (if to (gnus-group-guess-full-name-from-command-method to) nil))
448 (to-name (if to to "the Bit Bucket")) 299 (to-name (if to to "the Bit Bucket")))
449 (old-entry (gethash id gnus-registry-hashtb))) 300 (gnus-message 7 "Gnus registry: article %s %s from %s to %s"
450 (gnus-message 7 "Registry: article %s %s from %s to %s" 301 id (if method "respooling" "going") from to)
451 id 302
452 (if method "respooling" "going") 303 (gnus-registry-handle-action
453 from 304 id
454 to) 305 ;; unless copying, remove the old "from" group
455 306 (if (not (equal 'copy action)) from nil)
456 ;; All except copy will need a delete 307 to subject sender)))
457 (gnus-registry-delete-group id from)
458
459 (when (equal 'copy action)
460 (gnus-registry-add-group id from subject sender)) ; undo the delete
461
462 (gnus-registry-add-group id to subject sender)))
463 308
464(defun gnus-registry-spool-action (id group &optional subject sender) 309(defun gnus-registry-spool-action (id group &optional subject sender)
465 (let ((group (gnus-group-guess-full-name-from-command-method group))) 310 (let ((to (gnus-group-guess-full-name-from-command-method group)))
466 (when (and (stringp id) (string-match "\r$" id)) 311 (when (and (stringp id) (string-match "\r$" id))
467 (setq id (substring id 0 -1))) 312 (setq id (substring id 0 -1)))
468 (gnus-message 7 "Registry: article %s spooled to %s" 313 (gnus-message 7 "Gnus registry: article %s spooled to %s"
469 id 314 id
470 group) 315 to)
471 (gnus-registry-add-group id group subject sender))) 316 (gnus-registry-handle-action id nil to subject sender)))
317
318(defun gnus-registry-handle-action (id from to subject sender)
319 (let ((db gnus-registry-db)
320 ;; safe if not found
321 (entry (gnus-registry-get-or-make-entry id)))
322
323 ;; this could be done by calling `gnus-registry-set-id-key'
324 ;; several times but it's better to bunch the transactions
325 ;; together
326
327 (registry-delete db (list id) nil)
328 (when from
329 (setq entry (cons (delete from (assoc 'group entry))
330 (assq-delete-all 'group entry))))
331
332 (dolist (kv `((group ,to) (sender ,sender) (subject ,subject)))
333 (when (second kv)
334 (let ((new (or (assq (first kv) entry)
335 (list (first kv)))))
336 (add-to-list 'new (second kv) t)
337 (setq entry (cons new
338 (assq-delete-all (first kv) entry))))))
339 (gnus-message 10 "Gnus registry: new entry for %s is %S"
340 id
341 entry)
342 (registry-insert db id entry)))
472 343
473;; Function for nn{mail|imap}-split-fancy: look up all references in 344;; Function for nn{mail|imap}-split-fancy: look up all references in
474;; the cache and if a match is found, return that group. 345;; the cache and if a match is found, return that group.
@@ -490,117 +361,118 @@ that group.
490 361
491See the Info node `(gnus)Fancy Mail Splitting' for more details." 362See the Info node `(gnus)Fancy Mail Splitting' for more details."
492 (let* ((refstr (or (message-fetch-field "references") "")) ; guaranteed 363 (let* ((refstr (or (message-fetch-field "references") "")) ; guaranteed
493 (reply-to (message-fetch-field "in-reply-to")) ; may be nil 364 (reply-to (message-fetch-field "in-reply-to")) ; may be nil
494 ;; now, if reply-to is valid, append it to the References 365 ;; now, if reply-to is valid, append it to the References
495 (refstr (if reply-to 366 (refstr (if reply-to
496 (concat refstr " " reply-to) 367 (concat refstr " " reply-to)
497 refstr)) 368 refstr))
498 ;; these may not be used, but the code is cleaner having them up here 369 (references (and refstr (gnus-extract-references refstr)))
499 (sender (gnus-string-remove-all-properties 370 ;; these may not be used, but the code is cleaner having them up here
500 (message-fetch-field "from"))) 371 (sender (gnus-string-remove-all-properties
501 (subject (gnus-string-remove-all-properties 372 (message-fetch-field "from")))
502 (gnus-registry-simplify-subject 373 (subject (gnus-string-remove-all-properties
503 (message-fetch-field "subject")))) 374 (gnus-registry-simplify-subject
504 375 (message-fetch-field "subject"))))
505 (nnmail-split-fancy-with-parent-ignore-groups 376
506 (if (listp nnmail-split-fancy-with-parent-ignore-groups) 377 (nnmail-split-fancy-with-parent-ignore-groups
507 nnmail-split-fancy-with-parent-ignore-groups 378 (if (listp nnmail-split-fancy-with-parent-ignore-groups)
508 (list nnmail-split-fancy-with-parent-ignore-groups))) 379 nnmail-split-fancy-with-parent-ignore-groups
509 (log-agent "gnus-registry-split-fancy-with-parent") 380 (list nnmail-split-fancy-with-parent-ignore-groups))))
510 found found-full) 381 (gnus-registry--split-fancy-with-parent-internal
511 382 :references references
383 :refstr refstr
384 :sender sender
385 :subject subject
386 :log-agent "Gnus registry fancy splitting with parent")))
387
388(defun* gnus-registry--split-fancy-with-parent-internal
389 (&rest spec
390 &key references refstr sender subject log-agent
391 &allow-other-keys)
392 (gnus-message
393 10
394 "gnus-registry--split-fancy-with-parent-internal: %S" spec)
395 (let ((db gnus-registry-db)
396 found)
512 ;; this is a big if-else statement. it uses 397 ;; this is a big if-else statement. it uses
513 ;; gnus-registry-post-process-groups to filter the results after 398 ;; gnus-registry-post-process-groups to filter the results after
514 ;; every step. 399 ;; every step.
515 (cond 400 (cond
516 ;; the references string must be valid and parse to valid references 401 ;; the references string must be valid and parse to valid references
517 ((and refstr (gnus-extract-references refstr)) 402 (references
518 (dolist (reference (nreverse (gnus-extract-references refstr))) 403 (dolist (reference (nreverse references))
519 (gnus-message 404 (gnus-message
520 9 405 9
521 "%s is looking for matches for reference %s from [%s]" 406 "%s is looking for matches for reference %s from [%s]"
522 log-agent reference refstr) 407 log-agent reference refstr)
523 (dolist (group (gnus-registry-fetch-groups 408 (setq found
524 reference 409 (loop for group in (gnus-registry-get-id-key reference 'group)
525 gnus-registry-max-track-groups)) 410 when (gnus-registry-follow-group-p group)
526 (when (and group (gnus-registry-follow-group-p group)) 411 do (gnus-message
527 (gnus-message 412 7
528 7 413 "%s traced the reference %s from [%s] to group %s"
529 "%s traced the reference %s from [%s] to group %s" 414 log-agent reference refstr group)
530 log-agent reference refstr group) 415 collect group)))
531 (push group found))))
532 ;; filter the found groups and return them 416 ;; filter the found groups and return them
533 ;; the found groups are the full groups 417 ;; the found groups are the full groups
534 (setq found (gnus-registry-post-process-groups 418 (setq found (gnus-registry-post-process-groups
535 "references" refstr found found))) 419 "references" refstr found)))
536 420
537 ;; else: there were no matches, now try the extra tracking by sender 421 ;; else: there were no matches, try the extra tracking by sender
538 ((and (gnus-registry-track-sender-p) 422 ((and (memq 'sender gnus-registry-track-extra)
539 sender 423 sender
540 (not (equal (gnus-extract-address-component-email sender) 424 (gnus-grep-in-list
541 user-mail-address))) 425 sender
542 (maphash 426 gnus-registry-unfollowed-addresses))
543 (lambda (key value) 427 (let ((groups (apply
544 ;; don't use more than gnus-registry-max-track-groups 428 'append
545 (when (< (length found-full) gnus-registry-max-track-groups) 429 (mapcar
546 (let ((this-sender 430 (lambda (reference)
547 (cdr (gnus-registry-fetch-extra key 'sender))) 431 (gnus-registry-get-id-key reference 'group))
548 matches) 432 (registry-lookup-secondary-value db 'sender sender)))))
549 (when (and this-sender 433 (setq found
550 (equal sender this-sender)) 434 (loop for group in groups
551 (let ((groups (gnus-registry-fetch-groups 435 when (gnus-registry-follow-group-p group)
552 key 436 do (gnus-message
553 gnus-registry-max-track-groups))) 437 ;; raise level of messaging if gnus-registry-track-extra
554 (dolist (group groups) 438 (if gnus-registry-track-extra 7 9)
555 (when (and group (gnus-registry-follow-group-p group)) 439 "%s (extra tracking) traced sender '%s' to groups %s"
556 (push group found-full) 440 log-agent sender found)
557 (setq found (append (list group) (delete group found)))))) 441 collect group)))
558 (push key matches) 442
559 (gnus-message
560 ;; raise level of messaging if gnus-registry-track-extra
561 (if gnus-registry-track-extra 7 9)
562 "%s (extra tracking) traced sender %s to groups %s (keys %s)"
563 log-agent sender found matches)))))
564 gnus-registry-hashtb)
565 ;; filter the found groups and return them 443 ;; filter the found groups and return them
566 ;; the found groups are NOT the full groups 444 ;; the found groups are NOT the full groups
567 (setq found (gnus-registry-post-process-groups 445 (setq found (gnus-registry-post-process-groups
568 "sender" sender found found-full))) 446 "sender" sender found)))
569 447
570 ;; else: there were no matches, now try the extra tracking by subject 448 ;; else: there were no matches, now try the extra tracking by subject
571 ((and (gnus-registry-track-subject-p) 449 ((and (memq 'subject gnus-registry-track-extra)
572 subject 450 subject
573 (< gnus-registry-minimum-subject-length (length subject))) 451 (< gnus-registry-minimum-subject-length (length subject)))
574 (maphash 452 (let ((groups (apply
575 (lambda (key value) 453 'append
576 (let ((this-subject (cdr 454 (mapcar
577 (gnus-registry-fetch-extra key 'subject))) 455 (lambda (reference)
578 matches) 456 (gnus-registry-get-id-key reference 'group))
579 (when (and this-subject 457 (registry-lookup-secondary-value db 'subject subject)))))
580 (equal subject this-subject)) 458 (setq found
581 (let ((groups (gnus-registry-fetch-groups 459 (loop for group in groups
582 key 460 when (gnus-registry-follow-group-p group)
583 gnus-registry-max-track-groups))) 461 do (gnus-message
584 (dolist (group groups) 462 ;; raise level of messaging if gnus-registry-track-extra
585 (when (and group (gnus-registry-follow-group-p group)) 463 (if gnus-registry-track-extra 7 9)
586 (push group found-full) 464 "%s (extra tracking) traced subject '%s' to groups %s"
587 (setq found (append (list group) (delete group found)))))) 465 log-agent subject found)
588 (push key matches) 466 collect group))
589 (gnus-message
590 ;; raise level of messaging if gnus-registry-track-extra
591 (if gnus-registry-track-extra 7 9)
592 "%s (extra tracking) traced subject %s to groups %s (keys %s)"
593 log-agent subject found matches))))
594 gnus-registry-hashtb)
595 ;; filter the found groups and return them 467 ;; filter the found groups and return them
596 ;; the found groups are NOT the full groups 468 ;; the found groups are NOT the full groups
597 (setq found (gnus-registry-post-process-groups 469 (setq found (gnus-registry-post-process-groups
598 "subject" subject found found-full)))) 470 "subject" subject found)))))
599 ;; after the (cond) we extract the actual value safely 471 ;; after the (cond) we extract the actual value safely
600 (car-safe found))) 472 (car-safe found)))
601 473
602(defun gnus-registry-post-process-groups (mode key groups groups-full) 474(defun gnus-registry-post-process-groups (mode key groups)
603 "Modifies GROUPS found by MODE for KEY to determine which ones to follow. 475 "Inspects GROUPS found by MODE for KEY to determine which ones to follow.
604 476
605MODE can be 'subject' or 'sender' for example. The KEY is the 477MODE can be 'subject' or 'sender' for example. The KEY is the
606value by which MODE was searched. 478value by which MODE was searched.
@@ -609,121 +481,126 @@ Transforms each group name to the equivalent short name.
609 481
610Checks if the current Gnus method (from `gnus-command-method' or 482Checks if the current Gnus method (from `gnus-command-method' or
611from `gnus-newsgroup-name') is the same as the group's method. 483from `gnus-newsgroup-name') is the same as the group's method.
612This is not possible if gnus-registry-use-long-group-names is 484Foreign methods are not supported so they are rejected.
613false. Foreign methods are not supported so they are rejected.
614 485
615Reduces the list to a single group, or complains if that's not 486Reduces the list to a single group, or complains if that's not
616possible. Uses `gnus-registry-split-strategy' and GROUPS-FULL if 487possible. Uses `gnus-registry-split-strategy'."
617necessary."
618 (let ((log-agent "gnus-registry-post-process-group") 488 (let ((log-agent "gnus-registry-post-process-group")
619 out) 489 out)
620 490
621 ;; the strategy can be 'first, 'majority, or nil 491 ;; the strategy can be nil, in which case groups is nil
622 (when (eq gnus-registry-split-strategy 'first) 492 (setq groups
623 (when groups 493 (case gnus-registry-split-strategy
624 (setq groups (list (car-safe groups))))) 494 ;; first strategy
625 495 ((first)
626 (when (eq gnus-registry-split-strategy 'majority) 496 (and groups (list (car-safe groups))))
627 (let ((freq (make-hash-table 497
628 :size 256 498 ((majority)
629 :test 'equal))) 499 (let ((freq (make-hash-table
630 (mapc (lambda(x) (puthash x (1+ (gethash x freq 0)) freq)) groups-full) 500 :size 256
631 (setq groups (list (car-safe 501 :test 'equal)))
632 (sort 502 (mapc (lambda (x) (puthash x (1+ (gethash x freq 0)) freq))
633 groups 503 groups)
634 (lambda (a b) 504 (list (car-safe
635 (> (gethash a freq 0) 505 (sort groups (lambda (a b)
636 (gethash b freq 0))))))))) 506 (> (gethash a freq 0)
637 507 (gethash b freq 0))))))))))
638 (if gnus-registry-use-long-group-names 508
639 (dolist (group groups) 509 (dolist (group groups)
640 (let ((m1 (gnus-find-method-for-group group)) 510 (let ((m1 (gnus-find-method-for-group group))
641 (m2 (or gnus-command-method 511 (m2 (or gnus-command-method
642 (gnus-find-method-for-group gnus-newsgroup-name))) 512 (gnus-find-method-for-group gnus-newsgroup-name)))
643 (short-name (gnus-group-short-name group))) 513 (short-name (gnus-group-short-name group)))
644 (if (gnus-methods-equal-p m1 m2) 514 (if (gnus-methods-equal-p m1 m2)
645 (progn 515 (progn
646 ;; this is REALLY just for debugging 516 ;; this is REALLY just for debugging
647 (gnus-message 517 (gnus-message
648 10 518 10
649 "%s stripped group %s to %s" 519 "%s stripped group %s to %s"
650 log-agent group short-name) 520 log-agent group short-name)
651 (unless (member short-name out) 521 (add-to-list 'out short-name))
652 (push short-name out))) 522 ;; else...
653 ;; else... 523 (gnus-message
654 (gnus-message 524 7
655 7 525 "%s ignored foreign group %s"
656 "%s ignored foreign group %s" 526 log-agent group))))
657 log-agent group)))) 527
658 (setq out groups)) 528 ;; is there just one group?
659 (when (cdr-safe out) 529 (cond
660 (gnus-message 530 ((= (length out) 1) out)
661 5 531 ((null out)
662 "%s: too many extra matches (%s) for %s %s. Returning none." 532 (gnus-message
663 log-agent out mode key) 533 5
664 (setq out nil)) 534 "%s: no matches for %s %s."
665 out)) 535 log-agent out mode key)
536 nil)
537 (t (gnus-message
538 5
539 "%s: too many extra matches (%s) for %s %s. Returning none."
540 log-agent out mode key)
541 nil))))
666 542
667(defun gnus-registry-follow-group-p (group) 543(defun gnus-registry-follow-group-p (group)
668 "Determines if a group name should be followed. 544 "Determines if a group name should be followed.
669Consults `gnus-registry-unfollowed-groups' and 545Consults `gnus-registry-unfollowed-groups' and
670`nnmail-split-fancy-with-parent-ignore-groups'." 546`nnmail-split-fancy-with-parent-ignore-groups'."
671 (not (or (gnus-grep-in-list 547 (and group
672 group 548 (not (or (gnus-grep-in-list
673 gnus-registry-unfollowed-groups) 549 group
674 (gnus-grep-in-list 550 gnus-registry-unfollowed-groups)
675 group 551 (gnus-grep-in-list
676 nnmail-split-fancy-with-parent-ignore-groups)))) 552 group
553 nnmail-split-fancy-with-parent-ignore-groups)))))
677 554
678(defun gnus-registry-wash-for-keywords (&optional force) 555(defun gnus-registry-wash-for-keywords (&optional force)
556 "Get the keywords of the current article.
557Overrides existing keywords with FORCE set non-nil."
679 (interactive) 558 (interactive)
680 (let ((id (gnus-registry-fetch-message-id-fast gnus-current-article)) 559 (let ((id (gnus-registry-fetch-message-id-fast gnus-current-article))
681 word words) 560 word words)
682 (if (or (not (gnus-registry-fetch-extra id 'keywords)) 561 (if (or (not (gnus-registry-get-id-key id 'keyword))
683 force) 562 force)
684 (with-current-buffer gnus-article-buffer 563 (with-current-buffer gnus-article-buffer
685 (article-goto-body) 564 (article-goto-body)
686 (save-window-excursion 565 (save-window-excursion
687 (save-restriction 566 (save-restriction
688 (narrow-to-region (point) (point-max)) 567 (narrow-to-region (point) (point-max))
689 (with-syntax-table gnus-adaptive-word-syntax-table 568 (with-syntax-table gnus-adaptive-word-syntax-table
690 (while (re-search-forward "\\b\\w+\\b" nil t) 569 (while (re-search-forward "\\b\\w+\\b" nil t)
691 (setq word (gnus-registry-remove-alist-text-properties 570 (setq word (gnus-string-remove-all-properties
692 (downcase (buffer-substring 571 (downcase (buffer-substring
693 (match-beginning 0) (match-end 0))))) 572 (match-beginning 0) (match-end 0)))))
694 (if (> (length word) 3) 573 (if (> (length word) 2)
695 (push word words)))))) 574 (push word words))))))
696 (gnus-registry-store-extra-entry id 'keywords words))))) 575 (gnus-registry-set-id-key id 'keyword words)))))
576
577(defun gnus-registry-keywords ()
578 (let ((table (registry-lookup-secondary gnus-registry-db 'keyword)))
579 (when table (maphash (lambda (k v) k) table))))
697 580
698(defun gnus-registry-find-keywords (keyword) 581(defun gnus-registry-find-keywords (keyword)
699 (interactive "skeyword: ") 582 (interactive (list
700 (let (articles) 583 (completing-read "Keyword: " (gnus-registry-keywords) nil t)))
701 (maphash 584 (registry-lookup-secondary-value gnus-registry-db 'keyword keyword))
702 (lambda (key value)
703 (when (member keyword
704 (cdr-safe (gnus-registry-fetch-extra key 'keywords)))
705 (push key articles)))
706 gnus-registry-hashtb)
707 articles))
708 585
709(defun gnus-registry-register-message-ids () 586(defun gnus-registry-register-message-ids ()
710 "Register the Message-ID of every article in the group" 587 "Register the Message-ID of every article in the group"
711 (unless (gnus-parameter-registry-ignore gnus-newsgroup-name) 588 (unless (gnus-parameter-registry-ignore gnus-newsgroup-name)
712 (dolist (article gnus-newsgroup-articles) 589 (dolist (article gnus-newsgroup-articles)
713 (let ((id (gnus-registry-fetch-message-id-fast article))) 590 (let* ((id (gnus-registry-fetch-message-id-fast article))
714 (unless (member gnus-newsgroup-name (gnus-registry-fetch-groups id)) 591 (groups (gnus-registry-get-id-key id 'group)))
715 (gnus-message 9 "Registry: Registering article %d with group %s" 592 (unless (member gnus-newsgroup-name groups)
716 article gnus-newsgroup-name) 593 (gnus-message 9 "Registry: Registering article %d with group %s"
717 (gnus-registry-add-group 594 article gnus-newsgroup-name)
718 id 595 (gnus-registry-handle-action id nil gnus-newsgroup-name
719 gnus-newsgroup-name 596 (gnus-registry-fetch-simplified-message-subject-fast article)
720 (gnus-registry-fetch-simplified-message-subject-fast article) 597 (gnus-registry-fetch-sender-fast article)))))))
721 (gnus-registry-fetch-sender-fast article))))))) 598
722 599;; message field fetchers
723(defun gnus-registry-fetch-message-id-fast (article) 600(defun gnus-registry-fetch-message-id-fast (article)
724 "Fetch the Message-ID quickly, using the internal gnus-data-list function" 601 "Fetch the Message-ID quickly, using the internal gnus-data-list function"
725 (if (and (numberp article) 602 (if (and (numberp article)
726 (assoc article (gnus-data-list nil))) 603 (assoc article (gnus-data-list nil)))
727 (mail-header-id (gnus-data-header (assoc article (gnus-data-list nil)))) 604 (mail-header-id (gnus-data-header (assoc article (gnus-data-list nil))))
728 nil)) 605 nil))
729 606
@@ -735,32 +612,33 @@ Consults `gnus-registry-unfollowed-groups' and
735(defun gnus-registry-fetch-simplified-message-subject-fast (article) 612(defun gnus-registry-fetch-simplified-message-subject-fast (article)
736 "Fetch the Subject quickly, using the internal gnus-data-list function" 613 "Fetch the Subject quickly, using the internal gnus-data-list function"
737 (if (and (numberp article) 614 (if (and (numberp article)
738 (assoc article (gnus-data-list nil))) 615 (assoc article (gnus-data-list nil)))
739 (gnus-string-remove-all-properties 616 (gnus-string-remove-all-properties
740 (gnus-registry-simplify-subject 617 (gnus-registry-simplify-subject
741 (mail-header-subject (gnus-data-header 618 (mail-header-subject (gnus-data-header
742 (assoc article (gnus-data-list nil)))))) 619 (assoc article (gnus-data-list nil))))))
743 nil)) 620 nil))
744 621
745(defun gnus-registry-fetch-sender-fast (article) 622(defun gnus-registry-fetch-sender-fast (article)
746 "Fetch the Sender quickly, using the internal gnus-data-list function" 623 "Fetch the Sender quickly, using the internal gnus-data-list function"
747 (if (and (numberp article) 624 (if (and (numberp article)
748 (assoc article (gnus-data-list nil))) 625 (assoc article (gnus-data-list nil)))
749 (gnus-string-remove-all-properties 626 (gnus-string-remove-all-properties
750 (mail-header-from (gnus-data-header 627 (mail-header-from (gnus-data-header
751 (assoc article (gnus-data-list nil))))) 628 (assoc article (gnus-data-list nil)))))
752 nil)) 629 nil))
753 630
631;; registry marks glue
754(defun gnus-registry-do-marks (type function) 632(defun gnus-registry-do-marks (type function)
755 "For each known mark, call FUNCTION for each cell of type TYPE. 633 "For each known mark, call FUNCTION for each cell of type TYPE.
756 634
757FUNCTION should take two parameters, a mark symbol and the cell value." 635FUNCTION should take two parameters, a mark symbol and the cell value."
758 (dolist (mark-info gnus-registry-marks) 636 (dolist (mark-info gnus-registry-marks)
759 (let* ((mark (car-safe mark-info)) 637 (let* ((mark (car-safe mark-info))
760 (data (cdr-safe mark-info)) 638 (data (cdr-safe mark-info))
761 (cell-data (plist-get data type))) 639 (cell-data (plist-get data type)))
762 (when cell-data 640 (when cell-data
763 (funcall function mark cell-data))))) 641 (funcall function mark cell-data)))))
764 642
765;;; this is ugly code, but I don't know how to do it better 643;;; this is ugly code, but I don't know how to do it better
766(defun gnus-registry-install-shortcuts () 644(defun gnus-registry-install-shortcuts ()
@@ -772,7 +650,7 @@ Uses `gnus-registry-marks' to find what shortcuts to install."
772 :char 650 :char
773 (lambda (mark data) 651 (lambda (mark data)
774 (let ((function-format 652 (let ((function-format
775 (format "gnus-registry-%%s-article-%s-mark" mark))) 653 (format "gnus-registry-%%s-article-%s-mark" mark)))
776 654
777;;; The following generates these functions: 655;;; The following generates these functions:
778;;; (defun gnus-registry-set-article-Important-mark (&rest articles) 656;;; (defun gnus-registry-set-article-Important-mark (&rest articles)
@@ -784,84 +662,84 @@ Uses `gnus-registry-marks' to find what shortcuts to install."
784;;; (interactive (gnus-summary-work-articles current-prefix-arg)) 662;;; (interactive (gnus-summary-work-articles current-prefix-arg))
785;;; (gnus-registry-set-article-mark-internal 'Important articles t t)) 663;;; (gnus-registry-set-article-mark-internal 'Important articles t t))
786 664
787 (dolist (remove '(t nil)) 665 (dolist (remove '(t nil))
788 (let* ((variant-name (if remove "remove" "set")) 666 (let* ((variant-name (if remove "remove" "set"))
789 (function-name (format function-format variant-name)) 667 (function-name (format function-format variant-name))
790 (shortcut (format "%c" data)) 668 (shortcut (format "%c" data))
791 (shortcut (if remove (upcase shortcut) shortcut))) 669 (shortcut (if remove (upcase shortcut) shortcut)))
792 (unintern function-name obarray) 670 (unintern function-name obarray)
793 (eval 671 (eval
794 `(defun 672 `(defun
795 ;; function name 673 ;; function name
796 ,(intern function-name) 674 ,(intern function-name)
797 ;; parameter definition 675 ;; parameter definition
798 (&rest articles) 676 (&rest articles)
799 ;; documentation 677 ;; documentation
800 ,(format 678 ,(format
801 "%s the %s mark over process-marked ARTICLES." 679 "%s the %s mark over process-marked ARTICLES."
802 (upcase-initials variant-name) 680 (upcase-initials variant-name)
803 mark) 681 mark)
804 ;; interactive definition 682 ;; interactive definition
805 (interactive 683 (interactive
806 (gnus-summary-work-articles current-prefix-arg)) 684 (gnus-summary-work-articles current-prefix-arg))
807 ;; actual code 685 ;; actual code
808 686
809 ;; if this is called and the user doesn't want the 687 ;; if this is called and the user doesn't want the
810 ;; registry enabled, we'll ask anyhow 688 ;; registry enabled, we'll ask anyhow
811 (when (eq gnus-registry-install nil) 689 (when (eq gnus-registry-install nil)
812 (setq gnus-registry-install 'ask)) 690 (setq gnus-registry-install 'ask))
813 691
814 ;; now the user is asked if gnus-registry-install is 'ask 692 ;; now the user is asked if gnus-registry-install is 'ask
815 (when (gnus-registry-install-p) 693 (when (gnus-registry-install-p)
816 (gnus-registry-set-article-mark-internal 694 (gnus-registry-set-article-mark-internal
817 ;; all this just to get the mark, I must be doing it wrong 695 ;; all this just to get the mark, I must be doing it wrong
818 (intern ,(symbol-name mark)) 696 (intern ,(symbol-name mark))
819 articles ,remove t) 697 articles ,remove t)
820 (gnus-message 698 (gnus-message
821 9 699 9
822 "Applying mark %s to %d articles" 700 "Applying mark %s to %d articles"
823 ,(symbol-name mark) (length articles)) 701 ,(symbol-name mark) (length articles))
824 (dolist (article articles) 702 (dolist (article articles)
825 (gnus-summary-update-article 703 (gnus-summary-update-article
826 article 704 article
827 (assoc article (gnus-data-list nil))))))) 705 (assoc article (gnus-data-list nil)))))))
828 (push (intern function-name) keys-plist) 706 (push (intern function-name) keys-plist)
829 (push shortcut keys-plist) 707 (push shortcut keys-plist)
830 (push (vector (format "%s %s" 708 (push (vector (format "%s %s"
831 (upcase-initials variant-name) 709 (upcase-initials variant-name)
832 (symbol-name mark)) 710 (symbol-name mark))
833 (intern function-name) t) 711 (intern function-name) t)
834 gnus-registry-misc-menus) 712 gnus-registry-misc-menus)
835 (gnus-message 713 (gnus-message
836 9 714 9
837 "Defined mark handling function %s" 715 "Defined mark handling function %s"
838 function-name)))))) 716 function-name))))))
839 (gnus-define-keys-1 717 (gnus-define-keys-1
840 '(gnus-registry-mark-map "M" gnus-summary-mark-map) 718 '(gnus-registry-mark-map "M" gnus-summary-mark-map)
841 keys-plist) 719 keys-plist)
842 (add-hook 'gnus-summary-menu-hook 720 (add-hook 'gnus-summary-menu-hook
843 (lambda () 721 (lambda ()
844 (easy-menu-add-item 722 (easy-menu-add-item
845 gnus-summary-misc-menu 723 gnus-summary-misc-menu
846 nil 724 nil
847 (cons "Registry Marks" gnus-registry-misc-menus)))))) 725 (cons "Registry Marks" gnus-registry-misc-menus))))))
848 726
849;;; use like this: 727;;; use like this:
850;;; (defalias 'gnus-user-format-function-M 728;;; (defalias 'gnus-user-format-function-M
851;;; 'gnus-registry-user-format-function-M) 729;;; 'gnus-registry-user-format-function-M)
852(defun gnus-registry-user-format-function-M (headers) 730(defun gnus-registry-user-format-function-M (headers)
853 (let* ((id (mail-header-message-id headers)) 731 (let* ((id (mail-header-message-id headers))
854 (marks (when id (gnus-registry-fetch-extra-marks id)))) 732 (marks (when id (gnus-registry-get-id-key id 'mark))))
855 (apply 'concat (mapcar (lambda(mark) 733 (apply 'concat (mapcar (lambda (mark)
856 (let ((c 734 (let ((c
857 (plist-get 735 (plist-get
858 (cdr-safe 736 (cdr-safe
859 (assoc mark gnus-registry-marks)) 737 (assoc mark gnus-registry-marks))
860 :char))) 738 :char)))
861 (if c 739 (if c
862 (list c) 740 (list c)
863 nil))) 741 nil)))
864 marks)))) 742 marks))))
865 743
866(defun gnus-registry-read-mark () 744(defun gnus-registry-read-mark ()
867 "Read a mark name from the user with completion." 745 "Read a mark name from the user with completion."
@@ -869,270 +747,144 @@ Uses `gnus-registry-marks' to find what shortcuts to install."
869 "Label" 747 "Label"
870 (mapcar 'symbol-name (mapcar 'car gnus-registry-marks)) 748 (mapcar 'symbol-name (mapcar 'car gnus-registry-marks))
871 nil nil nil 749 nil nil nil
872 (symbol-name gnus-registry-default-mark)))) 750 (symbol-name gnus-registry-default-mark))))
873 (when (stringp mark) 751 (when (stringp mark)
874 (intern mark)))) 752 (intern mark))))
875 753
876(defun gnus-registry-set-article-mark (&rest articles) 754(defun gnus-registry-set-article-mark (&rest articles)
877 "Apply a mark to process-marked ARTICLES." 755 "Apply a mark to process-marked ARTICLES."
878 (interactive (gnus-summary-work-articles current-prefix-arg)) 756 (interactive (gnus-summary-work-articles current-prefix-arg))
879 (gnus-registry-set-article-mark-internal (gnus-registry-read-mark) articles nil t)) 757 (gnus-registry-set-article-mark-internal (gnus-registry-read-mark)
758 articles nil t))
880 759
881(defun gnus-registry-remove-article-mark (&rest articles) 760(defun gnus-registry-remove-article-mark (&rest articles)
882 "Remove a mark from process-marked ARTICLES." 761 "Remove a mark from process-marked ARTICLES."
883 (interactive (gnus-summary-work-articles current-prefix-arg)) 762 (interactive (gnus-summary-work-articles current-prefix-arg))
884 (gnus-registry-set-article-mark-internal (gnus-registry-read-mark) articles t t)) 763 (gnus-registry-set-article-mark-internal (gnus-registry-read-mark)
885 764 articles t t))
886(defun gnus-registry-set-article-mark-internal (mark articles &optional remove show-message) 765
887 "Apply a mark to a list of ARTICLES." 766(defun gnus-registry-set-article-mark-internal (mark
767 articles
768 &optional remove
769 show-message)
770 "Apply or remove MARK across a list of ARTICLES."
888 (let ((article-id-list 771 (let ((article-id-list
889 (mapcar 'gnus-registry-fetch-message-id-fast articles))) 772 (mapcar 'gnus-registry-fetch-message-id-fast articles)))
890 (dolist (id article-id-list) 773 (dolist (id article-id-list)
891 (let* ( 774 (let* ((marks (delq mark (gnus-registry-get-id-key id 'mark)))
892 ;; all the marks for this article without the mark of 775 (marks (if remove marks (cons mark marks))))
893 ;; interest 776 (when show-message
894 (marks 777 (gnus-message 1 "%s mark %s with message ID %s, resulting in %S"
895 (delq mark (gnus-registry-fetch-extra-marks id))) 778 (if remove "Removing" "Adding")
896 ;; the new marks we want to use 779 mark id marks))
897 (new-marks (if remove 780 (gnus-registry-set-id-key id 'mark marks)))))
898 marks
899 (cons mark marks))))
900 (when show-message
901 (gnus-message 1 "%s mark %s with message ID %s, resulting in %S"
902 (if remove "Removing" "Adding")
903 mark id new-marks))
904
905 (apply 'gnus-registry-store-extra-marks ; set the extra marks
906 id ; for the message ID
907 new-marks)))))
908 781
909(defun gnus-registry-get-article-marks (&rest articles) 782(defun gnus-registry-get-article-marks (&rest articles)
910 "Get the Gnus registry marks for ARTICLES and show them if interactive. 783 "Get the Gnus registry marks for ARTICLES and show them if interactive.
911Uses process/prefix conventions. For multiple articles, 784Uses process/prefix conventions. For multiple articles,
912only the last one's marks are returned." 785only the last one's marks are returned."
913 (interactive (gnus-summary-work-articles 1)) 786 (interactive (gnus-summary-work-articles 1))
914 (let (marks) 787 (let* ((article (last articles))
915 (dolist (article articles) 788 (id (gnus-registry-fetch-message-id-fast article))
916 (let ((article-id 789 (marks (when id (gnus-registry-get-id-key id 'mark))))
917 (gnus-registry-fetch-message-id-fast article)))
918 (setq marks (gnus-registry-fetch-extra-marks article-id))))
919 (when (interactive-p) 790 (when (interactive-p)
920 (gnus-message 1 "Marks are %S" marks)) 791 (gnus-message 1 "Marks are %S" marks))
921 marks)) 792 marks))
922 793
923;;; if this extends to more than 'marks, it should be improved to be more generic.
924(defun gnus-registry-fetch-extra-marks (id)
925 "Get the marks of a message, based on the message ID.
926Returns a list of symbol marks or nil."
927 (car-safe (cdr (gnus-registry-fetch-extra id 'marks))))
928
929(defun gnus-registry-has-extra-mark (id mark)
930 "Checks if a message has `mark', based on the message ID `id'."
931 (memq mark (gnus-registry-fetch-extra-marks id)))
932
933(defun gnus-registry-store-extra-marks (id &rest mark-list)
934 "Set the marks of a message, based on the message ID.
935The `mark-list' can be nil, in which case no marks are left."
936 (gnus-registry-store-extra-entry id 'marks (list mark-list)))
937
938(defun gnus-registry-delete-extra-marks (id &rest mark-delete-list)
939 "Delete the message marks in `mark-delete-list', based on the message ID."
940 (let ((marks (gnus-registry-fetch-extra-marks id)))
941 (when marks
942 (dolist (mark mark-delete-list)
943 (setq marks (delq mark marks))))
944 (gnus-registry-store-extra-marks id (car marks))))
945
946(defun gnus-registry-delete-all-extra-marks (id)
947 "Delete all the marks for a message ID."
948 (gnus-registry-store-extra-marks id nil))
949
950(defun gnus-registry-fetch-extra (id &optional entry)
951 "Get the extra data of a message, based on the message ID.
952Returns the first place where the trail finds a nonstring."
953 (let ((entry-cache (gethash entry gnus-registry-hashtb)))
954 (if (and entry
955 (hash-table-p entry-cache)
956 (gethash id entry-cache))
957 (gethash id entry-cache)
958 ;; else, if there is no caching possible...
959 (let ((trail (gethash id gnus-registry-hashtb)))
960 (when (listp trail)
961 (dolist (crumb trail)
962 (unless (stringp crumb)
963 (return (gnus-registry-fetch-extra-entry crumb entry id)))))))))
964
965(defun gnus-registry-fetch-extra-entry (alist &optional entry id)
966 "Get the extra data of a message, or a specific entry in it.
967Update the entry cache if needed."
968 (if (and entry id)
969 (let ((entry-cache (gethash entry gnus-registry-hashtb))
970 entree)
971 (when gnus-registry-entry-caching
972 ;; create the hash table
973 (unless (hash-table-p entry-cache)
974 (setq entry-cache (make-hash-table
975 :size 4096
976 :test 'equal))
977 (puthash entry entry-cache gnus-registry-hashtb))
978
979 ;; get the entree from the hash table or from the alist
980 (setq entree (gethash id entry-cache)))
981
982 (unless entree
983 (setq entree (assq entry alist))
984 (when gnus-registry-entry-caching
985 (puthash id entree entry-cache)))
986 entree)
987 alist))
988
989(defun gnus-registry-store-extra (id extra)
990 "Store the extra data of a message, based on the message ID.
991The message must have at least one group name."
992 (when (gnus-registry-group-count id)
993 ;; we now know the trail has at least 1 group name, so it's not empty
994 (let ((trail (gethash id gnus-registry-hashtb))
995 (old-extra (gnus-registry-fetch-extra id))
996 entry-cache)
997 (dolist (crumb trail)
998 (unless (stringp crumb)
999 (dolist (entry crumb)
1000 (setq entry-cache (gethash (car entry) gnus-registry-hashtb))
1001 (when entry-cache
1002 (remhash id entry-cache))))
1003 (puthash id (cons extra (delete old-extra trail))
1004 gnus-registry-hashtb)
1005 (setq gnus-registry-dirty t)))))
1006
1007(defun gnus-registry-delete-extra-entry (id key)
1008 "Delete a specific entry in the extras field of the registry entry for id."
1009 (gnus-registry-store-extra-entry id key nil))
1010
1011(defun gnus-registry-store-extra-entry (id key value)
1012 "Put a specific entry in the extras field of the registry entry for id."
1013 (let* ((extra (gnus-registry-fetch-extra id))
1014 ;; all the entries except the one for `key'
1015 (the-rest (gnus-assq-delete-all key (gnus-registry-fetch-extra id)))
1016 (alist (if value
1017 (gnus-registry-remove-alist-text-properties
1018 (cons (cons key value)
1019 the-rest))
1020 the-rest)))
1021 (gnus-registry-store-extra id alist)))
1022
1023(defun gnus-registry-fetch-group (id)
1024 "Get the group of a message, based on the message ID.
1025Returns the first place where the trail finds a group name."
1026 (when (gnus-registry-group-count id)
1027 ;; we now know the trail has at least 1 group name
1028 (let ((trail (gethash id gnus-registry-hashtb)))
1029 (dolist (crumb trail)
1030 (when (stringp crumb)
1031 (return (if gnus-registry-use-long-group-names
1032 crumb
1033 (gnus-group-short-name crumb))))))))
1034
1035(defun gnus-registry-fetch-groups (id &optional max)
1036 "Get the groups (up to MAX, if given) of a message, based on the message ID."
1037 (let ((trail (gethash id gnus-registry-hashtb))
1038 groups)
1039 (dolist (crumb trail)
1040 (when (stringp crumb)
1041 ;; push the group name into the list
1042 (setq
1043 groups
1044 (cons
1045 (if (or (not (stringp crumb)) gnus-registry-use-long-group-names)
1046 crumb
1047 (gnus-group-short-name crumb))
1048 groups))
1049 (when (and max (> (length groups) max))
1050 (return))))
1051 ;; return the list of groups
1052 groups))
1053
1054(defun gnus-registry-group-count (id) 794(defun gnus-registry-group-count (id)
1055 "Get the number of groups of a message, based on the message ID." 795 "Get the number of groups of a message, based on the message ID."
1056 (let ((trail (gethash id gnus-registry-hashtb))) 796 (length (gnus-registry-get-id-key id 'group)))
1057 (if (and trail (listp trail)) 797
1058 (apply '+ (mapcar (lambda (x) (if (stringp x) 1 0)) trail)) 798(defun gnus-registry-get-or-make-entry (id)
1059 0))) 799 (let* ((db gnus-registry-db)
1060 800 ;; safe if not found
1061(defun gnus-registry-delete-group (id group) 801 (entries (registry-lookup db (list id))))
1062 "Delete a group for a message, based on the message ID." 802
1063 (when (and group id) 803 (when (null entries)
1064 (let ((trail (gethash id gnus-registry-hashtb)) 804 (registry-insert db id (list (list 'creation-time (current-time))
1065 (short-group (gnus-group-short-name group))) 805 '(group) '(sender) '(subject)))
1066 (puthash id (if trail 806 (setq entries (registry-lookup db (list id))))
1067 (delete short-group (delete group trail)) 807
1068 nil) 808 (nth 1 (assoc id entries))))
1069 gnus-registry-hashtb)) 809
1070 ;; now, clear the entry if there are no more groups 810(defun gnus-registry-get-id-key (id key)
1071 (when gnus-registry-trim-articles-without-groups 811 (cdr-safe (assq key (gnus-registry-get-or-make-entry id))))
1072 (unless (gnus-registry-group-count id) 812
1073 (gnus-registry-delete-id id))) 813(defun gnus-registry-set-id-key (id key vals)
1074 ;; is this ID still in the registry? 814 (let* ((db gnus-registry-db)
1075 (when (gethash id gnus-registry-hashtb) 815 (entry (gnus-registry-get-or-make-entry id)))
1076 (gnus-registry-store-extra-entry id 'mtime (current-time))))) 816 (registry-delete db (list id) nil)
1077 817 (setq entry (cons (cons key vals) (assq-delete-all key entry)))
1078(defun gnus-registry-delete-id (id) 818 (registry-insert db id entry)
1079 "Delete a message ID from the registry." 819 entry))
1080 (when (stringp id) 820
1081 (remhash id gnus-registry-hashtb) 821
1082 (maphash 822(ert-deftest gnus-registry-usage-test ()
1083 (lambda (key value) 823 (let* ((n 100)
1084 (when (hash-table-p value) 824 (tempfile (make-temp-file "gnus-registry-persist"))
1085 (remhash id value))) 825 (db (gnus-registry-make-db tempfile))
1086 gnus-registry-hashtb))) 826 (gnus-registry-db db)
1087 827 back size)
1088(defun gnus-registry-add-group (id group &optional subject sender) 828 (message "Adding %d keys to the test Gnus registry" n)
1089 "Add a group for a message, based on the message ID." 829 (dotimes (i n)
1090 (when group 830 (let ((id (number-to-string i)))
1091 (when (and id 831 (gnus-registry-handle-action id
1092 (not (string-match "totally-fudged-out-message-id" id))) 832 (if (>= 50 i) "fromgroup" nil)
1093 (let ((full-group group) 833 "togroup"
1094 (group (if gnus-registry-use-long-group-names 834 (when (>= 70 i)
1095 group 835 (format "subject %d" (mod i 10)))
1096 (gnus-group-short-name group)))) 836 (when (>= 80 i)
1097 (gnus-registry-delete-group id group) 837 (format "sender %d" (mod i 10))))))
1098 838 (message "Testing Gnus registry size is %d" n)
1099 (unless gnus-registry-use-long-group-names ;; unnecessary in this case 839 (should (= n (registry-size db)))
1100 (gnus-registry-delete-group id full-group)) 840 (message "Looking up individual keys (registry-lookup)")
1101 841 (should (equal (loop for e
1102 (let ((trail (gethash id gnus-registry-hashtb))) 842 in (mapcar 'cadr
1103 (puthash id (if trail 843 (registry-lookup db '("20" "83" "72")))
1104 (cons group trail) 844 collect (assq 'subject e)
1105 (list group)) 845 collect (assq 'sender e)
1106 gnus-registry-hashtb) 846 collect (assq 'group e))
1107 847 '((subject "subject 0") (sender "sender 0") (group "togroup")
1108 (when (and (gnus-registry-track-subject-p) 848 (subject) (sender) (group "togroup")
1109 subject) 849 (subject) (sender "sender 2") (group "togroup"))))
1110 (gnus-registry-store-extra-entry 850
1111 id 851 (message "Looking up individual keys (gnus-registry-id-key)")
1112 'subject 852 (should (equal (gnus-registry-get-id-key "34" 'group) '("togroup")))
1113 (gnus-registry-simplify-subject subject))) 853 (should (equal (gnus-registry-get-id-key "34" 'subject) '("subject 4")))
1114 (when (and (gnus-registry-track-sender-p) 854 (message "Trying to insert a duplicate key")
1115 sender) 855 (should-error (registry-insert db "55" '()))
1116 (gnus-registry-store-extra-entry 856 (message "Looking up individual keys (gnus-registry-get-or-make-entry)")
1117 id 857 (should (gnus-registry-get-or-make-entry "22"))
1118 'sender 858 (message "Saving the Gnus registry to %s" tempfile)
1119 sender)) 859 (should (gnus-registry-save tempfile db))
1120 860 (setq size (nth 7 (file-attributes tempfile)))
1121 (gnus-registry-store-extra-entry id 'mtime (current-time))))))) 861 (message "Saving the Gnus registry to %s: size %d" tempfile size)
1122 862 (should (< 0 size))
1123(defun gnus-registry-clear () 863 (with-temp-buffer
1124 "Clear the Gnus registry." 864 (insert-file-contents-literally tempfile)
1125 (interactive) 865 (should (looking-at (concat ";; Object "
1126 (setq gnus-registry-alist nil) 866 "Gnus Registry"
1127 (setq gnus-registry-hashtb (gnus-alist-to-hashtable gnus-registry-alist)) 867 "\n;; EIEIO PERSISTENT OBJECT"))))
1128 (setq gnus-registry-dirty t)) 868 (message "Reading Gnus registry back")
869 (setq back (eieio-persistent-read tempfile))
870 (should back)
871 (message "Read Gnus registry back: %d keys, expected %d==%d"
872 (registry-size back) n (registry-size db))
873 (should (= (registry-size back) n))
874 (should (= (registry-size back) (registry-size db)))
875 (delete-file tempfile)
876 (message "Pruning Gnus registry to 0 by setting :max-soft")
877 (oset db :max-soft 0)
878 (registry-prune db)
879 (should (= (registry-size db) 0)))
880 (message "Done with Gnus registry usage testing."))
1129 881
1130;;;###autoload 882;;;###autoload
1131(defun gnus-registry-initialize () 883(defun gnus-registry-initialize ()
1132"Initialize the Gnus registry." 884"Initialize the Gnus registry."
1133 (interactive) 885 (interactive)
1134 (gnus-message 5 "Initializing the registry") 886 (gnus-message 5 "Initializing the registry")
1135 (setq gnus-registry-install t) ; in case it was 'ask or nil 887 (setq gnus-registry-install t) ; in case it was 'ask or nil
1136 (gnus-registry-install-hooks) 888 (gnus-registry-install-hooks)
1137 (gnus-registry-install-shortcuts) 889 (gnus-registry-install-shortcuts)
1138 (gnus-registry-read)) 890 (gnus-registry-read))
@@ -1170,10 +922,10 @@ Returns the first place where the trail finds a group name."
1170 (interactive) 922 (interactive)
1171 (when (eq gnus-registry-install 'ask) 923 (when (eq gnus-registry-install 'ask)
1172 (setq gnus-registry-install 924 (setq gnus-registry-install
1173 (gnus-y-or-n-p 925 (gnus-y-or-n-p
1174 (concat "Enable the Gnus registry? " 926 (concat "Enable the Gnus registry? "
1175 "See the variable `gnus-registry-install' " 927 "See the variable `gnus-registry-install' "
1176 "to get rid of this query permanently. "))) 928 "to get rid of this query permanently. ")))
1177 (when gnus-registry-install 929 (when gnus-registry-install
1178 ;; we just set gnus-registry-install to t, so initialize the registry! 930 ;; we just set gnus-registry-install to t, so initialize the registry!
1179 (gnus-registry-initialize))) 931 (gnus-registry-initialize)))
diff --git a/lisp/gnus/nnregistry.el b/lisp/gnus/nnregistry.el
index 947ba4b236b..359050c356c 100644
--- a/lisp/gnus/nnregistry.el
+++ b/lisp/gnus/nnregistry.el
@@ -53,7 +53,7 @@
53(deffoo nnregistry-request-article (id &optional group server buffer) 53(deffoo nnregistry-request-article (id &optional group server buffer)
54 (and (not nnregistry-within-nnregistry) 54 (and (not nnregistry-within-nnregistry)
55 (let* ((nnregistry-within-nnregistry t) 55 (let* ((nnregistry-within-nnregistry t)
56 (group (gnus-registry-fetch-group id)) 56 (group (nth 0 (gnus-registry-get-id-key id 'group)))
57 (gnus-override-method nil)) 57 (gnus-override-method nil))
58 (message "nnregistry: requesting article `%s' in group `%s'" 58 (message "nnregistry: requesting article `%s' in group `%s'"
59 id group) 59 id group)
diff --git a/lisp/gnus/registry.el b/lisp/gnus/registry.el
new file mode 100644
index 00000000000..319da8ffab7
--- /dev/null
+++ b/lisp/gnus/registry.el
@@ -0,0 +1,411 @@
1;;; registry.el --- Track and remember data items by various fields
2
3;; Copyright (C) 2011 Free Software Foundation, Inc.
4
5;; Author: Teodor Zlatanov <tzz@lifelogs.com>
6;; Keywords: data
7
8;; This file is part of GNU Emacs.
9
10;; GNU Emacs is free software: you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by
12;; the Free Software Foundation, either version 3 of the License, or
13;; (at your option) any later version.
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
21;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
22
23;;; Commentary:
24
25;; This library provides a general-purpose EIEIO-based registry
26;; database with persistence, initialized with these fields:
27
28;; version: a float, 0.1 currently (don't change it)
29
30;; max-hard: an integer, default 5000000
31
32;; max-soft: an integer, default 50000
33
34;; precious: a list of symbols
35
36;; tracked: a list of symbols
37
38;; tracker: a hashtable tuned for 100 symbols to track (you should
39;; only access this with the :lookup2-function and the
40;; :lookup2+-function)
41
42;; data: a hashtable with default size 10K and resize threshold 2.0
43;; (this reflects the expected usage so override it if you know better)
44
45;; ...plus methods to do all the work: `registry-search',
46;; `registry-lookup', `registry-lookup-secondary',
47;; `registry-lookup-secondary-value', `registry-insert',
48;; `registry-delete', `registry-prune', `registry-size' which see
49
50;; and with the following properties:
51
52;; Every piece of data has a unique ID and some general-purpose fields
53;; (F1=D1, F2=D2, F3=(a b c)...) expressed as an alist, e.g.
54
55;; ((F1 D1) (F2 D2) (F3 a b c))
56
57;; Note that whether a field has one or many pieces of data, the data
58;; is always a list of values.
59
60;; The user decides which fields are "precious", F2 for example. At
61;; PRUNE TIME (when the :prune-function is called), the registry will
62;; trim any entries without the F2 field until the size is :max-soft
63;; or less. No entries with the F2 field will be removed at PRUNE
64;; TIME.
65
66;; When an entry is inserted, the registry will reject new entries
67;; if they bring it over the max-hard limit, even if they have the F2
68;; field.
69
70;; The user decides which fields are "tracked", F1 for example. Any
71;; new entry is then indexed by all the tracked fields so it can be
72;; quickly looked up that way. The data is always a list (see example
73;; above) and each list element is indexed.
74
75;; Precious and tracked field names must be symbols. All other
76;; fields can be any other Emacs Lisp types.
77
78;;; Code:
79
80(eval-when-compile (require 'ert))
81(eval-when-compile (require 'cl))
82(eval-and-compile
83 (or (ignore-errors (progn
84 (require 'eieio)
85 (require 'eieio-base)))
86 ;; gnus-fallback-lib/ from gnus/lisp/gnus-fallback-lib
87 (ignore-errors
88 (let ((load-path (cons (expand-file-name
89 "gnus-fallback-lib/eieio"
90 (file-name-directory (locate-library "gnus")))
91 load-path)))
92 (require 'eieio)
93 (require 'eieio-base)))
94 (error
95 "eieio not found in `load-path' or gnus-fallback-lib/ directory.")))
96
97(defclass registry-db (eieio-persistent)
98 ((version :initarg :version
99 :initform 0.1
100 :type float
101 :custom float
102 :documentation "The registry version.")
103 (max-hard :initarg :max-hard
104 :initform 5000000
105 :type integer
106 :custom integer
107 :documentation "Never accept more than this many elements.")
108 (max-soft :initarg :max-soft
109 :initform 50000
110 :type integer
111 :custom integer
112 :documentation "Prune as much as possible to get to this size.")
113 (tracked :initarg :tracked
114 :initform nil
115 :type t
116 :documentation "The tracked (indexed) fields, a list of symbols.")
117 (precious :initarg :precious
118 :initform nil
119 :type t
120 :documentation "The precious fields, a list of symbols.")
121 (tracker :initarg :tracker
122 :type hash-table
123 :documentation "The field tracking hashtable.")
124 (data :initarg :data
125 :type hash-table
126 :documentation "The data hashtable.")))
127
128(defmethod initialize-instance :after ((this registry-db) slots)
129 "Set value of data slot of THIS after initialization."
130 (with-slots (data tracker) this
131 (unless (member :data slots)
132 (setq data (make-hash-table :size 10000 :rehash-size 2.0 :test 'equal)))
133 (unless (member :tracker slots)
134 (setq tracker (make-hash-table :size 100 :rehash-size 2.0)))))
135
136(defmethod registry-lookup ((db registry-db) keys)
137 "Search for KEYS in the registry-db THIS.
138Returns a alist of the key followed by the entry in a list, not a cons cell."
139 (let ((data (oref db :data)))
140 (delq nil
141 (mapcar
142 (lambda (k)
143 (when (gethash k data)
144 (list k (gethash k data))))
145 keys))))
146
147(defmethod registry-lookup-breaks-before-lexbind ((db registry-db) keys)
148 "Search for KEYS in the registry-db THIS.
149Returns a alist of the key followed by the entry in a list, not a cons cell."
150 (let ((data (oref db :data)))
151 (delq nil
152 (loop for key in keys
153 when (gethash key data)
154 collect (list key (gethash key data))))))
155
156(defmethod registry-lookup-secondary ((db registry-db) tracksym
157 &optional create)
158 "Search for TRACKSYM in the registry-db THIS.
159When CREATE is not nil, create the secondary index hashtable if needed."
160 (let ((h (gethash tracksym (oref db :tracker))))
161 (if h
162 h
163 (when create
164 (puthash tracksym
165 (make-hash-table :size 800 :rehash-size 2.0 :test 'equal)
166 (oref db :tracker))
167 (gethash tracksym (oref db :tracker))))))
168
169(defmethod registry-lookup-secondary-value ((db registry-db) tracksym val
170 &optional set)
171 "Search for TRACKSYM with value VAL in the registry-db THIS.
172When SET is not nil, set it for VAL (use t for an empty list)."
173 ;; either we're asked for creation or there should be an existing index
174 (when (or set (registry-lookup-secondary db tracksym))
175 ;; set the entry if requested,
176 (when set
177 (puthash val (if (eq t set) '() set)
178 (registry-lookup-secondary db tracksym t)))
179 (gethash val (registry-lookup-secondary db tracksym))))
180
181(defun registry--match (mode entry check-list)
182 ;; for all members
183 (when check-list
184 (let ((key (nth 0 (nth 0 check-list)))
185 (vals (cdr-safe (nth 0 check-list)))
186 found)
187 (while (and key vals (not found))
188 (setq found (case mode
189 (:member
190 (member (car-safe vals) (cdr-safe (assoc key entry))))
191 (:regex
192 (string-match (car vals)
193 (mapconcat
194 'prin1-to-string
195 (cdr-safe (assoc key entry))
196 "\0"))))
197 vals (cdr-safe vals)))
198 (or found
199 (registry--match mode entry (cdr-safe check-list))))))
200
201(defmethod registry-search ((db registry-db) &rest spec)
202 "Search for SPEC across the registry-db THIS.
203For example calling with :member '(a 1 2) will match entry '((a 3 1)).
204Calling with :all t (any non-nil value) will match all.
205Calling with :regex '\(a \"h.llo\") will match entry '((a \"hullo\" \"bye\").
206The test order is to check :all first, then :member, then :regex."
207 (when db
208 (let ((all (plist-get spec :all))
209 (member (plist-get spec :member))
210 (regex (plist-get spec :regex)))
211 (loop for k being the hash-keys of (oref db :data) using (hash-values v)
212 when (or
213 ;; :all non-nil returns all
214 all
215 ;; member matching
216 (and member (registry--match :member v member))
217 ;; regex matching
218 (and regex (registry--match :regex v regex)))
219 collect k))))
220
221(defmethod registry-delete ((db registry-db) keys assert &rest spec)
222 "Delete KEYS from the registry-db THIS.
223If KEYS is nil, use SPEC to do a search.
224Updates the secondary ('tracked') indices as well.
225With assert non-nil, errors out if the key does not exist already."
226 (let* ((data (oref db :data))
227 (keys (or keys
228 (apply 'registry-search db spec)))
229 (tracked (oref db :tracked)))
230
231 (dolist (key keys)
232 (let ((entry (gethash key data)))
233 (when assert
234 (assert entry nil
235 "Key %s does not exists in database" key))
236 ;; clean entry from the secondary indices
237 (dolist (tr tracked)
238 ;; is this tracked symbol indexed?
239 (when (registry-lookup-secondary db tr)
240 ;; for every value in the entry under that key...
241 (dolist (val (cdr-safe (assq tr entry)))
242 (let* ((value-keys (registry-lookup-secondary-value db tr val)))
243 (when (member key value-keys)
244 ;; override the previous value
245 (registry-lookup-secondary-value
246 db tr val
247 ;; with the indexed keys MINUS the current key
248 ;; (we pass t when the list is empty)
249 (or (delete key value-keys) t)))))))
250 (remhash key data)))
251 keys))
252
253(defmethod registry-insert ((db registry-db) key entry)
254 "Insert ENTRY under KEY into the registry-db THIS.
255Updates the secondary ('tracked') indices as well.
256Errors out if the key exists already."
257
258 (assert (not (gethash key (oref db :data))) nil
259 "Key already exists in database")
260
261 (assert (< (registry-size db)
262 (oref db :max-hard))
263 nil
264 "max-hard size limit reached")
265
266 ;; store the entry
267 (puthash key entry (oref db :data))
268
269 ;; store the secondary indices
270 (dolist (tr (oref db :tracked))
271 ;; for every value in the entry under that key...
272 (dolist (val (cdr-safe (assq tr entry)))
273 (let* ((value-keys (registry-lookup-secondary-value db tr val)))
274 (pushnew key value-keys :test 'equal)
275 (registry-lookup-secondary-value db tr val value-keys))))
276 entry)
277
278(defmethod registry-size ((db registry-db))
279 "Returns the size of the registry-db object THIS.
280This is the key count of the :data slot."
281 (hash-table-count (oref db :data)))
282
283(defmethod registry-prune ((db registry-db))
284 "Prunes the registry-db object THIS.
285Removes only entries without the :precious keys."
286 (let* ((precious (oref db :precious))
287 (precious-p (lambda (entry-key) (cdr (memq (car entry-key) precious))))
288 (data (oref db :data))
289 (limit (oref db :max-soft))
290 (size (registry-size db))
291 (candidates (loop for k being the hash-keys of data
292 using (hash-values v)
293 when (notany precious-p v)
294 collect k))
295 (candidates-count (length candidates))
296 ;; are we over max-soft?
297 (prune-needed (> size limit)))
298
299 ;; while we have more candidates than we need to remove...
300 (while (and (> candidates-count (- size limit)) candidates)
301 (decf candidates-count)
302 (setq candidates (cdr candidates)))
303
304 (registry-delete db candidates nil)))
305
306(ert-deftest registry-instantiation-test ()
307 (should (registry-db "Testing")))
308
309(ert-deftest registry-match-test ()
310 (let ((entry '((hello "goodbye" "bye") (blank))))
311
312 (message "Testing :regex matching")
313 (should (registry--match :regex entry '((hello "nye" "bye"))))
314 (should (registry--match :regex entry '((hello "good"))))
315 (should-not (registry--match :regex entry '((hello "nye"))))
316 (should-not (registry--match :regex entry '((hello))))
317
318 (message "Testing :member matching")
319 (should (registry--match :member entry '((hello "bye"))))
320 (should (registry--match :member entry '((hello "goodbye"))))
321 (should-not (registry--match :member entry '((hello "good"))))
322 (should-not (registry--match :member entry '((hello "nye"))))
323 (should-not (registry--match :member entry '((hello)))))
324 (message "Done with matching testing."))
325
326(defun registry-make-testable-db (n &optional name file)
327 (let* ((db (registry-db
328 (or name "Testing")
329 :file (or file "unused")
330 :max-hard n
331 :max-soft 0 ; keep nothing not precious
332 :precious '(extra more-extra)
333 :tracked '(sender subject groups))))
334 (dotimes (i n)
335 (registry-insert db i `((sender "me")
336 (subject "about you")
337 (more-extra) ; empty data key should be pruned
338 ;; first 5 entries will NOT have this extra data
339 ,@(when (< 5 i) (list (list 'extra "more data")))
340 (groups ,(number-to-string i)))))
341 db))
342
343(ert-deftest registry-usage-test ()
344 (let* ((n 100)
345 (db (registry-make-testable-db n)))
346 (message "size %d" n)
347 (should (= n (registry-size db)))
348 (message "max-hard test")
349 (should-error (registry-insert db "new" '()))
350 (message "Individual lookup")
351 (should (= 58 (caadr (registry-lookup db '(1 58 99)))))
352 (message "Grouped individual lookup")
353 (should (= 3 (length (registry-lookup db '(1 58 99)))))
354 (message "Individual lookup (breaks before lexbind)")
355 (should (= 58
356 (caadr (registry-lookup-breaks-before-lexbind db '(1 58 99)))))
357 (message "Grouped individual lookup (breaks before lexbind)")
358 (should (= 3
359 (length (registry-lookup-breaks-before-lexbind db '(1 58 99)))))
360 (message "Search")
361 (should (= n (length (registry-search db :all t))))
362 (should (= n (length (registry-search db :member '((sender "me"))))))
363 (message "Secondary index search")
364 (should (= n (length (registry-lookup-secondary-value db 'sender "me"))))
365 (should (equal '(74) (registry-lookup-secondary-value db 'groups "74")))
366 (message "Delete")
367 (should (registry-delete db '(1) t))
368 (decf n)
369 (message "Search after delete")
370 (should (= n (length (registry-search db :all t))))
371 (message "Secondary search after delete")
372 (should (= n (length (registry-lookup-secondary-value db 'sender "me"))))
373 (message "Pruning")
374 (let* ((tokeep (registry-search db :member '((extra "more data"))))
375 (count (- n (length tokeep)))
376 (pruned (registry-prune db))
377 (prune-count (length pruned)))
378 (message "Expecting to prune %d entries and pruned %d"
379 count prune-count)
380 (should (and (= count 5)
381 (= count prune-count))))
382 (message "Done with usage testing.")))
383
384(ert-deftest registry-persistence-test ()
385 (let* ((n 100)
386 (tempfile (make-temp-file "registry-persistence-"))
387 (name "persistence tester")
388 (db (registry-make-testable-db n name tempfile))
389 size back)
390 (message "Saving to %s" tempfile)
391 (eieio-persistent-save db)
392 (setq size (nth 7 (file-attributes tempfile)))
393 (message "Saved to %s: size %d" tempfile size)
394 (should (< 0 size))
395 (with-temp-buffer
396 (insert-file-contents-literally tempfile)
397 (should (looking-at (concat ";; Object "
398 name
399 "\n;; EIEIO PERSISTENT OBJECT"))))
400 (message "Reading object back")
401 (setq back (eieio-persistent-read tempfile))
402 (should back)
403 (message "Read object back: %d keys, expected %d==%d"
404 (registry-size back) n (registry-size db))
405 (should (= (registry-size back) n))
406 (should (= (registry-size back) (registry-size db)))
407 (delete-file tempfile))
408 (message "Done with persistence testing."))
409
410(provide 'registry)
411;;; registry.el ends here
diff --git a/lisp/gnus/spam.el b/lisp/gnus/spam.el
index 2ebf0ba1e1d..cbffeeab69e 100644
--- a/lisp/gnus/spam.el
+++ b/lisp/gnus/spam.el
@@ -68,9 +68,9 @@
68 68
69;; autoload gnus-registry 69;; autoload gnus-registry
70(autoload 'gnus-registry-group-count "gnus-registry") 70(autoload 'gnus-registry-group-count "gnus-registry")
71(autoload 'gnus-registry-add-group "gnus-registry") 71(autoload 'gnus-registry-get-id-key "gnus-registry")
72(autoload 'gnus-registry-store-extra-entry "gnus-registry") 72(autoload 'gnus-registry-set-id-key "gnus-registry")
73(autoload 'gnus-registry-fetch-extra "gnus-registry") 73(autoload 'gnus-registry-handle-action "gnus-registry")
74 74
75;; autoload dns-query 75;; autoload dns-query
76(autoload 'dns-query "dns") 76(autoload 'dns-query "dns")
@@ -1764,8 +1764,7 @@ See the Info node `(gnus)Fancy Mail Splitting' for more details."
1764 1764
1765 (when (and id split-return spam-log-to-registry) 1765 (when (and id split-return spam-log-to-registry)
1766 (when (zerop (gnus-registry-group-count id)) 1766 (when (zerop (gnus-registry-group-count id))
1767 (gnus-registry-add-group 1767 (gnus-registry-handle-action id nil group subject sender))
1768 id group subject sender))
1769 1768
1770 (unless registry-lookup 1769 (unless registry-lookup
1771 (spam-log-processing-to-registry 1770 (spam-log-processing-to-registry
@@ -1894,13 +1893,10 @@ See the Info node `(gnus)Fancy Mail Splitting' for more details."
1894 (spam-process-type-valid-p type) 1893 (spam-process-type-valid-p type)
1895 (spam-classification-valid-p classification) 1894 (spam-classification-valid-p classification)
1896 (spam-backend-valid-p backend)) 1895 (spam-backend-valid-p backend))
1897 (let ((cell-list (cdr-safe (gnus-registry-fetch-extra id type))) 1896 (let ((cell-list (gnus-registry-get-id-key id type))
1898 (cell (list classification backend group))) 1897 (cell (list classification backend group)))
1899 (push cell cell-list) 1898 (push cell cell-list)
1900 (gnus-registry-store-extra-entry 1899 (gnus-registry-set-id-key id type cell-list))
1901 id
1902 type
1903 cell-list))
1904 1900
1905 (gnus-error 1901 (gnus-error
1906 7 1902 7
@@ -1913,7 +1909,7 @@ See the Info node `(gnus)Fancy Mail Splitting' for more details."
1913 (when spam-log-to-registry 1909 (when spam-log-to-registry
1914 (if (and (stringp id) 1910 (if (and (stringp id)
1915 (spam-process-type-valid-p type)) 1911 (spam-process-type-valid-p type))
1916 (cdr-safe (gnus-registry-fetch-extra id type)) 1912 (gnus-registry-get-id-key id type)
1917 (progn 1913 (progn
1918 (gnus-error 1914 (gnus-error
1919 7 1915 7
@@ -1945,7 +1941,7 @@ See the Info node `(gnus)Fancy Mail Splitting' for more details."
1945 (spam-process-type-valid-p type) 1941 (spam-process-type-valid-p type)
1946 (spam-classification-valid-p classification) 1942 (spam-classification-valid-p classification)
1947 (spam-backend-valid-p backend)) 1943 (spam-backend-valid-p backend))
1948 (let ((cell-list (cdr-safe (gnus-registry-fetch-extra id type))) 1944 (let ((cell-list (gnus-registry-get-id-key id type))
1949 found) 1945 found)
1950 (dolist (cell cell-list) 1946 (dolist (cell cell-list)
1951 (unless found 1947 (unless found
@@ -1970,16 +1966,13 @@ See the Info node `(gnus)Fancy Mail Splitting' for more details."
1970 (spam-process-type-valid-p type) 1966 (spam-process-type-valid-p type)
1971 (spam-classification-valid-p classification) 1967 (spam-classification-valid-p classification)
1972 (spam-backend-valid-p backend)) 1968 (spam-backend-valid-p backend))
1973 (let ((cell-list (cdr-safe (gnus-registry-fetch-extra id type))) 1969 (let ((cell-list (gnus-registry-get-id-key id type))
1974 new-cell-list found) 1970 new-cell-list found)
1975 (dolist (cell cell-list) 1971 (dolist (cell cell-list)
1976 (unless (and (eq classification (nth 0 cell)) 1972 (unless (and (eq classification (nth 0 cell))
1977 (eq backend (nth 1 cell))) 1973 (eq backend (nth 1 cell)))
1978 (push cell new-cell-list))) 1974 (push cell new-cell-list)))
1979 (gnus-registry-store-extra-entry 1975 (gnus-registry-set-id-key id type new-cell-list))
1980 id
1981 type
1982 new-cell-list))
1983 (progn 1976 (progn
1984 (gnus-error 7 (format 1977 (gnus-error 7 (format
1985 "%s call with bad ID, type, spam-backend, or group" 1978 "%s call with bad ID, type, spam-backend, or group"
diff --git a/lisp/info.el b/lisp/info.el
index 34c486d3754..796fd7e2256 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -165,7 +165,7 @@ A header-line does not scroll with the rest of the buffer."
165If nil, meaning not yet initialized, Info uses the environment 165If nil, meaning not yet initialized, Info uses the environment
166variable INFOPATH to initialize it, or `Info-default-directory-list' 166variable INFOPATH to initialize it, or `Info-default-directory-list'
167if there is no INFOPATH variable in the environment, or the 167if there is no INFOPATH variable in the environment, or the
168concatenation of the two if INFOPATH ends with a colon. 168concatenation of the two if INFOPATH ends with a `path-separator'.
169 169
170When `Info-directory-list' is initialized from the value of 170When `Info-directory-list' is initialized from the value of
171`Info-default-directory-list', and Emacs is installed in one of the 171`Info-default-directory-list', and Emacs is installed in one of the
@@ -343,9 +343,8 @@ Each element of the list has the format (NODENAME (OPERATION . HANDLER) ...)
343where NODENAME is a regexp that matches a class of virtual Info node names. 343where NODENAME is a regexp that matches a class of virtual Info node names.
344It should be carefully chosen to not cause node name clashes with 344It should be carefully chosen to not cause node name clashes with
345existing node names. OPERATION is one of the following operation 345existing node names. OPERATION is one of the following operation
346symbols `find-node' that define what HANDLER 346symbols `find-node' that define what HANDLER function to call instead
347function to call instead of calling the default corresponding function 347of calling the default corresponding function to override it.")
348to override it.")
349 348
350(defvar Info-current-node-virtual nil 349(defvar Info-current-node-virtual nil
351 "Non-nil if the current Info node is virtual.") 350 "Non-nil if the current Info node is virtual.")
@@ -379,50 +378,50 @@ or `Info-virtual-nodes'."
379 ;; The MS-DOS list should work both when long file names are 378 ;; The MS-DOS list should work both when long file names are
380 ;; supported (Windows 9X), and when only 8+3 file names are available. 379 ;; supported (Windows 9X), and when only 8+3 file names are available.
381 (if (eq system-type 'ms-dos) 380 (if (eq system-type 'ms-dos)
382 '( (".gz" . "gunzip") 381 '( (".gz" . "gunzip")
383 (".z" . "gunzip") 382 (".z" . "gunzip")
384 (".bz2" . ("bzip2" "-dc")) 383 (".bz2" . ("bzip2" "-dc"))
385 (".inz" . "gunzip") 384 (".inz" . "gunzip")
386 (".igz" . "gunzip") 385 (".igz" . "gunzip")
387 (".info.Z" . "gunzip") 386 (".info.Z" . "gunzip")
388 (".info.gz" . "gunzip") 387 (".info.gz" . "gunzip")
389 ("-info.Z" . "gunzip") 388 ("-info.Z" . "gunzip")
390 ("-info.gz" . "gunzip") 389 ("-info.gz" . "gunzip")
391 ("/index.gz". "gunzip") 390 ("/index.gz" . "gunzip")
392 ("/index.z" . "gunzip") 391 ("/index.z" . "gunzip")
393 (".inf" . nil) 392 (".inf" . nil)
394 (".info" . nil) 393 (".info" . nil)
395 ("-info" . nil) 394 ("-info" . nil)
396 ("/index" . nil) 395 ("/index" . nil)
397 ("" . nil)) 396 ("" . nil))
398 '( (".info.Z". "uncompress") 397 '( (".info.Z" . "uncompress")
399 (".info.Y". "unyabba") 398 (".info.Y" . "unyabba")
400 (".info.gz". "gunzip") 399 (".info.gz" . "gunzip")
401 (".info.z". "gunzip") 400 (".info.z" . "gunzip")
402 (".info.bz2" . ("bzip2" "-dc")) 401 (".info.bz2" . ("bzip2" "-dc"))
403 (".info.xz". "unxz") 402 (".info.xz" . "unxz")
404 (".info". nil) 403 (".info" . nil)
405 ("-info.Z". "uncompress") 404 ("-info.Z" . "uncompress")
406 ("-info.Y". "unyabba") 405 ("-info.Y" . "unyabba")
407 ("-info.gz". "gunzip") 406 ("-info.gz" . "gunzip")
408 ("-info.bz2" . ("bzip2" "-dc")) 407 ("-info.bz2" . ("bzip2" "-dc"))
409 ("-info.z". "gunzip") 408 ("-info.z" . "gunzip")
410 ("-info.xz". "unxz") 409 ("-info.xz" . "unxz")
411 ("-info". nil) 410 ("-info" . nil)
412 ("/index.Z". "uncompress") 411 ("/index.Z" . "uncompress")
413 ("/index.Y". "unyabba") 412 ("/index.Y" . "unyabba")
414 ("/index.gz". "gunzip") 413 ("/index.gz" . "gunzip")
415 ("/index.z". "gunzip") 414 ("/index.z" . "gunzip")
416 ("/index.bz2". ("bzip2" "-dc")) 415 ("/index.bz2" . ("bzip2" "-dc"))
417 ("/index.xz". "unxz") 416 ("/index.xz" . "unxz")
418 ("/index". nil) 417 ("/index" . nil)
419 (".Z". "uncompress") 418 (".Z" . "uncompress")
420 (".Y". "unyabba") 419 (".Y" . "unyabba")
421 (".gz". "gunzip") 420 (".gz" . "gunzip")
422 (".z". "gunzip") 421 (".z" . "gunzip")
423 (".bz2" . ("bzip2" "-dc")) 422 (".bz2" . ("bzip2" "-dc"))
424 (".xz". "unxz") 423 (".xz" . "unxz")
425 ("". nil))) 424 ("" . nil)))
426 "List of file name suffixes and associated decoding commands. 425 "List of file name suffixes and associated decoding commands.
427Each entry should be (SUFFIX . STRING); the file is given to 426Each entry should be (SUFFIX . STRING); the file is given to
428the command as standard input. 427the command as standard input.
@@ -705,7 +704,7 @@ In standalone mode, \\<Info-mode-map>\\[Info-exit] exits Emacs itself."
705 (re-search-backward regexp beg t)))) 704 (re-search-backward regexp beg t))))
706 705
707(defun Info-find-file (filename &optional noerror) 706(defun Info-find-file (filename &optional noerror)
708 "Return expanded FILENAME, or t, if FILENAME is \"dir\". 707 "Return expanded FILENAME, or t if FILENAME is \"dir\".
709Optional second argument NOERROR, if t, means if file is not found 708Optional second argument NOERROR, if t, means if file is not found
710just return nil (no error)." 709just return nil (no error)."
711 ;; Convert filename to lower case if not found as specified. 710 ;; Convert filename to lower case if not found as specified.
@@ -835,7 +834,7 @@ is preserved, if possible."
835 (if new-history 834 (if new-history
836 (setq Info-history (cons new-history Info-history)))))) 835 (setq Info-history (cons new-history Info-history))))))
837 836
838(defun Info-revert-buffer-function (ignore-auto noconfirm) 837(defun Info-revert-buffer-function (_ignore-auto noconfirm)
839 (when (or noconfirm (y-or-n-p "Revert info buffer? ")) 838 (when (or noconfirm (y-or-n-p "Revert info buffer? "))
840 (Info-revert-find-node Info-current-file Info-current-node) 839 (Info-revert-find-node Info-current-file Info-current-node)
841 (message "Reverted %s" Info-current-file))) 840 (message "Reverted %s" Info-current-file)))
@@ -1394,10 +1393,11 @@ a case-insensitive match is tried."
1394;; \0\h[image param=value ...\h\0] 1393;; \0\h[image param=value ...\h\0]
1395;; into the Info file for handling images. 1394;; into the Info file for handling images.
1396(defun Info-split-parameter-string (parameter-string) 1395(defun Info-split-parameter-string (parameter-string)
1397 "Return alist of (\"KEY\" . \"VALUE\") from PARAMETER-STRING; a 1396 "Return alist of (\"KEY\" . \"VALUE\") from PARAMETER-STRING.
1398whitespace separated list of KEY=VALUE pairs. If VALUE contains 1397PARAMETER-STRING is a whitespace separated list of KEY=VALUE pairs.
1399whitespace or double quotes, it must be quoted in double quotes and 1398If VALUE contains whitespace or double quotes, it must be quoted
1400any double quotes or backslashes must be escaped (\\\",\\\\)." 1399in double quotes and any double quotes or backslashes must be
1400escaped (\\\",\\\\)."
1401 (let ((start 0) 1401 (let ((start 0)
1402 (parameter-alist)) 1402 (parameter-alist))
1403 (while (string-match 1403 (while (string-match
@@ -1572,8 +1572,7 @@ If FORK is a string, it is the name to use for the new buffer."
1572(defvar Info-read-node-completion-table) 1572(defvar Info-read-node-completion-table)
1573 1573
1574(defun Info-read-node-name-2 (dirs suffixes string pred action) 1574(defun Info-read-node-name-2 (dirs suffixes string pred action)
1575 "Virtual completion table for file names input in Info node names. 1575 "Virtual completion table for file names input in Info node names."
1576PATH-AND-SUFFIXES is a pair of lists, (DIRECTORIES . SUFFIXES)."
1577 (setq suffixes (remove "" suffixes)) 1576 (setq suffixes (remove "" suffixes))
1578 (when (file-name-absolute-p string) 1577 (when (file-name-absolute-p string)
1579 (setq dirs (list (file-name-directory string)))) 1578 (setq dirs (list (file-name-directory string))))
@@ -1694,7 +1693,7 @@ PATH-AND-SUFFIXES is a pair of lists, (DIRECTORIES . SUFFIXES)."
1694(defvar Info-search-case-fold nil 1693(defvar Info-search-case-fold nil
1695 "The value of `case-fold-search' from previous `Info-search' command.") 1694 "The value of `case-fold-search' from previous `Info-search' command.")
1696 1695
1697(defun Info-search (regexp &optional bound noerror count direction) 1696(defun Info-search (regexp &optional bound _noerror _count direction)
1698 "Search for REGEXP, starting from point, and select node it's found in. 1697 "Search for REGEXP, starting from point, and select node it's found in.
1699If DIRECTION is `backward', search in the reverse direction." 1698If DIRECTION is `backward', search in the reverse direction."
1700 (interactive (list (read-string 1699 (interactive (list (read-string
@@ -1915,7 +1914,7 @@ If DIRECTION is `backward', search in the reverse direction."
1915 `(lambda (cmd) 1914 `(lambda (cmd)
1916 (Info-isearch-pop-state cmd ',Info-current-file ',Info-current-node))) 1915 (Info-isearch-pop-state cmd ',Info-current-file ',Info-current-node)))
1917 1916
1918(defun Info-isearch-pop-state (cmd file node) 1917(defun Info-isearch-pop-state (_cmd file node)
1919 (or (and (equal Info-current-file file) 1918 (or (and (equal Info-current-file file)
1920 (equal Info-current-node node)) 1919 (equal Info-current-node node))
1921 (progn (Info-find-node file node) (sit-for 0)))) 1920 (progn (Info-find-node file node) (sit-for 0))))
@@ -2093,16 +2092,16 @@ If SAME-FILE is non-nil, do not move to a different Info file."
2093 )) 2092 ))
2094 2093
2095(defun Info-directory-toc-nodes (filename) 2094(defun Info-directory-toc-nodes (filename)
2096 "Directory-specific implementation of Info-directory-toc-nodes." 2095 "Directory-specific implementation of `Info-directory-toc-nodes'."
2097 `(,filename 2096 `(,filename
2098 ("Top" nil nil nil))) 2097 ("Top" nil nil nil)))
2099 2098
2100(defun Info-directory-find-file (filename &optional noerror) 2099(defun Info-directory-find-file (filename &optional _noerror)
2101 "Directory-specific implementation of Info-find-file." 2100 "Directory-specific implementation of `Info-find-file'."
2102 filename) 2101 filename)
2103 2102
2104(defun Info-directory-find-node (filename nodename &optional no-going-back) 2103(defun Info-directory-find-node (_filename _nodename &optional _no-going-back)
2105 "Directory-specific implementation of Info-find-node-2." 2104 "Directory-specific implementation of `Info-find-node-2'."
2106 (Info-insert-dir)) 2105 (Info-insert-dir))
2107 2106
2108;;;###autoload 2107;;;###autoload
@@ -2119,16 +2118,16 @@ If SAME-FILE is non-nil, do not move to a different Info file."
2119 )) 2118 ))
2120 2119
2121(defun Info-history-toc-nodes (filename) 2120(defun Info-history-toc-nodes (filename)
2122 "History-specific implementation of Info-history-toc-nodes." 2121 "History-specific implementation of `Info-history-toc-nodes'."
2123 `(,filename 2122 `(,filename
2124 ("Top" nil nil nil))) 2123 ("Top" nil nil nil)))
2125 2124
2126(defun Info-history-find-file (filename &optional noerror) 2125(defun Info-history-find-file (filename &optional _noerror)
2127 "History-specific implementation of Info-find-file." 2126 "History-specific implementation of `Info-find-file'."
2128 filename) 2127 filename)
2129 2128
2130(defun Info-history-find-node (filename nodename &optional no-going-back) 2129(defun Info-history-find-node (filename nodename &optional _no-going-back)
2131 "History-specific implementation of Info-find-node-2." 2130 "History-specific implementation of `Info-find-node-2'."
2132 (insert (format "\n\^_\nFile: %s, Node: %s, Up: (dir)\n\n" 2131 (insert (format "\n\^_\nFile: %s, Node: %s, Up: (dir)\n\n"
2133 (or filename Info-current-file) nodename)) 2132 (or filename Info-current-file) nodename))
2134 (insert "Recently Visited Nodes\n") 2133 (insert "Recently Visited Nodes\n")
@@ -2157,8 +2156,8 @@ If SAME-FILE is non-nil, do not move to a different Info file."
2157 (find-node . Info-toc-find-node) 2156 (find-node . Info-toc-find-node)
2158 )) 2157 ))
2159 2158
2160(defun Info-toc-find-node (filename nodename &optional no-going-back) 2159(defun Info-toc-find-node (filename nodename &optional _no-going-back)
2161 "Toc-specific implementation of Info-find-node-2." 2160 "Toc-specific implementation of `Info-find-node-2'."
2162 (let* ((curr-file (substring-no-properties (or filename Info-current-file))) 2161 (let* ((curr-file (substring-no-properties (or filename Info-current-file)))
2163 (curr-node (substring-no-properties (or nodename Info-current-node))) 2162 (curr-node (substring-no-properties (or nodename Info-current-node)))
2164 (node-list (Info-toc-nodes curr-file))) 2163 (node-list (Info-toc-nodes curr-file)))
@@ -3138,8 +3137,8 @@ FILENAME is the file name of the manual,
3138TOPIC is the search string given as an argument to `Info-virtual-index', 3137TOPIC is the search string given as an argument to `Info-virtual-index',
3139MATCHES is a list of index matches found by `Info-index'.") 3138MATCHES is a list of index matches found by `Info-index'.")
3140 3139
3141(defun Info-virtual-index-find-node (filename nodename &optional no-going-back) 3140(defun Info-virtual-index-find-node (filename nodename &optional _no-going-back)
3142 "Index-specific implementation of Info-find-node-2." 3141 "Index-specific implementation of `Info-find-node-2'."
3143 ;; Generate Index-like menu of matches 3142 ;; Generate Index-like menu of matches
3144 (if (string-match "^\\*Index for `\\(.+\\)'\\*$" nodename) 3143 (if (string-match "^\\*Index for `\\(.+\\)'\\*$" nodename)
3145 ;; Generate Index-like menu of matches 3144 ;; Generate Index-like menu of matches
@@ -3201,8 +3200,7 @@ search results."
3201 (Info-find-node Info-current-file "*Index*") 3200 (Info-find-node Info-current-file "*Index*")
3202 (unless (assoc (cons Info-current-file topic) Info-virtual-index-nodes) 3201 (unless (assoc (cons Info-current-file topic) Info-virtual-index-nodes)
3203 (let ((orignode Info-current-node) 3202 (let ((orignode Info-current-node)
3204 (ohist-list Info-history-list) 3203 (ohist-list Info-history-list))
3205 nodename)
3206 ;; Reuse `Info-index' to set `Info-index-alternatives'. 3204 ;; Reuse `Info-index' to set `Info-index-alternatives'.
3207 (Info-index topic) 3205 (Info-index topic)
3208 (push (cons (cons Info-current-file topic) Info-index-alternatives) 3206 (push (cons (cons Info-current-file topic) Info-index-alternatives)
@@ -3232,18 +3230,18 @@ STRING is the search string given as an argument to `info-apropos',
3232MATCHES is a list of index matches found by `Info-apropos-matches'.") 3230MATCHES is a list of index matches found by `Info-apropos-matches'.")
3233 3231
3234(defun Info-apropos-toc-nodes (filename) 3232(defun Info-apropos-toc-nodes (filename)
3235 "Apropos-specific implementation of Info-apropos-toc-nodes." 3233 "Apropos-specific implementation of `Info-apropos-toc-nodes'."
3236 (let ((nodes (mapcar 'car (reverse Info-apropos-nodes)))) 3234 (let ((nodes (mapcar 'car (reverse Info-apropos-nodes))))
3237 `(,filename 3235 `(,filename
3238 ("Top" nil nil ,nodes) 3236 ("Top" nil nil ,nodes)
3239 ,@(mapcar (lambda (node) `(,node "Top" nil nil)) nodes)))) 3237 ,@(mapcar (lambda (node) `(,node "Top" nil nil)) nodes))))
3240 3238
3241(defun Info-apropos-find-file (filename &optional noerror) 3239(defun Info-apropos-find-file (filename &optional _noerror)
3242 "Apropos-specific implementation of Info-find-file." 3240 "Apropos-specific implementation of `Info-find-file'."
3243 filename) 3241 filename)
3244 3242
3245(defun Info-apropos-find-node (filename nodename &optional no-going-back) 3243(defun Info-apropos-find-node (_filename nodename &optional _no-going-back)
3246 "Apropos-specific implementation of Info-find-node-2." 3244 "Apropos-specific implementation of `Info-find-node-2'."
3247 (if (equal nodename "Top") 3245 (if (equal nodename "Top")
3248 ;; Generate Top menu 3246 ;; Generate Top menu
3249 (let ((nodes (reverse Info-apropos-nodes))) 3247 (let ((nodes (reverse Info-apropos-nodes)))
@@ -3362,8 +3360,8 @@ Build a menu of the possible matches."
3362(defvar Info-finder-file "*Finder*" 3360(defvar Info-finder-file "*Finder*"
3363 "Info file name of the virtual Info keyword finder manual.") 3361 "Info file name of the virtual Info keyword finder manual.")
3364 3362
3365(defun Info-finder-find-file (filename &optional noerror) 3363(defun Info-finder-find-file (filename &optional _noerror)
3366 "Finder-specific implementation of Info-find-file." 3364 "Finder-specific implementation of `Info-find-file'."
3367 filename) 3365 filename)
3368 3366
3369(defvar finder-known-keywords) 3367(defvar finder-known-keywords)
@@ -3373,8 +3371,8 @@ Build a menu of the possible matches."
3373(defvar finder-keywords-hash) 3371(defvar finder-keywords-hash)
3374(defvar package-alist) ; finder requires package 3372(defvar package-alist) ; finder requires package
3375 3373
3376(defun Info-finder-find-node (filename nodename &optional no-going-back) 3374(defun Info-finder-find-node (_filename nodename &optional _no-going-back)
3377 "Finder-specific implementation of Info-find-node-2." 3375 "Finder-specific implementation of `Info-find-node-2'."
3378 (require 'finder) 3376 (require 'finder)
3379 (cond 3377 (cond
3380 ((equal nodename "Top") 3378 ((equal nodename "Top")
@@ -3468,7 +3466,7 @@ Build a menu of the possible matches."
3468 "Display descriptions of the keywords in the Finder virtual manual. 3466 "Display descriptions of the keywords in the Finder virtual manual.
3469In interactive use, a prefix argument directs this command to read 3467In interactive use, a prefix argument directs this command to read
3470a list of keywords separated by comma. After that, it displays a node 3468a list of keywords separated by comma. After that, it displays a node
3471with a list packages that contain all specified keywords." 3469with a list of packages that contain all specified keywords."
3472 (interactive 3470 (interactive
3473 (when current-prefix-arg 3471 (when current-prefix-arg
3474 (require 'finder) 3472 (require 'finder)
@@ -3520,14 +3518,14 @@ with a list packages that contain all specified keywords."
3520 3518
3521(defun Info-get-token (pos start all &optional errorstring) 3519(defun Info-get-token (pos start all &optional errorstring)
3522 "Return the token around POS. 3520 "Return the token around POS.
3523POS must be somewhere inside the token 3521POS must be somewhere inside the token.
3524START is a regular expression which will match the 3522START is a regular expression which will match the
3525 beginning of the tokens delimited string 3523 beginning of the tokens delimited string.
3526ALL is a regular expression with a single 3524ALL is a regular expression with a single
3527 parenthesized subpattern which is the token to be 3525 parenthesized subpattern which is the token to be
3528 returned. E.g. '{\(.*\)}' would return any string 3526 returned. E.g. '{\(.*\)}' would return any string
3529 enclosed in braces around POS. 3527 enclosed in braces around POS.
3530ERRORSTRING optional fourth argument, controls action on no match 3528ERRORSTRING optional fourth argument, controls action on no match:
3531 nil: return nil 3529 nil: return nil
3532 t: beep 3530 t: beep
3533 a string: signal an error, using that string." 3531 a string: signal an error, using that string."
@@ -4089,7 +4087,7 @@ The `info-file' property of COMMAND says which Info manual to search.
4089If COMMAND has no property, the variable `Info-file-list-for-emacs' 4087If COMMAND has no property, the variable `Info-file-list-for-emacs'
4090defines heuristics for which Info manual to try. 4088defines heuristics for which Info manual to try.
4091The locations are of the format used in `Info-history', i.e. 4089The locations are of the format used in `Info-history', i.e.
4092\(FILENAME NODENAME BUFFERPOS\), where BUFFERPOS is the line number 4090\(FILENAME NODENAME BUFFERPOS), where BUFFERPOS is the line number
4093in the first element of the returned list (which is treated specially in 4091in the first element of the returned list (which is treated specially in
4094`Info-goto-emacs-command-node'), and 0 for the rest elements of a list." 4092`Info-goto-emacs-command-node'), and 0 for the rest elements of a list."
4095 (let ((where '()) line-number 4093 (let ((where '()) line-number
@@ -4674,7 +4672,7 @@ the variable `Info-file-list-for-emacs'."
4674(eval-when-compile (require 'speedbar)) 4672(eval-when-compile (require 'speedbar))
4675 4673
4676(defvar Info-speedbar-key-map nil 4674(defvar Info-speedbar-key-map nil
4677 "Keymap used when in the info display mode.") 4675 "Keymap used when in the Info display mode.")
4678 4676
4679(defun Info-install-speedbar-variables () 4677(defun Info-install-speedbar-variables ()
4680 "Install those variables used by speedbar to enhance Info." 4678 "Install those variables used by speedbar to enhance Info."
@@ -4722,7 +4720,7 @@ This will add a speedbar major display mode."
4722 (speedbar-change-initial-expansion-list "Info") 4720 (speedbar-change-initial-expansion-list "Info")
4723 ) 4721 )
4724 4722
4725(defun Info-speedbar-hierarchy-buttons (directory depth &optional node) 4723(defun Info-speedbar-hierarchy-buttons (_directory depth &optional node)
4726 "Display an Info directory hierarchy in speedbar. 4724 "Display an Info directory hierarchy in speedbar.
4727DIRECTORY is the current directory in the attached frame. 4725DIRECTORY is the current directory in the attached frame.
4728DEPTH is the current indentation depth. 4726DEPTH is the current indentation depth.
@@ -4756,7 +4754,7 @@ specific node to expand."
4756 t) 4754 t)
4757 nil)))) 4755 nil))))
4758 4756
4759(defun Info-speedbar-goto-node (text node indent) 4757(defun Info-speedbar-goto-node (_text node _indent)
4760 "When user clicks on TEXT, go to an info NODE. 4758 "When user clicks on TEXT, go to an info NODE.
4761The INDENT level is ignored." 4759The INDENT level is ignored."
4762 (speedbar-select-attached-frame) 4760 (speedbar-select-attached-frame)
@@ -4835,7 +4833,7 @@ NODESPEC is a string of the form: (file)node."
4835 4833
4836;;; Info mode node listing 4834;;; Info mode node listing
4837;; This is called by `speedbar-add-localized-speedbar-support' 4835;; This is called by `speedbar-add-localized-speedbar-support'
4838(defun Info-speedbar-buttons (buffer) 4836(defun Info-speedbar-buttons (_buffer)
4839 "Create a speedbar display to help navigation in an Info file. 4837 "Create a speedbar display to help navigation in an Info file.
4840BUFFER is the buffer speedbar is requesting buttons for." 4838BUFFER is the buffer speedbar is requesting buttons for."
4841 (if (save-excursion (goto-char (point-min)) 4839 (if (save-excursion (goto-char (point-min))
@@ -4866,7 +4864,7 @@ BUFFER is the buffer speedbar is requesting buttons for."
4866 4864
4867;;;; Desktop support 4865;;;; Desktop support
4868 4866
4869(defun Info-desktop-buffer-misc-data (desktop-dirname) 4867(defun Info-desktop-buffer-misc-data (_desktop-dirname)
4870 "Auxiliary information to be saved in desktop file." 4868 "Auxiliary information to be saved in desktop file."
4871 (list Info-current-file 4869 (list Info-current-file
4872 Info-current-node 4870 Info-current-node
@@ -4878,7 +4876,7 @@ BUFFER is the buffer speedbar is requesting buttons for."
4878 'slow Info-current-file Info-current-node) 4876 'slow Info-current-file Info-current-node)
4879 (cons 'slow t)))))) 4877 (cons 'slow t))))))
4880 4878
4881(defun Info-restore-desktop-buffer (desktop-buffer-file-name 4879(defun Info-restore-desktop-buffer (_desktop-buffer-file-name
4882 desktop-buffer-name 4880 desktop-buffer-name
4883 desktop-buffer-misc) 4881 desktop-buffer-misc)
4884 "Restore an Info buffer specified in a desktop file." 4882 "Restore an Info buffer specified in a desktop file."
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index 8bb01f2c793..4ef5ac7dd83 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" (19775 2029)) 8;;;;;; "play/5x5.el" (19845 45374))
9;;; Generated autoloads from play/5x5.el 9;;; Generated autoloads from play/5x5.el
10 10
11(autoload '5x5 "5x5" "\ 11(autoload '5x5 "5x5" "\
@@ -64,19 +64,8 @@ should return a grid vector array that is the new solution.
64 64
65;;;*** 65;;;***
66 66
67;;;### (autoloads (list-one-abbrev-table) "abbrevlist" "abbrevlist.el"
68;;;;;; (19775 2027))
69;;; Generated autoloads from abbrevlist.el
70
71(autoload 'list-one-abbrev-table "abbrevlist" "\
72Display alphabetical listing of ABBREV-TABLE in buffer OUTPUT-BUFFER.
73
74\(fn ABBREV-TABLE OUTPUT-BUFFER)" nil nil)
75
76;;;***
77
78;;;### (autoloads (ada-mode ada-add-extensions) "ada-mode" "progmodes/ada-mode.el" 67;;;### (autoloads (ada-mode ada-add-extensions) "ada-mode" "progmodes/ada-mode.el"
79;;;;;; (19780 4514)) 68;;;;;; (19845 45374))
80;;; Generated autoloads from progmodes/ada-mode.el 69;;; Generated autoloads from progmodes/ada-mode.el
81 70
82(autoload 'ada-add-extensions "ada-mode" "\ 71(autoload 'ada-add-extensions "ada-mode" "\
@@ -96,7 +85,7 @@ Ada mode is the major mode for editing Ada code.
96;;;*** 85;;;***
97 86
98;;;### (autoloads (ada-header) "ada-stmt" "progmodes/ada-stmt.el" 87;;;### (autoloads (ada-header) "ada-stmt" "progmodes/ada-stmt.el"
99;;;;;; (19780 4514)) 88;;;;;; (19845 45374))
100;;; Generated autoloads from progmodes/ada-stmt.el 89;;; Generated autoloads from progmodes/ada-stmt.el
101 90
102(autoload 'ada-header "ada-stmt" "\ 91(autoload 'ada-header "ada-stmt" "\
@@ -107,7 +96,7 @@ Insert a descriptive header at the top of the file.
107;;;*** 96;;;***
108 97
109;;;### (autoloads (ada-find-file) "ada-xref" "progmodes/ada-xref.el" 98;;;### (autoloads (ada-find-file) "ada-xref" "progmodes/ada-xref.el"
110;;;;;; (19780 4514)) 99;;;;;; (19845 45374))
111;;; Generated autoloads from progmodes/ada-xref.el 100;;; Generated autoloads from progmodes/ada-xref.el
112 101
113(autoload 'ada-find-file "ada-xref" "\ 102(autoload 'ada-find-file "ada-xref" "\
@@ -122,7 +111,7 @@ Completion is available.
122;;;;;; add-change-log-entry-other-window add-change-log-entry find-change-log 111;;;;;; add-change-log-entry-other-window add-change-log-entry find-change-log
123;;;;;; prompt-for-change-log-name add-log-mailing-address add-log-full-name 112;;;;;; prompt-for-change-log-name add-log-mailing-address add-log-full-name
124;;;;;; add-log-current-defun-function) "add-log" "vc/add-log.el" 113;;;;;; add-log-current-defun-function) "add-log" "vc/add-log.el"
125;;;;;; (19775 2030)) 114;;;;;; (19860 32495))
126;;; Generated autoloads from vc/add-log.el 115;;; Generated autoloads from vc/add-log.el
127 116
128(put 'change-log-default-name 'safe-local-variable 'string-or-null-p) 117(put 'change-log-default-name 'safe-local-variable 'string-or-null-p)
@@ -261,7 +250,7 @@ old-style time formats for entries are supported.
261 250
262;;;### (autoloads (defadvice ad-activate ad-add-advice ad-disable-advice 251;;;### (autoloads (defadvice ad-activate ad-add-advice ad-disable-advice
263;;;;;; ad-enable-advice ad-default-compilation-action ad-redefinition-action) 252;;;;;; ad-enable-advice ad-default-compilation-action ad-redefinition-action)
264;;;;;; "advice" "emacs-lisp/advice.el" (19780 4513)) 253;;;;;; "advice" "emacs-lisp/advice.el" (19863 8742))
265;;; Generated autoloads from emacs-lisp/advice.el 254;;; Generated autoloads from emacs-lisp/advice.el
266 255
267(defvar ad-redefinition-action 'warn "\ 256(defvar ad-redefinition-action 'warn "\
@@ -406,7 +395,7 @@ usage: (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...)
406 395
407;;;### (autoloads (align-newline-and-indent align-unhighlight-rule 396;;;### (autoloads (align-newline-and-indent align-unhighlight-rule
408;;;;;; align-highlight-rule align-current align-entire align-regexp 397;;;;;; align-highlight-rule align-current align-entire align-regexp
409;;;;;; align) "align" "align.el" (19775 2027)) 398;;;;;; align) "align" "align.el" (19845 45374))
410;;; Generated autoloads from align.el 399;;; Generated autoloads from align.el
411 400
412(autoload 'align "align" "\ 401(autoload 'align "align" "\
@@ -495,10 +484,50 @@ A replacement function for `newline-and-indent', aligning as it goes.
495 484
496;;;*** 485;;;***
497 486
498;;;### (autoloads (outlineify-sticky allout-mode) "allout" "allout.el" 487;;;### (autoloads (outlineify-sticky allout-mode allout-mode-p allout-auto-activation
499;;;;;; (19775 2027)) 488;;;;;; allout-setup allout-auto-activation-helper) "allout" "allout.el"
489;;;;;; (19859 11635))
500;;; Generated autoloads from allout.el 490;;; Generated autoloads from allout.el
501 491
492(autoload 'allout-auto-activation-helper "allout" "\
493Institute `allout-auto-activation'.
494
495Intended to be used as the `allout-auto-activation' :set function.
496
497\(fn VAR VALUE)" nil nil)
498
499(autoload 'allout-setup "allout" "\
500Do fundamental emacs session for allout auto-activation.
501
502Establishes allout processing as part of visiting a file if
503`allout-auto-activation' is non-nil, or removes it otherwise.
504
505The proper way to use this is through customizing the setting of
506`allout-auto-activation'.
507
508\(fn)" nil nil)
509
510(defvar allout-auto-activation nil "\
511Configure allout outline mode auto-activation.
512
513Control whether and how allout outline mode is automatically
514activated when files are visited with non-nil buffer-specific
515file variable `allout-layout'.
516
517When allout-auto-activation is \"On\" (t), allout mode is
518activated in buffers with non-nil `allout-layout', and the
519specified layout is applied.
520
521With value \"ask\", auto-mode-activation is enabled, and endorsement for
522performing auto-layout is asked of the user each time.
523
524With value \"activate\", only auto-mode-activation is enabled.
525Auto-layout is not.
526
527With value nil, inhibit any automatic allout-mode activation.")
528
529(custom-autoload 'allout-auto-activation "allout" nil)
530
502(put 'allout-use-hanging-indents 'safe-local-variable (if (fboundp 'booleanp) 'booleanp '(lambda (x) (member x '(t nil))))) 531(put 'allout-use-hanging-indents 'safe-local-variable (if (fboundp 'booleanp) 'booleanp '(lambda (x) (member x '(t nil)))))
503 532
504(put 'allout-reindent-bodies 'safe-local-variable '(lambda (x) (memq x '(nil t text force)))) 533(put 'allout-reindent-bodies 'safe-local-variable '(lambda (x) (memq x '(nil t text force))))
@@ -531,6 +560,11 @@ A replacement function for `newline-and-indent', aligning as it goes.
531 560
532(put 'allout-passphrase-hint-string 'safe-local-variable 'stringp) 561(put 'allout-passphrase-hint-string 'safe-local-variable 'stringp)
533 562
563(autoload 'allout-mode-p "allout" "\
564Return t if `allout-mode' is active in current buffer.
565
566\(fn)" nil (quote macro))
567
534(autoload 'allout-mode "allout" "\ 568(autoload 'allout-mode "allout" "\
535Toggle minor mode for controlling exposure and editing of text outlines. 569Toggle minor mode for controlling exposure and editing of text outlines.
536\\<allout-mode-map-value> 570\\<allout-mode-map-value>
@@ -560,9 +594,8 @@ and many other features.
560Below is a description of the key bindings, and then description 594Below is a description of the key bindings, and then description
561of special `allout-mode' features and terminology. See also the 595of special `allout-mode' features and terminology. See also the
562outline menubar additions for quick reference to many of the 596outline menubar additions for quick reference to many of the
563features, and see the docstring of the function `allout-init' for 597features. Customize `allout-auto-activation' to prepare your
564instructions on priming your emacs session for automatic 598emacs session for automatic activation of `allout-mode'.
565activation of `allout-mode'.
566 599
567The bindings are those listed in `allout-prefixed-keybindings' 600The bindings are those listed in `allout-prefixed-keybindings'
568and `allout-unprefixed-keybindings'. We recommend customizing 601and `allout-unprefixed-keybindings'. We recommend customizing
@@ -646,7 +679,8 @@ M-x outlineify-sticky Activate outline mode for current buffer,
646 Like above 'copy-exposed', but convert topic 679 Like above 'copy-exposed', but convert topic
647 prefixes to section.subsection... numeric 680 prefixes to section.subsection... numeric
648 format. 681 format.
649\\[eval-expression] (allout-init t) Setup Emacs session for outline mode 682\\[customize-variable] allout-auto-activation
683 Prepare Emacs session for allout outline mode
650 auto-activation. 684 auto-activation.
651 685
652 Topic Encryption 686 Topic Encryption
@@ -711,6 +745,7 @@ without changes to the allout core. Here are key ones:
711`allout-structure-added-hook' 745`allout-structure-added-hook'
712`allout-structure-deleted-hook' 746`allout-structure-deleted-hook'
713`allout-structure-shifted-hook' 747`allout-structure-shifted-hook'
748`allout-after-copy-or-kill-hook'
714 749
715 Terminology 750 Terminology
716 751
@@ -800,15 +835,75 @@ OPEN: A TOPIC that is not CLOSED, though its OFFSPRING or BODY may be.
800(autoload 'outlineify-sticky "allout" "\ 835(autoload 'outlineify-sticky "allout" "\
801Activate outline mode and establish file var so it is started subsequently. 836Activate outline mode and establish file var so it is started subsequently.
802 837
803See doc-string for `allout-layout' and `allout-init' for details on 838See `allout-layout' and customization of `allout-auto-activation'
804setup for auto-startup. 839for details on preparing emacs for automatic allout activation.
840
841\(fn &optional ARG)" t nil)
842
843;;;***
844
845;;;### (autoloads (allout-widgets-mode allout-widgets-auto-activation
846;;;;;; allout-widgets-setup allout-widgets) "allout-widgets" "allout-widgets.el"
847;;;;;; (19859 11635))
848;;; Generated autoloads from allout-widgets.el
849
850(let ((loads (get 'allout-widgets 'custom-loads))) (if (member '"allout-widgets" loads) nil (put 'allout-widgets 'custom-loads (cons '"allout-widgets" loads))))
851
852(autoload 'allout-widgets-setup "allout-widgets" "\
853Commission or decommision allout-widgets-mode along with allout-mode.
854
855Meant to be used by customization of `allout-widgets-auto-activation'.
856
857\(fn VARNAME VALUE)" nil nil)
858
859(defvar allout-widgets-auto-activation nil "\
860Activate to enable allout icon graphics wherever allout mode is active.
861
862Also enable `allout-auto-activation' for this to take effect upon
863visiting an outline.
864
865When this is set you can disable allout widgets in select files
866by setting `allout-widgets-mode-inhibit'
867
868Instead of setting `allout-widgets-auto-activation' you can
869explicitly invoke `allout-widgets-mode' in allout buffers where
870you want allout widgets operation.
871
872See `allout-widgets-mode' for allout widgets mode features.")
873
874(custom-autoload 'allout-widgets-auto-activation "allout-widgets" nil)
875
876(put 'allout-widgets-mode-inhibit 'safe-local-variable (if (fboundp 'booleanp) 'booleanp '(lambda (x) (member x '(t nil)))))
877
878(autoload 'allout-widgets-mode "allout-widgets" "\
879Allout-mode extension, providing graphical decoration of outline structure.
880
881This is meant to operate along with allout-mode, via `allout-mode-hook'.
882
883If optional argument ARG is greater than 0, enable.
884If optional argument ARG is less than 0, disable.
885Anything else, toggle between active and inactive.
886
887The graphics include:
888
889- guide lines connecting item bullet-icons with those of their subitems.
890
891- icons for item bullets, varying to indicate whether or not the item
892 has subitems, and if so, whether or not the item is expanded.
893
894- cue area between the bullet-icon and the start of the body headline,
895 for item numbering, encryption indicator, and distinctive bullets.
896
897The bullet-icon and guide line graphics provide keybindings and mouse
898bindings for easy outline navigation and exposure control, extending
899outline hot-spot navigation (see `allout-mode').
805 900
806\(fn &optional ARG)" t nil) 901\(fn &optional ARG)" t nil)
807 902
808;;;*** 903;;;***
809 904
810;;;### (autoloads (ange-ftp-hook-function ange-ftp-reread-dir) "ange-ftp" 905;;;### (autoloads (ange-ftp-hook-function ange-ftp-reread-dir) "ange-ftp"
811;;;;;; "net/ange-ftp.el" (19780 4514)) 906;;;;;; "net/ange-ftp.el" (19845 45374))
812;;; Generated autoloads from net/ange-ftp.el 907;;; Generated autoloads from net/ange-ftp.el
813 908
814(defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) 909(defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir)
@@ -823,14 +918,14 @@ directory, so that Emacs will know its current contents.
823\(fn &optional DIR)" t nil) 918\(fn &optional DIR)" t nil)
824 919
825(autoload 'ange-ftp-hook-function "ange-ftp" "\ 920(autoload 'ange-ftp-hook-function "ange-ftp" "\
826Not documented 921
827 922
828\(fn OPERATION &rest ARGS)" nil nil) 923\(fn OPERATION &rest ARGS)" nil nil)
829 924
830;;;*** 925;;;***
831 926
832;;;### (autoloads (animate-birthday-present animate-sequence animate-string) 927;;;### (autoloads (animate-birthday-present animate-sequence animate-string)
833;;;;;; "animate" "play/animate.el" (19775 2029)) 928;;;;;; "animate" "play/animate.el" (19845 45374))
834;;; Generated autoloads from play/animate.el 929;;; Generated autoloads from play/animate.el
835 930
836(autoload 'animate-string "animate" "\ 931(autoload 'animate-string "animate" "\
@@ -858,7 +953,7 @@ You can specify the one's name by NAME; the default value is \"Sarah\".
858;;;*** 953;;;***
859 954
860;;;### (autoloads (ansi-color-process-output ansi-color-for-comint-mode-on) 955;;;### (autoloads (ansi-color-process-output ansi-color-for-comint-mode-on)
861;;;;;; "ansi-color" "ansi-color.el" (19775 2027)) 956;;;;;; "ansi-color" "ansi-color.el" (19854 41422))
862;;; Generated autoloads from ansi-color.el 957;;; Generated autoloads from ansi-color.el
863 958
864(autoload 'ansi-color-for-comint-mode-on "ansi-color" "\ 959(autoload 'ansi-color-for-comint-mode-on "ansi-color" "\
@@ -884,7 +979,7 @@ This is a good function to put in `comint-output-filter-functions'.
884;;;*** 979;;;***
885 980
886;;;### (autoloads (antlr-set-tabs antlr-mode antlr-show-makefile-rules) 981;;;### (autoloads (antlr-set-tabs antlr-mode antlr-show-makefile-rules)
887;;;;;; "antlr-mode" "progmodes/antlr-mode.el" (19775 2029)) 982;;;;;; "antlr-mode" "progmodes/antlr-mode.el" (19845 45374))
888;;; Generated autoloads from progmodes/antlr-mode.el 983;;; Generated autoloads from progmodes/antlr-mode.el
889 984
890(autoload 'antlr-show-makefile-rules "antlr-mode" "\ 985(autoload 'antlr-show-makefile-rules "antlr-mode" "\
@@ -920,7 +1015,7 @@ Used in `antlr-mode'. Also a useful function in `java-mode-hook'.
920;;;*** 1015;;;***
921 1016
922;;;### (autoloads (appt-activate appt-add) "appt" "calendar/appt.el" 1017;;;### (autoloads (appt-activate appt-add) "appt" "calendar/appt.el"
923;;;;;; (19780 4513)) 1018;;;;;; (19845 45374))
924;;; Generated autoloads from calendar/appt.el 1019;;; Generated autoloads from calendar/appt.el
925 1020
926(autoload 'appt-add "appt" "\ 1021(autoload 'appt-add "appt" "\
@@ -943,7 +1038,7 @@ ARG is positive, otherwise off.
943 1038
944;;;### (autoloads (apropos-documentation apropos-value apropos-library 1039;;;### (autoloads (apropos-documentation apropos-value apropos-library
945;;;;;; apropos apropos-documentation-property apropos-command apropos-variable 1040;;;;;; apropos apropos-documentation-property apropos-command apropos-variable
946;;;;;; apropos-read-pattern) "apropos" "apropos.el" (19775 2027)) 1041;;;;;; apropos-read-pattern) "apropos" "apropos.el" (19845 45374))
947;;; Generated autoloads from apropos.el 1042;;; Generated autoloads from apropos.el
948 1043
949(autoload 'apropos-read-pattern "apropos" "\ 1044(autoload 'apropos-read-pattern "apropos" "\
@@ -1046,8 +1141,8 @@ Returns list of symbols and documentation found.
1046 1141
1047;;;*** 1142;;;***
1048 1143
1049;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (19775 1144;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (19845
1050;;;;;; 2027)) 1145;;;;;; 45374))
1051;;; Generated autoloads from arc-mode.el 1146;;; Generated autoloads from arc-mode.el
1052 1147
1053(autoload 'archive-mode "arc-mode" "\ 1148(autoload 'archive-mode "arc-mode" "\
@@ -1067,7 +1162,7 @@ archive.
1067 1162
1068;;;*** 1163;;;***
1069 1164
1070;;;### (autoloads (array-mode) "array" "array.el" (19775 2027)) 1165;;;### (autoloads (array-mode) "array" "array.el" (19845 45374))
1071;;; Generated autoloads from array.el 1166;;; Generated autoloads from array.el
1072 1167
1073(autoload 'array-mode "array" "\ 1168(autoload 'array-mode "array" "\
@@ -1138,8 +1233,8 @@ Entering array mode calls the function `array-mode-hook'.
1138 1233
1139;;;*** 1234;;;***
1140 1235
1141;;;### (autoloads (artist-mode) "artist" "textmodes/artist.el" (19775 1236;;;### (autoloads (artist-mode) "artist" "textmodes/artist.el" (19845
1142;;;;;; 2030)) 1237;;;;;; 45374))
1143;;; Generated autoloads from textmodes/artist.el 1238;;; Generated autoloads from textmodes/artist.el
1144 1239
1145(autoload 'artist-mode "artist" "\ 1240(autoload 'artist-mode "artist" "\
@@ -1345,8 +1440,8 @@ Keymap summary
1345 1440
1346;;;*** 1441;;;***
1347 1442
1348;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (19780 1443;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (19845
1349;;;;;; 4514)) 1444;;;;;; 45374))
1350;;; Generated autoloads from progmodes/asm-mode.el 1445;;; Generated autoloads from progmodes/asm-mode.el
1351 1446
1352(autoload 'asm-mode "asm-mode" "\ 1447(autoload 'asm-mode "asm-mode" "\
@@ -1373,8 +1468,21 @@ Special commands:
1373 1468
1374;;;*** 1469;;;***
1375 1470
1471;;;### (autoloads (auth-source-cache-expiry) "auth-source" "gnus/auth-source.el"
1472;;;;;; (19845 45374))
1473;;; Generated autoloads from gnus/auth-source.el
1474
1475(defvar auth-source-cache-expiry 7200 "\
1476How many seconds passwords are cached, or nil to disable
1477expiring. Overrides `password-cache-expiry' through a
1478let-binding.")
1479
1480(custom-autoload 'auth-source-cache-expiry "auth-source" t)
1481
1482;;;***
1483
1376;;;### (autoloads (autoarg-kp-mode autoarg-mode) "autoarg" "autoarg.el" 1484;;;### (autoloads (autoarg-kp-mode autoarg-mode) "autoarg" "autoarg.el"
1377;;;;;; (19775 2027)) 1485;;;;;; (19845 45374))
1378;;; Generated autoloads from autoarg.el 1486;;; Generated autoloads from autoarg.el
1379 1487
1380(defvar autoarg-mode nil "\ 1488(defvar autoarg-mode nil "\
@@ -1428,7 +1536,7 @@ etc. to supply digit arguments.
1428;;;*** 1536;;;***
1429 1537
1430;;;### (autoloads (autoconf-mode) "autoconf" "progmodes/autoconf.el" 1538;;;### (autoloads (autoconf-mode) "autoconf" "progmodes/autoconf.el"
1431;;;;;; (19780 4514)) 1539;;;;;; (19845 45374))
1432;;; Generated autoloads from progmodes/autoconf.el 1540;;; Generated autoloads from progmodes/autoconf.el
1433 1541
1434(autoload 'autoconf-mode "autoconf" "\ 1542(autoload 'autoconf-mode "autoconf" "\
@@ -1439,7 +1547,7 @@ Major mode for editing Autoconf configure.in files.
1439;;;*** 1547;;;***
1440 1548
1441;;;### (autoloads (auto-insert-mode define-auto-insert auto-insert) 1549;;;### (autoloads (auto-insert-mode define-auto-insert auto-insert)
1442;;;;;; "autoinsert" "autoinsert.el" (19780 4512)) 1550;;;;;; "autoinsert" "autoinsert.el" (19845 45374))
1443;;; Generated autoloads from autoinsert.el 1551;;; Generated autoloads from autoinsert.el
1444 1552
1445(autoload 'auto-insert "autoinsert" "\ 1553(autoload 'auto-insert "autoinsert" "\
@@ -1478,7 +1586,7 @@ insert a template for the file depending on the mode of the buffer.
1478 1586
1479;;;### (autoloads (batch-update-autoloads update-directory-autoloads 1587;;;### (autoloads (batch-update-autoloads update-directory-autoloads
1480;;;;;; update-file-autoloads) "autoload" "emacs-lisp/autoload.el" 1588;;;;;; update-file-autoloads) "autoload" "emacs-lisp/autoload.el"
1481;;;;;; (19780 4513)) 1589;;;;;; (19863 8742))
1482;;; Generated autoloads from emacs-lisp/autoload.el 1590;;; Generated autoloads from emacs-lisp/autoload.el
1483 1591
1484(put 'generated-autoload-file 'safe-local-variable 'stringp) 1592(put 'generated-autoload-file 'safe-local-variable 'stringp)
@@ -1517,7 +1625,7 @@ Calls `update-directory-autoloads' on the command line arguments.
1517 1625
1518;;;### (autoloads (global-auto-revert-mode turn-on-auto-revert-tail-mode 1626;;;### (autoloads (global-auto-revert-mode turn-on-auto-revert-tail-mode
1519;;;;;; auto-revert-tail-mode turn-on-auto-revert-mode auto-revert-mode) 1627;;;;;; auto-revert-tail-mode turn-on-auto-revert-mode auto-revert-mode)
1520;;;;;; "autorevert" "autorevert.el" (19775 2027)) 1628;;;;;; "autorevert" "autorevert.el" (19845 45374))
1521;;; Generated autoloads from autorevert.el 1629;;; Generated autoloads from autorevert.el
1522 1630
1523(autoload 'auto-revert-mode "autorevert" "\ 1631(autoload 'auto-revert-mode "autorevert" "\
@@ -1598,11 +1706,11 @@ specifies in the mode line.
1598;;;*** 1706;;;***
1599 1707
1600;;;### (autoloads (mouse-avoidance-mode mouse-avoidance-mode) "avoid" 1708;;;### (autoloads (mouse-avoidance-mode mouse-avoidance-mode) "avoid"
1601;;;;;; "avoid.el" (19775 2027)) 1709;;;;;; "avoid.el" (19845 45374))
1602;;; Generated autoloads from avoid.el 1710;;; Generated autoloads from avoid.el
1603 1711
1604(defvar mouse-avoidance-mode nil "\ 1712(defvar mouse-avoidance-mode nil "\
1605Activate mouse avoidance mode. 1713Activate Mouse Avoidance mode.
1606See function `mouse-avoidance-mode' for possible values. 1714See function `mouse-avoidance-mode' for possible values.
1607Setting this variable directly does not take effect; 1715Setting this variable directly does not take effect;
1608use either \\[customize] or the function `mouse-avoidance-mode'.") 1716use either \\[customize] or the function `mouse-avoidance-mode'.")
@@ -1610,7 +1718,7 @@ use either \\[customize] or the function `mouse-avoidance-mode'.")
1610(custom-autoload 'mouse-avoidance-mode "avoid" nil) 1718(custom-autoload 'mouse-avoidance-mode "avoid" nil)
1611 1719
1612(autoload 'mouse-avoidance-mode "avoid" "\ 1720(autoload 'mouse-avoidance-mode "avoid" "\
1613Set cursor avoidance mode to MODE. 1721Set Mouse Avoidance mode to MODE.
1614MODE should be one of the symbols `banish', `exile', `jump', `animate', 1722MODE should be one of the symbols `banish', `exile', `jump', `animate',
1615`cat-and-mouse', `proteus', or `none'. 1723`cat-and-mouse', `proteus', or `none'.
1616 1724
@@ -1630,7 +1738,7 @@ Effects of the different modes:
1630 1738
1631Whenever the mouse is moved, the frame is also raised. 1739Whenever the mouse is moved, the frame is also raised.
1632 1740
1633\(see `mouse-avoidance-threshold' for definition of \"too close\", 1741\(See `mouse-avoidance-threshold' for definition of \"too close\",
1634and `mouse-avoidance-nudge-dist' and `mouse-avoidance-nudge-var' for 1742and `mouse-avoidance-nudge-dist' and `mouse-avoidance-nudge-var' for
1635definition of \"random distance\".) 1743definition of \"random distance\".)
1636 1744
@@ -1639,7 +1747,7 @@ definition of \"random distance\".)
1639;;;*** 1747;;;***
1640 1748
1641;;;### (autoloads (display-battery-mode battery) "battery" "battery.el" 1749;;;### (autoloads (display-battery-mode battery) "battery" "battery.el"
1642;;;;;; (19775 2027)) 1750;;;;;; (19845 45374))
1643;;; Generated autoloads from battery.el 1751;;; Generated autoloads from battery.el
1644 (put 'battery-mode-line-string 'risky-local-variable t) 1752 (put 'battery-mode-line-string 'risky-local-variable t)
1645 1753
@@ -1671,7 +1779,7 @@ seconds.
1671;;;*** 1779;;;***
1672 1780
1673;;;### (autoloads (benchmark benchmark-run-compiled benchmark-run) 1781;;;### (autoloads (benchmark benchmark-run-compiled benchmark-run)
1674;;;;;; "benchmark" "emacs-lisp/benchmark.el" (19780 4513)) 1782;;;;;; "benchmark" "emacs-lisp/benchmark.el" (19845 45374))
1675;;; Generated autoloads from emacs-lisp/benchmark.el 1783;;; Generated autoloads from emacs-lisp/benchmark.el
1676 1784
1677(autoload 'benchmark-run "benchmark" "\ 1785(autoload 'benchmark-run "benchmark" "\
@@ -1704,7 +1812,7 @@ For non-interactive use see also `benchmark-run' and
1704;;;*** 1812;;;***
1705 1813
1706;;;### (autoloads (bibtex-search-entry bibtex-mode bibtex-initialize) 1814;;;### (autoloads (bibtex-search-entry bibtex-mode bibtex-initialize)
1707;;;;;; "bibtex" "textmodes/bibtex.el" (19780 4514)) 1815;;;;;; "bibtex" "textmodes/bibtex.el" (19845 45374))
1708;;; Generated autoloads from textmodes/bibtex.el 1816;;; Generated autoloads from textmodes/bibtex.el
1709 1817
1710(autoload 'bibtex-initialize "bibtex" "\ 1818(autoload 'bibtex-initialize "bibtex" "\
@@ -1791,7 +1899,7 @@ mode is not `bibtex-mode', START is nil, and DISPLAY is t.
1791;;;*** 1899;;;***
1792 1900
1793;;;### (autoloads (bibtex-style-mode) "bibtex-style" "textmodes/bibtex-style.el" 1901;;;### (autoloads (bibtex-style-mode) "bibtex-style" "textmodes/bibtex-style.el"
1794;;;;;; (19780 4514)) 1902;;;;;; (19863 8742))
1795;;; Generated autoloads from textmodes/bibtex-style.el 1903;;; Generated autoloads from textmodes/bibtex-style.el
1796 1904
1797(autoload 'bibtex-style-mode "bibtex-style" "\ 1905(autoload 'bibtex-style-mode "bibtex-style" "\
@@ -1803,7 +1911,7 @@ Major mode for editing BibTeX style files.
1803 1911
1804;;;### (autoloads (binhex-decode-region binhex-decode-region-external 1912;;;### (autoloads (binhex-decode-region binhex-decode-region-external
1805;;;;;; binhex-decode-region-internal) "binhex" "mail/binhex.el" 1913;;;;;; binhex-decode-region-internal) "binhex" "mail/binhex.el"
1806;;;;;; (19775 2028)) 1914;;;;;; (19845 45374))
1807;;; Generated autoloads from mail/binhex.el 1915;;; Generated autoloads from mail/binhex.el
1808 1916
1809(defconst binhex-begin-line "^:...............................................................$") 1917(defconst binhex-begin-line "^:...............................................................$")
@@ -1826,8 +1934,8 @@ Binhex decode region between START and END.
1826 1934
1827;;;*** 1935;;;***
1828 1936
1829;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (19775 1937;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (19845
1830;;;;;; 2029)) 1938;;;;;; 45374))
1831;;; Generated autoloads from play/blackbox.el 1939;;; Generated autoloads from play/blackbox.el
1832 1940
1833(autoload 'blackbox "blackbox" "\ 1941(autoload 'blackbox "blackbox" "\
@@ -1950,7 +2058,7 @@ a reflection.
1950;;;;;; bookmark-save bookmark-write bookmark-delete bookmark-insert 2058;;;;;; bookmark-save bookmark-write bookmark-delete bookmark-insert
1951;;;;;; bookmark-rename bookmark-insert-location bookmark-relocate 2059;;;;;; bookmark-rename bookmark-insert-location bookmark-relocate
1952;;;;;; bookmark-jump-other-window bookmark-jump bookmark-set) "bookmark" 2060;;;;;; bookmark-jump-other-window bookmark-jump bookmark-set) "bookmark"
1953;;;;;; "bookmark.el" (19780 4512)) 2061;;;;;; "bookmark.el" (19845 45374))
1954;;; Generated autoloads from bookmark.el 2062;;; Generated autoloads from bookmark.el
1955 (define-key ctl-x-r-map "b" 'bookmark-jump) 2063 (define-key ctl-x-r-map "b" 'bookmark-jump)
1956 (define-key ctl-x-r-map "m" 'bookmark-set) 2064 (define-key ctl-x-r-map "m" 'bookmark-set)
@@ -2151,7 +2259,7 @@ Incremental search of bookmarks, hiding the non-matches as we go.
2151;;;;;; browse-url-at-mouse browse-url-at-point browse-url browse-url-of-region 2259;;;;;; browse-url-at-mouse browse-url-at-point browse-url browse-url-of-region
2152;;;;;; browse-url-of-dired-file browse-url-of-buffer browse-url-of-file 2260;;;;;; browse-url-of-dired-file browse-url-of-buffer browse-url-of-file
2153;;;;;; browse-url-browser-function) "browse-url" "net/browse-url.el" 2261;;;;;; browse-url-browser-function) "browse-url" "net/browse-url.el"
2154;;;;;; (19780 4514)) 2262;;;;;; (19845 45374))
2155;;; Generated autoloads from net/browse-url.el 2263;;; Generated autoloads from net/browse-url.el
2156 2264
2157(defvar browse-url-browser-function (cond ((memq system-type '(windows-nt ms-dos cygwin)) 'browse-url-default-windows-browser) ((memq system-type '(darwin)) 'browse-url-default-macosx-browser) (t 'browse-url-default-browser)) "\ 2265(defvar browse-url-browser-function (cond ((memq system-type '(windows-nt ms-dos cygwin)) 'browse-url-default-windows-browser) ((memq system-type '(darwin)) 'browse-url-default-macosx-browser) (t 'browse-url-default-browser)) "\
@@ -2220,7 +2328,7 @@ to use.
2220\(fn EVENT)" t nil) 2328\(fn EVENT)" t nil)
2221 2329
2222(autoload 'browse-url-xdg-open "browse-url" "\ 2330(autoload 'browse-url-xdg-open "browse-url" "\
2223Not documented 2331
2224 2332
2225\(fn URL &optional NEW-WINDOW)" t nil) 2333\(fn URL &optional NEW-WINDOW)" t nil)
2226 2334
@@ -2456,8 +2564,8 @@ from `browse-url-elinks-wrapper'.
2456 2564
2457;;;*** 2565;;;***
2458 2566
2459;;;### (autoloads (snarf-bruces bruce) "bruce" "play/bruce.el" (19775 2567;;;### (autoloads (snarf-bruces bruce) "bruce" "play/bruce.el" (19845
2460;;;;;; 2029)) 2568;;;;;; 45374))
2461;;; Generated autoloads from play/bruce.el 2569;;; Generated autoloads from play/bruce.el
2462 2570
2463(autoload 'bruce "bruce" "\ 2571(autoload 'bruce "bruce" "\
@@ -2473,7 +2581,7 @@ Return a vector containing the lines from `bruce-phrases-file'.
2473;;;*** 2581;;;***
2474 2582
2475;;;### (autoloads (bs-show bs-customize bs-cycle-previous bs-cycle-next) 2583;;;### (autoloads (bs-show bs-customize bs-cycle-previous bs-cycle-next)
2476;;;;;; "bs" "bs.el" (19775 2027)) 2584;;;;;; "bs" "bs.el" (19865 50420))
2477;;; Generated autoloads from bs.el 2585;;; Generated autoloads from bs.el
2478 2586
2479(autoload 'bs-cycle-next "bs" "\ 2587(autoload 'bs-cycle-next "bs" "\
@@ -2513,7 +2621,7 @@ name of buffer configuration.
2513 2621
2514;;;*** 2622;;;***
2515 2623
2516;;;### (autoloads (bubbles) "bubbles" "play/bubbles.el" (19775 2029)) 2624;;;### (autoloads (bubbles) "bubbles" "play/bubbles.el" (19845 45374))
2517;;; Generated autoloads from play/bubbles.el 2625;;; Generated autoloads from play/bubbles.el
2518 2626
2519(autoload 'bubbles "bubbles" "\ 2627(autoload 'bubbles "bubbles" "\
@@ -2534,26 +2642,8 @@ columns on its right towards the left.
2534 2642
2535;;;*** 2643;;;***
2536 2644
2537;;;### (autoloads (list-buffers) "buff-menu" "buff-menu.el" (19775
2538;;;;;; 2027))
2539;;; Generated autoloads from buff-menu.el
2540
2541(define-key ctl-x-map "" 'list-buffers)
2542
2543(autoload 'list-buffers "buff-menu" "\
2544Display a list of names of existing buffers.
2545The list is displayed in a buffer named `*Buffer List*'.
2546Note that buffers with names starting with spaces are omitted.
2547Non-null optional arg FILES-ONLY means mention only file buffers.
2548
2549For more information, see the function `buffer-menu'.
2550
2551\(fn &optional FILES-ONLY)" t nil)
2552
2553;;;***
2554
2555;;;### (autoloads (bug-reference-prog-mode bug-reference-mode) "bug-reference" 2645;;;### (autoloads (bug-reference-prog-mode bug-reference-mode) "bug-reference"
2556;;;;;; "progmodes/bug-reference.el" (19775 2029)) 2646;;;;;; "progmodes/bug-reference.el" (19845 45374))
2557;;; Generated autoloads from progmodes/bug-reference.el 2647;;; Generated autoloads from progmodes/bug-reference.el
2558 2648
2559(put 'bug-reference-url-format 'safe-local-variable (lambda (s) (or (stringp s) (and (symbolp s) (get s 'bug-reference-url-format))))) 2649(put 'bug-reference-url-format 'safe-local-variable (lambda (s) (or (stringp s) (and (symbolp s) (get s 'bug-reference-url-format)))))
@@ -2574,7 +2664,7 @@ Like `bug-reference-mode', but only buttonize in comments and strings.
2574;;;;;; batch-byte-compile-if-not-done display-call-tree byte-compile 2664;;;;;; batch-byte-compile-if-not-done display-call-tree byte-compile
2575;;;;;; compile-defun byte-compile-file byte-recompile-directory 2665;;;;;; compile-defun byte-compile-file byte-recompile-directory
2576;;;;;; byte-force-recompile byte-compile-enable-warning byte-compile-disable-warning) 2666;;;;;; byte-force-recompile byte-compile-enable-warning byte-compile-disable-warning)
2577;;;;;; "bytecomp" "emacs-lisp/bytecomp.el" (19775 2028)) 2667;;;;;; "bytecomp" "emacs-lisp/bytecomp.el" (19863 8742))
2578;;; Generated autoloads from emacs-lisp/bytecomp.el 2668;;; Generated autoloads from emacs-lisp/bytecomp.el
2579(put 'byte-compile-dynamic 'safe-local-variable 'booleanp) 2669(put 'byte-compile-dynamic 'safe-local-variable 'booleanp)
2580(put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp) 2670(put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp)
@@ -2607,31 +2697,31 @@ Files in subdirectories of DIRECTORY are processed also.
2607\(fn DIRECTORY)" t nil) 2697\(fn DIRECTORY)" t nil)
2608 2698
2609(autoload 'byte-recompile-directory "bytecomp" "\ 2699(autoload 'byte-recompile-directory "bytecomp" "\
2610Recompile every `.el' file in BYTECOMP-DIRECTORY that needs recompilation. 2700Recompile every `.el' file in DIRECTORY that needs recompilation.
2611This happens when a `.elc' file exists but is older than the `.el' file. 2701This happens when a `.elc' file exists but is older than the `.el' file.
2612Files in subdirectories of BYTECOMP-DIRECTORY are processed also. 2702Files in subdirectories of DIRECTORY are processed also.
2613 2703
2614If the `.elc' file does not exist, normally this function *does not* 2704If the `.elc' file does not exist, normally this function *does not*
2615compile the corresponding `.el' file. However, if the prefix argument 2705compile the corresponding `.el' file. However, if the prefix argument
2616BYTECOMP-ARG is 0, that means do compile all those files. A nonzero 2706ARG is 0, that means do compile all those files. A nonzero
2617BYTECOMP-ARG means ask the user, for each such `.el' file, whether to 2707ARG means ask the user, for each such `.el' file, whether to
2618compile it. A nonzero BYTECOMP-ARG also means ask about each subdirectory 2708compile it. A nonzero ARG also means ask about each subdirectory
2619before scanning it. 2709before scanning it.
2620 2710
2621If the third argument BYTECOMP-FORCE is non-nil, recompile every `.el' file 2711If the third argument FORCE is non-nil, recompile every `.el' file
2622that already has a `.elc' file. 2712that already has a `.elc' file.
2623 2713
2624\(fn BYTECOMP-DIRECTORY &optional BYTECOMP-ARG BYTECOMP-FORCE)" t nil) 2714\(fn DIRECTORY &optional ARG FORCE)" t nil)
2625(put 'no-byte-compile 'safe-local-variable 'booleanp) 2715(put 'no-byte-compile 'safe-local-variable 'booleanp)
2626 2716
2627(autoload 'byte-compile-file "bytecomp" "\ 2717(autoload 'byte-compile-file "bytecomp" "\
2628Compile a file of Lisp code named BYTECOMP-FILENAME into a file of byte code. 2718Compile a file of Lisp code named FILENAME into a file of byte code.
2629The output file's name is generated by passing BYTECOMP-FILENAME to the 2719The output file's name is generated by passing FILENAME to the
2630function `byte-compile-dest-file' (which see). 2720function `byte-compile-dest-file' (which see).
2631With prefix arg (noninteractively: 2nd arg), LOAD the file after compiling. 2721With prefix arg (noninteractively: 2nd arg), LOAD the file after compiling.
2632The value is non-nil if there were no errors, nil if errors. 2722The value is non-nil if there were no errors, nil if errors.
2633 2723
2634\(fn BYTECOMP-FILENAME &optional LOAD)" t nil) 2724\(fn FILENAME &optional LOAD)" t nil)
2635 2725
2636(autoload 'compile-defun "bytecomp" "\ 2726(autoload 'compile-defun "bytecomp" "\
2637Compile and evaluate the current top-level form. 2727Compile and evaluate the current top-level form.
@@ -2694,8 +2784,8 @@ and corresponding effects.
2694 2784
2695;;;*** 2785;;;***
2696 2786
2697;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (19775 2787;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (19845
2698;;;;;; 2027)) 2788;;;;;; 45374))
2699;;; Generated autoloads from calendar/cal-china.el 2789;;; Generated autoloads from calendar/cal-china.el
2700 2790
2701(put 'calendar-chinese-time-zone 'risky-local-variable t) 2791(put 'calendar-chinese-time-zone 'risky-local-variable t)
@@ -2704,7 +2794,7 @@ and corresponding effects.
2704 2794
2705;;;*** 2795;;;***
2706 2796
2707;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (19775 2027)) 2797;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (19845 45374))
2708;;; Generated autoloads from calendar/cal-dst.el 2798;;; Generated autoloads from calendar/cal-dst.el
2709 2799
2710(put 'calendar-daylight-savings-starts 'risky-local-variable t) 2800(put 'calendar-daylight-savings-starts 'risky-local-variable t)
@@ -2716,7 +2806,7 @@ and corresponding effects.
2716;;;*** 2806;;;***
2717 2807
2718;;;### (autoloads (calendar-hebrew-list-yahrzeits) "cal-hebrew" "calendar/cal-hebrew.el" 2808;;;### (autoloads (calendar-hebrew-list-yahrzeits) "cal-hebrew" "calendar/cal-hebrew.el"
2719;;;;;; (19775 2027)) 2809;;;;;; (19845 45374))
2720;;; Generated autoloads from calendar/cal-hebrew.el 2810;;; Generated autoloads from calendar/cal-hebrew.el
2721 2811
2722(autoload 'calendar-hebrew-list-yahrzeits "cal-hebrew" "\ 2812(autoload 'calendar-hebrew-list-yahrzeits "cal-hebrew" "\
@@ -2732,8 +2822,8 @@ from the cursor position.
2732 2822
2733;;;### (autoloads (defmath calc-embedded-activate calc-embedded calc-grab-rectangle 2823;;;### (autoloads (defmath calc-embedded-activate calc-embedded calc-grab-rectangle
2734;;;;;; calc-grab-region full-calc-keypad calc-keypad calc-eval quick-calc 2824;;;;;; calc-grab-region full-calc-keypad calc-keypad calc-eval quick-calc
2735;;;;;; full-calc calc calc-dispatch) "calc" "calc/calc.el" (19775 2825;;;;;; full-calc calc calc-dispatch) "calc" "calc/calc.el" (19845
2736;;;;;; 2027)) 2826;;;;;; 45374))
2737;;; Generated autoloads from calc/calc.el 2827;;; Generated autoloads from calc/calc.el
2738 (define-key ctl-x-map "*" 'calc-dispatch) 2828 (define-key ctl-x-map "*" 'calc-dispatch)
2739 2829
@@ -2817,19 +2907,19 @@ See Info node `(calc)Defining Functions'.
2817 2907
2818;;;*** 2908;;;***
2819 2909
2820;;;### (autoloads (calc-undo) "calc-undo" "calc/calc-undo.el" (19775 2910;;;### (autoloads (calc-undo) "calc-undo" "calc/calc-undo.el" (19845
2821;;;;;; 2027)) 2911;;;;;; 45374))
2822;;; Generated autoloads from calc/calc-undo.el 2912;;; Generated autoloads from calc/calc-undo.el
2823 2913
2824(autoload 'calc-undo "calc-undo" "\ 2914(autoload 'calc-undo "calc-undo" "\
2825Not documented 2915
2826 2916
2827\(fn N)" t nil) 2917\(fn N)" t nil)
2828 2918
2829;;;*** 2919;;;***
2830 2920
2831;;;### (autoloads (calculator) "calculator" "calculator.el" (19775 2921;;;### (autoloads (calculator) "calculator" "calculator.el" (19845
2832;;;;;; 2027)) 2922;;;;;; 45374))
2833;;; Generated autoloads from calculator.el 2923;;; Generated autoloads from calculator.el
2834 2924
2835(autoload 'calculator "calculator" "\ 2925(autoload 'calculator "calculator" "\
@@ -2840,8 +2930,8 @@ See the documentation for `calculator-mode' for more information.
2840 2930
2841;;;*** 2931;;;***
2842 2932
2843;;;### (autoloads (calendar) "calendar" "calendar/calendar.el" (19780 2933;;;### (autoloads (calendar) "calendar" "calendar/calendar.el" (19867
2844;;;;;; 4513)) 2934;;;;;; 52471))
2845;;; Generated autoloads from calendar/calendar.el 2935;;; Generated autoloads from calendar/calendar.el
2846 2936
2847(autoload 'calendar "calendar" "\ 2937(autoload 'calendar "calendar" "\
@@ -2885,7 +2975,7 @@ This function is suitable for execution in a .emacs file.
2885;;;*** 2975;;;***
2886 2976
2887;;;### (autoloads (canlock-verify canlock-insert-header) "canlock" 2977;;;### (autoloads (canlock-verify canlock-insert-header) "canlock"
2888;;;;;; "gnus/canlock.el" (19775 2028)) 2978;;;;;; "gnus/canlock.el" (19845 45374))
2889;;; Generated autoloads from gnus/canlock.el 2979;;; Generated autoloads from gnus/canlock.el
2890 2980
2891(autoload 'canlock-insert-header "canlock" "\ 2981(autoload 'canlock-insert-header "canlock" "\
@@ -2903,7 +2993,7 @@ it fails.
2903;;;*** 2993;;;***
2904 2994
2905;;;### (autoloads (capitalized-words-mode) "cap-words" "progmodes/cap-words.el" 2995;;;### (autoloads (capitalized-words-mode) "cap-words" "progmodes/cap-words.el"
2906;;;;;; (19780 4514)) 2996;;;;;; (19845 45374))
2907;;; Generated autoloads from progmodes/cap-words.el 2997;;; Generated autoloads from progmodes/cap-words.el
2908 2998
2909(autoload 'capitalized-words-mode "cap-words" "\ 2999(autoload 'capitalized-words-mode "cap-words" "\
@@ -2938,15 +3028,15 @@ Obsoletes `c-forward-into-nomenclature'.
2938 3028
2939;;;*** 3029;;;***
2940 3030
2941;;;### (autoloads nil "cc-compat" "progmodes/cc-compat.el" (19780 3031;;;### (autoloads nil "cc-compat" "progmodes/cc-compat.el" (19845
2942;;;;;; 4514)) 3032;;;;;; 45374))
2943;;; Generated autoloads from progmodes/cc-compat.el 3033;;; Generated autoloads from progmodes/cc-compat.el
2944(put 'c-indent-level 'safe-local-variable 'integerp) 3034(put 'c-indent-level 'safe-local-variable 'integerp)
2945 3035
2946;;;*** 3036;;;***
2947 3037
2948;;;### (autoloads (c-guess-basic-syntax) "cc-engine" "progmodes/cc-engine.el" 3038;;;### (autoloads (c-guess-basic-syntax) "cc-engine" "progmodes/cc-engine.el"
2949;;;;;; (19780 45051)) 3039;;;;;; (19845 45374))
2950;;; Generated autoloads from progmodes/cc-engine.el 3040;;; Generated autoloads from progmodes/cc-engine.el
2951 3041
2952(autoload 'c-guess-basic-syntax "cc-engine" "\ 3042(autoload 'c-guess-basic-syntax "cc-engine" "\
@@ -2958,7 +3048,7 @@ Return the syntactic context of the current line.
2958 3048
2959;;;### (autoloads (pike-mode idl-mode java-mode objc-mode c++-mode 3049;;;### (autoloads (pike-mode idl-mode java-mode objc-mode c++-mode
2960;;;;;; c-mode c-initialize-cc-mode) "cc-mode" "progmodes/cc-mode.el" 3050;;;;;; c-mode c-initialize-cc-mode) "cc-mode" "progmodes/cc-mode.el"
2961;;;;;; (19775 2029)) 3051;;;;;; (19845 45374))
2962;;; Generated autoloads from progmodes/cc-mode.el 3052;;; Generated autoloads from progmodes/cc-mode.el
2963 3053
2964(autoload 'c-initialize-cc-mode "cc-mode" "\ 3054(autoload 'c-initialize-cc-mode "cc-mode" "\
@@ -3118,7 +3208,7 @@ Key bindings:
3118;;;*** 3208;;;***
3119 3209
3120;;;### (autoloads (c-set-offset c-add-style c-set-style) "cc-styles" 3210;;;### (autoloads (c-set-offset c-add-style c-set-style) "cc-styles"
3121;;;;;; "progmodes/cc-styles.el" (19780 4514)) 3211;;;;;; "progmodes/cc-styles.el" (19845 45374))
3122;;; Generated autoloads from progmodes/cc-styles.el 3212;;; Generated autoloads from progmodes/cc-styles.el
3123 3213
3124(autoload 'c-set-style "cc-styles" "\ 3214(autoload 'c-set-style "cc-styles" "\
@@ -3169,7 +3259,7 @@ and exists only for compatibility reasons.
3169 3259
3170;;;*** 3260;;;***
3171 3261
3172;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (19780 4514)) 3262;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (19845 45374))
3173;;; Generated autoloads from progmodes/cc-vars.el 3263;;; Generated autoloads from progmodes/cc-vars.el
3174(put 'c-basic-offset 'safe-local-variable 'integerp) 3264(put 'c-basic-offset 'safe-local-variable 'integerp)
3175(put 'c-backslash-column 'safe-local-variable 'integerp) 3265(put 'c-backslash-column 'safe-local-variable 'integerp)
@@ -3179,7 +3269,7 @@ and exists only for compatibility reasons.
3179 3269
3180;;;### (autoloads (ccl-execute-with-args check-ccl-program define-ccl-program 3270;;;### (autoloads (ccl-execute-with-args check-ccl-program define-ccl-program
3181;;;;;; declare-ccl-program ccl-dump ccl-compile) "ccl" "international/ccl.el" 3271;;;;;; declare-ccl-program ccl-dump ccl-compile) "ccl" "international/ccl.el"
3182;;;;;; (19775 2028)) 3272;;;;;; (19845 45374))
3183;;; Generated autoloads from international/ccl.el 3273;;; Generated autoloads from international/ccl.el
3184 3274
3185(autoload 'ccl-compile "ccl" "\ 3275(autoload 'ccl-compile "ccl" "\
@@ -3439,8 +3529,23 @@ See the documentation of `define-ccl-program' for the detail of CCL program.
3439 3529
3440;;;*** 3530;;;***
3441 3531
3532;;;### (autoloads (cconv-closure-convert) "cconv" "emacs-lisp/cconv.el"
3533;;;;;; (19863 8742))
3534;;; Generated autoloads from emacs-lisp/cconv.el
3535
3536(autoload 'cconv-closure-convert "cconv" "\
3537Main entry point for closure conversion.
3538-- FORM is a piece of Elisp code after macroexpansion.
3539-- TOPLEVEL(optional) is a boolean variable, true if we are at the root of AST
3540
3541Returns a form where all lambdas don't have any free variables.
3542
3543\(fn FORM)" nil nil)
3544
3545;;;***
3546
3442;;;### (autoloads (cfengine-mode) "cfengine" "progmodes/cfengine.el" 3547;;;### (autoloads (cfengine-mode) "cfengine" "progmodes/cfengine.el"
3443;;;;;; (19780 4514)) 3548;;;;;; (19845 45374))
3444;;; Generated autoloads from progmodes/cfengine.el 3549;;; Generated autoloads from progmodes/cfengine.el
3445 3550
3446(autoload 'cfengine-mode "cfengine" "\ 3551(autoload 'cfengine-mode "cfengine" "\
@@ -3455,7 +3560,7 @@ to the action header.
3455;;;*** 3560;;;***
3456 3561
3457;;;### (autoloads (check-declare-directory check-declare-file) "check-declare" 3562;;;### (autoloads (check-declare-directory check-declare-file) "check-declare"
3458;;;;;; "emacs-lisp/check-declare.el" (19775 2028)) 3563;;;;;; "emacs-lisp/check-declare.el" (19845 45374))
3459;;; Generated autoloads from emacs-lisp/check-declare.el 3564;;; Generated autoloads from emacs-lisp/check-declare.el
3460 3565
3461(autoload 'check-declare-file "check-declare" "\ 3566(autoload 'check-declare-file "check-declare" "\
@@ -3480,7 +3585,7 @@ Returns non-nil if any false statements are found.
3480;;;;;; checkdoc-comments checkdoc-continue checkdoc-start checkdoc-current-buffer 3585;;;;;; checkdoc-comments checkdoc-continue checkdoc-start checkdoc-current-buffer
3481;;;;;; checkdoc-eval-current-buffer checkdoc-message-interactive 3586;;;;;; checkdoc-eval-current-buffer checkdoc-message-interactive
3482;;;;;; checkdoc-interactive checkdoc checkdoc-list-of-strings-p) 3587;;;;;; checkdoc-interactive checkdoc checkdoc-list-of-strings-p)
3483;;;;;; "checkdoc" "emacs-lisp/checkdoc.el" (19775 2028)) 3588;;;;;; "checkdoc" "emacs-lisp/checkdoc.el" (19845 45374))
3484;;; Generated autoloads from emacs-lisp/checkdoc.el 3589;;; Generated autoloads from emacs-lisp/checkdoc.el
3485(put 'checkdoc-force-docstrings-flag 'safe-local-variable 'booleanp) 3590(put 'checkdoc-force-docstrings-flag 'safe-local-variable 'booleanp)
3486(put 'checkdoc-force-history-flag 'safe-local-variable 'booleanp) 3591(put 'checkdoc-force-history-flag 'safe-local-variable 'booleanp)
@@ -3489,7 +3594,7 @@ Returns non-nil if any false statements are found.
3489(put 'checkdoc-symbol-words 'safe-local-variable 'checkdoc-list-of-strings-p) 3594(put 'checkdoc-symbol-words 'safe-local-variable 'checkdoc-list-of-strings-p)
3490 3595
3491(autoload 'checkdoc-list-of-strings-p "checkdoc" "\ 3596(autoload 'checkdoc-list-of-strings-p "checkdoc" "\
3492Not documented 3597
3493 3598
3494\(fn OBJ)" nil nil) 3599\(fn OBJ)" nil nil)
3495 3600
@@ -3675,7 +3780,7 @@ checking of documentation strings.
3675 3780
3676;;;### (autoloads (pre-write-encode-hz post-read-decode-hz encode-hz-buffer 3781;;;### (autoloads (pre-write-encode-hz post-read-decode-hz encode-hz-buffer
3677;;;;;; encode-hz-region decode-hz-buffer decode-hz-region) "china-util" 3782;;;;;; encode-hz-region decode-hz-buffer decode-hz-region) "china-util"
3678;;;;;; "language/china-util.el" (19780 4513)) 3783;;;;;; "language/china-util.el" (19845 45374))
3679;;; Generated autoloads from language/china-util.el 3784;;; Generated autoloads from language/china-util.el
3680 3785
3681(autoload 'decode-hz-region "china-util" "\ 3786(autoload 'decode-hz-region "china-util" "\
@@ -3701,19 +3806,19 @@ Encode the text in the current buffer to HZ.
3701\(fn)" t nil) 3806\(fn)" t nil)
3702 3807
3703(autoload 'post-read-decode-hz "china-util" "\ 3808(autoload 'post-read-decode-hz "china-util" "\
3704Not documented 3809
3705 3810
3706\(fn LEN)" nil nil) 3811\(fn LEN)" nil nil)
3707 3812
3708(autoload 'pre-write-encode-hz "china-util" "\ 3813(autoload 'pre-write-encode-hz "china-util" "\
3709Not documented 3814
3710 3815
3711\(fn FROM TO)" nil nil) 3816\(fn FROM TO)" nil nil)
3712 3817
3713;;;*** 3818;;;***
3714 3819
3715;;;### (autoloads (command-history list-command-history repeat-matching-complex-command) 3820;;;### (autoloads (command-history list-command-history repeat-matching-complex-command)
3716;;;;;; "chistory" "chistory.el" (19775 2027)) 3821;;;;;; "chistory" "chistory.el" (19845 45374))
3717;;; Generated autoloads from chistory.el 3822;;; Generated autoloads from chistory.el
3718 3823
3719(autoload 'repeat-matching-complex-command "chistory" "\ 3824(autoload 'repeat-matching-complex-command "chistory" "\
@@ -3752,7 +3857,7 @@ and runs the normal hook `command-history-hook'.
3752 3857
3753;;;*** 3858;;;***
3754 3859
3755;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (19775 2028)) 3860;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (19863 8742))
3756;;; Generated autoloads from emacs-lisp/cl.el 3861;;; Generated autoloads from emacs-lisp/cl.el
3757 3862
3758(defvar custom-print-functions nil "\ 3863(defvar custom-print-functions nil "\
@@ -3768,7 +3873,7 @@ a future Emacs interpreter will be able to use it.")
3768;;;*** 3873;;;***
3769 3874
3770;;;### (autoloads (common-lisp-indent-function) "cl-indent" "emacs-lisp/cl-indent.el" 3875;;;### (autoloads (common-lisp-indent-function) "cl-indent" "emacs-lisp/cl-indent.el"
3771;;;;;; (19775 2028)) 3876;;;;;; (19845 45374))
3772;;; Generated autoloads from emacs-lisp/cl-indent.el 3877;;; Generated autoloads from emacs-lisp/cl-indent.el
3773 3878
3774(autoload 'common-lisp-indent-function "cl-indent" "\ 3879(autoload 'common-lisp-indent-function "cl-indent" "\
@@ -3847,7 +3952,7 @@ For example, the function `case' has an indent property
3847;;;*** 3952;;;***
3848 3953
3849;;;### (autoloads (c-macro-expand) "cmacexp" "progmodes/cmacexp.el" 3954;;;### (autoloads (c-macro-expand) "cmacexp" "progmodes/cmacexp.el"
3850;;;;;; (19775 2029)) 3955;;;;;; (19845 45374))
3851;;; Generated autoloads from progmodes/cmacexp.el 3956;;; Generated autoloads from progmodes/cmacexp.el
3852 3957
3853(autoload 'c-macro-expand "cmacexp" "\ 3958(autoload 'c-macro-expand "cmacexp" "\
@@ -3867,8 +3972,8 @@ For use inside Lisp programs, see also `c-macro-expansion'.
3867 3972
3868;;;*** 3973;;;***
3869 3974
3870;;;### (autoloads (run-scheme) "cmuscheme" "cmuscheme.el" (19775 3975;;;### (autoloads (run-scheme) "cmuscheme" "cmuscheme.el" (19845
3871;;;;;; 2027)) 3976;;;;;; 45374))
3872;;; Generated autoloads from cmuscheme.el 3977;;; Generated autoloads from cmuscheme.el
3873 3978
3874(autoload 'run-scheme "cmuscheme" "\ 3979(autoload 'run-scheme "cmuscheme" "\
@@ -3889,10 +3994,29 @@ is run).
3889 3994
3890;;;*** 3995;;;***
3891 3996
3997;;;### (autoloads (color-name-to-rgb) "color" "color.el" (19845 45374))
3998;;; Generated autoloads from color.el
3999
4000(autoload 'color-name-to-rgb "color" "\
4001Convert COLOR string to a list of normalized RGB components.
4002COLOR should be a color name (e.g. \"white\") or an RGB triplet
4003string (e.g. \"#ff12ec\").
4004
4005Normally the return value is a list of three floating-point
4006numbers, (RED GREEN BLUE), each between 0.0 and 1.0 inclusive.
4007
4008Optional arg FRAME specifies the frame where the color is to be
4009displayed. If FRAME is omitted or nil, use the selected frame.
4010If FRAME cannot display COLOR, return nil.
4011
4012\(fn COLOR &optional FRAME)" nil nil)
4013
4014;;;***
4015
3892;;;### (autoloads (comint-redirect-results-list-from-process comint-redirect-results-list 4016;;;### (autoloads (comint-redirect-results-list-from-process comint-redirect-results-list
3893;;;;;; comint-redirect-send-command-to-process comint-redirect-send-command 4017;;;;;; comint-redirect-send-command-to-process comint-redirect-send-command
3894;;;;;; comint-run make-comint make-comint-in-buffer) "comint" "comint.el" 4018;;;;;; comint-run make-comint make-comint-in-buffer) "comint" "comint.el"
3895;;;;;; (19775 2027)) 4019;;;;;; (19852 16697))
3896;;; Generated autoloads from comint.el 4020;;; Generated autoloads from comint.el
3897 4021
3898(defvar comint-output-filter-functions '(comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\ 4022(defvar comint-output-filter-functions '(comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\
@@ -3987,7 +4111,7 @@ REGEXP-GROUP is the regular expression group in REGEXP to use.
3987;;;*** 4111;;;***
3988 4112
3989;;;### (autoloads (compare-windows) "compare-w" "vc/compare-w.el" 4113;;;### (autoloads (compare-windows) "compare-w" "vc/compare-w.el"
3990;;;;;; (19780 4514)) 4114;;;;;; (19845 45374))
3991;;; Generated autoloads from vc/compare-w.el 4115;;; Generated autoloads from vc/compare-w.el
3992 4116
3993(autoload 'compare-windows "compare-w" "\ 4117(autoload 'compare-windows "compare-w" "\
@@ -4024,8 +4148,8 @@ on third call it again advances points to the next difference and so on.
4024;;;;;; compilation-shell-minor-mode compilation-mode compilation-start 4148;;;;;; compilation-shell-minor-mode compilation-mode compilation-start
4025;;;;;; compile compilation-disable-input compile-command compilation-search-path 4149;;;;;; compile compilation-disable-input compile-command compilation-search-path
4026;;;;;; compilation-ask-about-save compilation-window-height compilation-start-hook 4150;;;;;; compilation-ask-about-save compilation-window-height compilation-start-hook
4027;;;;;; compilation-mode-hook) "compile" "progmodes/compile.el" (19780 4151;;;;;; compilation-mode-hook) "compile" "progmodes/compile.el" (19845
4028;;;;;; 4514)) 4152;;;;;; 45374))
4029;;; Generated autoloads from progmodes/compile.el 4153;;; Generated autoloads from progmodes/compile.el
4030 4154
4031(defvar compilation-mode-hook nil "\ 4155(defvar compilation-mode-hook nil "\
@@ -4199,7 +4323,7 @@ This is the value of `next-error-function' in Compilation buffers.
4199;;;*** 4323;;;***
4200 4324
4201;;;### (autoloads (dynamic-completion-mode) "completion" "completion.el" 4325;;;### (autoloads (dynamic-completion-mode) "completion" "completion.el"
4202;;;;;; (19780 4513)) 4326;;;;;; (19845 45374))
4203;;; Generated autoloads from completion.el 4327;;; Generated autoloads from completion.el
4204 4328
4205(defvar dynamic-completion-mode nil "\ 4329(defvar dynamic-completion-mode nil "\
@@ -4218,46 +4342,10 @@ Enable dynamic word-completion.
4218 4342
4219;;;*** 4343;;;***
4220 4344
4221;;;### (autoloads (global-auto-composition-mode auto-composition-mode
4222;;;;;; encode-composition-rule) "composite" "composite.el" (19760
4223;;;;;; 54262))
4224;;; Generated autoloads from composite.el
4225
4226(autoload 'encode-composition-rule "composite" "\
4227Encode composition rule RULE into an integer value.
4228RULE is a cons of global and new reference point symbols
4229\(see `reference-point-alist').
4230
4231\(fn RULE)" nil nil)
4232
4233(autoload 'auto-composition-mode "composite" "\
4234Toggle Auto Composition mode.
4235With ARG, turn Auto Composition mode off if and only if ARG is a non-positive
4236number; if ARG is nil, toggle Auto Composition mode; anything else turns Auto
4237Composition on.
4238
4239When Auto Composition is enabled, text characters are automatically composed
4240by functions registered in `composition-function-table' (which see).
4241
4242You can use `global-auto-composition-mode' to turn on
4243Auto Composition mode in all buffers (this is the default).
4244
4245\(fn &optional ARG)" t nil)
4246
4247(autoload 'global-auto-composition-mode "composite" "\
4248Toggle Auto-Composition mode in every possible buffer.
4249With prefix arg, turn Global-Auto-Composition mode on if and only if arg
4250is positive.
4251See `auto-composition-mode' for more information on Auto-Composition mode.
4252
4253\(fn &optional ARG)" t nil)
4254
4255;;;***
4256
4257;;;### (autoloads (conf-xdefaults-mode conf-ppd-mode conf-colon-mode 4345;;;### (autoloads (conf-xdefaults-mode conf-ppd-mode conf-colon-mode
4258;;;;;; conf-space-keywords conf-space-mode conf-javaprop-mode conf-windows-mode 4346;;;;;; conf-space-keywords conf-space-mode conf-javaprop-mode conf-windows-mode
4259;;;;;; conf-unix-mode conf-mode) "conf-mode" "textmodes/conf-mode.el" 4347;;;;;; conf-unix-mode conf-mode) "conf-mode" "textmodes/conf-mode.el"
4260;;;;;; (19780 4514)) 4348;;;;;; (19845 45374))
4261;;; Generated autoloads from textmodes/conf-mode.el 4349;;; Generated autoloads from textmodes/conf-mode.el
4262 4350
4263(autoload 'conf-mode "conf-mode" "\ 4351(autoload 'conf-mode "conf-mode" "\
@@ -4413,7 +4501,7 @@ For details see `conf-mode'. Example:
4413;;;*** 4501;;;***
4414 4502
4415;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) 4503;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie)
4416;;;;;; "cookie1" "play/cookie1.el" (19775 2029)) 4504;;;;;; "cookie1" "play/cookie1.el" (19845 45374))
4417;;; Generated autoloads from play/cookie1.el 4505;;; Generated autoloads from play/cookie1.el
4418 4506
4419(autoload 'cookie "cookie1" "\ 4507(autoload 'cookie "cookie1" "\
@@ -4445,8 +4533,8 @@ Randomly permute the elements of VECTOR (all permutations equally likely).
4445;;;*** 4533;;;***
4446 4534
4447;;;### (autoloads (copyright-update-directory copyright copyright-fix-years 4535;;;### (autoloads (copyright-update-directory copyright copyright-fix-years
4448;;;;;; copyright-update) "copyright" "emacs-lisp/copyright.el" (19780 4536;;;;;; copyright-update) "copyright" "emacs-lisp/copyright.el" (19845
4449;;;;;; 4513)) 4537;;;;;; 45374))
4450;;; Generated autoloads from emacs-lisp/copyright.el 4538;;; Generated autoloads from emacs-lisp/copyright.el
4451(put 'copyright-at-end-flag 'safe-local-variable 'booleanp) 4539(put 'copyright-at-end-flag 'safe-local-variable 'booleanp)
4452(put 'copyright-names-regexp 'safe-local-variable 'stringp) 4540(put 'copyright-names-regexp 'safe-local-variable 'stringp)
@@ -4485,7 +4573,7 @@ If FIX is non-nil, run `copyright-fix-years' instead.
4485;;;*** 4573;;;***
4486 4574
4487;;;### (autoloads (cperl-perldoc-at-point cperl-perldoc cperl-mode) 4575;;;### (autoloads (cperl-perldoc-at-point cperl-perldoc cperl-mode)
4488;;;;;; "cperl-mode" "progmodes/cperl-mode.el" (19775 2029)) 4576;;;;;; "cperl-mode" "progmodes/cperl-mode.el" (19845 45374))
4489;;; Generated autoloads from progmodes/cperl-mode.el 4577;;; Generated autoloads from progmodes/cperl-mode.el
4490(put 'cperl-indent-level 'safe-local-variable 'integerp) 4578(put 'cperl-indent-level 'safe-local-variable 'integerp)
4491(put 'cperl-brace-offset 'safe-local-variable 'integerp) 4579(put 'cperl-brace-offset 'safe-local-variable 'integerp)
@@ -4684,7 +4772,7 @@ Run a `perldoc' on the word around point.
4684;;;*** 4772;;;***
4685 4773
4686;;;### (autoloads (cpp-parse-edit cpp-highlight-buffer) "cpp" "progmodes/cpp.el" 4774;;;### (autoloads (cpp-parse-edit cpp-highlight-buffer) "cpp" "progmodes/cpp.el"
4687;;;;;; (19780 4514)) 4775;;;;;; (19845 45374))
4688;;; Generated autoloads from progmodes/cpp.el 4776;;; Generated autoloads from progmodes/cpp.el
4689 4777
4690(autoload 'cpp-highlight-buffer "cpp" "\ 4778(autoload 'cpp-highlight-buffer "cpp" "\
@@ -4703,7 +4791,7 @@ Edit display information for cpp conditionals.
4703;;;*** 4791;;;***
4704 4792
4705;;;### (autoloads (crisp-mode crisp-mode) "crisp" "emulation/crisp.el" 4793;;;### (autoloads (crisp-mode crisp-mode) "crisp" "emulation/crisp.el"
4706;;;;;; (19775 2028)) 4794;;;;;; (19845 45374))
4707;;; Generated autoloads from emulation/crisp.el 4795;;; Generated autoloads from emulation/crisp.el
4708 4796
4709(defvar crisp-mode nil "\ 4797(defvar crisp-mode nil "\
@@ -4727,7 +4815,7 @@ With ARG, turn CRiSP mode on if ARG is positive, off otherwise.
4727;;;*** 4815;;;***
4728 4816
4729;;;### (autoloads (completing-read-multiple) "crm" "emacs-lisp/crm.el" 4817;;;### (autoloads (completing-read-multiple) "crm" "emacs-lisp/crm.el"
4730;;;;;; (19775 2028)) 4818;;;;;; (19845 45374))
4731;;; Generated autoloads from emacs-lisp/crm.el 4819;;; Generated autoloads from emacs-lisp/crm.el
4732 4820
4733(autoload 'completing-read-multiple "crm" "\ 4821(autoload 'completing-read-multiple "crm" "\
@@ -4762,8 +4850,8 @@ INHERIT-INPUT-METHOD.
4762 4850
4763;;;*** 4851;;;***
4764 4852
4765;;;### (autoloads (css-mode) "css-mode" "textmodes/css-mode.el" (19775 4853;;;### (autoloads (css-mode) "css-mode" "textmodes/css-mode.el" (19863
4766;;;;;; 2030)) 4854;;;;;; 8742))
4767;;; Generated autoloads from textmodes/css-mode.el 4855;;; Generated autoloads from textmodes/css-mode.el
4768 4856
4769(autoload 'css-mode "css-mode" "\ 4857(autoload 'css-mode "css-mode" "\
@@ -4774,7 +4862,7 @@ Major mode to edit Cascading Style Sheets.
4774;;;*** 4862;;;***
4775 4863
4776;;;### (autoloads (cua-selection-mode cua-mode) "cua-base" "emulation/cua-base.el" 4864;;;### (autoloads (cua-selection-mode cua-mode) "cua-base" "emulation/cua-base.el"
4777;;;;;; (19775 2028)) 4865;;;;;; (19845 45374))
4778;;; Generated autoloads from emulation/cua-base.el 4866;;; Generated autoloads from emulation/cua-base.el
4779 4867
4780(defvar cua-mode nil "\ 4868(defvar cua-mode nil "\
@@ -4833,7 +4921,7 @@ Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings.
4833;;;;;; customize-mode customize customize-save-variable customize-set-variable 4921;;;;;; customize-mode customize customize-save-variable customize-set-variable
4834;;;;;; customize-set-value custom-menu-sort-alphabetically custom-buffer-sort-alphabetically 4922;;;;;; customize-set-value custom-menu-sort-alphabetically custom-buffer-sort-alphabetically
4835;;;;;; custom-browse-sort-alphabetically) "cus-edit" "cus-edit.el" 4923;;;;;; custom-browse-sort-alphabetically) "cus-edit" "cus-edit.el"
4836;;;;;; (19775 2027)) 4924;;;;;; (19845 45374))
4837;;; Generated autoloads from cus-edit.el 4925;;; Generated autoloads from cus-edit.el
4838 4926
4839(defvar custom-browse-sort-alphabetically nil "\ 4927(defvar custom-browse-sort-alphabetically nil "\
@@ -5135,8 +5223,9 @@ The format is suitable for use with `easy-menu-define'.
5135 5223
5136;;;*** 5224;;;***
5137 5225
5138;;;### (autoloads (customize-themes describe-theme customize-create-theme) 5226;;;### (autoloads (customize-themes describe-theme custom-theme-visit-theme
5139;;;;;; "cus-theme" "cus-theme.el" (19775 2028)) 5227;;;;;; customize-create-theme) "cus-theme" "cus-theme.el" (19848
5228;;;;;; 8443))
5140;;; Generated autoloads from cus-theme.el 5229;;; Generated autoloads from cus-theme.el
5141 5230
5142(autoload 'customize-create-theme "cus-theme" "\ 5231(autoload 'customize-create-theme "cus-theme" "\
@@ -5148,6 +5237,11 @@ named *Custom Theme*.
5148 5237
5149\(fn &optional THEME BUFFER)" t nil) 5238\(fn &optional THEME BUFFER)" t nil)
5150 5239
5240(autoload 'custom-theme-visit-theme "cus-theme" "\
5241Set up a Custom buffer to edit custom theme THEME.
5242
5243\(fn THEME)" t nil)
5244
5151(autoload 'describe-theme "cus-theme" "\ 5245(autoload 'describe-theme "cus-theme" "\
5152Display a description of the Custom theme THEME (a symbol). 5246Display a description of the Custom theme THEME (a symbol).
5153 5247
@@ -5163,7 +5257,7 @@ omitted, a buffer named *Custom Themes* is used.
5163;;;*** 5257;;;***
5164 5258
5165;;;### (autoloads (cvs-status-mode) "cvs-status" "vc/cvs-status.el" 5259;;;### (autoloads (cvs-status-mode) "cvs-status" "vc/cvs-status.el"
5166;;;;;; (19775 2030)) 5260;;;;;; (19863 8742))
5167;;; Generated autoloads from vc/cvs-status.el 5261;;; Generated autoloads from vc/cvs-status.el
5168 5262
5169(autoload 'cvs-status-mode "cvs-status" "\ 5263(autoload 'cvs-status-mode "cvs-status" "\
@@ -5174,7 +5268,7 @@ Mode used for cvs status output.
5174;;;*** 5268;;;***
5175 5269
5176;;;### (autoloads (global-cwarn-mode turn-on-cwarn-mode cwarn-mode) 5270;;;### (autoloads (global-cwarn-mode turn-on-cwarn-mode cwarn-mode)
5177;;;;;; "cwarn" "progmodes/cwarn.el" (19780 4514)) 5271;;;;;; "cwarn" "progmodes/cwarn.el" (19845 45374))
5178;;; Generated autoloads from progmodes/cwarn.el 5272;;; Generated autoloads from progmodes/cwarn.el
5179 5273
5180(autoload 'cwarn-mode "cwarn" "\ 5274(autoload 'cwarn-mode "cwarn" "\
@@ -5221,7 +5315,7 @@ See `cwarn-mode' for more information on Cwarn mode.
5221 5315
5222;;;### (autoloads (standard-display-cyrillic-translit cyrillic-encode-alternativnyj-char 5316;;;### (autoloads (standard-display-cyrillic-translit cyrillic-encode-alternativnyj-char
5223;;;;;; cyrillic-encode-koi8-r-char) "cyril-util" "language/cyril-util.el" 5317;;;;;; cyrillic-encode-koi8-r-char) "cyril-util" "language/cyril-util.el"
5224;;;;;; (19775 2028)) 5318;;;;;; (19845 45374))
5225;;; Generated autoloads from language/cyril-util.el 5319;;; Generated autoloads from language/cyril-util.el
5226 5320
5227(autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\ 5321(autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\
@@ -5250,7 +5344,7 @@ If the argument is nil, we return the display table to its standard state.
5250;;;*** 5344;;;***
5251 5345
5252;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "dabbrev.el" 5346;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "dabbrev.el"
5253;;;;;; (19775 2028)) 5347;;;;;; (19845 45374))
5254;;; Generated autoloads from dabbrev.el 5348;;; Generated autoloads from dabbrev.el
5255(put 'dabbrev-case-fold-search 'risky-local-variable t) 5349(put 'dabbrev-case-fold-search 'risky-local-variable t)
5256(put 'dabbrev-case-replace 'risky-local-variable t) 5350(put 'dabbrev-case-replace 'risky-local-variable t)
@@ -5297,7 +5391,7 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion].
5297;;;*** 5391;;;***
5298 5392
5299;;;### (autoloads (data-debug-new-buffer) "data-debug" "cedet/data-debug.el" 5393;;;### (autoloads (data-debug-new-buffer) "data-debug" "cedet/data-debug.el"
5300;;;;;; (19775 2027)) 5394;;;;;; (19845 45374))
5301;;; Generated autoloads from cedet/data-debug.el 5395;;; Generated autoloads from cedet/data-debug.el
5302 5396
5303(autoload 'data-debug-new-buffer "data-debug" "\ 5397(autoload 'data-debug-new-buffer "data-debug" "\
@@ -5307,8 +5401,8 @@ Create a new data-debug buffer with NAME.
5307 5401
5308;;;*** 5402;;;***
5309 5403
5310;;;### (autoloads (dbus-handle-event) "dbus" "net/dbus.el" (19775 5404;;;### (autoloads (dbus-handle-event) "dbus" "net/dbus.el" (19845
5311;;;;;; 2029)) 5405;;;;;; 45374))
5312;;; Generated autoloads from net/dbus.el 5406;;; Generated autoloads from net/dbus.el
5313 5407
5314(autoload 'dbus-handle-event "dbus" "\ 5408(autoload 'dbus-handle-event "dbus" "\
@@ -5321,8 +5415,8 @@ If the HANDLER returns a `dbus-error', it is propagated as return message.
5321 5415
5322;;;*** 5416;;;***
5323 5417
5324;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (19775 5418;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (19845
5325;;;;;; 2029)) 5419;;;;;; 45374))
5326;;; Generated autoloads from progmodes/dcl-mode.el 5420;;; Generated autoloads from progmodes/dcl-mode.el
5327 5421
5328(autoload 'dcl-mode "dcl-mode" "\ 5422(autoload 'dcl-mode "dcl-mode" "\
@@ -5449,7 +5543,7 @@ There is some minimal font-lock support (see vars
5449;;;*** 5543;;;***
5450 5544
5451;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" 5545;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug"
5452;;;;;; "emacs-lisp/debug.el" (19775 2028)) 5546;;;;;; "emacs-lisp/debug.el" (19845 45374))
5453;;; Generated autoloads from emacs-lisp/debug.el 5547;;; Generated autoloads from emacs-lisp/debug.el
5454 5548
5455(setq debugger 'debug) 5549(setq debugger 'debug)
@@ -5493,7 +5587,7 @@ To specify a nil argument interactively, exit with an empty minibuffer.
5493;;;*** 5587;;;***
5494 5588
5495;;;### (autoloads (decipher-mode decipher) "decipher" "play/decipher.el" 5589;;;### (autoloads (decipher-mode decipher) "decipher" "play/decipher.el"
5496;;;;;; (19775 2029)) 5590;;;;;; (19845 45374))
5497;;; Generated autoloads from play/decipher.el 5591;;; Generated autoloads from play/decipher.el
5498 5592
5499(autoload 'decipher "decipher" "\ 5593(autoload 'decipher "decipher" "\
@@ -5522,8 +5616,8 @@ The most useful commands are:
5522;;;*** 5616;;;***
5523 5617
5524;;;### (autoloads (delimit-columns-rectangle delimit-columns-region 5618;;;### (autoloads (delimit-columns-rectangle delimit-columns-region
5525;;;;;; delimit-columns-customize) "delim-col" "delim-col.el" (19775 5619;;;;;; delimit-columns-customize) "delim-col" "delim-col.el" (19845
5526;;;;;; 2028)) 5620;;;;;; 45374))
5527;;; Generated autoloads from delim-col.el 5621;;; Generated autoloads from delim-col.el
5528 5622
5529(autoload 'delimit-columns-customize "delim-col" "\ 5623(autoload 'delimit-columns-customize "delim-col" "\
@@ -5547,8 +5641,8 @@ START and END delimits the corners of text rectangle.
5547 5641
5548;;;*** 5642;;;***
5549 5643
5550;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (19775 5644;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (19845
5551;;;;;; 2029)) 5645;;;;;; 45374))
5552;;; Generated autoloads from progmodes/delphi.el 5646;;; Generated autoloads from progmodes/delphi.el
5553 5647
5554(autoload 'delphi-mode "delphi" "\ 5648(autoload 'delphi-mode "delphi" "\
@@ -5559,7 +5653,7 @@ Major mode for editing Delphi code. \\<delphi-mode-map>
5559\\[delphi-fill-comment] - Fill the current comment. 5653\\[delphi-fill-comment] - Fill the current comment.
5560\\[delphi-new-comment-line] - If in a // comment, do a new comment line. 5654\\[delphi-new-comment-line] - If in a // comment, do a new comment line.
5561 5655
5562M-x indent-region also works for indenting a whole region. 5656\\[indent-region] also works for indenting a whole region.
5563 5657
5564Customization: 5658Customization:
5565 5659
@@ -5579,28 +5673,28 @@ Customization:
5579 `delphi-search-path' (default .) 5673 `delphi-search-path' (default .)
5580 Directories to search when finding external units. 5674 Directories to search when finding external units.
5581 `delphi-verbose' (default nil) 5675 `delphi-verbose' (default nil)
5582 If true then delphi token processing progress is reported to the user. 5676 If true then Delphi token processing progress is reported to the user.
5583 5677
5584Coloring: 5678Coloring:
5585 5679
5586 `delphi-comment-face' (default font-lock-comment-face) 5680 `delphi-comment-face' (default font-lock-comment-face)
5587 Face used to color delphi comments. 5681 Face used to color Delphi comments.
5588 `delphi-string-face' (default font-lock-string-face) 5682 `delphi-string-face' (default font-lock-string-face)
5589 Face used to color delphi strings. 5683 Face used to color Delphi strings.
5590 `delphi-keyword-face' (default font-lock-keyword-face) 5684 `delphi-keyword-face' (default font-lock-keyword-face)
5591 Face used to color delphi keywords. 5685 Face used to color Delphi keywords.
5592 `delphi-other-face' (default nil) 5686 `delphi-other-face' (default nil)
5593 Face used to color everything else. 5687 Face used to color everything else.
5594 5688
5595Turning on Delphi mode calls the value of the variable delphi-mode-hook with 5689Turning on Delphi mode calls the value of the variable `delphi-mode-hook'
5596no args, if that value is non-nil. 5690with no args, if that value is non-nil.
5597 5691
5598\(fn &optional SKIP-INITIAL-PARSING)" t nil) 5692\(fn &optional SKIP-INITIAL-PARSING)" t nil)
5599 5693
5600;;;*** 5694;;;***
5601 5695
5602;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (19775 5696;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (19845
5603;;;;;; 2028)) 5697;;;;;; 45374))
5604;;; Generated autoloads from delsel.el 5698;;; Generated autoloads from delsel.el
5605 5699
5606(defalias 'pending-delete-mode 'delete-selection-mode) 5700(defalias 'pending-delete-mode 'delete-selection-mode)
@@ -5629,7 +5723,7 @@ any selection.
5629;;;*** 5723;;;***
5630 5724
5631;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) 5725;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode)
5632;;;;;; "derived" "emacs-lisp/derived.el" (19775 2028)) 5726;;;;;; "derived" "emacs-lisp/derived.el" (19849 29307))
5633;;; Generated autoloads from emacs-lisp/derived.el 5727;;; Generated autoloads from emacs-lisp/derived.el
5634 5728
5635(autoload 'define-derived-mode "derived" "\ 5729(autoload 'define-derived-mode "derived" "\
@@ -5696,7 +5790,7 @@ the first time the mode is used.
5696;;;*** 5790;;;***
5697 5791
5698;;;### (autoloads (describe-char describe-text-properties) "descr-text" 5792;;;### (autoloads (describe-char describe-text-properties) "descr-text"
5699;;;;;; "descr-text.el" (19775 2028)) 5793;;;;;; "descr-text.el" (19845 45374))
5700;;; Generated autoloads from descr-text.el 5794;;; Generated autoloads from descr-text.el
5701 5795
5702(autoload 'describe-text-properties "descr-text" "\ 5796(autoload 'describe-text-properties "descr-text" "\
@@ -5724,7 +5818,7 @@ as well as widgets, buttons, overlays, and text properties.
5724;;;### (autoloads (desktop-revert desktop-save-in-desktop-dir desktop-change-dir 5818;;;### (autoloads (desktop-revert desktop-save-in-desktop-dir desktop-change-dir
5725;;;;;; desktop-load-default desktop-read desktop-remove desktop-save 5819;;;;;; desktop-load-default desktop-read desktop-remove desktop-save
5726;;;;;; desktop-clear desktop-locals-to-save desktop-save-mode) "desktop" 5820;;;;;; desktop-clear desktop-locals-to-save desktop-save-mode) "desktop"
5727;;;;;; "desktop.el" (19780 4513)) 5821;;;;;; "desktop.el" (19845 45374))
5728;;; Generated autoloads from desktop.el 5822;;; Generated autoloads from desktop.el
5729 5823
5730(defvar desktop-save-mode nil "\ 5824(defvar desktop-save-mode nil "\
@@ -5908,7 +6002,7 @@ Revert to the last loaded desktop.
5908 6002
5909;;;### (autoloads (gnus-article-outlook-deuglify-article gnus-outlook-deuglify-article 6003;;;### (autoloads (gnus-article-outlook-deuglify-article gnus-outlook-deuglify-article
5910;;;;;; gnus-article-outlook-repair-attribution gnus-article-outlook-unwrap-lines) 6004;;;;;; gnus-article-outlook-repair-attribution gnus-article-outlook-unwrap-lines)
5911;;;;;; "deuglify" "gnus/deuglify.el" (19780 4513)) 6005;;;;;; "deuglify" "gnus/deuglify.el" (19845 45374))
5912;;; Generated autoloads from gnus/deuglify.el 6006;;; Generated autoloads from gnus/deuglify.el
5913 6007
5914(autoload 'gnus-article-outlook-unwrap-lines "deuglify" "\ 6008(autoload 'gnus-article-outlook-unwrap-lines "deuglify" "\
@@ -5941,7 +6035,7 @@ Deuglify broken Outlook (Express) articles and redisplay.
5941;;;*** 6035;;;***
5942 6036
5943;;;### (autoloads (diary-mode diary-mail-entries diary) "diary-lib" 6037;;;### (autoloads (diary-mode diary-mail-entries diary) "diary-lib"
5944;;;;;; "calendar/diary-lib.el" (19775 2027)) 6038;;;;;; "calendar/diary-lib.el" (19845 45374))
5945;;; Generated autoloads from calendar/diary-lib.el 6039;;; Generated autoloads from calendar/diary-lib.el
5946 6040
5947(autoload 'diary "diary-lib" "\ 6041(autoload 'diary "diary-lib" "\
@@ -5984,7 +6078,7 @@ Major mode for editing the diary file.
5984;;;*** 6078;;;***
5985 6079
5986;;;### (autoloads (diff-buffer-with-file diff-backup diff diff-command 6080;;;### (autoloads (diff-buffer-with-file diff-backup diff diff-command
5987;;;;;; diff-switches) "diff" "vc/diff.el" (19775 2030)) 6081;;;;;; diff-switches) "diff" "vc/diff.el" (19845 45374))
5988;;; Generated autoloads from vc/diff.el 6082;;; Generated autoloads from vc/diff.el
5989 6083
5990(defvar diff-switches (purecopy "-c") "\ 6084(defvar diff-switches (purecopy "-c") "\
@@ -6028,7 +6122,7 @@ This requires the external program `diff' to be in your `exec-path'.
6028;;;*** 6122;;;***
6029 6123
6030;;;### (autoloads (diff-minor-mode diff-mode) "diff-mode" "vc/diff-mode.el" 6124;;;### (autoloads (diff-minor-mode diff-mode) "diff-mode" "vc/diff-mode.el"
6031;;;;;; (19775 2030)) 6125;;;;;; (19863 8742))
6032;;; Generated autoloads from vc/diff-mode.el 6126;;; Generated autoloads from vc/diff-mode.el
6033 6127
6034(autoload 'diff-mode "diff-mode" "\ 6128(autoload 'diff-mode "diff-mode" "\
@@ -6056,7 +6150,7 @@ Minor mode for viewing/editing context diffs.
6056 6150
6057;;;*** 6151;;;***
6058 6152
6059;;;### (autoloads (dig) "dig" "net/dig.el" (19775 2029)) 6153;;;### (autoloads (dig) "dig" "net/dig.el" (19845 45374))
6060;;; Generated autoloads from net/dig.el 6154;;; Generated autoloads from net/dig.el
6061 6155
6062(autoload 'dig "dig" "\ 6156(autoload 'dig "dig" "\
@@ -6068,7 +6162,7 @@ Optional arguments are passed to `dig-invoke'.
6068;;;*** 6162;;;***
6069 6163
6070;;;### (autoloads (dired-mode dired-noselect dired-other-frame dired-other-window 6164;;;### (autoloads (dired-mode dired-noselect dired-other-frame dired-other-window
6071;;;;;; dired dired-listing-switches) "dired" "dired.el" (19780 4513)) 6165;;;;;; dired dired-listing-switches) "dired" "dired.el" (19865 50420))
6072;;; Generated autoloads from dired.el 6166;;; Generated autoloads from dired.el
6073 6167
6074(defvar dired-listing-switches (purecopy "-al") "\ 6168(defvar dired-listing-switches (purecopy "-al") "\
@@ -6191,7 +6285,7 @@ Keybindings:
6191;;;*** 6285;;;***
6192 6286
6193;;;### (autoloads (dirtrack dirtrack-mode) "dirtrack" "dirtrack.el" 6287;;;### (autoloads (dirtrack dirtrack-mode) "dirtrack" "dirtrack.el"
6194;;;;;; (19775 2028)) 6288;;;;;; (19845 45374))
6195;;; Generated autoloads from dirtrack.el 6289;;; Generated autoloads from dirtrack.el
6196 6290
6197(autoload 'dirtrack-mode "dirtrack" "\ 6291(autoload 'dirtrack-mode "dirtrack" "\
@@ -6217,8 +6311,8 @@ function `dirtrack-debug-mode' to turn on debugging output.
6217 6311
6218;;;*** 6312;;;***
6219 6313
6220;;;### (autoloads (disassemble) "disass" "emacs-lisp/disass.el" (19775 6314;;;### (autoloads (disassemble) "disass" "emacs-lisp/disass.el" (19863
6221;;;;;; 2028)) 6315;;;;;; 8742))
6222;;; Generated autoloads from emacs-lisp/disass.el 6316;;; Generated autoloads from emacs-lisp/disass.el
6223 6317
6224(autoload 'disassemble "disass" "\ 6318(autoload 'disassemble "disass" "\
@@ -6237,7 +6331,7 @@ redefine OBJECT if it is a symbol.
6237;;;;;; standard-display-g1 standard-display-ascii standard-display-default 6331;;;;;; standard-display-g1 standard-display-ascii standard-display-default
6238;;;;;; standard-display-8bit describe-current-display-table describe-display-table 6332;;;;;; standard-display-8bit describe-current-display-table describe-display-table
6239;;;;;; set-display-table-slot display-table-slot make-display-table) 6333;;;;;; set-display-table-slot display-table-slot make-display-table)
6240;;;;;; "disp-table" "disp-table.el" (19780 4513)) 6334;;;;;; "disp-table" "disp-table.el" (19845 45374))
6241;;; Generated autoloads from disp-table.el 6335;;; Generated autoloads from disp-table.el
6242 6336
6243(autoload 'make-display-table "disp-table" "\ 6337(autoload 'make-display-table "disp-table" "\
@@ -6359,7 +6453,7 @@ in `.emacs'.
6359;;;*** 6453;;;***
6360 6454
6361;;;### (autoloads (dissociated-press) "dissociate" "play/dissociate.el" 6455;;;### (autoloads (dissociated-press) "dissociate" "play/dissociate.el"
6362;;;;;; (19775 2029)) 6456;;;;;; (19845 45374))
6363;;; Generated autoloads from play/dissociate.el 6457;;; Generated autoloads from play/dissociate.el
6364 6458
6365(autoload 'dissociated-press "dissociate" "\ 6459(autoload 'dissociated-press "dissociate" "\
@@ -6375,7 +6469,7 @@ Default is 2.
6375 6469
6376;;;*** 6470;;;***
6377 6471
6378;;;### (autoloads (dnd-protocol-alist) "dnd" "dnd.el" (19780 4513)) 6472;;;### (autoloads (dnd-protocol-alist) "dnd" "dnd.el" (19845 45374))
6379;;; Generated autoloads from dnd.el 6473;;; Generated autoloads from dnd.el
6380 6474
6381(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)) "\ 6475(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)) "\
@@ -6396,7 +6490,7 @@ if some action was made, or nil if the URL is ignored.")
6396;;;*** 6490;;;***
6397 6491
6398;;;### (autoloads (dns-mode-soa-increment-serial dns-mode) "dns-mode" 6492;;;### (autoloads (dns-mode-soa-increment-serial dns-mode) "dns-mode"
6399;;;;;; "textmodes/dns-mode.el" (19780 4514)) 6493;;;;;; "textmodes/dns-mode.el" (19845 45374))
6400;;; Generated autoloads from textmodes/dns-mode.el 6494;;; Generated autoloads from textmodes/dns-mode.el
6401 6495
6402(autoload 'dns-mode "dns-mode" "\ 6496(autoload 'dns-mode "dns-mode" "\
@@ -6420,8 +6514,8 @@ Locate SOA record and increment the serial field.
6420;;;*** 6514;;;***
6421 6515
6422;;;### (autoloads (doc-view-bookmark-jump doc-view-minor-mode doc-view-mode-maybe 6516;;;### (autoloads (doc-view-bookmark-jump doc-view-minor-mode doc-view-mode-maybe
6423;;;;;; doc-view-mode doc-view-mode-p) "doc-view" "doc-view.el" (19775 6517;;;;;; doc-view-mode doc-view-mode-p) "doc-view" "doc-view.el" (19863
6424;;;;;; 2028)) 6518;;;;;; 8742))
6425;;; Generated autoloads from doc-view.el 6519;;; Generated autoloads from doc-view.el
6426 6520
6427(autoload 'doc-view-mode-p "doc-view" "\ 6521(autoload 'doc-view-mode-p "doc-view" "\
@@ -6458,13 +6552,13 @@ See the command `doc-view-mode' for more information on this mode.
6458\(fn &optional ARG)" t nil) 6552\(fn &optional ARG)" t nil)
6459 6553
6460(autoload 'doc-view-bookmark-jump "doc-view" "\ 6554(autoload 'doc-view-bookmark-jump "doc-view" "\
6461Not documented 6555
6462 6556
6463\(fn BMK)" nil nil) 6557\(fn BMK)" nil nil)
6464 6558
6465;;;*** 6559;;;***
6466 6560
6467;;;### (autoloads (doctor) "doctor" "play/doctor.el" (19780 4514)) 6561;;;### (autoloads (doctor) "doctor" "play/doctor.el" (19845 45374))
6468;;; Generated autoloads from play/doctor.el 6562;;; Generated autoloads from play/doctor.el
6469 6563
6470(autoload 'doctor "doctor" "\ 6564(autoload 'doctor "doctor" "\
@@ -6474,7 +6568,7 @@ Switch to *doctor* buffer and start giving psychotherapy.
6474 6568
6475;;;*** 6569;;;***
6476 6570
6477;;;### (autoloads (double-mode) "double" "double.el" (19775 2028)) 6571;;;### (autoloads (double-mode) "double" "double.el" (19845 45374))
6478;;; Generated autoloads from double.el 6572;;; Generated autoloads from double.el
6479 6573
6480(autoload 'double-mode "double" "\ 6574(autoload 'double-mode "double" "\
@@ -6489,7 +6583,7 @@ when pressed twice. See variable `double-map' for details.
6489 6583
6490;;;*** 6584;;;***
6491 6585
6492;;;### (autoloads (dunnet) "dunnet" "play/dunnet.el" (19775 2029)) 6586;;;### (autoloads (dunnet) "dunnet" "play/dunnet.el" (19845 45374))
6493;;; Generated autoloads from play/dunnet.el 6587;;; Generated autoloads from play/dunnet.el
6494 6588
6495(autoload 'dunnet "dunnet" "\ 6589(autoload 'dunnet "dunnet" "\
@@ -6501,7 +6595,7 @@ Switch to *dungeon* buffer and start game.
6501 6595
6502;;;### (autoloads (easy-mmode-defsyntax easy-mmode-defmap easy-mmode-define-keymap 6596;;;### (autoloads (easy-mmode-defsyntax easy-mmode-defmap easy-mmode-define-keymap
6503;;;;;; define-globalized-minor-mode define-minor-mode) "easy-mmode" 6597;;;;;; define-globalized-minor-mode define-minor-mode) "easy-mmode"
6504;;;;;; "emacs-lisp/easy-mmode.el" (19775 2028)) 6598;;;;;; "emacs-lisp/easy-mmode.el" (19845 45374))
6505;;; Generated autoloads from emacs-lisp/easy-mmode.el 6599;;; Generated autoloads from emacs-lisp/easy-mmode.el
6506 6600
6507(defalias 'easy-mmode-define-minor-mode 'define-minor-mode) 6601(defalias 'easy-mmode-define-minor-mode 'define-minor-mode)
@@ -6611,8 +6705,8 @@ CSS contains a list of syntax specifications of the form (CHAR . SYNTAX).
6611;;;*** 6705;;;***
6612 6706
6613;;;### (autoloads (easy-menu-change easy-menu-create-menu easy-menu-do-define 6707;;;### (autoloads (easy-menu-change easy-menu-create-menu easy-menu-do-define
6614;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (19775 6708;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (19845
6615;;;;;; 2028)) 6709;;;;;; 45374))
6616;;; Generated autoloads from emacs-lisp/easymenu.el 6710;;; Generated autoloads from emacs-lisp/easymenu.el
6617 6711
6618(autoload 'easy-menu-define "easymenu" "\ 6712(autoload 'easy-menu-define "easymenu" "\
@@ -6726,7 +6820,7 @@ A menu item can be a list with the same format as MENU. This is a submenu.
6726(put 'easy-menu-define 'lisp-indent-function 'defun) 6820(put 'easy-menu-define 'lisp-indent-function 'defun)
6727 6821
6728(autoload 'easy-menu-do-define "easymenu" "\ 6822(autoload 'easy-menu-do-define "easymenu" "\
6729Not documented 6823
6730 6824
6731\(fn SYMBOL MAPS DOC MENU)" nil nil) 6825\(fn SYMBOL MAPS DOC MENU)" nil nil)
6732 6826
@@ -6766,7 +6860,7 @@ To implement dynamic menus, either call this from
6766;;;;;; ebnf-eps-file ebnf-eps-directory ebnf-spool-region ebnf-spool-buffer 6860;;;;;; ebnf-eps-file ebnf-eps-directory ebnf-spool-region ebnf-spool-buffer
6767;;;;;; ebnf-spool-file ebnf-spool-directory ebnf-print-region ebnf-print-buffer 6861;;;;;; ebnf-spool-file ebnf-spool-directory ebnf-print-region ebnf-print-buffer
6768;;;;;; ebnf-print-file ebnf-print-directory ebnf-customize) "ebnf2ps" 6862;;;;;; ebnf-print-file ebnf-print-directory ebnf-customize) "ebnf2ps"
6769;;;;;; "progmodes/ebnf2ps.el" (19775 2029)) 6863;;;;;; "progmodes/ebnf2ps.el" (19845 45374))
6770;;; Generated autoloads from progmodes/ebnf2ps.el 6864;;; Generated autoloads from progmodes/ebnf2ps.el
6771 6865
6772(autoload 'ebnf-customize "ebnf2ps" "\ 6866(autoload 'ebnf-customize "ebnf2ps" "\
@@ -7040,8 +7134,8 @@ See `ebnf-style-database' documentation.
7040;;;;;; ebrowse-tags-find-declaration-other-window ebrowse-tags-find-definition 7134;;;;;; ebrowse-tags-find-declaration-other-window ebrowse-tags-find-definition
7041;;;;;; ebrowse-tags-view-definition ebrowse-tags-find-declaration 7135;;;;;; ebrowse-tags-view-definition ebrowse-tags-find-declaration
7042;;;;;; ebrowse-tags-view-declaration ebrowse-member-mode ebrowse-electric-choose-tree 7136;;;;;; ebrowse-tags-view-declaration ebrowse-member-mode ebrowse-electric-choose-tree
7043;;;;;; ebrowse-tree-mode) "ebrowse" "progmodes/ebrowse.el" (19780 7137;;;;;; ebrowse-tree-mode) "ebrowse" "progmodes/ebrowse.el" (19845
7044;;;;;; 4514)) 7138;;;;;; 45374))
7045;;; Generated autoloads from progmodes/ebrowse.el 7139;;; Generated autoloads from progmodes/ebrowse.el
7046 7140
7047(autoload 'ebrowse-tree-mode "ebrowse" "\ 7141(autoload 'ebrowse-tree-mode "ebrowse" "\
@@ -7190,7 +7284,7 @@ Display statistics for a class tree.
7190;;;*** 7284;;;***
7191 7285
7192;;;### (autoloads (electric-buffer-list) "ebuff-menu" "ebuff-menu.el" 7286;;;### (autoloads (electric-buffer-list) "ebuff-menu" "ebuff-menu.el"
7193;;;;;; (19775 2028)) 7287;;;;;; (19845 45374))
7194;;; Generated autoloads from ebuff-menu.el 7288;;; Generated autoloads from ebuff-menu.el
7195 7289
7196(autoload 'electric-buffer-list "ebuff-menu" "\ 7290(autoload 'electric-buffer-list "ebuff-menu" "\
@@ -7215,7 +7309,7 @@ Run hooks in `electric-buffer-menu-mode-hook' on entry.
7215;;;*** 7309;;;***
7216 7310
7217;;;### (autoloads (Electric-command-history-redo-expression) "echistory" 7311;;;### (autoloads (Electric-command-history-redo-expression) "echistory"
7218;;;;;; "echistory.el" (19775 2028)) 7312;;;;;; "echistory.el" (19845 45374))
7219;;; Generated autoloads from echistory.el 7313;;; Generated autoloads from echistory.el
7220 7314
7221(autoload 'Electric-command-history-redo-expression "echistory" "\ 7315(autoload 'Electric-command-history-redo-expression "echistory" "\
@@ -7227,17 +7321,17 @@ With prefix arg NOCONFIRM, execute current line as-is without editing.
7227;;;*** 7321;;;***
7228 7322
7229;;;### (autoloads (ecomplete-setup) "ecomplete" "gnus/ecomplete.el" 7323;;;### (autoloads (ecomplete-setup) "ecomplete" "gnus/ecomplete.el"
7230;;;;;; (19780 4513)) 7324;;;;;; (19845 45374))
7231;;; Generated autoloads from gnus/ecomplete.el 7325;;; Generated autoloads from gnus/ecomplete.el
7232 7326
7233(autoload 'ecomplete-setup "ecomplete" "\ 7327(autoload 'ecomplete-setup "ecomplete" "\
7234Not documented 7328
7235 7329
7236\(fn)" nil nil) 7330\(fn)" nil nil)
7237 7331
7238;;;*** 7332;;;***
7239 7333
7240;;;### (autoloads (global-ede-mode) "ede" "cedet/ede.el" (19775 2027)) 7334;;;### (autoloads (global-ede-mode) "ede" "cedet/ede.el" (19845 45374))
7241;;; Generated autoloads from cedet/ede.el 7335;;; Generated autoloads from cedet/ede.el
7242 7336
7243(defvar global-ede-mode nil "\ 7337(defvar global-ede-mode nil "\
@@ -7263,7 +7357,7 @@ an EDE controlled project.
7263 7357
7264;;;### (autoloads (edebug-all-forms edebug-all-defs edebug-eval-top-level-form 7358;;;### (autoloads (edebug-all-forms edebug-all-defs edebug-eval-top-level-form
7265;;;;;; edebug-basic-spec edebug-all-forms edebug-all-defs) "edebug" 7359;;;;;; edebug-basic-spec edebug-all-forms edebug-all-defs) "edebug"
7266;;;;;; "emacs-lisp/edebug.el" (19775 2028)) 7360;;;;;; "emacs-lisp/edebug.el" (19863 8742))
7267;;; Generated autoloads from emacs-lisp/edebug.el 7361;;; Generated autoloads from emacs-lisp/edebug.el
7268 7362
7269(defvar edebug-all-defs nil "\ 7363(defvar edebug-all-defs nil "\
@@ -7336,7 +7430,7 @@ Toggle edebugging of all forms.
7336;;;;;; ediff-merge-directories-with-ancestor ediff-merge-directories 7430;;;;;; ediff-merge-directories-with-ancestor ediff-merge-directories
7337;;;;;; ediff-directories3 ediff-directory-revisions ediff-directories 7431;;;;;; ediff-directories3 ediff-directory-revisions ediff-directories
7338;;;;;; ediff-buffers3 ediff-buffers ediff-backup ediff-current-file 7432;;;;;; ediff-buffers3 ediff-buffers ediff-backup ediff-current-file
7339;;;;;; ediff-files3 ediff-files) "ediff" "vc/ediff.el" (19775 2030)) 7433;;;;;; ediff-files3 ediff-files) "ediff" "vc/ediff.el" (19845 45374))
7340;;; Generated autoloads from vc/ediff.el 7434;;; Generated autoloads from vc/ediff.el
7341 7435
7342(autoload 'ediff-files "ediff" "\ 7436(autoload 'ediff-files "ediff" "\
@@ -7568,25 +7662,18 @@ With optional NODE, goes to that node.
7568;;;*** 7662;;;***
7569 7663
7570;;;### (autoloads (ediff-customize) "ediff-help" "vc/ediff-help.el" 7664;;;### (autoloads (ediff-customize) "ediff-help" "vc/ediff-help.el"
7571;;;;;; (19775 2030)) 7665;;;;;; (19845 45374))
7572;;; Generated autoloads from vc/ediff-help.el 7666;;; Generated autoloads from vc/ediff-help.el
7573 7667
7574(autoload 'ediff-customize "ediff-help" "\ 7668(autoload 'ediff-customize "ediff-help" "\
7575Not documented
7576 7669
7577\(fn)" t nil)
7578 7670
7579;;;*** 7671\(fn)" t nil)
7580
7581;;;### (autoloads nil "ediff-hook" "vc/ediff-hook.el" (19775 2030))
7582;;; Generated autoloads from vc/ediff-hook.el
7583
7584(if (featurep 'xemacs) (progn (defun ediff-xemacs-init-menus nil (when (featurep 'menubar) (add-submenu '("Tools") ediff-menu "OO-Browser...") (add-submenu '("Tools") ediff-merge-menu "OO-Browser...") (add-submenu '("Tools") epatch-menu "OO-Browser...") (add-submenu '("Tools") ediff-misc-menu "OO-Browser...") (add-menu-button '("Tools") "-------" "OO-Browser..."))) (defvar ediff-menu '("Compare" ["Two Files..." ediff-files t] ["Two Buffers..." ediff-buffers t] ["Three Files..." ediff-files3 t] ["Three Buffers..." ediff-buffers3 t] "---" ["Two Directories..." ediff-directories t] ["Three Directories..." ediff-directories3 t] "---" ["File with Revision..." ediff-revision t] ["Directory Revisions..." ediff-directory-revisions t] "---" ["Windows Word-by-word..." ediff-windows-wordwise t] ["Windows Line-by-line..." ediff-windows-linewise t] "---" ["Regions Word-by-word..." ediff-regions-wordwise t] ["Regions Line-by-line..." ediff-regions-linewise t])) (defvar ediff-merge-menu '("Merge" ["Files..." ediff-merge-files t] ["Files with Ancestor..." ediff-merge-files-with-ancestor t] ["Buffers..." ediff-merge-buffers t] ["Buffers with Ancestor..." ediff-merge-buffers-with-ancestor t] "---" ["Directories..." ediff-merge-directories t] ["Directories with Ancestor..." ediff-merge-directories-with-ancestor t] "---" ["Revisions..." ediff-merge-revisions t] ["Revisions with Ancestor..." ediff-merge-revisions-with-ancestor t] ["Directory Revisions..." ediff-merge-directory-revisions t] ["Directory Revisions with Ancestor..." ediff-merge-directory-revisions-with-ancestor t])) (defvar epatch-menu '("Apply Patch" ["To a file..." ediff-patch-file t] ["To a buffer..." ediff-patch-buffer t])) (defvar ediff-misc-menu '("Ediff Miscellanea" ["Ediff Manual" ediff-documentation t] ["Customize Ediff" ediff-customize t] ["List Ediff Sessions" ediff-show-registry t] ["Use separate frame for Ediff control buffer" ediff-toggle-multiframe :style toggle :selected (if (and (featurep 'ediff-util) (boundp 'ediff-window-setup-function)) (eq ediff-window-setup-function 'ediff-setup-windows-multiframe))] ["Use a toolbar with Ediff control buffer" ediff-toggle-use-toolbar :style toggle :selected (if (featurep 'ediff-tbar) (ediff-use-toolbar-p))])) (if (and (featurep 'menubar) (not (featurep 'infodock)) (not (featurep 'ediff-hook))) (ediff-xemacs-init-menus))) (defvar menu-bar-ediff-misc-menu (make-sparse-keymap "Ediff Miscellanea")) (fset 'menu-bar-ediff-misc-menu (symbol-value 'menu-bar-ediff-misc-menu)) (defvar menu-bar-epatch-menu (make-sparse-keymap "Apply Patch")) (fset 'menu-bar-epatch-menu (symbol-value 'menu-bar-epatch-menu)) (defvar menu-bar-ediff-merge-menu (make-sparse-keymap "Merge")) (fset 'menu-bar-ediff-merge-menu (symbol-value 'menu-bar-ediff-merge-menu)) (defvar menu-bar-ediff-menu (make-sparse-keymap "Compare")) (fset 'menu-bar-ediff-menu (symbol-value 'menu-bar-ediff-menu)) (define-key menu-bar-ediff-menu [ediff-misc] `(menu-item ,(purecopy "Ediff Miscellanea") menu-bar-ediff-misc-menu)) (define-key menu-bar-ediff-menu [separator-ediff-misc] menu-bar-separator) (define-key menu-bar-ediff-menu [window] `(menu-item ,(purecopy "This Window and Next Window") compare-windows :help ,(purecopy "Compare the current window and the next window"))) (define-key menu-bar-ediff-menu [ediff-windows-linewise] `(menu-item ,(purecopy "Windows Line-by-line...") ediff-windows-linewise :help ,(purecopy "Compare windows line-wise"))) (define-key menu-bar-ediff-menu [ediff-windows-wordwise] `(menu-item ,(purecopy "Windows Word-by-word...") ediff-windows-wordwise :help ,(purecopy "Compare windows word-wise"))) (define-key menu-bar-ediff-menu [separator-ediff-windows] menu-bar-separator) (define-key menu-bar-ediff-menu [ediff-regions-linewise] `(menu-item ,(purecopy "Regions Line-by-line...") ediff-regions-linewise :help ,(purecopy "Compare regions line-wise"))) (define-key menu-bar-ediff-menu [ediff-regions-wordwise] `(menu-item ,(purecopy "Regions Word-by-word...") ediff-regions-wordwise :help ,(purecopy "Compare regions word-wise"))) (define-key menu-bar-ediff-menu [separator-ediff-regions] menu-bar-separator) (define-key menu-bar-ediff-menu [ediff-dir-revision] `(menu-item ,(purecopy "Directory Revisions...") ediff-directory-revisions :help ,(purecopy "Compare directory files with their older versions"))) (define-key menu-bar-ediff-menu [ediff-revision] `(menu-item ,(purecopy "File with Revision...") ediff-revision :help ,(purecopy "Compare file with its older versions"))) (define-key menu-bar-ediff-menu [separator-ediff-directories] menu-bar-separator) (define-key menu-bar-ediff-menu [ediff-directories3] `(menu-item ,(purecopy "Three Directories...") ediff-directories3 :help ,(purecopy "Compare files common to three directories simultaneously"))) (define-key menu-bar-ediff-menu [ediff-directories] `(menu-item ,(purecopy "Two Directories...") ediff-directories :help ,(purecopy "Compare files common to two directories simultaneously"))) (define-key menu-bar-ediff-menu [separator-ediff-files] menu-bar-separator) (define-key menu-bar-ediff-menu [ediff-buffers3] `(menu-item ,(purecopy "Three Buffers...") ediff-buffers3 :help ,(purecopy "Compare three buffers simultaneously"))) (define-key menu-bar-ediff-menu [ediff-files3] `(menu-item ,(purecopy "Three Files...") ediff-files3 :help ,(purecopy "Compare three files simultaneously"))) (define-key menu-bar-ediff-menu [ediff-buffers] `(menu-item ,(purecopy "Two Buffers...") ediff-buffers :help ,(purecopy "Compare two buffers simultaneously"))) (define-key menu-bar-ediff-menu [ediff-files] `(menu-item ,(purecopy "Two Files...") ediff-files :help ,(purecopy "Compare two files simultaneously"))) (define-key menu-bar-ediff-merge-menu [ediff-merge-dir-revisions-with-ancestor] `(menu-item ,(purecopy "Directory Revisions with Ancestor...") ediff-merge-directory-revisions-with-ancestor :help ,(purecopy "Merge versions of the files in the same directory by comparing the files with common ancestors"))) (define-key menu-bar-ediff-merge-menu [ediff-merge-dir-revisions] `(menu-item ,(purecopy "Directory Revisions...") ediff-merge-directory-revisions :help ,(purecopy "Merge versions of the files in the same directory (without using ancestor information)"))) (define-key menu-bar-ediff-merge-menu [ediff-merge-revisions-with-ancestor] `(menu-item ,(purecopy "Revisions with Ancestor...") ediff-merge-revisions-with-ancestor :help ,(purecopy "Merge versions of the same file by comparing them with a common ancestor"))) (define-key menu-bar-ediff-merge-menu [ediff-merge-revisions] `(menu-item ,(purecopy "Revisions...") ediff-merge-revisions :help ,(purecopy "Merge versions of the same file (without using ancestor information)"))) (define-key menu-bar-ediff-merge-menu [separator-ediff-merge] menu-bar-separator) (define-key menu-bar-ediff-merge-menu [ediff-merge-directories-with-ancestor] `(menu-item ,(purecopy "Directories with Ancestor...") ediff-merge-directories-with-ancestor :help ,(purecopy "Merge files common to a pair of directories by comparing the files with common ancestors"))) (define-key menu-bar-ediff-merge-menu [ediff-merge-directories] `(menu-item ,(purecopy "Directories...") ediff-merge-directories :help ,(purecopy "Merge files common to a pair of directories"))) (define-key menu-bar-ediff-merge-menu [separator-ediff-merge-dirs] menu-bar-separator) (define-key menu-bar-ediff-merge-menu [ediff-merge-buffers-with-ancestor] `(menu-item ,(purecopy "Buffers with Ancestor...") ediff-merge-buffers-with-ancestor :help ,(purecopy "Merge buffers by comparing their contents with a common ancestor"))) (define-key menu-bar-ediff-merge-menu [ediff-merge-buffers] `(menu-item ,(purecopy "Buffers...") ediff-merge-buffers :help ,(purecopy "Merge buffers (without using ancestor information)"))) (define-key menu-bar-ediff-merge-menu [ediff-merge-files-with-ancestor] `(menu-item ,(purecopy "Files with Ancestor...") ediff-merge-files-with-ancestor :help ,(purecopy "Merge files by comparing them with a common ancestor"))) (define-key menu-bar-ediff-merge-menu [ediff-merge-files] `(menu-item ,(purecopy "Files...") ediff-merge-files :help ,(purecopy "Merge files (without using ancestor information)"))) (define-key menu-bar-epatch-menu [ediff-patch-buffer] `(menu-item ,(purecopy "To a Buffer...") ediff-patch-buffer :help ,(purecopy "Apply a patch to the contents of a buffer"))) (define-key menu-bar-epatch-menu [ediff-patch-file] `(menu-item ,(purecopy "To a File...") ediff-patch-file :help ,(purecopy "Apply a patch to a file"))) (define-key menu-bar-ediff-misc-menu [emultiframe] `(menu-item ,(purecopy "Use separate control buffer frame") ediff-toggle-multiframe :help ,(purecopy "Switch between the single-frame presentation mode and the multi-frame mode"))) (define-key menu-bar-ediff-misc-menu [eregistry] `(menu-item ,(purecopy "List Ediff Sessions") ediff-show-registry :help ,(purecopy "List all active Ediff sessions; it is a convenient way to find and resume such a session"))) (define-key menu-bar-ediff-misc-menu [ediff-cust] `(menu-item ,(purecopy "Customize Ediff") ediff-customize :help ,(purecopy "Change some of the parameters that govern the behavior of Ediff"))) (define-key menu-bar-ediff-misc-menu [ediff-doc] `(menu-item ,(purecopy "Ediff Manual") ediff-documentation :help ,(purecopy "Bring up the Ediff manual"))))
7585 7672
7586;;;*** 7673;;;***
7587 7674
7588;;;### (autoloads (ediff-show-registry) "ediff-mult" "vc/ediff-mult.el" 7675;;;### (autoloads (ediff-show-registry) "ediff-mult" "vc/ediff-mult.el"
7589;;;;;; (19775 2030)) 7676;;;;;; (19845 45374))
7590;;; Generated autoloads from vc/ediff-mult.el 7677;;; Generated autoloads from vc/ediff-mult.el
7591 7678
7592(autoload 'ediff-show-registry "ediff-mult" "\ 7679(autoload 'ediff-show-registry "ediff-mult" "\
@@ -7599,7 +7686,7 @@ Display Ediff's registry.
7599;;;*** 7686;;;***
7600 7687
7601;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe) 7688;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe)
7602;;;;;; "ediff-util" "vc/ediff-util.el" (19780 4514)) 7689;;;;;; "ediff-util" "vc/ediff-util.el" (19845 45374))
7603;;; Generated autoloads from vc/ediff-util.el 7690;;; Generated autoloads from vc/ediff-util.el
7604 7691
7605(autoload 'ediff-toggle-multiframe "ediff-util" "\ 7692(autoload 'ediff-toggle-multiframe "ediff-util" "\
@@ -7620,13 +7707,9 @@ To change the default, set the variable `ediff-use-toolbar-p', which see.
7620 7707
7621;;;### (autoloads (format-kbd-macro read-kbd-macro edit-named-kbd-macro 7708;;;### (autoloads (format-kbd-macro read-kbd-macro edit-named-kbd-macro
7622;;;;;; edit-last-kbd-macro edit-kbd-macro) "edmacro" "edmacro.el" 7709;;;;;; edit-last-kbd-macro edit-kbd-macro) "edmacro" "edmacro.el"
7623;;;;;; (19775 2028)) 7710;;;;;; (19845 45374))
7624;;; Generated autoloads from edmacro.el 7711;;; Generated autoloads from edmacro.el
7625 7712
7626(defvar edmacro-eight-bits nil "\
7627*Non-nil if `edit-kbd-macro' should leave 8-bit characters intact.
7628Default nil means to write characters above \\177 in octal notation.")
7629
7630(autoload 'edit-kbd-macro "edmacro" "\ 7713(autoload 'edit-kbd-macro "edmacro" "\
7631Edit a keyboard macro. 7714Edit a keyboard macro.
7632At the prompt, type any key sequence which is bound to a keyboard macro. 7715At the prompt, type any key sequence which is bound to a keyboard macro.
@@ -7673,7 +7756,7 @@ or nil, use a compact 80-column format.
7673;;;*** 7756;;;***
7674 7757
7675;;;### (autoloads (edt-emulation-on edt-set-scroll-margins) "edt" 7758;;;### (autoloads (edt-emulation-on edt-set-scroll-margins) "edt"
7676;;;;;; "emulation/edt.el" (19780 4513)) 7759;;;;;; "emulation/edt.el" (19845 45374))
7677;;; Generated autoloads from emulation/edt.el 7760;;; Generated autoloads from emulation/edt.el
7678 7761
7679(autoload 'edt-set-scroll-margins "edt" "\ 7762(autoload 'edt-set-scroll-margins "edt" "\
@@ -7691,7 +7774,7 @@ Turn on EDT Emulation.
7691;;;*** 7774;;;***
7692 7775
7693;;;### (autoloads (electric-helpify with-electric-help) "ehelp" "ehelp.el" 7776;;;### (autoloads (electric-helpify with-electric-help) "ehelp" "ehelp.el"
7694;;;;;; (19775 2028)) 7777;;;;;; (19865 50420))
7695;;; Generated autoloads from ehelp.el 7778;;; Generated autoloads from ehelp.el
7696 7779
7697(autoload 'with-electric-help "ehelp" "\ 7780(autoload 'with-electric-help "ehelp" "\
@@ -7721,14 +7804,14 @@ BUFFER is put back into its original major mode.
7721\(fn THUNK &optional BUFFER NOERASE MINHEIGHT)" nil nil) 7804\(fn THUNK &optional BUFFER NOERASE MINHEIGHT)" nil nil)
7722 7805
7723(autoload 'electric-helpify "ehelp" "\ 7806(autoload 'electric-helpify "ehelp" "\
7724Not documented 7807
7725 7808
7726\(fn FUN &optional NAME)" nil nil) 7809\(fn FUN &optional NAME)" nil nil)
7727 7810
7728;;;*** 7811;;;***
7729 7812
7730;;;### (autoloads (turn-on-eldoc-mode eldoc-mode eldoc-minor-mode-string) 7813;;;### (autoloads (turn-on-eldoc-mode eldoc-mode eldoc-minor-mode-string)
7731;;;;;; "eldoc" "emacs-lisp/eldoc.el" (19775 2028)) 7814;;;;;; "eldoc" "emacs-lisp/eldoc.el" (19845 45374))
7732;;; Generated autoloads from emacs-lisp/eldoc.el 7815;;; Generated autoloads from emacs-lisp/eldoc.el
7733 7816
7734(defvar eldoc-minor-mode-string (purecopy " ElDoc") "\ 7817(defvar eldoc-minor-mode-string (purecopy " ElDoc") "\
@@ -7772,7 +7855,7 @@ Emacs Lisp mode) that support ElDoc.")
7772;;;*** 7855;;;***
7773 7856
7774;;;### (autoloads (electric-layout-mode electric-pair-mode electric-indent-mode) 7857;;;### (autoloads (electric-layout-mode electric-pair-mode electric-indent-mode)
7775;;;;;; "electric" "electric.el" (19775 2028)) 7858;;;;;; "electric" "electric.el" (19845 45374))
7776;;; Generated autoloads from electric.el 7859;;; Generated autoloads from electric.el
7777 7860
7778(defvar electric-indent-chars '(10) "\ 7861(defvar electric-indent-chars '(10) "\
@@ -7823,8 +7906,8 @@ Automatically insert newlines around some chars.
7823 7906
7824;;;*** 7907;;;***
7825 7908
7826;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (19775 7909;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (19845
7827;;;;;; 2028)) 7910;;;;;; 45374))
7828;;; Generated autoloads from elide-head.el 7911;;; Generated autoloads from elide-head.el
7829 7912
7830(autoload 'elide-head "elide-head" "\ 7913(autoload 'elide-head "elide-head" "\
@@ -7841,7 +7924,7 @@ This is suitable as an entry on `find-file-hook' or appropriate mode hooks.
7841 7924
7842;;;### (autoloads (elint-initialize elint-defun elint-current-buffer 7925;;;### (autoloads (elint-initialize elint-defun elint-current-buffer
7843;;;;;; elint-directory elint-file) "elint" "emacs-lisp/elint.el" 7926;;;;;; elint-directory elint-file) "elint" "emacs-lisp/elint.el"
7844;;;;;; (19775 2028)) 7927;;;;;; (19845 45374))
7845;;; Generated autoloads from emacs-lisp/elint.el 7928;;; Generated autoloads from emacs-lisp/elint.el
7846 7929
7847(autoload 'elint-file "elint" "\ 7930(autoload 'elint-file "elint" "\
@@ -7877,8 +7960,8 @@ optional prefix argument REINIT is non-nil.
7877;;;*** 7960;;;***
7878 7961
7879;;;### (autoloads (elp-results elp-instrument-package elp-instrument-list 7962;;;### (autoloads (elp-results elp-instrument-package elp-instrument-list
7880;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (19780 7963;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (19845
7881;;;;;; 4513)) 7964;;;;;; 45374))
7882;;; Generated autoloads from emacs-lisp/elp.el 7965;;; Generated autoloads from emacs-lisp/elp.el
7883 7966
7884(autoload 'elp-instrument-function "elp" "\ 7967(autoload 'elp-instrument-function "elp" "\
@@ -7913,7 +7996,7 @@ displayed.
7913;;;*** 7996;;;***
7914 7997
7915;;;### (autoloads (report-emacs-bug) "emacsbug" "mail/emacsbug.el" 7998;;;### (autoloads (report-emacs-bug) "emacsbug" "mail/emacsbug.el"
7916;;;;;; (19775 2028)) 7999;;;;;; (19845 45374))
7917;;; Generated autoloads from mail/emacsbug.el 8000;;; Generated autoloads from mail/emacsbug.el
7918 8001
7919(autoload 'report-emacs-bug "emacsbug" "\ 8002(autoload 'report-emacs-bug "emacsbug" "\
@@ -7928,7 +8011,7 @@ Prompts for bug subject. Leaves you in a mail buffer.
7928;;;;;; emerge-revisions emerge-files-with-ancestor-remote emerge-files-remote 8011;;;;;; emerge-revisions emerge-files-with-ancestor-remote emerge-files-remote
7929;;;;;; emerge-files-with-ancestor-command emerge-files-command emerge-buffers-with-ancestor 8012;;;;;; emerge-files-with-ancestor-command emerge-files-command emerge-buffers-with-ancestor
7930;;;;;; emerge-buffers emerge-files-with-ancestor emerge-files) "emerge" 8013;;;;;; emerge-buffers emerge-files-with-ancestor emerge-files) "emerge"
7931;;;;;; "vc/emerge.el" (19677 34570)) 8014;;;;;; "vc/emerge.el" (19845 45374))
7932;;; Generated autoloads from vc/emerge.el 8015;;; Generated autoloads from vc/emerge.el
7933 8016
7934(autoload 'emerge-files "emerge" "\ 8017(autoload 'emerge-files "emerge" "\
@@ -7952,22 +8035,22 @@ Run Emerge on two buffers, giving another buffer as the ancestor.
7952\(fn BUFFER-A BUFFER-B BUFFER-ANCESTOR &optional STARTUP-HOOKS QUIT-HOOKS)" t nil) 8035\(fn BUFFER-A BUFFER-B BUFFER-ANCESTOR &optional STARTUP-HOOKS QUIT-HOOKS)" t nil)
7953 8036
7954(autoload 'emerge-files-command "emerge" "\ 8037(autoload 'emerge-files-command "emerge" "\
7955Not documented 8038
7956 8039
7957\(fn)" nil nil) 8040\(fn)" nil nil)
7958 8041
7959(autoload 'emerge-files-with-ancestor-command "emerge" "\ 8042(autoload 'emerge-files-with-ancestor-command "emerge" "\
7960Not documented 8043
7961 8044
7962\(fn)" nil nil) 8045\(fn)" nil nil)
7963 8046
7964(autoload 'emerge-files-remote "emerge" "\ 8047(autoload 'emerge-files-remote "emerge" "\
7965Not documented 8048
7966 8049
7967\(fn FILE-A FILE-B FILE-OUT)" nil nil) 8050\(fn FILE-A FILE-B FILE-OUT)" nil nil)
7968 8051
7969(autoload 'emerge-files-with-ancestor-remote "emerge" "\ 8052(autoload 'emerge-files-with-ancestor-remote "emerge" "\
7970Not documented 8053
7971 8054
7972\(fn FILE-A FILE-B FILE-ANC FILE-OUT)" nil nil) 8055\(fn FILE-A FILE-B FILE-ANC FILE-OUT)" nil nil)
7973 8056
@@ -7982,14 +8065,14 @@ Emerge two RCS revisions of a file, with another revision as ancestor.
7982\(fn ARG FILE REVISION-A REVISION-B ANCESTOR &optional STARTUP-HOOKS QUIT-HOOKS)" t nil) 8065\(fn ARG FILE REVISION-A REVISION-B ANCESTOR &optional STARTUP-HOOKS QUIT-HOOKS)" t nil)
7983 8066
7984(autoload 'emerge-merge-directories "emerge" "\ 8067(autoload 'emerge-merge-directories "emerge" "\
7985Not documented 8068
7986 8069
7987\(fn A-DIR B-DIR ANCESTOR-DIR OUTPUT-DIR)" t nil) 8070\(fn A-DIR B-DIR ANCESTOR-DIR OUTPUT-DIR)" t nil)
7988 8071
7989;;;*** 8072;;;***
7990 8073
7991;;;### (autoloads (enriched-decode enriched-encode enriched-mode) 8074;;;### (autoloads (enriched-decode enriched-encode enriched-mode)
7992;;;;;; "enriched" "textmodes/enriched.el" (19775 2030)) 8075;;;;;; "enriched" "textmodes/enriched.el" (19845 45374))
7993;;; Generated autoloads from textmodes/enriched.el 8076;;; Generated autoloads from textmodes/enriched.el
7994 8077
7995(autoload 'enriched-mode "enriched" "\ 8078(autoload 'enriched-mode "enriched" "\
@@ -8008,12 +8091,12 @@ Commands:
8008\(fn &optional ARG)" t nil) 8091\(fn &optional ARG)" t nil)
8009 8092
8010(autoload 'enriched-encode "enriched" "\ 8093(autoload 'enriched-encode "enriched" "\
8011Not documented 8094
8012 8095
8013\(fn FROM TO ORIG-BUF)" nil nil) 8096\(fn FROM TO ORIG-BUF)" nil nil)
8014 8097
8015(autoload 'enriched-decode "enriched" "\ 8098(autoload 'enriched-decode "enriched" "\
8016Not documented 8099
8017 8100
8018\(fn FROM TO)" nil nil) 8101\(fn FROM TO)" nil nil)
8019 8102
@@ -8024,8 +8107,8 @@ Not documented
8024;;;;;; epa-sign-region epa-verify-cleartext-in-region epa-verify-region 8107;;;;;; epa-sign-region epa-verify-cleartext-in-region epa-verify-region
8025;;;;;; epa-decrypt-armor-in-region epa-decrypt-region epa-encrypt-file 8108;;;;;; epa-decrypt-armor-in-region epa-decrypt-region epa-encrypt-file
8026;;;;;; epa-sign-file epa-verify-file epa-decrypt-file epa-select-keys 8109;;;;;; epa-sign-file epa-verify-file epa-decrypt-file epa-select-keys
8027;;;;;; epa-list-secret-keys epa-list-keys) "epa" "epa.el" (19780 8110;;;;;; epa-list-secret-keys epa-list-keys) "epa" "epa.el" (19865
8028;;;;;; 4513)) 8111;;;;;; 50420))
8029;;; Generated autoloads from epa.el 8112;;; Generated autoloads from epa.el
8030 8113
8031(autoload 'epa-list-keys "epa" "\ 8114(autoload 'epa-list-keys "epa" "\
@@ -8198,7 +8281,7 @@ Insert selected KEYS after the point.
8198;;;*** 8281;;;***
8199 8282
8200;;;### (autoloads (epa-dired-do-encrypt epa-dired-do-sign epa-dired-do-verify 8283;;;### (autoloads (epa-dired-do-encrypt epa-dired-do-sign epa-dired-do-verify
8201;;;;;; epa-dired-do-decrypt) "epa-dired" "epa-dired.el" (19775 2028)) 8284;;;;;; epa-dired-do-decrypt) "epa-dired" "epa-dired.el" (19865 50420))
8202;;; Generated autoloads from epa-dired.el 8285;;; Generated autoloads from epa-dired.el
8203 8286
8204(autoload 'epa-dired-do-decrypt "epa-dired" "\ 8287(autoload 'epa-dired-do-decrypt "epa-dired" "\
@@ -8224,21 +8307,21 @@ Encrypt marked files.
8224;;;*** 8307;;;***
8225 8308
8226;;;### (autoloads (epa-file-disable epa-file-enable epa-file-handler) 8309;;;### (autoloads (epa-file-disable epa-file-enable epa-file-handler)
8227;;;;;; "epa-file" "epa-file.el" (19775 2028)) 8310;;;;;; "epa-file" "epa-file.el" (19865 50420))
8228;;; Generated autoloads from epa-file.el 8311;;; Generated autoloads from epa-file.el
8229 8312
8230(autoload 'epa-file-handler "epa-file" "\ 8313(autoload 'epa-file-handler "epa-file" "\
8231Not documented 8314
8232 8315
8233\(fn OPERATION &rest ARGS)" nil nil) 8316\(fn OPERATION &rest ARGS)" nil nil)
8234 8317
8235(autoload 'epa-file-enable "epa-file" "\ 8318(autoload 'epa-file-enable "epa-file" "\
8236Not documented 8319
8237 8320
8238\(fn)" t nil) 8321\(fn)" t nil)
8239 8322
8240(autoload 'epa-file-disable "epa-file" "\ 8323(autoload 'epa-file-disable "epa-file" "\
8241Not documented 8324
8242 8325
8243\(fn)" t nil) 8326\(fn)" t nil)
8244 8327
@@ -8246,7 +8329,7 @@ Not documented
8246 8329
8247;;;### (autoloads (epa-global-mail-mode epa-mail-import-keys epa-mail-encrypt 8330;;;### (autoloads (epa-global-mail-mode epa-mail-import-keys epa-mail-encrypt
8248;;;;;; epa-mail-sign epa-mail-verify epa-mail-decrypt epa-mail-mode) 8331;;;;;; epa-mail-sign epa-mail-verify epa-mail-decrypt epa-mail-mode)
8249;;;;;; "epa-mail" "epa-mail.el" (19775 2028)) 8332;;;;;; "epa-mail" "epa-mail.el" (19865 50420))
8250;;; Generated autoloads from epa-mail.el 8333;;; Generated autoloads from epa-mail.el
8251 8334
8252(autoload 'epa-mail-mode "epa-mail" "\ 8335(autoload 'epa-mail-mode "epa-mail" "\
@@ -8310,7 +8393,7 @@ Minor mode to hook EasyPG into Mail mode.
8310 8393
8311;;;*** 8394;;;***
8312 8395
8313;;;### (autoloads (epg-make-context) "epg" "epg.el" (19780 4513)) 8396;;;### (autoloads (epg-make-context) "epg" "epg.el" (19865 50420))
8314;;; Generated autoloads from epg.el 8397;;; Generated autoloads from epg.el
8315 8398
8316(autoload 'epg-make-context "epg" "\ 8399(autoload 'epg-make-context "epg" "\
@@ -8321,7 +8404,7 @@ Return a context object.
8321;;;*** 8404;;;***
8322 8405
8323;;;### (autoloads (epg-expand-group epg-check-configuration epg-configuration) 8406;;;### (autoloads (epg-expand-group epg-check-configuration epg-configuration)
8324;;;;;; "epg-config" "epg-config.el" (19775 2028)) 8407;;;;;; "epg-config" "epg-config.el" (19845 45374))
8325;;; Generated autoloads from epg-config.el 8408;;; Generated autoloads from epg-config.el
8326 8409
8327(autoload 'epg-configuration "epg-config" "\ 8410(autoload 'epg-configuration "epg-config" "\
@@ -8342,7 +8425,7 @@ Look at CONFIG and try to expand GROUP.
8342;;;*** 8425;;;***
8343 8426
8344;;;### (autoloads (erc-handle-irc-url erc erc-select-read-args) "erc" 8427;;;### (autoloads (erc-handle-irc-url erc erc-select-read-args) "erc"
8345;;;;;; "erc/erc.el" (19775 2028)) 8428;;;;;; "erc/erc.el" (19845 45374))
8346;;; Generated autoloads from erc/erc.el 8429;;; Generated autoloads from erc/erc.el
8347 8430
8348(autoload 'erc-select-read-args "erc" "\ 8431(autoload 'erc-select-read-args "erc" "\
@@ -8384,33 +8467,33 @@ Otherwise, connect to HOST:PORT as USER and /join CHANNEL.
8384 8467
8385;;;*** 8468;;;***
8386 8469
8387;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (19780 8470;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (19845
8388;;;;;; 4513)) 8471;;;;;; 45374))
8389;;; Generated autoloads from erc/erc-autoaway.el 8472;;; Generated autoloads from erc/erc-autoaway.el
8390 (autoload 'erc-autoaway-mode "erc-autoaway") 8473 (autoload 'erc-autoaway-mode "erc-autoaway")
8391 8474
8392;;;*** 8475;;;***
8393 8476
8394;;;### (autoloads nil "erc-button" "erc/erc-button.el" (19775 2028)) 8477;;;### (autoloads nil "erc-button" "erc/erc-button.el" (19845 45374))
8395;;; Generated autoloads from erc/erc-button.el 8478;;; Generated autoloads from erc/erc-button.el
8396 (autoload 'erc-button-mode "erc-button" nil t) 8479 (autoload 'erc-button-mode "erc-button" nil t)
8397 8480
8398;;;*** 8481;;;***
8399 8482
8400;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (19775 2028)) 8483;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (19845 45374))
8401;;; Generated autoloads from erc/erc-capab.el 8484;;; Generated autoloads from erc/erc-capab.el
8402 (autoload 'erc-capab-identify-mode "erc-capab" nil t) 8485 (autoload 'erc-capab-identify-mode "erc-capab" nil t)
8403 8486
8404;;;*** 8487;;;***
8405 8488
8406;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (19780 4513)) 8489;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (19845 45374))
8407;;; Generated autoloads from erc/erc-compat.el 8490;;; Generated autoloads from erc/erc-compat.el
8408 (autoload 'erc-define-minor-mode "erc-compat") 8491 (autoload 'erc-define-minor-mode "erc-compat")
8409 8492
8410;;;*** 8493;;;***
8411 8494
8412;;;### (autoloads (erc-ctcp-query-DCC pcomplete/erc-mode/DCC erc-cmd-DCC) 8495;;;### (autoloads (erc-ctcp-query-DCC pcomplete/erc-mode/DCC erc-cmd-DCC)
8413;;;;;; "erc-dcc" "erc/erc-dcc.el" (19780 4513)) 8496;;;;;; "erc-dcc" "erc/erc-dcc.el" (19845 45374))
8414;;; Generated autoloads from erc/erc-dcc.el 8497;;; Generated autoloads from erc/erc-dcc.el
8415 (autoload 'erc-dcc-mode "erc-dcc") 8498 (autoload 'erc-dcc-mode "erc-dcc")
8416 8499
@@ -8443,7 +8526,7 @@ that subcommand.
8443;;;;;; erc-ezb-add-session erc-ezb-end-of-session-list erc-ezb-init-session-list 8526;;;;;; erc-ezb-add-session erc-ezb-end-of-session-list erc-ezb-init-session-list
8444;;;;;; erc-ezb-identify erc-ezb-notice-autodetect erc-ezb-lookup-action 8527;;;;;; erc-ezb-identify erc-ezb-notice-autodetect erc-ezb-lookup-action
8445;;;;;; erc-ezb-get-login erc-cmd-ezb) "erc-ezbounce" "erc/erc-ezbounce.el" 8528;;;;;; erc-ezb-get-login erc-cmd-ezb) "erc-ezbounce" "erc/erc-ezbounce.el"
8446;;;;;; (19775 2028)) 8529;;;;;; (19845 45374))
8447;;; Generated autoloads from erc/erc-ezbounce.el 8530;;; Generated autoloads from erc/erc-ezbounce.el
8448 8531
8449(autoload 'erc-cmd-ezb "erc-ezbounce" "\ 8532(autoload 'erc-cmd-ezb "erc-ezbounce" "\
@@ -8459,7 +8542,7 @@ in the alist is `nil', prompt for the appropriate values.
8459\(fn SERVER PORT)" nil nil) 8542\(fn SERVER PORT)" nil nil)
8460 8543
8461(autoload 'erc-ezb-lookup-action "erc-ezbounce" "\ 8544(autoload 'erc-ezb-lookup-action "erc-ezbounce" "\
8462Not documented 8545
8463 8546
8464\(fn MESSAGE)" nil nil) 8547\(fn MESSAGE)" nil nil)
8465 8548
@@ -8505,8 +8588,8 @@ Add EZBouncer convenience functions to ERC.
8505 8588
8506;;;*** 8589;;;***
8507 8590
8508;;;### (autoloads (erc-fill) "erc-fill" "erc/erc-fill.el" (19775 8591;;;### (autoloads (erc-fill) "erc-fill" "erc/erc-fill.el" (19845
8509;;;;;; 2028)) 8592;;;;;; 45374))
8510;;; Generated autoloads from erc/erc-fill.el 8593;;; Generated autoloads from erc/erc-fill.el
8511 (autoload 'erc-fill-mode "erc-fill" nil t) 8594 (autoload 'erc-fill-mode "erc-fill" nil t)
8512 8595
@@ -8518,15 +8601,15 @@ You can put this on `erc-insert-modify-hook' and/or `erc-send-modify-hook'.
8518 8601
8519;;;*** 8602;;;***
8520 8603
8521;;;### (autoloads nil "erc-hecomplete" "erc/erc-hecomplete.el" (19775 8604;;;### (autoloads nil "erc-hecomplete" "erc/erc-hecomplete.el" (19845
8522;;;;;; 2028)) 8605;;;;;; 45374))
8523;;; Generated autoloads from erc/erc-hecomplete.el 8606;;; Generated autoloads from erc/erc-hecomplete.el
8524 (autoload 'erc-hecomplete-mode "erc-hecomplete" nil t) 8607 (autoload 'erc-hecomplete-mode "erc-hecomplete" nil t)
8525 8608
8526;;;*** 8609;;;***
8527 8610
8528;;;### (autoloads (erc-identd-stop erc-identd-start) "erc-identd" 8611;;;### (autoloads (erc-identd-stop erc-identd-start) "erc-identd"
8529;;;;;; "erc/erc-identd.el" (19775 2028)) 8612;;;;;; "erc/erc-identd.el" (19845 45374))
8530;;; Generated autoloads from erc/erc-identd.el 8613;;; Generated autoloads from erc/erc-identd.el
8531 (autoload 'erc-identd-mode "erc-identd") 8614 (autoload 'erc-identd-mode "erc-identd")
8532 8615
@@ -8541,37 +8624,37 @@ system.
8541\(fn &optional PORT)" t nil) 8624\(fn &optional PORT)" t nil)
8542 8625
8543(autoload 'erc-identd-stop "erc-identd" "\ 8626(autoload 'erc-identd-stop "erc-identd" "\
8544Not documented 8627
8545 8628
8546\(fn &rest IGNORE)" t nil) 8629\(fn &rest IGNORE)" t nil)
8547 8630
8548;;;*** 8631;;;***
8549 8632
8550;;;### (autoloads (erc-create-imenu-index) "erc-imenu" "erc/erc-imenu.el" 8633;;;### (autoloads (erc-create-imenu-index) "erc-imenu" "erc/erc-imenu.el"
8551;;;;;; (19775 2028)) 8634;;;;;; (19845 45374))
8552;;; Generated autoloads from erc/erc-imenu.el 8635;;; Generated autoloads from erc/erc-imenu.el
8553 8636
8554(autoload 'erc-create-imenu-index "erc-imenu" "\ 8637(autoload 'erc-create-imenu-index "erc-imenu" "\
8555Not documented 8638
8556 8639
8557\(fn)" nil nil) 8640\(fn)" nil nil)
8558 8641
8559;;;*** 8642;;;***
8560 8643
8561;;;### (autoloads nil "erc-join" "erc/erc-join.el" (19775 2028)) 8644;;;### (autoloads nil "erc-join" "erc/erc-join.el" (19845 45374))
8562;;; Generated autoloads from erc/erc-join.el 8645;;; Generated autoloads from erc/erc-join.el
8563 (autoload 'erc-autojoin-mode "erc-join" nil t) 8646 (autoload 'erc-autojoin-mode "erc-join" nil t)
8564 8647
8565;;;*** 8648;;;***
8566 8649
8567;;;### (autoloads nil "erc-list" "erc/erc-list.el" (19775 2028)) 8650;;;### (autoloads nil "erc-list" "erc/erc-list.el" (19845 45374))
8568;;; Generated autoloads from erc/erc-list.el 8651;;; Generated autoloads from erc/erc-list.el
8569 (autoload 'erc-list-mode "erc-list") 8652 (autoload 'erc-list-mode "erc-list")
8570 8653
8571;;;*** 8654;;;***
8572 8655
8573;;;### (autoloads (erc-save-buffer-in-logs erc-logging-enabled) "erc-log" 8656;;;### (autoloads (erc-save-buffer-in-logs erc-logging-enabled) "erc-log"
8574;;;;;; "erc/erc-log.el" (19775 2028)) 8657;;;;;; "erc/erc-log.el" (19845 45374))
8575;;; Generated autoloads from erc/erc-log.el 8658;;; Generated autoloads from erc/erc-log.el
8576 (autoload 'erc-log-mode "erc-log" nil t) 8659 (autoload 'erc-log-mode "erc-log" nil t)
8577 8660
@@ -8603,7 +8686,7 @@ You can save every individual message by putting this function on
8603;;;### (autoloads (erc-delete-dangerous-host erc-add-dangerous-host 8686;;;### (autoloads (erc-delete-dangerous-host erc-add-dangerous-host
8604;;;;;; erc-delete-keyword erc-add-keyword erc-delete-fool erc-add-fool 8687;;;;;; erc-delete-keyword erc-add-keyword erc-delete-fool erc-add-fool
8605;;;;;; erc-delete-pal erc-add-pal) "erc-match" "erc/erc-match.el" 8688;;;;;; erc-delete-pal erc-add-pal) "erc-match" "erc/erc-match.el"
8606;;;;;; (19775 2028)) 8689;;;;;; (19845 45374))
8607;;; Generated autoloads from erc/erc-match.el 8690;;; Generated autoloads from erc/erc-match.el
8608 (autoload 'erc-match-mode "erc-match") 8691 (autoload 'erc-match-mode "erc-match")
8609 8692
@@ -8649,14 +8732,14 @@ Delete dangerous-host interactively to `erc-dangerous-hosts'.
8649 8732
8650;;;*** 8733;;;***
8651 8734
8652;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (19775 2028)) 8735;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (19845 45374))
8653;;; Generated autoloads from erc/erc-menu.el 8736;;; Generated autoloads from erc/erc-menu.el
8654 (autoload 'erc-menu-mode "erc-menu" nil t) 8737 (autoload 'erc-menu-mode "erc-menu" nil t)
8655 8738
8656;;;*** 8739;;;***
8657 8740
8658;;;### (autoloads (erc-cmd-WHOLEFT) "erc-netsplit" "erc/erc-netsplit.el" 8741;;;### (autoloads (erc-cmd-WHOLEFT) "erc-netsplit" "erc/erc-netsplit.el"
8659;;;;;; (19775 2028)) 8742;;;;;; (19845 45374))
8660;;; Generated autoloads from erc/erc-netsplit.el 8743;;; Generated autoloads from erc/erc-netsplit.el
8661 (autoload 'erc-netsplit-mode "erc-netsplit") 8744 (autoload 'erc-netsplit-mode "erc-netsplit")
8662 8745
@@ -8668,7 +8751,7 @@ Show who's gone.
8668;;;*** 8751;;;***
8669 8752
8670;;;### (autoloads (erc-server-select erc-determine-network) "erc-networks" 8753;;;### (autoloads (erc-server-select erc-determine-network) "erc-networks"
8671;;;;;; "erc/erc-networks.el" (19775 2028)) 8754;;;;;; "erc/erc-networks.el" (19845 45374))
8672;;; Generated autoloads from erc/erc-networks.el 8755;;; Generated autoloads from erc/erc-networks.el
8673 8756
8674(autoload 'erc-determine-network "erc-networks" "\ 8757(autoload 'erc-determine-network "erc-networks" "\
@@ -8686,7 +8769,7 @@ Interactively select a server to connect to using `erc-server-alist'.
8686;;;*** 8769;;;***
8687 8770
8688;;;### (autoloads (pcomplete/erc-mode/NOTIFY erc-cmd-NOTIFY) "erc-notify" 8771;;;### (autoloads (pcomplete/erc-mode/NOTIFY erc-cmd-NOTIFY) "erc-notify"
8689;;;;;; "erc/erc-notify.el" (19775 2028)) 8772;;;;;; "erc/erc-notify.el" (19845 45374))
8690;;; Generated autoloads from erc/erc-notify.el 8773;;; Generated autoloads from erc/erc-notify.el
8691 (autoload 'erc-notify-mode "erc-notify" nil t) 8774 (autoload 'erc-notify-mode "erc-notify" nil t)
8692 8775
@@ -8698,39 +8781,39 @@ with args, toggle notify status of people.
8698\(fn &rest ARGS)" nil nil) 8781\(fn &rest ARGS)" nil nil)
8699 8782
8700(autoload 'pcomplete/erc-mode/NOTIFY "erc-notify" "\ 8783(autoload 'pcomplete/erc-mode/NOTIFY "erc-notify" "\
8701Not documented 8784
8702 8785
8703\(fn)" nil nil) 8786\(fn)" nil nil)
8704 8787
8705;;;*** 8788;;;***
8706 8789
8707;;;### (autoloads nil "erc-page" "erc/erc-page.el" (19775 2028)) 8790;;;### (autoloads nil "erc-page" "erc/erc-page.el" (19845 45374))
8708;;; Generated autoloads from erc/erc-page.el 8791;;; Generated autoloads from erc/erc-page.el
8709 (autoload 'erc-page-mode "erc-page") 8792 (autoload 'erc-page-mode "erc-page")
8710 8793
8711;;;*** 8794;;;***
8712 8795
8713;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (19775 8796;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (19845
8714;;;;;; 2028)) 8797;;;;;; 45374))
8715;;; Generated autoloads from erc/erc-pcomplete.el 8798;;; Generated autoloads from erc/erc-pcomplete.el
8716 (autoload 'erc-completion-mode "erc-pcomplete" nil t) 8799 (autoload 'erc-completion-mode "erc-pcomplete" nil t)
8717 8800
8718;;;*** 8801;;;***
8719 8802
8720;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (19775 2028)) 8803;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (19845 45374))
8721;;; Generated autoloads from erc/erc-replace.el 8804;;; Generated autoloads from erc/erc-replace.el
8722 (autoload 'erc-replace-mode "erc-replace") 8805 (autoload 'erc-replace-mode "erc-replace")
8723 8806
8724;;;*** 8807;;;***
8725 8808
8726;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (19775 2028)) 8809;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (19845 45374))
8727;;; Generated autoloads from erc/erc-ring.el 8810;;; Generated autoloads from erc/erc-ring.el
8728 (autoload 'erc-ring-mode "erc-ring" nil t) 8811 (autoload 'erc-ring-mode "erc-ring" nil t)
8729 8812
8730;;;*** 8813;;;***
8731 8814
8732;;;### (autoloads (erc-nickserv-identify erc-nickserv-identify-mode) 8815;;;### (autoloads (erc-nickserv-identify erc-nickserv-identify-mode)
8733;;;;;; "erc-services" "erc/erc-services.el" (19775 2028)) 8816;;;;;; "erc-services" "erc/erc-services.el" (19845 45374))
8734;;; Generated autoloads from erc/erc-services.el 8817;;; Generated autoloads from erc/erc-services.el
8735 (autoload 'erc-services-mode "erc-services" nil t) 8818 (autoload 'erc-services-mode "erc-services" nil t)
8736 8819
@@ -8747,14 +8830,14 @@ When called interactively, read the password using `read-passwd'.
8747 8830
8748;;;*** 8831;;;***
8749 8832
8750;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (19775 2028)) 8833;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (19845 45374))
8751;;; Generated autoloads from erc/erc-sound.el 8834;;; Generated autoloads from erc/erc-sound.el
8752 (autoload 'erc-sound-mode "erc-sound") 8835 (autoload 'erc-sound-mode "erc-sound")
8753 8836
8754;;;*** 8837;;;***
8755 8838
8756;;;### (autoloads (erc-speedbar-browser) "erc-speedbar" "erc/erc-speedbar.el" 8839;;;### (autoloads (erc-speedbar-browser) "erc-speedbar" "erc/erc-speedbar.el"
8757;;;;;; (19775 2028)) 8840;;;;;; (19845 45374))
8758;;; Generated autoloads from erc/erc-speedbar.el 8841;;; Generated autoloads from erc/erc-speedbar.el
8759 8842
8760(autoload 'erc-speedbar-browser "erc-speedbar" "\ 8843(autoload 'erc-speedbar-browser "erc-speedbar" "\
@@ -8765,21 +8848,21 @@ This will add a speedbar major display mode.
8765 8848
8766;;;*** 8849;;;***
8767 8850
8768;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (19775 8851;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (19845
8769;;;;;; 2028)) 8852;;;;;; 45374))
8770;;; Generated autoloads from erc/erc-spelling.el 8853;;; Generated autoloads from erc/erc-spelling.el
8771 (autoload 'erc-spelling-mode "erc-spelling" nil t) 8854 (autoload 'erc-spelling-mode "erc-spelling" nil t)
8772 8855
8773;;;*** 8856;;;***
8774 8857
8775;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (19780 4513)) 8858;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (19845 45374))
8776;;; Generated autoloads from erc/erc-stamp.el 8859;;; Generated autoloads from erc/erc-stamp.el
8777 (autoload 'erc-timestamp-mode "erc-stamp" nil t) 8860 (autoload 'erc-timestamp-mode "erc-stamp" nil t)
8778 8861
8779;;;*** 8862;;;***
8780 8863
8781;;;### (autoloads (erc-track-minor-mode) "erc-track" "erc/erc-track.el" 8864;;;### (autoloads (erc-track-minor-mode) "erc-track" "erc/erc-track.el"
8782;;;;;; (19775 2028)) 8865;;;;;; (19845 45374))
8783;;; Generated autoloads from erc/erc-track.el 8866;;; Generated autoloads from erc/erc-track.el
8784 8867
8785(defvar erc-track-minor-mode nil "\ 8868(defvar erc-track-minor-mode nil "\
@@ -8802,7 +8885,7 @@ module, otherwise the keybindings will not do anything useful.
8802;;;*** 8885;;;***
8803 8886
8804;;;### (autoloads (erc-truncate-buffer erc-truncate-buffer-to-size) 8887;;;### (autoloads (erc-truncate-buffer erc-truncate-buffer-to-size)
8805;;;;;; "erc-truncate" "erc/erc-truncate.el" (19775 2028)) 8888;;;;;; "erc-truncate" "erc/erc-truncate.el" (19845 45374))
8806;;; Generated autoloads from erc/erc-truncate.el 8889;;; Generated autoloads from erc/erc-truncate.el
8807 (autoload 'erc-truncate-mode "erc-truncate" nil t) 8890 (autoload 'erc-truncate-mode "erc-truncate" nil t)
8808 8891
@@ -8822,7 +8905,7 @@ Meant to be used in hooks, like `erc-insert-post-hook'.
8822;;;*** 8905;;;***
8823 8906
8824;;;### (autoloads (erc-xdcc-add-file) "erc-xdcc" "erc/erc-xdcc.el" 8907;;;### (autoloads (erc-xdcc-add-file) "erc-xdcc" "erc/erc-xdcc.el"
8825;;;;;; (19775 2028)) 8908;;;;;; (19845 45374))
8826;;; Generated autoloads from erc/erc-xdcc.el 8909;;; Generated autoloads from erc/erc-xdcc.el
8827 (autoload 'erc-xdcc-mode "erc-xdcc") 8910 (autoload 'erc-xdcc-mode "erc-xdcc")
8828 8911
@@ -8835,7 +8918,7 @@ Add a file to `erc-xdcc-files'.
8835 8918
8836;;;### (autoloads (ert-describe-test ert-run-tests-interactively 8919;;;### (autoloads (ert-describe-test ert-run-tests-interactively
8837;;;;;; ert-run-tests-batch-and-exit ert-run-tests-batch ert-deftest) 8920;;;;;; ert-run-tests-batch-and-exit ert-run-tests-batch ert-deftest)
8838;;;;;; "ert" "emacs-lisp/ert.el" (19775 2028)) 8921;;;;;; "ert" "emacs-lisp/ert.el" (19846 36966))
8839;;; Generated autoloads from emacs-lisp/ert.el 8922;;; Generated autoloads from emacs-lisp/ert.el
8840 8923
8841(autoload 'ert-deftest "ert" "\ 8924(autoload 'ert-deftest "ert" "\
@@ -8905,7 +8988,7 @@ Display the documentation for TEST-OR-TEST-NAME (a symbol or ert-test).
8905;;;*** 8988;;;***
8906 8989
8907;;;### (autoloads (ert-kill-all-test-buffers) "ert-x" "emacs-lisp/ert-x.el" 8990;;;### (autoloads (ert-kill-all-test-buffers) "ert-x" "emacs-lisp/ert-x.el"
8908;;;;;; (19775 2028)) 8991;;;;;; (19845 45374))
8909;;; Generated autoloads from emacs-lisp/ert-x.el 8992;;; Generated autoloads from emacs-lisp/ert-x.el
8910 8993
8911(put 'ert-with-test-buffer 'lisp-indent-function 1) 8994(put 'ert-with-test-buffer 'lisp-indent-function 1)
@@ -8917,8 +9000,8 @@ Kill all test buffers that are still live.
8917 9000
8918;;;*** 9001;;;***
8919 9002
8920;;;### (autoloads (eshell-mode) "esh-mode" "eshell/esh-mode.el" (19775 9003;;;### (autoloads (eshell-mode) "esh-mode" "eshell/esh-mode.el" (19845
8921;;;;;; 2028)) 9004;;;;;; 45374))
8922;;; Generated autoloads from eshell/esh-mode.el 9005;;; Generated autoloads from eshell/esh-mode.el
8923 9006
8924(autoload 'eshell-mode "esh-mode" "\ 9007(autoload 'eshell-mode "esh-mode" "\
@@ -8930,19 +9013,8 @@ Emacs shell interactive mode.
8930 9013
8931;;;*** 9014;;;***
8932 9015
8933;;;### (autoloads (eshell-test) "esh-test" "eshell/esh-test.el" (19775
8934;;;;;; 2028))
8935;;; Generated autoloads from eshell/esh-test.el
8936
8937(autoload 'eshell-test "esh-test" "\
8938Test Eshell to verify that it works as expected.
8939
8940\(fn &optional ARG)" t nil)
8941
8942;;;***
8943
8944;;;### (autoloads (eshell-command-result eshell-command eshell) "eshell" 9016;;;### (autoloads (eshell-command-result eshell-command eshell) "eshell"
8945;;;;;; "eshell/eshell.el" (19775 2028)) 9017;;;;;; "eshell/eshell.el" (19845 45374))
8946;;; Generated autoloads from eshell/eshell.el 9018;;; Generated autoloads from eshell/eshell.el
8947 9019
8948(autoload 'eshell "eshell" "\ 9020(autoload 'eshell "eshell" "\
@@ -8983,7 +9055,7 @@ corresponding to a successful execution.
8983;;;;;; visit-tags-table tags-table-mode find-tag-default-function 9055;;;;;; visit-tags-table tags-table-mode find-tag-default-function
8984;;;;;; find-tag-hook tags-add-tables tags-compression-info-list 9056;;;;;; find-tag-hook tags-add-tables tags-compression-info-list
8985;;;;;; tags-table-list tags-case-fold-search) "etags" "progmodes/etags.el" 9057;;;;;; tags-table-list tags-case-fold-search) "etags" "progmodes/etags.el"
8986;;;;;; (19780 4514)) 9058;;;;;; (19845 45374))
8987;;; Generated autoloads from progmodes/etags.el 9059;;; Generated autoloads from progmodes/etags.el
8988 9060
8989(defvar tags-file-name nil "\ 9061(defvar tags-file-name nil "\
@@ -9297,11 +9369,11 @@ for \\[find-tag] (which see).
9297;;;;;; ethio-fidel-to-sera-marker ethio-fidel-to-sera-region ethio-fidel-to-sera-buffer 9369;;;;;; ethio-fidel-to-sera-marker ethio-fidel-to-sera-region ethio-fidel-to-sera-buffer
9298;;;;;; ethio-sera-to-fidel-marker ethio-sera-to-fidel-region ethio-sera-to-fidel-buffer 9370;;;;;; ethio-sera-to-fidel-marker ethio-sera-to-fidel-region ethio-sera-to-fidel-buffer
9299;;;;;; setup-ethiopic-environment-internal) "ethio-util" "language/ethio-util.el" 9371;;;;;; setup-ethiopic-environment-internal) "ethio-util" "language/ethio-util.el"
9300;;;;;; (19780 4513)) 9372;;;;;; (19845 45374))
9301;;; Generated autoloads from language/ethio-util.el 9373;;; Generated autoloads from language/ethio-util.el
9302 9374
9303(autoload 'setup-ethiopic-environment-internal "ethio-util" "\ 9375(autoload 'setup-ethiopic-environment-internal "ethio-util" "\
9304Not documented 9376
9305 9377
9306\(fn)" nil nil) 9378\(fn)" nil nil)
9307 9379
@@ -9459,7 +9531,7 @@ With ARG, insert that many delimiters.
9459\(fn ARG)" t nil) 9531\(fn ARG)" t nil)
9460 9532
9461(autoload 'ethio-composition-function "ethio-util" "\ 9533(autoload 'ethio-composition-function "ethio-util" "\
9462Not documented 9534
9463 9535
9464\(fn POS TO FONT-OBJECT STRING)" nil nil) 9536\(fn POS TO FONT-OBJECT STRING)" nil nil)
9465 9537
@@ -9467,7 +9539,7 @@ Not documented
9467 9539
9468;;;### (autoloads (eudc-load-eudc eudc-query-form eudc-expand-inline 9540;;;### (autoloads (eudc-load-eudc eudc-query-form eudc-expand-inline
9469;;;;;; eudc-get-phone eudc-get-email eudc-set-server) "eudc" "net/eudc.el" 9541;;;;;; eudc-get-phone eudc-get-email eudc-set-server) "eudc" "net/eudc.el"
9470;;;;;; (19775 2029)) 9542;;;;;; (19845 45374))
9471;;; Generated autoloads from net/eudc.el 9543;;; Generated autoloads from net/eudc.el
9472 9544
9473(autoload 'eudc-set-server "eudc" "\ 9545(autoload 'eudc-set-server "eudc" "\
@@ -9523,7 +9595,7 @@ This does nothing except loading eudc by autoload side-effect.
9523 9595
9524;;;### (autoloads (eudc-display-jpeg-as-button eudc-display-jpeg-inline 9596;;;### (autoloads (eudc-display-jpeg-as-button eudc-display-jpeg-inline
9525;;;;;; eudc-display-sound eudc-display-mail eudc-display-url eudc-display-generic-binary) 9597;;;;;; eudc-display-sound eudc-display-mail eudc-display-url eudc-display-generic-binary)
9526;;;;;; "eudc-bob" "net/eudc-bob.el" (19775 2029)) 9598;;;;;; "eudc-bob" "net/eudc-bob.el" (19845 45374))
9527;;; Generated autoloads from net/eudc-bob.el 9599;;; Generated autoloads from net/eudc-bob.el
9528 9600
9529(autoload 'eudc-display-generic-binary "eudc-bob" "\ 9601(autoload 'eudc-display-generic-binary "eudc-bob" "\
@@ -9559,7 +9631,7 @@ Display a button for the JPEG DATA.
9559;;;*** 9631;;;***
9560 9632
9561;;;### (autoloads (eudc-try-bbdb-insert eudc-insert-record-at-point-into-bbdb) 9633;;;### (autoloads (eudc-try-bbdb-insert eudc-insert-record-at-point-into-bbdb)
9562;;;;;; "eudc-export" "net/eudc-export.el" (19775 2029)) 9634;;;;;; "eudc-export" "net/eudc-export.el" (19845 45374))
9563;;; Generated autoloads from net/eudc-export.el 9635;;; Generated autoloads from net/eudc-export.el
9564 9636
9565(autoload 'eudc-insert-record-at-point-into-bbdb "eudc-export" "\ 9637(autoload 'eudc-insert-record-at-point-into-bbdb "eudc-export" "\
@@ -9576,7 +9648,7 @@ Call `eudc-insert-record-at-point-into-bbdb' if on a record.
9576;;;*** 9648;;;***
9577 9649
9578;;;### (autoloads (eudc-edit-hotlist) "eudc-hotlist" "net/eudc-hotlist.el" 9650;;;### (autoloads (eudc-edit-hotlist) "eudc-hotlist" "net/eudc-hotlist.el"
9579;;;;;; (19775 2029)) 9651;;;;;; (19845 45374))
9580;;; Generated autoloads from net/eudc-hotlist.el 9652;;; Generated autoloads from net/eudc-hotlist.el
9581 9653
9582(autoload 'eudc-edit-hotlist "eudc-hotlist" "\ 9654(autoload 'eudc-edit-hotlist "eudc-hotlist" "\
@@ -9586,8 +9658,8 @@ Edit the hotlist of directory servers in a specialized buffer.
9586 9658
9587;;;*** 9659;;;***
9588 9660
9589;;;### (autoloads (ewoc-create) "ewoc" "emacs-lisp/ewoc.el" (19775 9661;;;### (autoloads (ewoc-create) "ewoc" "emacs-lisp/ewoc.el" (19845
9590;;;;;; 2028)) 9662;;;;;; 45374))
9591;;; Generated autoloads from emacs-lisp/ewoc.el 9663;;; Generated autoloads from emacs-lisp/ewoc.el
9592 9664
9593(autoload 'ewoc-create "ewoc" "\ 9665(autoload 'ewoc-create "ewoc" "\
@@ -9616,7 +9688,7 @@ fourth arg NOSEP non-nil inhibits this.
9616;;;### (autoloads (executable-make-buffer-file-executable-if-script-p 9688;;;### (autoloads (executable-make-buffer-file-executable-if-script-p
9617;;;;;; executable-self-display executable-set-magic executable-interpret 9689;;;;;; executable-self-display executable-set-magic executable-interpret
9618;;;;;; executable-command-find-posix-p) "executable" "progmodes/executable.el" 9690;;;;;; executable-command-find-posix-p) "executable" "progmodes/executable.el"
9619;;;;;; (19775 2029)) 9691;;;;;; (19845 45374))
9620;;; Generated autoloads from progmodes/executable.el 9692;;; Generated autoloads from progmodes/executable.el
9621 9693
9622(autoload 'executable-command-find-posix-p "executable" "\ 9694(autoload 'executable-command-find-posix-p "executable" "\
@@ -9659,7 +9731,7 @@ file modes.
9659 9731
9660;;;### (autoloads (expand-jump-to-next-slot expand-jump-to-previous-slot 9732;;;### (autoloads (expand-jump-to-next-slot expand-jump-to-previous-slot
9661;;;;;; expand-abbrev-hook expand-add-abbrevs) "expand" "expand.el" 9733;;;;;; expand-abbrev-hook expand-add-abbrevs) "expand" "expand.el"
9662;;;;;; (19775 2028)) 9734;;;;;; (19845 45374))
9663;;; Generated autoloads from expand.el 9735;;; Generated autoloads from expand.el
9664 9736
9665(autoload 'expand-add-abbrevs "expand" "\ 9737(autoload 'expand-add-abbrevs "expand" "\
@@ -9708,7 +9780,7 @@ This is used only in conjunction with `expand-add-abbrevs'.
9708 9780
9709;;;*** 9781;;;***
9710 9782
9711;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (19775 2029)) 9783;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (19860 32495))
9712;;; Generated autoloads from progmodes/f90.el 9784;;; Generated autoloads from progmodes/f90.el
9713 9785
9714(autoload 'f90-mode "f90" "\ 9786(autoload 'f90-mode "f90" "\
@@ -9774,8 +9846,8 @@ with no args, if that value is non-nil.
9774;;;### (autoloads (variable-pitch-mode buffer-face-toggle buffer-face-set 9846;;;### (autoloads (variable-pitch-mode buffer-face-toggle buffer-face-set
9775;;;;;; buffer-face-mode text-scale-adjust text-scale-decrease text-scale-increase 9847;;;;;; buffer-face-mode text-scale-adjust text-scale-decrease text-scale-increase
9776;;;;;; text-scale-set face-remap-set-base face-remap-reset-base 9848;;;;;; text-scale-set face-remap-set-base face-remap-reset-base
9777;;;;;; face-remap-add-relative) "face-remap" "face-remap.el" (19775 9849;;;;;; face-remap-add-relative) "face-remap" "face-remap.el" (19845
9778;;;;;; 2028)) 9850;;;;;; 45374))
9779;;; Generated autoloads from face-remap.el 9851;;; Generated autoloads from face-remap.el
9780 9852
9781(autoload 'face-remap-add-relative "face-remap" "\ 9853(autoload 'face-remap-add-relative "face-remap" "\
@@ -9915,7 +9987,7 @@ Besides the choice of face, it is the same as `buffer-face-mode'.
9915 9987
9916;;;### (autoloads (feedmail-queue-reminder feedmail-run-the-queue 9988;;;### (autoloads (feedmail-queue-reminder feedmail-run-the-queue
9917;;;;;; feedmail-run-the-queue-global-prompt feedmail-run-the-queue-no-prompts 9989;;;;;; feedmail-run-the-queue-global-prompt feedmail-run-the-queue-no-prompts
9918;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (19763 27286)) 9990;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (19845 45374))
9919;;; Generated autoloads from mail/feedmail.el 9991;;; Generated autoloads from mail/feedmail.el
9920 9992
9921(autoload 'feedmail-send-it "feedmail" "\ 9993(autoload 'feedmail-send-it "feedmail" "\
@@ -9969,7 +10041,7 @@ you can set `feedmail-queue-reminder-alist' to nil.
9969;;;*** 10041;;;***
9970 10042
9971;;;### (autoloads (ffap-bindings dired-at-point ffap-at-mouse ffap-menu 10043;;;### (autoloads (ffap-bindings dired-at-point ffap-at-mouse ffap-menu
9972;;;;;; find-file-at-point ffap-next) "ffap" "ffap.el" (19775 2028)) 10044;;;;;; find-file-at-point ffap-next) "ffap" "ffap.el" (19845 45374))
9973;;; Generated autoloads from ffap.el 10045;;; Generated autoloads from ffap.el
9974 10046
9975(autoload 'ffap-next "ffap" "\ 10047(autoload 'ffap-next "ffap" "\
@@ -10033,7 +10105,7 @@ Evaluate the forms in variable `ffap-bindings'.
10033;;;### (autoloads (file-cache-minibuffer-complete file-cache-add-directory-recursively 10105;;;### (autoloads (file-cache-minibuffer-complete file-cache-add-directory-recursively
10034;;;;;; file-cache-add-directory-using-locate file-cache-add-directory-using-find 10106;;;;;; file-cache-add-directory-using-locate file-cache-add-directory-using-find
10035;;;;;; file-cache-add-file file-cache-add-directory-list file-cache-add-directory) 10107;;;;;; file-cache-add-file file-cache-add-directory-list file-cache-add-directory)
10036;;;;;; "filecache" "filecache.el" (19775 2028)) 10108;;;;;; "filecache" "filecache.el" (19845 45374))
10037;;; Generated autoloads from filecache.el 10109;;; Generated autoloads from filecache.el
10038 10110
10039(autoload 'file-cache-add-directory "filecache" "\ 10111(autoload 'file-cache-add-directory "filecache" "\
@@ -10093,7 +10165,7 @@ the name is considered already unique; only the second substitution
10093;;;;;; copy-file-locals-to-dir-locals delete-dir-local-variable 10165;;;;;; copy-file-locals-to-dir-locals delete-dir-local-variable
10094;;;;;; add-dir-local-variable delete-file-local-variable-prop-line 10166;;;;;; add-dir-local-variable delete-file-local-variable-prop-line
10095;;;;;; add-file-local-variable-prop-line delete-file-local-variable 10167;;;;;; add-file-local-variable-prop-line delete-file-local-variable
10096;;;;;; add-file-local-variable) "files-x" "files-x.el" (19775 2028)) 10168;;;;;; add-file-local-variable) "files-x" "files-x.el" (19845 45374))
10097;;; Generated autoloads from files-x.el 10169;;; Generated autoloads from files-x.el
10098 10170
10099(autoload 'add-file-local-variable "files-x" "\ 10171(autoload 'add-file-local-variable "files-x" "\
@@ -10158,8 +10230,8 @@ Copy directory-local variables to the -*- line.
10158 10230
10159;;;*** 10231;;;***
10160 10232
10161;;;### (autoloads (filesets-init) "filesets" "filesets.el" (19780 10233;;;### (autoloads (filesets-init) "filesets" "filesets.el" (19845
10162;;;;;; 4513)) 10234;;;;;; 45374))
10163;;; Generated autoloads from filesets.el 10235;;; Generated autoloads from filesets.el
10164 10236
10165(autoload 'filesets-init "filesets" "\ 10237(autoload 'filesets-init "filesets" "\
@@ -10170,7 +10242,7 @@ Set up hooks, load the cache file -- if existing -- and build the menu.
10170 10242
10171;;;*** 10243;;;***
10172 10244
10173;;;### (autoloads (find-cmd) "find-cmd" "find-cmd.el" (19775 2028)) 10245;;;### (autoloads (find-cmd) "find-cmd" "find-cmd.el" (19845 45374))
10174;;; Generated autoloads from find-cmd.el 10246;;; Generated autoloads from find-cmd.el
10175 10247
10176(autoload 'find-cmd "find-cmd" "\ 10248(autoload 'find-cmd "find-cmd" "\
@@ -10189,42 +10261,18 @@ result is a string that should be ready for the command line.
10189 10261
10190;;;*** 10262;;;***
10191 10263
10192;;;### (autoloads (find-grep-dired find-name-dired find-dired find-grep-options 10264;;;### (autoloads (find-grep-dired find-name-dired find-dired) "find-dired"
10193;;;;;; find-ls-subdir-switches find-ls-option) "find-dired" "find-dired.el" 10265;;;;;; "find-dired.el" (19864 29553))
10194;;;;;; (19775 2028))
10195;;; Generated autoloads from find-dired.el 10266;;; Generated autoloads from find-dired.el
10196 10267
10197(defvar find-ls-option (if (eq system-type 'berkeley-unix) (purecopy '("-ls" . "-gilsb")) (purecopy '("-exec ls -ld {} \\;" . "-ld"))) "\
10198Description of the option to `find' to produce an `ls -l'-type listing.
10199This is a cons of two strings (FIND-OPTION . LS-SWITCHES). FIND-OPTION
10200gives the option (or options) to `find' that produce the desired output.
10201LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output.")
10202
10203(custom-autoload 'find-ls-option "find-dired" t)
10204
10205(defvar find-ls-subdir-switches (purecopy "-al") "\
10206`ls' switches for inserting subdirectories in `*Find*' buffers.
10207This should contain the \"-l\" switch.
10208Use the \"-F\" or \"-b\" switches if and only if you also use
10209them for `find-ls-option'.")
10210
10211(custom-autoload 'find-ls-subdir-switches "find-dired" t)
10212
10213(defvar find-grep-options (purecopy (if (or (eq system-type 'berkeley-unix) (string-match "solaris2" system-configuration) (string-match "irix" system-configuration)) "-s" "-q")) "\
10214Option to grep to be as silent as possible.
10215On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it.
10216On other systems, the closest you can come is to use `-l'.")
10217
10218(custom-autoload 'find-grep-options "find-dired" t)
10219
10220(autoload 'find-dired "find-dired" "\ 10268(autoload 'find-dired "find-dired" "\
10221Run `find' and go into Dired mode on a buffer of the output. 10269Run `find' and go into Dired mode on a buffer of the output.
10222The command run (after changing into DIR) is 10270The command run (after changing into DIR) is essentially
10223 10271
10224 find . \\( ARGS \\) -ls 10272 find . \\( ARGS \\) -ls
10225 10273
10226except that the variable `find-ls-option' specifies what to use 10274except that the car of the variable `find-ls-option' specifies what to
10227as the final argument. 10275use in place of \"-ls\" as the final argument.
10228 10276
10229\(fn DIR ARGS)" t nil) 10277\(fn DIR ARGS)" t nil)
10230 10278
@@ -10242,9 +10290,11 @@ The command run (after changing into DIR) is
10242Find files in DIR containing a regexp REGEXP and start Dired on output. 10290Find files in DIR containing a regexp REGEXP and start Dired on output.
10243The command run (after changing into DIR) is 10291The command run (after changing into DIR) is
10244 10292
10245 find . -exec grep -s -e REGEXP {} \\; -ls 10293 find . \\( -type f -exec `grep-program' `find-grep-options' \\
10294 -e REGEXP {} \\; \\) -ls
10246 10295
10247Thus ARG can also contain additional grep options. 10296where the car of the variable `find-ls-option' specifies what to
10297use in place of \"-ls\" as the final argument.
10248 10298
10249\(fn DIR REGEXP)" t nil) 10299\(fn DIR REGEXP)" t nil)
10250 10300
@@ -10252,7 +10302,7 @@ Thus ARG can also contain additional grep options.
10252 10302
10253;;;### (autoloads (ff-mouse-find-other-file-other-window ff-mouse-find-other-file 10303;;;### (autoloads (ff-mouse-find-other-file-other-window ff-mouse-find-other-file
10254;;;;;; ff-find-other-file ff-get-other-file) "find-file" "find-file.el" 10304;;;;;; ff-find-other-file ff-get-other-file) "find-file" "find-file.el"
10255;;;;;; (19775 2028)) 10305;;;;;; (19845 45374))
10256;;; Generated autoloads from find-file.el 10306;;; Generated autoloads from find-file.el
10257 10307
10258(defvar ff-special-constructs `((,(purecopy "^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]") lambda nil (buffer-substring (match-beginning 2) (match-end 2)))) "\ 10308(defvar ff-special-constructs `((,(purecopy "^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]") lambda nil (buffer-substring (match-beginning 2) (match-end 2)))) "\
@@ -10346,7 +10396,7 @@ Visit the file you click on in another window.
10346;;;;;; find-variable find-variable-noselect find-function-other-frame 10396;;;;;; find-variable find-variable-noselect find-function-other-frame
10347;;;;;; find-function-other-window find-function find-function-noselect 10397;;;;;; find-function-other-window find-function find-function-noselect
10348;;;;;; find-function-search-for-symbol find-library) "find-func" 10398;;;;;; find-function-search-for-symbol find-library) "find-func"
10349;;;;;; "emacs-lisp/find-func.el" (19775 2028)) 10399;;;;;; "emacs-lisp/find-func.el" (19845 45374))
10350;;; Generated autoloads from emacs-lisp/find-func.el 10400;;; Generated autoloads from emacs-lisp/find-func.el
10351 10401
10352(autoload 'find-library "find-func" "\ 10402(autoload 'find-library "find-func" "\
@@ -10501,7 +10551,7 @@ Define some key bindings for the find-function family of functions.
10501;;;*** 10551;;;***
10502 10552
10503;;;### (autoloads (find-lisp-find-dired-filter find-lisp-find-dired-subdirectories 10553;;;### (autoloads (find-lisp-find-dired-filter find-lisp-find-dired-subdirectories
10504;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (19775 2028)) 10554;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (19845 45374))
10505;;; Generated autoloads from find-lisp.el 10555;;; Generated autoloads from find-lisp.el
10506 10556
10507(autoload 'find-lisp-find-dired "find-lisp" "\ 10557(autoload 'find-lisp-find-dired "find-lisp" "\
@@ -10522,7 +10572,7 @@ Change the filter on a find-lisp-find-dired buffer to REGEXP.
10522;;;*** 10572;;;***
10523 10573
10524;;;### (autoloads (finder-by-keyword finder-commentary finder-list-keywords) 10574;;;### (autoloads (finder-by-keyword finder-commentary finder-list-keywords)
10525;;;;;; "finder" "finder.el" (19775 2028)) 10575;;;;;; "finder" "finder.el" (19845 45374))
10526;;; Generated autoloads from finder.el 10576;;; Generated autoloads from finder.el
10527 10577
10528(autoload 'finder-list-keywords "finder" "\ 10578(autoload 'finder-list-keywords "finder" "\
@@ -10544,7 +10594,7 @@ Find packages matching a given keyword.
10544;;;*** 10594;;;***
10545 10595
10546;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" 10596;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl"
10547;;;;;; "flow-ctrl.el" (19775 2028)) 10597;;;;;; "flow-ctrl.el" (19845 45374))
10548;;; Generated autoloads from flow-ctrl.el 10598;;; Generated autoloads from flow-ctrl.el
10549 10599
10550(autoload 'enable-flow-control "flow-ctrl" "\ 10600(autoload 'enable-flow-control "flow-ctrl" "\
@@ -10566,23 +10616,23 @@ to get the effect of a C-q.
10566;;;*** 10616;;;***
10567 10617
10568;;;### (autoloads (fill-flowed fill-flowed-encode) "flow-fill" "gnus/flow-fill.el" 10618;;;### (autoloads (fill-flowed fill-flowed-encode) "flow-fill" "gnus/flow-fill.el"
10569;;;;;; (19775 2028)) 10619;;;;;; (19845 45374))
10570;;; Generated autoloads from gnus/flow-fill.el 10620;;; Generated autoloads from gnus/flow-fill.el
10571 10621
10572(autoload 'fill-flowed-encode "flow-fill" "\ 10622(autoload 'fill-flowed-encode "flow-fill" "\
10573Not documented 10623
10574 10624
10575\(fn &optional BUFFER)" nil nil) 10625\(fn &optional BUFFER)" nil nil)
10576 10626
10577(autoload 'fill-flowed "flow-fill" "\ 10627(autoload 'fill-flowed "flow-fill" "\
10578Not documented 10628
10579 10629
10580\(fn &optional BUFFER DELETE-SPACE)" nil nil) 10630\(fn &optional BUFFER DELETE-SPACE)" nil nil)
10581 10631
10582;;;*** 10632;;;***
10583 10633
10584;;;### (autoloads (flymake-mode-off flymake-mode-on flymake-mode) 10634;;;### (autoloads (flymake-mode-off flymake-mode-on flymake-mode)
10585;;;;;; "flymake" "progmodes/flymake.el" (19780 4514)) 10635;;;;;; "flymake" "progmodes/flymake.el" (19845 45374))
10586;;; Generated autoloads from progmodes/flymake.el 10636;;; Generated autoloads from progmodes/flymake.el
10587 10637
10588(autoload 'flymake-mode "flymake" "\ 10638(autoload 'flymake-mode "flymake" "\
@@ -10606,7 +10656,7 @@ Turn flymake mode off.
10606 10656
10607;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off 10657;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off
10608;;;;;; turn-off-flyspell turn-on-flyspell flyspell-mode flyspell-prog-mode) 10658;;;;;; turn-off-flyspell turn-on-flyspell flyspell-mode flyspell-prog-mode)
10609;;;;;; "flyspell" "textmodes/flyspell.el" (19775 2030)) 10659;;;;;; "flyspell" "textmodes/flyspell.el" (19865 50420))
10610;;; Generated autoloads from textmodes/flyspell.el 10660;;; Generated autoloads from textmodes/flyspell.el
10611 10661
10612(autoload 'flyspell-prog-mode "flyspell" "\ 10662(autoload 'flyspell-prog-mode "flyspell" "\
@@ -10676,7 +10726,7 @@ Flyspell whole buffer.
10676 10726
10677;;;### (autoloads (follow-delete-other-windows-and-split follow-mode 10727;;;### (autoloads (follow-delete-other-windows-and-split follow-mode
10678;;;;;; turn-off-follow-mode turn-on-follow-mode) "follow" "follow.el" 10728;;;;;; turn-off-follow-mode turn-on-follow-mode) "follow" "follow.el"
10679;;;;;; (19775 2028)) 10729;;;;;; (19863 8742))
10680;;; Generated autoloads from follow.el 10730;;; Generated autoloads from follow.el
10681 10731
10682(autoload 'turn-on-follow-mode "follow" "\ 10732(autoload 'turn-on-follow-mode "follow" "\
@@ -10749,15 +10799,8 @@ in your `~/.emacs' file, replacing [f7] by your favourite key:
10749 10799
10750;;;*** 10800;;;***
10751 10801
10752;;;### (autoloads nil "font-core" "font-core.el" (19780 4513)) 10802;;;### (autoloads (footnote-mode) "footnote" "mail/footnote.el" (19845
10753;;; Generated autoloads from font-core.el 10803;;;;;; 45374))
10754
10755(put 'font-lock-defaults 'risky-local-variable t)
10756
10757;;;***
10758
10759;;;### (autoloads (footnote-mode) "footnote" "mail/footnote.el" (19775
10760;;;;;; 2028))
10761;;; Generated autoloads from mail/footnote.el 10804;;; Generated autoloads from mail/footnote.el
10762 10805
10763(autoload 'footnote-mode "footnote" "\ 10806(autoload 'footnote-mode "footnote" "\
@@ -10770,15 +10813,8 @@ started, play around with the following keys:
10770 10813
10771;;;*** 10814;;;***
10772 10815
10773;;;### (autoloads nil "format" "format.el" (19780 4513))
10774;;; Generated autoloads from format.el
10775
10776(put 'format-alist 'risky-local-variable t)
10777
10778;;;***
10779
10780;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) 10816;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode)
10781;;;;;; "forms" "forms.el" (19775 2028)) 10817;;;;;; "forms" "forms.el" (19845 45374))
10782;;; Generated autoloads from forms.el 10818;;; Generated autoloads from forms.el
10783 10819
10784(autoload 'forms-mode "forms" "\ 10820(autoload 'forms-mode "forms" "\
@@ -10815,7 +10851,7 @@ Visit a file in Forms mode in other window.
10815;;;*** 10851;;;***
10816 10852
10817;;;### (autoloads (fortran-mode) "fortran" "progmodes/fortran.el" 10853;;;### (autoloads (fortran-mode) "fortran" "progmodes/fortran.el"
10818;;;;;; (19780 4514)) 10854;;;;;; (19845 45374))
10819;;; Generated autoloads from progmodes/fortran.el 10855;;; Generated autoloads from progmodes/fortran.el
10820 10856
10821(autoload 'fortran-mode "fortran" "\ 10857(autoload 'fortran-mode "fortran" "\
@@ -10893,7 +10929,7 @@ with no args, if that value is non-nil.
10893;;;*** 10929;;;***
10894 10930
10895;;;### (autoloads (fortune fortune-to-signature fortune-compile fortune-from-region 10931;;;### (autoloads (fortune fortune-to-signature fortune-compile fortune-from-region
10896;;;;;; fortune-add-fortune) "fortune" "play/fortune.el" (19775 2029)) 10932;;;;;; fortune-add-fortune) "fortune" "play/fortune.el" (19845 45374))
10897;;; Generated autoloads from play/fortune.el 10933;;; Generated autoloads from play/fortune.el
10898 10934
10899(autoload 'fortune-add-fortune "fortune" "\ 10935(autoload 'fortune-add-fortune "fortune" "\
@@ -10942,7 +10978,7 @@ and choose the directory as the fortune-file.
10942;;;*** 10978;;;***
10943 10979
10944;;;### (autoloads (gdb gdb-enable-debug) "gdb-mi" "progmodes/gdb-mi.el" 10980;;;### (autoloads (gdb gdb-enable-debug) "gdb-mi" "progmodes/gdb-mi.el"
10945;;;;;; (19775 2029)) 10981;;;;;; (19849 29307))
10946;;; Generated autoloads from progmodes/gdb-mi.el 10982;;; Generated autoloads from progmodes/gdb-mi.el
10947 10983
10948(defvar gdb-enable-debug nil "\ 10984(defvar gdb-enable-debug nil "\
@@ -11003,8 +11039,8 @@ detailed description of this mode.
11003;;;*** 11039;;;***
11004 11040
11005;;;### (autoloads (generic-make-keywords-list generic-mode generic-mode-internal 11041;;;### (autoloads (generic-make-keywords-list generic-mode generic-mode-internal
11006;;;;;; define-generic-mode) "generic" "emacs-lisp/generic.el" (19775 11042;;;;;; define-generic-mode) "generic" "emacs-lisp/generic.el" (19845
11007;;;;;; 2028)) 11043;;;;;; 45374))
11008;;; Generated autoloads from emacs-lisp/generic.el 11044;;; Generated autoloads from emacs-lisp/generic.el
11009 11045
11010(defvar generic-mode-list nil "\ 11046(defvar generic-mode-list nil "\
@@ -11081,7 +11117,7 @@ regular expression that can be used as an element of
11081;;;*** 11117;;;***
11082 11118
11083;;;### (autoloads (glasses-mode) "glasses" "progmodes/glasses.el" 11119;;;### (autoloads (glasses-mode) "glasses" "progmodes/glasses.el"
11084;;;;;; (19780 4514)) 11120;;;;;; (19845 45374))
11085;;; Generated autoloads from progmodes/glasses.el 11121;;; Generated autoloads from progmodes/glasses.el
11086 11122
11087(autoload 'glasses-mode "glasses" "\ 11123(autoload 'glasses-mode "glasses" "\
@@ -11095,7 +11131,7 @@ at places they belong to.
11095 11131
11096;;;### (autoloads (gmm-tool-bar-from-list gmm-widget-p gmm-error 11132;;;### (autoloads (gmm-tool-bar-from-list gmm-widget-p gmm-error
11097;;;;;; gmm-message gmm-regexp-concat) "gmm-utils" "gnus/gmm-utils.el" 11133;;;;;; gmm-message gmm-regexp-concat) "gmm-utils" "gnus/gmm-utils.el"
11098;;;;;; (19780 4513)) 11134;;;;;; (19845 45374))
11099;;; Generated autoloads from gnus/gmm-utils.el 11135;;; Generated autoloads from gnus/gmm-utils.el
11100 11136
11101(autoload 'gmm-regexp-concat "gmm-utils" "\ 11137(autoload 'gmm-regexp-concat "gmm-utils" "\
@@ -11150,7 +11186,7 @@ DEFAULT-MAP specifies the default key map for ICON-LIST.
11150;;;*** 11186;;;***
11151 11187
11152;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server 11188;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server
11153;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (19780 4513)) 11189;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (19860 32495))
11154;;; Generated autoloads from gnus/gnus.el 11190;;; Generated autoloads from gnus/gnus.el
11155(when (fboundp 'custom-autoload) 11191(when (fboundp 'custom-autoload)
11156 (custom-autoload 'gnus-select-method "gnus")) 11192 (custom-autoload 'gnus-select-method "gnus"))
@@ -11203,7 +11239,7 @@ prompt the user for the name of an NNTP server to use.
11203;;;;;; gnus-agent-get-undownloaded-list gnus-agent-delete-group 11239;;;;;; gnus-agent-get-undownloaded-list gnus-agent-delete-group
11204;;;;;; gnus-agent-rename-group gnus-agent-possibly-save-gcc gnus-agentize 11240;;;;;; gnus-agent-rename-group gnus-agent-possibly-save-gcc gnus-agentize
11205;;;;;; gnus-slave-unplugged gnus-plugged gnus-unplugged) "gnus-agent" 11241;;;;;; gnus-slave-unplugged gnus-plugged gnus-unplugged) "gnus-agent"
11206;;;;;; "gnus/gnus-agent.el" (19775 2028)) 11242;;;;;; "gnus/gnus-agent.el" (19860 32495))
11207;;; Generated autoloads from gnus/gnus-agent.el 11243;;; Generated autoloads from gnus/gnus-agent.el
11208 11244
11209(autoload 'gnus-unplugged "gnus-agent" "\ 11245(autoload 'gnus-unplugged "gnus-agent" "\
@@ -11294,7 +11330,7 @@ If CLEAN, obsolete (ignore).
11294;;;*** 11330;;;***
11295 11331
11296;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el" 11332;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el"
11297;;;;;; (19780 4513)) 11333;;;;;; (19849 29307))
11298;;; Generated autoloads from gnus/gnus-art.el 11334;;; Generated autoloads from gnus/gnus-art.el
11299 11335
11300(autoload 'gnus-article-prepare-display "gnus-art" "\ 11336(autoload 'gnus-article-prepare-display "gnus-art" "\
@@ -11305,7 +11341,7 @@ Make the current buffer look like a nice article.
11305;;;*** 11341;;;***
11306 11342
11307;;;### (autoloads (gnus-bookmark-bmenu-list gnus-bookmark-jump gnus-bookmark-set) 11343;;;### (autoloads (gnus-bookmark-bmenu-list gnus-bookmark-jump gnus-bookmark-set)
11308;;;;;; "gnus-bookmark" "gnus/gnus-bookmark.el" (19780 4513)) 11344;;;;;; "gnus-bookmark" "gnus/gnus-bookmark.el" (19845 45374))
11309;;; Generated autoloads from gnus/gnus-bookmark.el 11345;;; Generated autoloads from gnus/gnus-bookmark.el
11310 11346
11311(autoload 'gnus-bookmark-set "gnus-bookmark" "\ 11347(autoload 'gnus-bookmark-set "gnus-bookmark" "\
@@ -11330,8 +11366,8 @@ deletion, or > if it is flagged for displaying.
11330 11366
11331;;;### (autoloads (gnus-cache-delete-group gnus-cache-rename-group 11367;;;### (autoloads (gnus-cache-delete-group gnus-cache-rename-group
11332;;;;;; gnus-cache-generate-nov-databases gnus-cache-generate-active 11368;;;;;; gnus-cache-generate-nov-databases gnus-cache-generate-active
11333;;;;;; gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (19775 11369;;;;;; gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (19845
11334;;;;;; 2028)) 11370;;;;;; 45374))
11335;;; Generated autoloads from gnus/gnus-cache.el 11371;;; Generated autoloads from gnus/gnus-cache.el
11336 11372
11337(autoload 'gnus-jog-cache "gnus-cache" "\ 11373(autoload 'gnus-jog-cache "gnus-cache" "\
@@ -11373,7 +11409,7 @@ supported.
11373;;;*** 11409;;;***
11374 11410
11375;;;### (autoloads (gnus-delay-initialize gnus-delay-send-queue gnus-delay-article) 11411;;;### (autoloads (gnus-delay-initialize gnus-delay-send-queue gnus-delay-article)
11376;;;;;; "gnus-delay" "gnus/gnus-delay.el" (19780 4513)) 11412;;;;;; "gnus-delay" "gnus/gnus-delay.el" (19845 45374))
11377;;; Generated autoloads from gnus/gnus-delay.el 11413;;; Generated autoloads from gnus/gnus-delay.el
11378 11414
11379(autoload 'gnus-delay-article "gnus-delay" "\ 11415(autoload 'gnus-delay-article "gnus-delay" "\
@@ -11409,23 +11445,23 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil.
11409;;;*** 11445;;;***
11410 11446
11411;;;### (autoloads (gnus-user-format-function-D gnus-user-format-function-d) 11447;;;### (autoloads (gnus-user-format-function-D gnus-user-format-function-d)
11412;;;;;; "gnus-diary" "gnus/gnus-diary.el" (19775 2028)) 11448;;;;;; "gnus-diary" "gnus/gnus-diary.el" (19845 45374))
11413;;; Generated autoloads from gnus/gnus-diary.el 11449;;; Generated autoloads from gnus/gnus-diary.el
11414 11450
11415(autoload 'gnus-user-format-function-d "gnus-diary" "\ 11451(autoload 'gnus-user-format-function-d "gnus-diary" "\
11416Not documented 11452
11417 11453
11418\(fn HEADER)" nil nil) 11454\(fn HEADER)" nil nil)
11419 11455
11420(autoload 'gnus-user-format-function-D "gnus-diary" "\ 11456(autoload 'gnus-user-format-function-D "gnus-diary" "\
11421Not documented 11457
11422 11458
11423\(fn HEADER)" nil nil) 11459\(fn HEADER)" nil nil)
11424 11460
11425;;;*** 11461;;;***
11426 11462
11427;;;### (autoloads (turn-on-gnus-dired-mode) "gnus-dired" "gnus/gnus-dired.el" 11463;;;### (autoloads (turn-on-gnus-dired-mode) "gnus-dired" "gnus/gnus-dired.el"
11428;;;;;; (19775 2028)) 11464;;;;;; (19845 45374))
11429;;; Generated autoloads from gnus/gnus-dired.el 11465;;; Generated autoloads from gnus/gnus-dired.el
11430 11466
11431(autoload 'turn-on-gnus-dired-mode "gnus-dired" "\ 11467(autoload 'turn-on-gnus-dired-mode "gnus-dired" "\
@@ -11436,7 +11472,7 @@ Convenience method to turn on gnus-dired-mode.
11436;;;*** 11472;;;***
11437 11473
11438;;;### (autoloads (gnus-draft-reminder) "gnus-draft" "gnus/gnus-draft.el" 11474;;;### (autoloads (gnus-draft-reminder) "gnus-draft" "gnus/gnus-draft.el"
11439;;;;;; (19780 4513)) 11475;;;;;; (19845 45374))
11440;;; Generated autoloads from gnus/gnus-draft.el 11476;;; Generated autoloads from gnus/gnus-draft.el
11441 11477
11442(autoload 'gnus-draft-reminder "gnus-draft" "\ 11478(autoload 'gnus-draft-reminder "gnus-draft" "\
@@ -11448,8 +11484,8 @@ Reminder user if there are unsent drafts.
11448 11484
11449;;;### (autoloads (gnus-convert-png-to-face gnus-convert-face-to-png 11485;;;### (autoloads (gnus-convert-png-to-face gnus-convert-face-to-png
11450;;;;;; gnus-face-from-file gnus-x-face-from-file gnus-insert-random-x-face-header 11486;;;;;; gnus-face-from-file gnus-x-face-from-file gnus-insert-random-x-face-header
11451;;;;;; gnus-random-x-face) "gnus-fun" "gnus/gnus-fun.el" (19775 11487;;;;;; gnus-random-x-face) "gnus-fun" "gnus/gnus-fun.el" (19845
11452;;;;;; 2028)) 11488;;;;;; 45374))
11453;;; Generated autoloads from gnus/gnus-fun.el 11489;;; Generated autoloads from gnus/gnus-fun.el
11454 11490
11455(autoload 'gnus-random-x-face "gnus-fun" "\ 11491(autoload 'gnus-random-x-face "gnus-fun" "\
@@ -11494,7 +11530,7 @@ FILE should be a PNG file that's 48x48 and smaller than or equal to
11494;;;*** 11530;;;***
11495 11531
11496;;;### (autoloads (gnus-treat-mail-gravatar gnus-treat-from-gravatar) 11532;;;### (autoloads (gnus-treat-mail-gravatar gnus-treat-from-gravatar)
11497;;;;;; "gnus-gravatar" "gnus/gnus-gravatar.el" (19775 2028)) 11533;;;;;; "gnus-gravatar" "gnus/gnus-gravatar.el" (19845 45374))
11498;;; Generated autoloads from gnus/gnus-gravatar.el 11534;;; Generated autoloads from gnus/gnus-gravatar.el
11499 11535
11500(autoload 'gnus-treat-from-gravatar "gnus-gravatar" "\ 11536(autoload 'gnus-treat-from-gravatar "gnus-gravatar" "\
@@ -11512,7 +11548,7 @@ If gravatars are already displayed, remove them.
11512;;;*** 11548;;;***
11513 11549
11514;;;### (autoloads (gnus-fetch-group-other-frame gnus-fetch-group) 11550;;;### (autoloads (gnus-fetch-group-other-frame gnus-fetch-group)
11515;;;;;; "gnus-group" "gnus/gnus-group.el" (19780 4513)) 11551;;;;;; "gnus-group" "gnus/gnus-group.el" (19845 45374))
11516;;; Generated autoloads from gnus/gnus-group.el 11552;;; Generated autoloads from gnus/gnus-group.el
11517 11553
11518(autoload 'gnus-fetch-group "gnus-group" "\ 11554(autoload 'gnus-fetch-group "gnus-group" "\
@@ -11530,23 +11566,23 @@ Pop up a frame and enter GROUP.
11530;;;*** 11566;;;***
11531 11567
11532;;;### (autoloads (gnus-html-prefetch-images gnus-article-html) "gnus-html" 11568;;;### (autoloads (gnus-html-prefetch-images gnus-article-html) "gnus-html"
11533;;;;;; "gnus/gnus-html.el" (19775 2028)) 11569;;;;;; "gnus/gnus-html.el" (19845 45374))
11534;;; Generated autoloads from gnus/gnus-html.el 11570;;; Generated autoloads from gnus/gnus-html.el
11535 11571
11536(autoload 'gnus-article-html "gnus-html" "\ 11572(autoload 'gnus-article-html "gnus-html" "\
11537Not documented 11573
11538 11574
11539\(fn &optional HANDLE)" nil nil) 11575\(fn &optional HANDLE)" nil nil)
11540 11576
11541(autoload 'gnus-html-prefetch-images "gnus-html" "\ 11577(autoload 'gnus-html-prefetch-images "gnus-html" "\
11542Not documented 11578
11543 11579
11544\(fn SUMMARY)" nil nil) 11580\(fn SUMMARY)" nil nil)
11545 11581
11546;;;*** 11582;;;***
11547 11583
11548;;;### (autoloads (gnus-batch-score) "gnus-kill" "gnus/gnus-kill.el" 11584;;;### (autoloads (gnus-batch-score) "gnus-kill" "gnus/gnus-kill.el"
11549;;;;;; (19775 2028)) 11585;;;;;; (19845 45374))
11550;;; Generated autoloads from gnus/gnus-kill.el 11586;;; Generated autoloads from gnus/gnus-kill.el
11551 11587
11552(defalias 'gnus-batch-kill 'gnus-batch-score) 11588(defalias 'gnus-batch-kill 'gnus-batch-score)
@@ -11561,11 +11597,11 @@ Usage: emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score
11561 11597
11562;;;### (autoloads (gnus-mailing-list-mode gnus-mailing-list-insinuate 11598;;;### (autoloads (gnus-mailing-list-mode gnus-mailing-list-insinuate
11563;;;;;; turn-on-gnus-mailing-list-mode) "gnus-ml" "gnus/gnus-ml.el" 11599;;;;;; turn-on-gnus-mailing-list-mode) "gnus-ml" "gnus/gnus-ml.el"
11564;;;;;; (19775 2028)) 11600;;;;;; (19845 45374))
11565;;; Generated autoloads from gnus/gnus-ml.el 11601;;; Generated autoloads from gnus/gnus-ml.el
11566 11602
11567(autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" "\ 11603(autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" "\
11568Not documented 11604
11569 11605
11570\(fn)" nil nil) 11606\(fn)" nil nil)
11571 11607
@@ -11586,7 +11622,7 @@ Minor mode for providing mailing-list commands.
11586 11622
11587;;;### (autoloads (gnus-group-split-fancy gnus-group-split gnus-group-split-update 11623;;;### (autoloads (gnus-group-split-fancy gnus-group-split gnus-group-split-update
11588;;;;;; gnus-group-split-setup) "gnus-mlspl" "gnus/gnus-mlspl.el" 11624;;;;;; gnus-group-split-setup) "gnus-mlspl" "gnus/gnus-mlspl.el"
11589;;;;;; (19775 2028)) 11625;;;;;; (19845 45374))
11590;;; Generated autoloads from gnus/gnus-mlspl.el 11626;;; Generated autoloads from gnus/gnus-mlspl.el
11591 11627
11592(autoload 'gnus-group-split-setup "gnus-mlspl" "\ 11628(autoload 'gnus-group-split-setup "gnus-mlspl" "\
@@ -11687,7 +11723,7 @@ Calling (gnus-group-split-fancy nil nil \"mail.others\") returns:
11687;;;*** 11723;;;***
11688 11724
11689;;;### (autoloads (gnus-button-reply gnus-button-mailto gnus-msg-mail) 11725;;;### (autoloads (gnus-button-reply gnus-button-mailto gnus-msg-mail)
11690;;;;;; "gnus-msg" "gnus/gnus-msg.el" (19780 4513)) 11726;;;;;; "gnus-msg" "gnus/gnus-msg.el" (19845 45374))
11691;;; Generated autoloads from gnus/gnus-msg.el 11727;;; Generated autoloads from gnus/gnus-msg.el
11692 11728
11693(autoload 'gnus-msg-mail "gnus-msg" "\ 11729(autoload 'gnus-msg-mail "gnus-msg" "\
@@ -11713,7 +11749,7 @@ Like `message-reply'.
11713 11749
11714;;;### (autoloads (gnus-treat-newsgroups-picon gnus-treat-mail-picon 11750;;;### (autoloads (gnus-treat-newsgroups-picon gnus-treat-mail-picon
11715;;;;;; gnus-treat-from-picon) "gnus-picon" "gnus/gnus-picon.el" 11751;;;;;; gnus-treat-from-picon) "gnus-picon" "gnus/gnus-picon.el"
11716;;;;;; (19775 2028)) 11752;;;;;; (19845 45374))
11717;;; Generated autoloads from gnus/gnus-picon.el 11753;;; Generated autoloads from gnus/gnus-picon.el
11718 11754
11719(autoload 'gnus-treat-from-picon "gnus-picon" "\ 11755(autoload 'gnus-treat-from-picon "gnus-picon" "\
@@ -11740,7 +11776,7 @@ If picons are already displayed, remove them.
11740;;;;;; gnus-sorted-nintersection gnus-sorted-range-intersection 11776;;;;;; gnus-sorted-nintersection gnus-sorted-range-intersection
11741;;;;;; gnus-sorted-intersection gnus-intersection gnus-sorted-complement 11777;;;;;; gnus-sorted-intersection gnus-intersection gnus-sorted-complement
11742;;;;;; gnus-sorted-ndifference gnus-sorted-difference) "gnus-range" 11778;;;;;; gnus-sorted-ndifference gnus-sorted-difference) "gnus-range"
11743;;;;;; "gnus/gnus-range.el" (19775 2028)) 11779;;;;;; "gnus/gnus-range.el" (19845 45374))
11744;;; Generated autoloads from gnus/gnus-range.el 11780;;; Generated autoloads from gnus/gnus-range.el
11745 11781
11746(autoload 'gnus-sorted-difference "gnus-range" "\ 11782(autoload 'gnus-sorted-difference "gnus-range" "\
@@ -11764,7 +11800,7 @@ Both lists have to be sorted over <.
11764\(fn LIST1 LIST2)" nil nil) 11800\(fn LIST1 LIST2)" nil nil)
11765 11801
11766(autoload 'gnus-intersection "gnus-range" "\ 11802(autoload 'gnus-intersection "gnus-range" "\
11767Not documented 11803
11768 11804
11769\(fn LIST1 LIST2)" nil nil) 11805\(fn LIST1 LIST2)" nil nil)
11770 11806
@@ -11808,7 +11844,7 @@ Add NUM into sorted LIST by side effect.
11808;;;*** 11844;;;***
11809 11845
11810;;;### (autoloads (gnus-registry-install-hooks gnus-registry-initialize) 11846;;;### (autoloads (gnus-registry-install-hooks gnus-registry-initialize)
11811;;;;;; "gnus-registry" "gnus/gnus-registry.el" (19775 2028)) 11847;;;;;; "gnus-registry" "gnus/gnus-registry.el" (19867 52471))
11812;;; Generated autoloads from gnus/gnus-registry.el 11848;;; Generated autoloads from gnus/gnus-registry.el
11813 11849
11814(autoload 'gnus-registry-initialize "gnus-registry" "\ 11850(autoload 'gnus-registry-initialize "gnus-registry" "\
@@ -11824,8 +11860,8 @@ Install the registry hooks.
11824;;;*** 11860;;;***
11825 11861
11826;;;### (autoloads (gnus-sieve-article-add-rule gnus-sieve-generate 11862;;;### (autoloads (gnus-sieve-article-add-rule gnus-sieve-generate
11827;;;;;; gnus-sieve-update) "gnus-sieve" "gnus/gnus-sieve.el" (19775 11863;;;;;; gnus-sieve-update) "gnus-sieve" "gnus/gnus-sieve.el" (19845
11828;;;;;; 2028)) 11864;;;;;; 45374))
11829;;; Generated autoloads from gnus/gnus-sieve.el 11865;;; Generated autoloads from gnus/gnus-sieve.el
11830 11866
11831(autoload 'gnus-sieve-update "gnus-sieve" "\ 11867(autoload 'gnus-sieve-update "gnus-sieve" "\
@@ -11846,14 +11882,14 @@ See the documentation for these variables and functions for details.
11846\(fn)" t nil) 11882\(fn)" t nil)
11847 11883
11848(autoload 'gnus-sieve-article-add-rule "gnus-sieve" "\ 11884(autoload 'gnus-sieve-article-add-rule "gnus-sieve" "\
11849Not documented 11885
11850 11886
11851\(fn)" t nil) 11887\(fn)" t nil)
11852 11888
11853;;;*** 11889;;;***
11854 11890
11855;;;### (autoloads (gnus-update-format) "gnus-spec" "gnus/gnus-spec.el" 11891;;;### (autoloads (gnus-update-format) "gnus-spec" "gnus/gnus-spec.el"
11856;;;;;; (19775 2028)) 11892;;;;;; (19845 45374))
11857;;; Generated autoloads from gnus/gnus-spec.el 11893;;; Generated autoloads from gnus/gnus-spec.el
11858 11894
11859(autoload 'gnus-update-format "gnus-spec" "\ 11895(autoload 'gnus-update-format "gnus-spec" "\
@@ -11864,7 +11900,7 @@ Update the format specification near point.
11864;;;*** 11900;;;***
11865 11901
11866;;;### (autoloads (gnus-declare-backend) "gnus-start" "gnus/gnus-start.el" 11902;;;### (autoloads (gnus-declare-backend) "gnus-start" "gnus/gnus-start.el"
11867;;;;;; (19775 2028)) 11903;;;;;; (19867 5739))
11868;;; Generated autoloads from gnus/gnus-start.el 11904;;; Generated autoloads from gnus/gnus-start.el
11869 11905
11870(autoload 'gnus-declare-backend "gnus-start" "\ 11906(autoload 'gnus-declare-backend "gnus-start" "\
@@ -11875,7 +11911,7 @@ Declare back end NAME with ABILITIES as a Gnus back end.
11875;;;*** 11911;;;***
11876 11912
11877;;;### (autoloads (gnus-summary-bookmark-jump) "gnus-sum" "gnus/gnus-sum.el" 11913;;;### (autoloads (gnus-summary-bookmark-jump) "gnus-sum" "gnus/gnus-sum.el"
11878;;;;;; (19780 4513)) 11914;;;;;; (19867 5739))
11879;;; Generated autoloads from gnus/gnus-sum.el 11915;;; Generated autoloads from gnus/gnus-sum.el
11880 11916
11881(autoload 'gnus-summary-bookmark-jump "gnus-sum" "\ 11917(autoload 'gnus-summary-bookmark-jump "gnus-sum" "\
@@ -11887,7 +11923,7 @@ BOOKMARK is a bookmark name or a bookmark record.
11887;;;*** 11923;;;***
11888 11924
11889;;;### (autoloads (gnus-sync-install-hooks gnus-sync-initialize) 11925;;;### (autoloads (gnus-sync-install-hooks gnus-sync-initialize)
11890;;;;;; "gnus-sync" "gnus/gnus-sync.el" (19775 2028)) 11926;;;;;; "gnus-sync" "gnus/gnus-sync.el" (19845 45374))
11891;;; Generated autoloads from gnus/gnus-sync.el 11927;;; Generated autoloads from gnus/gnus-sync.el
11892 11928
11893(autoload 'gnus-sync-initialize "gnus-sync" "\ 11929(autoload 'gnus-sync-initialize "gnus-sync" "\
@@ -11903,7 +11939,7 @@ Install the sync hooks.
11903;;;*** 11939;;;***
11904 11940
11905;;;### (autoloads (gnus-add-configuration) "gnus-win" "gnus/gnus-win.el" 11941;;;### (autoloads (gnus-add-configuration) "gnus-win" "gnus/gnus-win.el"
11906;;;;;; (19780 4513)) 11942;;;;;; (19845 45374))
11907;;; Generated autoloads from gnus/gnus-win.el 11943;;; Generated autoloads from gnus/gnus-win.el
11908 11944
11909(autoload 'gnus-add-configuration "gnus-win" "\ 11945(autoload 'gnus-add-configuration "gnus-win" "\
@@ -11913,7 +11949,7 @@ Add the window configuration CONF to `gnus-buffer-configuration'.
11913 11949
11914;;;*** 11950;;;***
11915 11951
11916;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (19775 2029)) 11952;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (19845 45374))
11917;;; Generated autoloads from play/gomoku.el 11953;;; Generated autoloads from play/gomoku.el
11918 11954
11919(autoload 'gomoku "gomoku" "\ 11955(autoload 'gomoku "gomoku" "\
@@ -11940,8 +11976,8 @@ Use \\[describe-mode] for more info.
11940;;;*** 11976;;;***
11941 11977
11942;;;### (autoloads (goto-address-prog-mode goto-address-mode goto-address 11978;;;### (autoloads (goto-address-prog-mode goto-address-mode goto-address
11943;;;;;; goto-address-at-point) "goto-addr" "net/goto-addr.el" (19775 11979;;;;;; goto-address-at-point) "goto-addr" "net/goto-addr.el" (19845
11944;;;;;; 2029)) 11980;;;;;; 45374))
11945;;; Generated autoloads from net/goto-addr.el 11981;;; Generated autoloads from net/goto-addr.el
11946 11982
11947(define-obsolete-function-alias 'goto-address-at-mouse 'goto-address-at-point "22.1") 11983(define-obsolete-function-alias 'goto-address-at-mouse 'goto-address-at-point "22.1")
@@ -11980,7 +12016,7 @@ Turn on `goto-address-mode', but only in comments and strings.
11980;;;*** 12016;;;***
11981 12017
11982;;;### (autoloads (gravatar-retrieve-synchronously gravatar-retrieve) 12018;;;### (autoloads (gravatar-retrieve-synchronously gravatar-retrieve)
11983;;;;;; "gravatar" "gnus/gravatar.el" (19775 2028)) 12019;;;;;; "gravatar" "gnus/gravatar.el" (19845 45374))
11984;;; Generated autoloads from gnus/gravatar.el 12020;;; Generated autoloads from gnus/gravatar.el
11985 12021
11986(autoload 'gravatar-retrieve "gravatar" "\ 12022(autoload 'gravatar-retrieve "gravatar" "\
@@ -11998,7 +12034,7 @@ Retrieve MAIL-ADDRESS gravatar and returns it.
11998 12034
11999;;;### (autoloads (zrgrep rgrep lgrep grep-find grep grep-mode grep-compute-defaults 12035;;;### (autoloads (zrgrep rgrep lgrep grep-find grep grep-mode grep-compute-defaults
12000;;;;;; grep-process-setup grep-setup-hook grep-find-command grep-command 12036;;;;;; grep-process-setup grep-setup-hook grep-find-command grep-command
12001;;;;;; grep-window-height) "grep" "progmodes/grep.el" (19780 4514)) 12037;;;;;; grep-window-height) "grep" "progmodes/grep.el" (19864 29553))
12002;;; Generated autoloads from progmodes/grep.el 12038;;; Generated autoloads from progmodes/grep.el
12003 12039
12004(defvar grep-window-height nil "\ 12040(defvar grep-window-height nil "\
@@ -12048,10 +12084,11 @@ See `grep-find-use-xargs'.
12048This variable's value takes effect when `grep-compute-defaults' is called.") 12084This variable's value takes effect when `grep-compute-defaults' is called.")
12049 12085
12050(defvar grep-find-use-xargs nil "\ 12086(defvar grep-find-use-xargs nil "\
12051Non-nil means that `grep-find' uses the `xargs' utility by default. 12087How to invoke find and grep.
12052If `exec', use `find -exec'. 12088If `exec', use `find -exec {} ;'.
12089If `exec-plus' use `find -exec {} +'.
12053If `gnu', use `find -print0' and `xargs -0'. 12090If `gnu', use `find -print0' and `xargs -0'.
12054Any other non-nil value means to use `find -print' and `xargs'. 12091Any other value means to use `find -print' and `xargs'.
12055 12092
12056This variable's value takes effect when `grep-compute-defaults' is called.") 12093This variable's value takes effect when `grep-compute-defaults' is called.")
12057 12094
@@ -12066,7 +12103,7 @@ Set up `compilation-exit-message-function' and run `grep-setup-hook'.
12066\(fn)" nil nil) 12103\(fn)" nil nil)
12067 12104
12068(autoload 'grep-compute-defaults "grep" "\ 12105(autoload 'grep-compute-defaults "grep" "\
12069Not documented 12106
12070 12107
12071\(fn)" nil nil) 12108\(fn)" nil nil)
12072 12109
@@ -12154,7 +12191,7 @@ file name to `*.gz', and sets `grep-highlight-matches' to `always'.
12154 12191
12155;;;*** 12192;;;***
12156 12193
12157;;;### (autoloads (gs-load-image) "gs" "gs.el" (19775 2028)) 12194;;;### (autoloads (gs-load-image) "gs" "gs.el" (19845 45374))
12158;;; Generated autoloads from gs.el 12195;;; Generated autoloads from gs.el
12159 12196
12160(autoload 'gs-load-image "gs" "\ 12197(autoload 'gs-load-image "gs" "\
@@ -12168,7 +12205,7 @@ the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful.
12168;;;*** 12205;;;***
12169 12206
12170;;;### (autoloads (gud-tooltip-mode gdb-script-mode jdb pdb perldb 12207;;;### (autoloads (gud-tooltip-mode gdb-script-mode jdb pdb perldb
12171;;;;;; xdb dbx sdb gud-gdb) "gud" "progmodes/gud.el" (19775 2029)) 12208;;;;;; xdb dbx sdb gud-gdb) "gud" "progmodes/gud.el" (19845 45374))
12172;;; Generated autoloads from progmodes/gud.el 12209;;; Generated autoloads from progmodes/gud.el
12173 12210
12174(autoload 'gud-gdb "gud" "\ 12211(autoload 'gud-gdb "gud" "\
@@ -12254,8 +12291,8 @@ Toggle the display of GUD tooltips.
12254 12291
12255;;;*** 12292;;;***
12256 12293
12257;;;### (autoloads (handwrite) "handwrite" "play/handwrite.el" (19775 12294;;;### (autoloads (handwrite) "handwrite" "play/handwrite.el" (19845
12258;;;;;; 2029)) 12295;;;;;; 45374))
12259;;; Generated autoloads from play/handwrite.el 12296;;; Generated autoloads from play/handwrite.el
12260 12297
12261(autoload 'handwrite "handwrite" "\ 12298(autoload 'handwrite "handwrite" "\
@@ -12263,17 +12300,17 @@ Turns the buffer into a \"handwritten\" document.
12263The functions `handwrite-10pt', `handwrite-11pt', `handwrite-12pt' 12300The functions `handwrite-10pt', `handwrite-11pt', `handwrite-12pt'
12264and `handwrite-13pt' set up for various sizes of output. 12301and `handwrite-13pt' set up for various sizes of output.
12265 12302
12266Variables: handwrite-linespace (default 12) 12303Variables: `handwrite-linespace' (default 12)
12267 handwrite-fontsize (default 11) 12304 `handwrite-fontsize' (default 11)
12268 handwrite-numlines (default 60) 12305 `handwrite-numlines' (default 60)
12269 handwrite-pagenumbering (default nil) 12306 `handwrite-pagenumbering' (default nil)
12270 12307
12271\(fn)" t nil) 12308\(fn)" t nil)
12272 12309
12273;;;*** 12310;;;***
12274 12311
12275;;;### (autoloads (hanoi-unix-64 hanoi-unix hanoi) "hanoi" "play/hanoi.el" 12312;;;### (autoloads (hanoi-unix-64 hanoi-unix hanoi) "hanoi" "play/hanoi.el"
12276;;;;;; (19763 27287)) 12313;;;;;; (19845 45374))
12277;;; Generated autoloads from play/hanoi.el 12314;;; Generated autoloads from play/hanoi.el
12278 12315
12279(autoload 'hanoi "hanoi" "\ 12316(autoload 'hanoi "hanoi" "\
@@ -12302,7 +12339,7 @@ to be updated.
12302 12339
12303;;;### (autoloads (mail-check-payment mail-add-payment-async mail-add-payment 12340;;;### (autoloads (mail-check-payment mail-add-payment-async mail-add-payment
12304;;;;;; hashcash-verify-payment hashcash-insert-payment-async hashcash-insert-payment) 12341;;;;;; hashcash-verify-payment hashcash-insert-payment-async hashcash-insert-payment)
12305;;;;;; "hashcash" "mail/hashcash.el" (19780 4513)) 12342;;;;;; "hashcash" "mail/hashcash.el" (19845 45374))
12306;;; Generated autoloads from mail/hashcash.el 12343;;; Generated autoloads from mail/hashcash.el
12307 12344
12308(autoload 'hashcash-insert-payment "hashcash" "\ 12345(autoload 'hashcash-insert-payment "hashcash" "\
@@ -12347,7 +12384,7 @@ Prefix arg sets default accept amount temporarily.
12347;;;### (autoloads (scan-buf-previous-region scan-buf-next-region 12384;;;### (autoloads (scan-buf-previous-region scan-buf-next-region
12348;;;;;; scan-buf-move-to-region help-at-pt-display-when-idle help-at-pt-set-timer 12385;;;;;; scan-buf-move-to-region help-at-pt-display-when-idle help-at-pt-set-timer
12349;;;;;; help-at-pt-cancel-timer display-local-help help-at-pt-kbd-string 12386;;;;;; help-at-pt-cancel-timer display-local-help help-at-pt-kbd-string
12350;;;;;; help-at-pt-string) "help-at-pt" "help-at-pt.el" (19775 2028)) 12387;;;;;; help-at-pt-string) "help-at-pt" "help-at-pt.el" (19845 45374))
12351;;; Generated autoloads from help-at-pt.el 12388;;; Generated autoloads from help-at-pt.el
12352 12389
12353(autoload 'help-at-pt-string "help-at-pt" "\ 12390(autoload 'help-at-pt-string "help-at-pt" "\
@@ -12477,7 +12514,7 @@ different regions. With numeric argument ARG, behaves like
12477;;;### (autoloads (doc-file-to-info doc-file-to-man describe-categories 12514;;;### (autoloads (doc-file-to-info doc-file-to-man describe-categories
12478;;;;;; describe-syntax describe-variable variable-at-point describe-function-1 12515;;;;;; describe-syntax describe-variable variable-at-point describe-function-1
12479;;;;;; find-lisp-object-file-name help-C-file-name describe-function) 12516;;;;;; find-lisp-object-file-name help-C-file-name describe-function)
12480;;;;;; "help-fns" "help-fns.el" (19775 2028)) 12517;;;;;; "help-fns" "help-fns.el" (19867 5739))
12481;;; Generated autoloads from help-fns.el 12518;;; Generated autoloads from help-fns.el
12482 12519
12483(autoload 'describe-function "help-fns" "\ 12520(autoload 'describe-function "help-fns" "\
@@ -12509,7 +12546,7 @@ suitable file is found, return nil.
12509\(fn OBJECT TYPE)" nil nil) 12546\(fn OBJECT TYPE)" nil nil)
12510 12547
12511(autoload 'describe-function-1 "help-fns" "\ 12548(autoload 'describe-function-1 "help-fns" "\
12512Not documented 12549
12513 12550
12514\(fn FUNCTION)" nil nil) 12551\(fn FUNCTION)" nil nil)
12515 12552
@@ -12557,7 +12594,7 @@ Produce a texinfo buffer with sorted doc-strings from the DOC file.
12557;;;*** 12594;;;***
12558 12595
12559;;;### (autoloads (three-step-help) "help-macro" "help-macro.el" 12596;;;### (autoloads (three-step-help) "help-macro" "help-macro.el"
12560;;;;;; (19775 2028)) 12597;;;;;; (19845 45374))
12561;;; Generated autoloads from help-macro.el 12598;;; Generated autoloads from help-macro.el
12562 12599
12563(defvar three-step-help nil "\ 12600(defvar three-step-help nil "\
@@ -12573,8 +12610,8 @@ gives the window that lists the options.")
12573 12610
12574;;;### (autoloads (help-xref-on-pp help-insert-xref-button help-xref-button 12611;;;### (autoloads (help-xref-on-pp help-insert-xref-button help-xref-button
12575;;;;;; help-make-xrefs help-buffer help-setup-xref help-mode-finish 12612;;;;;; help-make-xrefs help-buffer help-setup-xref help-mode-finish
12576;;;;;; help-mode-setup help-mode) "help-mode" "help-mode.el" (19780 12613;;;;;; help-mode-setup help-mode) "help-mode" "help-mode.el" (19849
12577;;;;;; 4513)) 12614;;;;;; 62189))
12578;;; Generated autoloads from help-mode.el 12615;;; Generated autoloads from help-mode.el
12579 12616
12580(autoload 'help-mode "help-mode" "\ 12617(autoload 'help-mode "help-mode" "\
@@ -12586,12 +12623,12 @@ Commands:
12586\(fn)" t nil) 12623\(fn)" t nil)
12587 12624
12588(autoload 'help-mode-setup "help-mode" "\ 12625(autoload 'help-mode-setup "help-mode" "\
12589Not documented 12626
12590 12627
12591\(fn)" nil nil) 12628\(fn)" nil nil)
12592 12629
12593(autoload 'help-mode-finish "help-mode" "\ 12630(autoload 'help-mode-finish "help-mode" "\
12594Not documented 12631
12595 12632
12596\(fn)" nil nil) 12633\(fn)" nil nil)
12597 12634
@@ -12612,9 +12649,10 @@ restore it properly when going back.
12612(autoload 'help-buffer "help-mode" "\ 12649(autoload 'help-buffer "help-mode" "\
12613Return the name of a buffer for inserting help. 12650Return the name of a buffer for inserting help.
12614If `help-xref-following' is non-nil, this is the name of the 12651If `help-xref-following' is non-nil, this is the name of the
12615current buffer. 12652current buffer. Signal an error if this buffer is not derived
12616Otherwise, it is *Help*; if no buffer with that name currently 12653from `help-mode'.
12617exists, it is created. 12654Otherwise, return \"*Help*\", creating a buffer with that name if
12655it does not already exist.
12618 12656
12619\(fn)" nil nil) 12657\(fn)" nil nil)
12620 12658
@@ -12666,7 +12704,7 @@ Add xrefs for symbols in `pp's output between FROM and TO.
12666;;;*** 12704;;;***
12667 12705
12668;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" 12706;;;### (autoloads (Helper-help Helper-describe-bindings) "helper"
12669;;;;;; "emacs-lisp/helper.el" (19775 2028)) 12707;;;;;; "emacs-lisp/helper.el" (19845 45374))
12670;;; Generated autoloads from emacs-lisp/helper.el 12708;;; Generated autoloads from emacs-lisp/helper.el
12671 12709
12672(autoload 'Helper-describe-bindings "helper" "\ 12710(autoload 'Helper-describe-bindings "helper" "\
@@ -12682,7 +12720,7 @@ Provide help for current mode.
12682;;;*** 12720;;;***
12683 12721
12684;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl" 12722;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl"
12685;;;;;; "hexl.el" (19775 2028)) 12723;;;;;; "hexl.el" (19865 50420))
12686;;; Generated autoloads from hexl.el 12724;;; Generated autoloads from hexl.el
12687 12725
12688(autoload 'hexl-mode "hexl" "\ 12726(autoload 'hexl-mode "hexl" "\
@@ -12779,7 +12817,7 @@ This discards the buffer's undo information.
12779;;;### (autoloads (hi-lock-write-interactive-patterns hi-lock-unface-buffer 12817;;;### (autoloads (hi-lock-write-interactive-patterns hi-lock-unface-buffer
12780;;;;;; hi-lock-face-phrase-buffer hi-lock-face-buffer hi-lock-line-face-buffer 12818;;;;;; hi-lock-face-phrase-buffer hi-lock-face-buffer hi-lock-line-face-buffer
12781;;;;;; global-hi-lock-mode hi-lock-mode) "hi-lock" "hi-lock.el" 12819;;;;;; global-hi-lock-mode hi-lock-mode) "hi-lock" "hi-lock.el"
12782;;;;;; (19775 2028)) 12820;;;;;; (19845 45374))
12783;;; Generated autoloads from hi-lock.el 12821;;; Generated autoloads from hi-lock.el
12784 12822
12785(autoload 'hi-lock-mode "hi-lock" "\ 12823(autoload 'hi-lock-mode "hi-lock" "\
@@ -12913,7 +12951,7 @@ be found in variable `hi-lock-interactive-patterns'.
12913;;;*** 12951;;;***
12914 12952
12915;;;### (autoloads (hide-ifdef-mode) "hideif" "progmodes/hideif.el" 12953;;;### (autoloads (hide-ifdef-mode) "hideif" "progmodes/hideif.el"
12916;;;;;; (19775 2029)) 12954;;;;;; (19845 45374))
12917;;; Generated autoloads from progmodes/hideif.el 12955;;; Generated autoloads from progmodes/hideif.el
12918 12956
12919(autoload 'hide-ifdef-mode "hideif" "\ 12957(autoload 'hide-ifdef-mode "hideif" "\
@@ -12953,7 +12991,7 @@ how the hiding is done:
12953;;;*** 12991;;;***
12954 12992
12955;;;### (autoloads (turn-off-hideshow hs-minor-mode) "hideshow" "progmodes/hideshow.el" 12993;;;### (autoloads (turn-off-hideshow hs-minor-mode) "hideshow" "progmodes/hideshow.el"
12956;;;;;; (19775 2029)) 12994;;;;;; (19845 45374))
12957;;; Generated autoloads from progmodes/hideshow.el 12995;;; Generated autoloads from progmodes/hideshow.el
12958 12996
12959(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))) "\ 12997(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))) "\
@@ -13015,8 +13053,8 @@ Unconditionally turn off `hs-minor-mode'.
13015;;;;;; highlight-compare-buffers highlight-changes-rotate-faces 13053;;;;;; highlight-compare-buffers highlight-changes-rotate-faces
13016;;;;;; highlight-changes-previous-change highlight-changes-next-change 13054;;;;;; highlight-changes-previous-change highlight-changes-next-change
13017;;;;;; highlight-changes-remove-highlight highlight-changes-visible-mode 13055;;;;;; highlight-changes-remove-highlight highlight-changes-visible-mode
13018;;;;;; highlight-changes-mode) "hilit-chg" "hilit-chg.el" (19775 13056;;;;;; highlight-changes-mode) "hilit-chg" "hilit-chg.el" (19845
13019;;;;;; 2028)) 13057;;;;;; 45374))
13020;;; Generated autoloads from hilit-chg.el 13058;;; Generated autoloads from hilit-chg.el
13021 13059
13022(autoload 'highlight-changes-mode "hilit-chg" "\ 13060(autoload 'highlight-changes-mode "hilit-chg" "\
@@ -13145,7 +13183,7 @@ See `highlight-changes-mode' for more information on Highlight-Changes mode.
13145;;;;;; hippie-expand-ignore-buffers hippie-expand-max-buffers hippie-expand-no-restriction 13183;;;;;; hippie-expand-ignore-buffers hippie-expand-max-buffers hippie-expand-no-restriction
13146;;;;;; hippie-expand-dabbrev-as-symbol hippie-expand-dabbrev-skip-space 13184;;;;;; hippie-expand-dabbrev-as-symbol hippie-expand-dabbrev-skip-space
13147;;;;;; hippie-expand-verbose hippie-expand-try-functions-list) "hippie-exp" 13185;;;;;; hippie-expand-verbose hippie-expand-try-functions-list) "hippie-exp"
13148;;;;;; "hippie-exp.el" (19775 2028)) 13186;;;;;; "hippie-exp.el" (19845 45374))
13149;;; Generated autoloads from hippie-exp.el 13187;;; Generated autoloads from hippie-exp.el
13150 13188
13151(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) "\ 13189(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) "\
@@ -13218,7 +13256,7 @@ argument VERBOSE non-nil makes the function verbose.
13218;;;*** 13256;;;***
13219 13257
13220;;;### (autoloads (global-hl-line-mode hl-line-mode) "hl-line" "hl-line.el" 13258;;;### (autoloads (global-hl-line-mode hl-line-mode) "hl-line" "hl-line.el"
13221;;;;;; (19775 2028)) 13259;;;;;; (19845 45374))
13222;;; Generated autoloads from hl-line.el 13260;;; Generated autoloads from hl-line.el
13223 13261
13224(autoload 'hl-line-mode "hl-line" "\ 13262(autoload 'hl-line-mode "hl-line" "\
@@ -13262,7 +13300,7 @@ Global-Hl-Line mode uses the functions `global-hl-line-unhighlight' and
13262;;;;;; holiday-bahai-holidays holiday-islamic-holidays holiday-christian-holidays 13300;;;;;; holiday-bahai-holidays holiday-islamic-holidays holiday-christian-holidays
13263;;;;;; holiday-hebrew-holidays holiday-other-holidays holiday-local-holidays 13301;;;;;; holiday-hebrew-holidays holiday-other-holidays holiday-local-holidays
13264;;;;;; holiday-oriental-holidays holiday-general-holidays) "holidays" 13302;;;;;; holiday-oriental-holidays holiday-general-holidays) "holidays"
13265;;;;;; "calendar/holidays.el" (19775 2027)) 13303;;;;;; "calendar/holidays.el" (19845 45374))
13266;;; Generated autoloads from calendar/holidays.el 13304;;; Generated autoloads from calendar/holidays.el
13267 13305
13268(define-obsolete-variable-alias 'general-holidays 'holiday-general-holidays "23.1") 13306(define-obsolete-variable-alias 'general-holidays 'holiday-general-holidays "23.1")
@@ -13410,8 +13448,8 @@ The optional LABEL is used to label the buffer created.
13410 13448
13411;;;*** 13449;;;***
13412 13450
13413;;;### (autoloads (html2text) "html2text" "gnus/html2text.el" (19775 13451;;;### (autoloads (html2text) "html2text" "gnus/html2text.el" (19845
13414;;;;;; 2028)) 13452;;;;;; 45374))
13415;;; Generated autoloads from gnus/html2text.el 13453;;; Generated autoloads from gnus/html2text.el
13416 13454
13417(autoload 'html2text "html2text" "\ 13455(autoload 'html2text "html2text" "\
@@ -13422,7 +13460,7 @@ Convert HTML to plain text in the current buffer.
13422;;;*** 13460;;;***
13423 13461
13424;;;### (autoloads (htmlfontify-copy-and-link-dir htmlfontify-buffer) 13462;;;### (autoloads (htmlfontify-copy-and-link-dir htmlfontify-buffer)
13425;;;;;; "htmlfontify" "htmlfontify.el" (19780 4513)) 13463;;;;;; "htmlfontify" "htmlfontify.el" (19845 45374))
13426;;; Generated autoloads from htmlfontify.el 13464;;; Generated autoloads from htmlfontify.el
13427 13465
13428(autoload 'htmlfontify-buffer "htmlfontify" "\ 13466(autoload 'htmlfontify-buffer "htmlfontify" "\
@@ -13455,8 +13493,8 @@ You may also want to set `hfy-page-header' and `hfy-page-footer'.
13455;;;*** 13493;;;***
13456 13494
13457;;;### (autoloads (define-ibuffer-filter define-ibuffer-op define-ibuffer-sorter 13495;;;### (autoloads (define-ibuffer-filter define-ibuffer-op define-ibuffer-sorter
13458;;;;;; define-ibuffer-column) "ibuf-macs" "ibuf-macs.el" (19775 13496;;;;;; define-ibuffer-column) "ibuf-macs" "ibuf-macs.el" (19845
13459;;;;;; 2028)) 13497;;;;;; 45374))
13460;;; Generated autoloads from ibuf-macs.el 13498;;; Generated autoloads from ibuf-macs.el
13461 13499
13462(autoload 'define-ibuffer-column "ibuf-macs" "\ 13500(autoload 'define-ibuffer-column "ibuf-macs" "\
@@ -13553,7 +13591,7 @@ bound to the current value of the filter.
13553;;;*** 13591;;;***
13554 13592
13555;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers) 13593;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers)
13556;;;;;; "ibuffer" "ibuffer.el" (19780 4513)) 13594;;;;;; "ibuffer" "ibuffer.el" (19845 45374))
13557;;; Generated autoloads from ibuffer.el 13595;;; Generated autoloads from ibuffer.el
13558 13596
13559(autoload 'ibuffer-list-buffers "ibuffer" "\ 13597(autoload 'ibuffer-list-buffers "ibuffer" "\
@@ -13594,7 +13632,7 @@ FORMATS is the value to use for `ibuffer-formats'.
13594 13632
13595;;;### (autoloads (icalendar-import-buffer icalendar-import-file 13633;;;### (autoloads (icalendar-import-buffer icalendar-import-file
13596;;;;;; icalendar-export-region icalendar-export-file) "icalendar" 13634;;;;;; icalendar-export-region icalendar-export-file) "icalendar"
13597;;;;;; "calendar/icalendar.el" (19780 4513)) 13635;;;;;; "calendar/icalendar.el" (19845 45374))
13598;;; Generated autoloads from calendar/icalendar.el 13636;;; Generated autoloads from calendar/icalendar.el
13599 13637
13600(autoload 'icalendar-export-file "icalendar" "\ 13638(autoload 'icalendar-export-file "icalendar" "\
@@ -13646,8 +13684,8 @@ buffer `*icalendar-errors*'.
13646 13684
13647;;;*** 13685;;;***
13648 13686
13649;;;### (autoloads (icomplete-mode) "icomplete" "icomplete.el" (19780 13687;;;### (autoloads (icomplete-mode) "icomplete" "icomplete.el" (19845
13650;;;;;; 4513)) 13688;;;;;; 45374))
13651;;; Generated autoloads from icomplete.el 13689;;; Generated autoloads from icomplete.el
13652 13690
13653(defvar icomplete-mode nil "\ 13691(defvar icomplete-mode nil "\
@@ -13668,7 +13706,7 @@ otherwise turn it off.
13668 13706
13669;;;*** 13707;;;***
13670 13708
13671;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (19775 2029)) 13709;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (19845 45374))
13672;;; Generated autoloads from progmodes/icon.el 13710;;; Generated autoloads from progmodes/icon.el
13673 13711
13674(autoload 'icon-mode "icon" "\ 13712(autoload 'icon-mode "icon" "\
@@ -13709,7 +13747,7 @@ with no args, if that value is non-nil.
13709;;;*** 13747;;;***
13710 13748
13711;;;### (autoloads (idlwave-shell) "idlw-shell" "progmodes/idlw-shell.el" 13749;;;### (autoloads (idlwave-shell) "idlw-shell" "progmodes/idlw-shell.el"
13712;;;;;; (19775 2029)) 13750;;;;;; (19845 45374))
13713;;; Generated autoloads from progmodes/idlw-shell.el 13751;;; Generated autoloads from progmodes/idlw-shell.el
13714 13752
13715(autoload 'idlwave-shell "idlw-shell" "\ 13753(autoload 'idlwave-shell "idlw-shell" "\
@@ -13735,7 +13773,7 @@ See also the variable `idlwave-shell-prompt-pattern'.
13735;;;*** 13773;;;***
13736 13774
13737;;;### (autoloads (idlwave-mode) "idlwave" "progmodes/idlwave.el" 13775;;;### (autoloads (idlwave-mode) "idlwave" "progmodes/idlwave.el"
13738;;;;;; (19775 2029)) 13776;;;;;; (19863 8742))
13739;;; Generated autoloads from progmodes/idlwave.el 13777;;; Generated autoloads from progmodes/idlwave.el
13740 13778
13741(autoload 'idlwave-mode "idlwave" "\ 13779(autoload 'idlwave-mode "idlwave" "\
@@ -13869,8 +13907,8 @@ The main features of this mode are
13869;;;;;; ido-find-alternate-file ido-find-file-other-window ido-find-file 13907;;;;;; ido-find-alternate-file ido-find-file-other-window ido-find-file
13870;;;;;; ido-find-file-in-dir ido-switch-buffer-other-frame ido-insert-buffer 13908;;;;;; ido-find-file-in-dir ido-switch-buffer-other-frame ido-insert-buffer
13871;;;;;; ido-kill-buffer ido-display-buffer ido-switch-buffer-other-window 13909;;;;;; ido-kill-buffer ido-display-buffer ido-switch-buffer-other-window
13872;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (19775 13910;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (19857
13873;;;;;; 2028)) 13911;;;;;; 56304))
13874;;; Generated autoloads from ido.el 13912;;; Generated autoloads from ido.el
13875 13913
13876(defvar ido-mode nil "\ 13914(defvar ido-mode nil "\
@@ -13888,8 +13926,8 @@ use either \\[customize] or the function `ido-mode'.")
13888(custom-autoload 'ido-mode "ido" nil) 13926(custom-autoload 'ido-mode "ido" nil)
13889 13927
13890(autoload 'ido-mode "ido" "\ 13928(autoload 'ido-mode "ido" "\
13891Toggle ido speed-ups on or off. 13929Toggle ido mode on or off.
13892With ARG, turn ido speed-up on if arg is positive, off otherwise. 13930With ARG, turn ido-mode on if arg is positive, off otherwise.
13893Turning on ido-mode will remap (via a minor-mode keymap) the default 13931Turning on ido-mode will remap (via a minor-mode keymap) the default
13894keybindings for the `find-file' and `switch-to-buffer' families of 13932keybindings for the `find-file' and `switch-to-buffer' families of
13895commands to the ido versions of these functions. 13933commands to the ido versions of these functions.
@@ -14116,8 +14154,8 @@ Ido replacement for the built-in `completing-read'.
14116Read a string in the minibuffer with ido-style completion. 14154Read a string in the minibuffer with ido-style completion.
14117PROMPT is a string to prompt with; normally it ends in a colon and a space. 14155PROMPT is a string to prompt with; normally it ends in a colon and a space.
14118CHOICES is a list of strings which are the possible completions. 14156CHOICES is a list of strings which are the possible completions.
14119PREDICATE is currently ignored; it is included to be compatible 14157PREDICATE and INHERIT-INPUT-METHOD is currently ignored; it is included
14120 with `completing-read'. 14158 to be compatible with `completing-read'.
14121If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless 14159If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless
14122 the input is (or completes to) an element of CHOICES or is null. 14160 the input is (or completes to) an element of CHOICES or is null.
14123 If the input is null, `ido-completing-read' returns DEF, or an empty 14161 If the input is null, `ido-completing-read' returns DEF, or an empty
@@ -14127,11 +14165,11 @@ If INITIAL-INPUT is non-nil, insert it in the minibuffer initially,
14127HIST, if non-nil, specifies a history list. 14165HIST, if non-nil, specifies a history list.
14128DEF, if non-nil, is the default value. 14166DEF, if non-nil, is the default value.
14129 14167
14130\(fn PROMPT CHOICES &optional PREDICATE REQUIRE-MATCH INITIAL-INPUT HIST DEF)" nil nil) 14168\(fn PROMPT CHOICES &optional PREDICATE REQUIRE-MATCH INITIAL-INPUT HIST DEF INHERIT-INPUT-METHOD)" nil nil)
14131 14169
14132;;;*** 14170;;;***
14133 14171
14134;;;### (autoloads (ielm) "ielm" "ielm.el" (19775 2028)) 14172;;;### (autoloads (ielm) "ielm" "ielm.el" (19863 8742))
14135;;; Generated autoloads from ielm.el 14173;;; Generated autoloads from ielm.el
14136 (add-hook 'same-window-buffer-names (purecopy "*ielm*")) 14174 (add-hook 'same-window-buffer-names (purecopy "*ielm*"))
14137 14175
@@ -14143,7 +14181,7 @@ Switches to the buffer `*ielm*', or creates it if it does not exist.
14143 14181
14144;;;*** 14182;;;***
14145 14183
14146;;;### (autoloads (iimage-mode) "iimage" "iimage.el" (19780 4513)) 14184;;;### (autoloads (iimage-mode) "iimage" "iimage.el" (19845 45374))
14147;;; Generated autoloads from iimage.el 14185;;; Generated autoloads from iimage.el
14148 14186
14149(define-obsolete-function-alias 'turn-on-iimage-mode 'iimage-mode "24.1") 14187(define-obsolete-function-alias 'turn-on-iimage-mode 'iimage-mode "24.1")
@@ -14160,7 +14198,7 @@ Toggle inline image minor mode.
14160;;;;;; put-image create-image image-type-auto-detected-p image-type-available-p 14198;;;;;; put-image create-image image-type-auto-detected-p image-type-available-p
14161;;;;;; image-type image-type-from-file-name image-type-from-file-header 14199;;;;;; image-type image-type-from-file-name image-type-from-file-header
14162;;;;;; image-type-from-buffer image-type-from-data) "image" "image.el" 14200;;;;;; image-type-from-buffer image-type-from-data) "image" "image.el"
14163;;;;;; (19775 2028)) 14201;;;;;; (19849 29307))
14164;;; Generated autoloads from image.el 14202;;; Generated autoloads from image.el
14165 14203
14166(autoload 'image-type-from-data "image" "\ 14204(autoload 'image-type-from-data "image" "\
@@ -14366,7 +14404,7 @@ Register the file types that ImageMagick is able to handle.
14366;;;;;; image-dired-jump-thumbnail-buffer image-dired-delete-tag 14404;;;;;; image-dired-jump-thumbnail-buffer image-dired-delete-tag
14367;;;;;; image-dired-tag-files image-dired-show-all-from-dir image-dired-display-thumbs 14405;;;;;; image-dired-tag-files image-dired-show-all-from-dir image-dired-display-thumbs
14368;;;;;; image-dired-dired-with-window-configuration image-dired-dired-toggle-marked-thumbs) 14406;;;;;; image-dired-dired-with-window-configuration image-dired-dired-toggle-marked-thumbs)
14369;;;;;; "image-dired" "image-dired.el" (19780 45051)) 14407;;;;;; "image-dired" "image-dired.el" (19845 45374))
14370;;; Generated autoloads from image-dired.el 14408;;; Generated autoloads from image-dired.el
14371 14409
14372(autoload 'image-dired-dired-toggle-marked-thumbs "image-dired" "\ 14410(autoload 'image-dired-dired-toggle-marked-thumbs "image-dired" "\
@@ -14504,7 +14542,7 @@ easy-to-use form.
14504 14542
14505;;;### (autoloads (auto-image-file-mode insert-image-file image-file-name-regexp 14543;;;### (autoloads (auto-image-file-mode insert-image-file image-file-name-regexp
14506;;;;;; image-file-name-regexps image-file-name-extensions) "image-file" 14544;;;;;; image-file-name-regexps image-file-name-extensions) "image-file"
14507;;;;;; "image-file.el" (19775 2028)) 14545;;;;;; "image-file.el" (19845 45374))
14508;;; Generated autoloads from image-file.el 14546;;; Generated autoloads from image-file.el
14509 14547
14510(defvar image-file-name-extensions (purecopy '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm" "svg")) "\ 14548(defvar image-file-name-extensions (purecopy '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm" "svg")) "\
@@ -14566,7 +14604,7 @@ Image files are those whose name has an extension in
14566;;;*** 14604;;;***
14567 14605
14568;;;### (autoloads (image-bookmark-jump image-mode-as-text image-minor-mode 14606;;;### (autoloads (image-bookmark-jump image-mode-as-text image-minor-mode
14569;;;;;; image-mode) "image-mode" "image-mode.el" (19780 4513)) 14607;;;;;; image-mode) "image-mode" "image-mode.el" (19845 45374))
14570;;; Generated autoloads from image-mode.el 14608;;; Generated autoloads from image-mode.el
14571 14609
14572(autoload 'image-mode "image-mode" "\ 14610(autoload 'image-mode "image-mode" "\
@@ -14600,14 +14638,14 @@ on these modes.
14600\(fn)" t nil) 14638\(fn)" t nil)
14601 14639
14602(autoload 'image-bookmark-jump "image-mode" "\ 14640(autoload 'image-bookmark-jump "image-mode" "\
14603Not documented 14641
14604 14642
14605\(fn BMK)" nil nil) 14643\(fn BMK)" nil nil)
14606 14644
14607;;;*** 14645;;;***
14608 14646
14609;;;### (autoloads (imenu imenu-add-menubar-index imenu-add-to-menubar 14647;;;### (autoloads (imenu imenu-add-menubar-index imenu-add-to-menubar
14610;;;;;; imenu-sort-function) "imenu" "imenu.el" (19775 2028)) 14648;;;;;; imenu-sort-function) "imenu" "imenu.el" (19845 45374))
14611;;; Generated autoloads from imenu.el 14649;;; Generated autoloads from imenu.el
14612 14650
14613(defvar imenu-sort-function nil "\ 14651(defvar imenu-sort-function nil "\
@@ -14724,7 +14762,7 @@ for more information.
14724 14762
14725;;;### (autoloads (indian-2-column-to-ucs-region in-is13194-pre-write-conversion 14763;;;### (autoloads (indian-2-column-to-ucs-region in-is13194-pre-write-conversion
14726;;;;;; in-is13194-post-read-conversion indian-compose-string indian-compose-region) 14764;;;;;; in-is13194-post-read-conversion indian-compose-string indian-compose-region)
14727;;;;;; "ind-util" "language/ind-util.el" (19780 4513)) 14765;;;;;; "ind-util" "language/ind-util.el" (19845 45374))
14728;;; Generated autoloads from language/ind-util.el 14766;;; Generated autoloads from language/ind-util.el
14729 14767
14730(autoload 'indian-compose-region "ind-util" "\ 14768(autoload 'indian-compose-region "ind-util" "\
@@ -14733,17 +14771,17 @@ Compose the region according to `composition-function-table'.
14733\(fn FROM TO)" t nil) 14771\(fn FROM TO)" t nil)
14734 14772
14735(autoload 'indian-compose-string "ind-util" "\ 14773(autoload 'indian-compose-string "ind-util" "\
14736Not documented 14774
14737 14775
14738\(fn STRING)" nil nil) 14776\(fn STRING)" nil nil)
14739 14777
14740(autoload 'in-is13194-post-read-conversion "ind-util" "\ 14778(autoload 'in-is13194-post-read-conversion "ind-util" "\
14741Not documented 14779
14742 14780
14743\(fn LEN)" nil nil) 14781\(fn LEN)" nil nil)
14744 14782
14745(autoload 'in-is13194-pre-write-conversion "ind-util" "\ 14783(autoload 'in-is13194-pre-write-conversion "ind-util" "\
14746Not documented 14784
14747 14785
14748\(fn FROM TO)" nil nil) 14786\(fn FROM TO)" nil nil)
14749 14787
@@ -14756,7 +14794,7 @@ Convert old Emacs Devanagari characters to UCS.
14756 14794
14757;;;### (autoloads (inferior-lisp inferior-lisp-prompt inferior-lisp-load-command 14795;;;### (autoloads (inferior-lisp inferior-lisp-prompt inferior-lisp-load-command
14758;;;;;; inferior-lisp-program inferior-lisp-filter-regexp) "inf-lisp" 14796;;;;;; inferior-lisp-program inferior-lisp-filter-regexp) "inf-lisp"
14759;;;;;; "progmodes/inf-lisp.el" (19780 4514)) 14797;;;;;; "progmodes/inf-lisp.el" (19845 45374))
14760;;; Generated autoloads from progmodes/inf-lisp.el 14798;;; Generated autoloads from progmodes/inf-lisp.el
14761 14799
14762(defvar inferior-lisp-filter-regexp (purecopy "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'") "\ 14800(defvar inferior-lisp-filter-regexp (purecopy "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'") "\
@@ -14820,11 +14858,11 @@ of `inferior-lisp-program'). Runs the hooks from
14820 14858
14821;;;*** 14859;;;***
14822 14860
14823;;;### (autoloads (Info-bookmark-jump Info-speedbar-browser Info-goto-emacs-key-command-node 14861;;;### (autoloads (info-display-manual Info-bookmark-jump Info-speedbar-browser
14824;;;;;; Info-goto-emacs-command-node Info-mode info-finder info-apropos 14862;;;;;; Info-goto-emacs-key-command-node Info-goto-emacs-command-node
14825;;;;;; Info-index Info-directory Info-on-current-buffer info-standalone 14863;;;;;; Info-mode info-finder info-apropos Info-index Info-directory
14826;;;;;; info-emacs-manual info info-other-window) "info" "info.el" 14864;;;;;; Info-on-current-buffer info-standalone info-emacs-manual
14827;;;;;; (19775 2028)) 14865;;;;;; info info-other-window) "info" "info.el" (19867 52471))
14828;;; Generated autoloads from info.el 14866;;; Generated autoloads from info.el
14829 14867
14830(autoload 'info-other-window "info" "\ 14868(autoload 'info-other-window "info" "\
@@ -14901,7 +14939,7 @@ Build a menu of the possible matches.
14901Display descriptions of the keywords in the Finder virtual manual. 14939Display descriptions of the keywords in the Finder virtual manual.
14902In interactive use, a prefix argument directs this command to read 14940In interactive use, a prefix argument directs this command to read
14903a list of keywords separated by comma. After that, it displays a node 14941a list of keywords separated by comma. After that, it displays a node
14904with a list packages that contain all specified keywords. 14942with a list of packages that contain all specified keywords.
14905 14943
14906\(fn &optional KEYWORDS)" t nil) 14944\(fn &optional KEYWORDS)" t nil)
14907 14945
@@ -15002,11 +15040,16 @@ type returned by `Info-bookmark-make-record', which see.
15002 15040
15003\(fn BMK)" nil nil) 15041\(fn BMK)" nil nil)
15004 15042
15043(autoload 'info-display-manual "info" "\
15044Go to Info buffer that displays MANUAL, creating it if none already exists.
15045
15046\(fn MANUAL)" t nil)
15047
15005;;;*** 15048;;;***
15006 15049
15007;;;### (autoloads (info-complete-file info-complete-symbol info-lookup-file 15050;;;### (autoloads (info-complete-file info-complete-symbol info-lookup-file
15008;;;;;; info-lookup-symbol info-lookup-reset) "info-look" "info-look.el" 15051;;;;;; info-lookup-symbol info-lookup-reset) "info-look" "info-look.el"
15009;;;;;; (19775 2028)) 15052;;;;;; (19845 45374))
15010;;; Generated autoloads from info-look.el 15053;;; Generated autoloads from info-look.el
15011 15054
15012(autoload 'info-lookup-reset "info-look" "\ 15055(autoload 'info-lookup-reset "info-look" "\
@@ -15055,7 +15098,7 @@ Perform completion on file preceding point.
15055 15098
15056;;;### (autoloads (info-xref-docstrings info-xref-check-all-custom 15099;;;### (autoloads (info-xref-docstrings info-xref-check-all-custom
15057;;;;;; info-xref-check-all info-xref-check) "info-xref" "info-xref.el" 15100;;;;;; info-xref-check-all info-xref-check) "info-xref" "info-xref.el"
15058;;;;;; (19780 4513)) 15101;;;;;; (19845 45374))
15059;;; Generated autoloads from info-xref.el 15102;;; Generated autoloads from info-xref.el
15060 15103
15061(autoload 'info-xref-check "info-xref" "\ 15104(autoload 'info-xref-check "info-xref" "\
@@ -15138,7 +15181,7 @@ the sources handy.
15138;;;*** 15181;;;***
15139 15182
15140;;;### (autoloads (batch-info-validate Info-validate Info-split Info-split-threshold 15183;;;### (autoloads (batch-info-validate Info-validate Info-split Info-split-threshold
15141;;;;;; Info-tagify) "informat" "informat.el" (19775 2028)) 15184;;;;;; Info-tagify) "informat" "informat.el" (19845 45374))
15142;;; Generated autoloads from informat.el 15185;;; Generated autoloads from informat.el
15143 15186
15144(autoload 'Info-tagify "informat" "\ 15187(autoload 'Info-tagify "informat" "\
@@ -15185,7 +15228,7 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\"
15185 15228
15186;;;### (autoloads (isearch-process-search-multibyte-characters isearch-toggle-input-method 15229;;;### (autoloads (isearch-process-search-multibyte-characters isearch-toggle-input-method
15187;;;;;; isearch-toggle-specified-input-method) "isearch-x" "international/isearch-x.el" 15230;;;;;; isearch-toggle-specified-input-method) "isearch-x" "international/isearch-x.el"
15188;;;;;; (19780 4513)) 15231;;;;;; (19845 45374))
15189;;; Generated autoloads from international/isearch-x.el 15232;;; Generated autoloads from international/isearch-x.el
15190 15233
15191(autoload 'isearch-toggle-specified-input-method "isearch-x" "\ 15234(autoload 'isearch-toggle-specified-input-method "isearch-x" "\
@@ -15199,14 +15242,14 @@ Toggle input method in interactive search.
15199\(fn)" t nil) 15242\(fn)" t nil)
15200 15243
15201(autoload 'isearch-process-search-multibyte-characters "isearch-x" "\ 15244(autoload 'isearch-process-search-multibyte-characters "isearch-x" "\
15202Not documented 15245
15203 15246
15204\(fn LAST-CHAR)" nil nil) 15247\(fn LAST-CHAR)" nil nil)
15205 15248
15206;;;*** 15249;;;***
15207 15250
15208;;;### (autoloads (isearchb-activate) "isearchb" "isearchb.el" (19780 15251;;;### (autoloads (isearchb-activate) "isearchb" "isearchb.el" (19845
15209;;;;;; 4513)) 15252;;;;;; 45374))
15210;;; Generated autoloads from isearchb.el 15253;;; Generated autoloads from isearchb.el
15211 15254
15212(autoload 'isearchb-activate "isearchb" "\ 15255(autoload 'isearchb-activate "isearchb" "\
@@ -15222,7 +15265,7 @@ accessed via isearchb.
15222;;;### (autoloads (iso-cvt-define-menu iso-cvt-write-only iso-cvt-read-only 15265;;;### (autoloads (iso-cvt-define-menu iso-cvt-write-only iso-cvt-read-only
15223;;;;;; iso-sgml2iso iso-iso2sgml iso-iso2duden iso-iso2gtex iso-gtex2iso 15266;;;;;; iso-sgml2iso iso-iso2sgml iso-iso2duden iso-iso2gtex iso-gtex2iso
15224;;;;;; iso-tex2iso iso-iso2tex iso-german iso-spanish) "iso-cvt" 15267;;;;;; iso-tex2iso iso-iso2tex iso-german iso-spanish) "iso-cvt"
15225;;;;;; "international/iso-cvt.el" (19775 2028)) 15268;;;;;; "international/iso-cvt.el" (19845 45374))
15226;;; Generated autoloads from international/iso-cvt.el 15269;;; Generated autoloads from international/iso-cvt.el
15227 15270
15228(autoload 'iso-spanish "iso-cvt" "\ 15271(autoload 'iso-spanish "iso-cvt" "\
@@ -15313,7 +15356,7 @@ Add submenus to the File menu, to convert to and from various formats.
15313;;;*** 15356;;;***
15314 15357
15315;;;### (autoloads nil "iso-transl" "international/iso-transl.el" 15358;;;### (autoloads nil "iso-transl" "international/iso-transl.el"
15316;;;;;; (19775 2028)) 15359;;;;;; (19845 45374))
15317;;; Generated autoloads from international/iso-transl.el 15360;;; Generated autoloads from international/iso-transl.el
15318 (or key-translation-map (setq key-translation-map (make-sparse-keymap))) 15361 (or key-translation-map (setq key-translation-map (make-sparse-keymap)))
15319 (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) 15362 (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map)
@@ -15325,7 +15368,7 @@ Add submenus to the File menu, to convert to and from various formats.
15325;;;;;; ispell-complete-word ispell-continue ispell-buffer ispell-comments-and-strings 15368;;;;;; ispell-complete-word ispell-continue ispell-buffer ispell-comments-and-strings
15326;;;;;; ispell-region ispell-change-dictionary ispell-kill-ispell 15369;;;;;; ispell-region ispell-change-dictionary ispell-kill-ispell
15327;;;;;; ispell-help ispell-pdict-save ispell-word ispell-personal-dictionary) 15370;;;;;; ispell-help ispell-pdict-save ispell-word ispell-personal-dictionary)
15328;;;;;; "ispell" "textmodes/ispell.el" (19780 4514)) 15371;;;;;; "ispell" "textmodes/ispell.el" (19845 45374))
15329;;; Generated autoloads from textmodes/ispell.el 15372;;; Generated autoloads from textmodes/ispell.el
15330 15373
15331(put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) 15374(put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive))))
@@ -15545,8 +15588,8 @@ You can bind this to the key C-c i in GNUS or mail by adding to
15545 15588
15546;;;*** 15589;;;***
15547 15590
15548;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (19775 15591;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (19845
15549;;;;;; 2028)) 15592;;;;;; 45374))
15550;;; Generated autoloads from iswitchb.el 15593;;; Generated autoloads from iswitchb.el
15551 15594
15552(defvar iswitchb-mode nil "\ 15595(defvar iswitchb-mode nil "\
@@ -15571,11 +15614,11 @@ This mode enables switching between buffers using substrings. See
15571;;;### (autoloads (read-hiragana-string japanese-zenkaku-region japanese-hankaku-region 15614;;;### (autoloads (read-hiragana-string japanese-zenkaku-region japanese-hankaku-region
15572;;;;;; japanese-hiragana-region japanese-katakana-region japanese-zenkaku 15615;;;;;; japanese-hiragana-region japanese-katakana-region japanese-zenkaku
15573;;;;;; japanese-hankaku japanese-hiragana japanese-katakana setup-japanese-environment-internal) 15616;;;;;; japanese-hankaku japanese-hiragana japanese-katakana setup-japanese-environment-internal)
15574;;;;;; "japan-util" "language/japan-util.el" (19780 4513)) 15617;;;;;; "japan-util" "language/japan-util.el" (19845 45374))
15575;;; Generated autoloads from language/japan-util.el 15618;;; Generated autoloads from language/japan-util.el
15576 15619
15577(autoload 'setup-japanese-environment-internal "japan-util" "\ 15620(autoload 'setup-japanese-environment-internal "japan-util" "\
15578Not documented 15621
15579 15622
15580\(fn)" nil nil) 15623\(fn)" nil nil)
15581 15624
@@ -15649,7 +15692,7 @@ If non-nil, second arg INITIAL-INPUT is a string to insert before reading.
15649;;;*** 15692;;;***
15650 15693
15651;;;### (autoloads (jka-compr-uninstall jka-compr-handler) "jka-compr" 15694;;;### (autoloads (jka-compr-uninstall jka-compr-handler) "jka-compr"
15652;;;;;; "jka-compr.el" (19775 2028)) 15695;;;;;; "jka-compr.el" (19845 45374))
15653;;; Generated autoloads from jka-compr.el 15696;;; Generated autoloads from jka-compr.el
15654 15697
15655(defvar jka-compr-inhibit nil "\ 15698(defvar jka-compr-inhibit nil "\
@@ -15658,7 +15701,7 @@ Lisp programs can bind this to t to do that.
15658It is not recommended to set this variable permanently to anything but nil.") 15701It is not recommended to set this variable permanently to anything but nil.")
15659 15702
15660(autoload 'jka-compr-handler "jka-compr" "\ 15703(autoload 'jka-compr-handler "jka-compr" "\
15661Not documented 15704
15662 15705
15663\(fn OPERATION &rest ARGS)" nil nil) 15706\(fn OPERATION &rest ARGS)" nil nil)
15664 15707
@@ -15672,7 +15715,7 @@ by `jka-compr-installed'.
15672 15715
15673;;;*** 15716;;;***
15674 15717
15675;;;### (autoloads (js-mode) "js" "progmodes/js.el" (19775 2029)) 15718;;;### (autoloads (js-mode) "js" "progmodes/js.el" (19845 45374))
15676;;; Generated autoloads from progmodes/js.el 15719;;; Generated autoloads from progmodes/js.el
15677 15720
15678(autoload 'js-mode "js" "\ 15721(autoload 'js-mode "js" "\
@@ -15686,7 +15729,7 @@ Major mode for editing JavaScript.
15686 15729
15687;;;### (autoloads (keypad-setup keypad-numlock-shifted-setup keypad-shifted-setup 15730;;;### (autoloads (keypad-setup keypad-numlock-shifted-setup keypad-shifted-setup
15688;;;;;; keypad-numlock-setup keypad-setup) "keypad" "emulation/keypad.el" 15731;;;;;; keypad-numlock-setup keypad-setup) "keypad" "emulation/keypad.el"
15689;;;;;; (19775 2028)) 15732;;;;;; (19845 45374))
15690;;; Generated autoloads from emulation/keypad.el 15733;;; Generated autoloads from emulation/keypad.el
15691 15734
15692(defvar keypad-setup nil "\ 15735(defvar keypad-setup nil "\
@@ -15742,7 +15785,7 @@ the decimal key on the keypad is mapped to DECIMAL instead of `.'
15742;;;*** 15785;;;***
15743 15786
15744;;;### (autoloads (kinsoku) "kinsoku" "international/kinsoku.el" 15787;;;### (autoloads (kinsoku) "kinsoku" "international/kinsoku.el"
15745;;;;;; (19780 4513)) 15788;;;;;; (19845 45374))
15746;;; Generated autoloads from international/kinsoku.el 15789;;; Generated autoloads from international/kinsoku.el
15747 15790
15748(autoload 'kinsoku "kinsoku" "\ 15791(autoload 'kinsoku "kinsoku" "\
@@ -15763,8 +15806,8 @@ the context of text formatting.
15763 15806
15764;;;*** 15807;;;***
15765 15808
15766;;;### (autoloads (kkc-region) "kkc" "international/kkc.el" (19775 15809;;;### (autoloads (kkc-region) "kkc" "international/kkc.el" (19845
15767;;;;;; 2028)) 15810;;;;;; 45374))
15768;;; Generated autoloads from international/kkc.el 15811;;; Generated autoloads from international/kkc.el
15769 15812
15770(defvar kkc-after-update-conversion-functions nil "\ 15813(defvar kkc-after-update-conversion-functions nil "\
@@ -15789,7 +15832,7 @@ and the return value is the length of the conversion.
15789;;;### (autoloads (kmacro-end-call-mouse kmacro-end-and-call-macro 15832;;;### (autoloads (kmacro-end-call-mouse kmacro-end-and-call-macro
15790;;;;;; kmacro-end-or-call-macro kmacro-start-macro-or-insert-counter 15833;;;;;; kmacro-end-or-call-macro kmacro-start-macro-or-insert-counter
15791;;;;;; kmacro-call-macro kmacro-end-macro kmacro-start-macro kmacro-exec-ring-item) 15834;;;;;; kmacro-call-macro kmacro-end-macro kmacro-start-macro kmacro-exec-ring-item)
15792;;;;;; "kmacro" "kmacro.el" (19780 4513)) 15835;;;;;; "kmacro" "kmacro.el" (19845 45374))
15793;;; Generated autoloads from kmacro.el 15836;;; Generated autoloads from kmacro.el
15794 (global-set-key "\C-x(" 'kmacro-start-macro) 15837 (global-set-key "\C-x(" 'kmacro-start-macro)
15795 (global-set-key "\C-x)" 'kmacro-end-macro) 15838 (global-set-key "\C-x)" 'kmacro-end-macro)
@@ -15900,7 +15943,7 @@ If kbd macro currently being defined end it before activating it.
15900;;;*** 15943;;;***
15901 15944
15902;;;### (autoloads (setup-korean-environment-internal) "korea-util" 15945;;;### (autoloads (setup-korean-environment-internal) "korea-util"
15903;;;;;; "language/korea-util.el" (19780 4513)) 15946;;;;;; "language/korea-util.el" (19845 45374))
15904;;; Generated autoloads from language/korea-util.el 15947;;; Generated autoloads from language/korea-util.el
15905 15948
15906(defvar default-korean-keyboard (purecopy (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "")) "\ 15949(defvar default-korean-keyboard (purecopy (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "")) "\
@@ -15908,14 +15951,14 @@ If kbd macro currently being defined end it before activating it.
15908\"\" for 2, \"3\" for 3.") 15951\"\" for 2, \"3\" for 3.")
15909 15952
15910(autoload 'setup-korean-environment-internal "korea-util" "\ 15953(autoload 'setup-korean-environment-internal "korea-util" "\
15911Not documented 15954
15912 15955
15913\(fn)" nil nil) 15956\(fn)" nil nil)
15914 15957
15915;;;*** 15958;;;***
15916 15959
15917;;;### (autoloads (landmark landmark-test-run) "landmark" "play/landmark.el" 15960;;;### (autoloads (landmark landmark-test-run) "landmark" "play/landmark.el"
15918;;;;;; (19775 2029)) 15961;;;;;; (19845 45374))
15919;;; Generated autoloads from play/landmark.el 15962;;; Generated autoloads from play/landmark.el
15920 15963
15921(defalias 'landmark-repeat 'landmark-test-run) 15964(defalias 'landmark-repeat 'landmark-test-run)
@@ -15947,11 +15990,11 @@ Use \\[describe-mode] for more info.
15947 15990
15948;;;### (autoloads (lao-compose-region lao-composition-function lao-transcribe-roman-to-lao-string 15991;;;### (autoloads (lao-compose-region lao-composition-function lao-transcribe-roman-to-lao-string
15949;;;;;; lao-transcribe-single-roman-syllable-to-lao lao-compose-string) 15992;;;;;; lao-transcribe-single-roman-syllable-to-lao lao-compose-string)
15950;;;;;; "lao-util" "language/lao-util.el" (19780 4513)) 15993;;;;;; "lao-util" "language/lao-util.el" (19845 45374))
15951;;; Generated autoloads from language/lao-util.el 15994;;; Generated autoloads from language/lao-util.el
15952 15995
15953(autoload 'lao-compose-string "lao-util" "\ 15996(autoload 'lao-compose-string "lao-util" "\
15954Not documented 15997
15955 15998
15956\(fn STR)" nil nil) 15999\(fn STR)" nil nil)
15957 16000
@@ -15973,12 +16016,12 @@ Transcribe Romanized Lao string STR to Lao character string.
15973\(fn STR)" nil nil) 16016\(fn STR)" nil nil)
15974 16017
15975(autoload 'lao-composition-function "lao-util" "\ 16018(autoload 'lao-composition-function "lao-util" "\
15976Not documented 16019
15977 16020
15978\(fn GSTRING)" nil nil) 16021\(fn GSTRING)" nil nil)
15979 16022
15980(autoload 'lao-compose-region "lao-util" "\ 16023(autoload 'lao-compose-region "lao-util" "\
15981Not documented 16024
15982 16025
15983\(fn FROM TO)" t nil) 16026\(fn FROM TO)" t nil)
15984 16027
@@ -15986,7 +16029,7 @@ Not documented
15986 16029
15987;;;### (autoloads (latexenc-find-file-coding-system latexenc-coding-system-to-inputenc 16030;;;### (autoloads (latexenc-find-file-coding-system latexenc-coding-system-to-inputenc
15988;;;;;; latexenc-inputenc-to-coding-system latex-inputenc-coding-alist) 16031;;;;;; latexenc-inputenc-to-coding-system latex-inputenc-coding-alist)
15989;;;;;; "latexenc" "international/latexenc.el" (19775 2028)) 16032;;;;;; "latexenc" "international/latexenc.el" (19845 45374))
15990;;; Generated autoloads from international/latexenc.el 16033;;; Generated autoloads from international/latexenc.el
15991 16034
15992(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))) "\ 16035(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))) "\
@@ -16018,7 +16061,7 @@ coding system names is determined from `latex-inputenc-coding-alist'.
16018;;;*** 16061;;;***
16019 16062
16020;;;### (autoloads (latin1-display-ucs-per-lynx latin1-display latin1-display) 16063;;;### (autoloads (latin1-display-ucs-per-lynx latin1-display latin1-display)
16021;;;;;; "latin1-disp" "international/latin1-disp.el" (19780 4513)) 16064;;;;;; "latin1-disp" "international/latin1-disp.el" (19845 45374))
16022;;; Generated autoloads from international/latin1-disp.el 16065;;; Generated autoloads from international/latin1-disp.el
16023 16066
16024(defvar latin1-display nil "\ 16067(defvar latin1-display nil "\
@@ -16060,7 +16103,7 @@ use either \\[customize] or the function `latin1-display'.")
16060;;;*** 16103;;;***
16061 16104
16062;;;### (autoloads (ld-script-mode) "ld-script" "progmodes/ld-script.el" 16105;;;### (autoloads (ld-script-mode) "ld-script" "progmodes/ld-script.el"
16063;;;;;; (19775 2029)) 16106;;;;;; (19845 45374))
16064;;; Generated autoloads from progmodes/ld-script.el 16107;;; Generated autoloads from progmodes/ld-script.el
16065 16108
16066(autoload 'ld-script-mode "ld-script" "\ 16109(autoload 'ld-script-mode "ld-script" "\
@@ -16071,7 +16114,7 @@ A major mode to edit GNU ld script files
16071;;;*** 16114;;;***
16072 16115
16073;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el" 16116;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el"
16074;;;;;; (19775 2028)) 16117;;;;;; (19845 45374))
16075;;; Generated autoloads from ledit.el 16118;;; Generated autoloads from ledit.el
16076 16119
16077(defconst ledit-save-files t "\ 16120(defconst ledit-save-files t "\
@@ -16100,13 +16143,13 @@ do (setq lisp-mode-hook 'ledit-from-lisp-mode)
16100\(fn)" t nil) 16143\(fn)" t nil)
16101 16144
16102(autoload 'ledit-from-lisp-mode "ledit" "\ 16145(autoload 'ledit-from-lisp-mode "ledit" "\
16103Not documented 16146
16104 16147
16105\(fn)" nil nil) 16148\(fn)" nil nil)
16106 16149
16107;;;*** 16150;;;***
16108 16151
16109;;;### (autoloads (life) "life" "play/life.el" (19775 2029)) 16152;;;### (autoloads (life) "life" "play/life.el" (19845 45374))
16110;;; Generated autoloads from play/life.el 16153;;; Generated autoloads from play/life.el
16111 16154
16112(autoload 'life "life" "\ 16155(autoload 'life "life" "\
@@ -16120,7 +16163,7 @@ generations (this defaults to 1).
16120;;;*** 16163;;;***
16121 16164
16122;;;### (autoloads (global-linum-mode linum-mode linum-format) "linum" 16165;;;### (autoloads (global-linum-mode linum-mode linum-format) "linum"
16123;;;;;; "linum.el" (19775 2028)) 16166;;;;;; "linum.el" (19865 50420))
16124;;; Generated autoloads from linum.el 16167;;; Generated autoloads from linum.el
16125 16168
16126(defvar linum-format 'dynamic "\ 16169(defvar linum-format 'dynamic "\
@@ -16158,8 +16201,8 @@ See `linum-mode' for more information on Linum mode.
16158 16201
16159;;;*** 16202;;;***
16160 16203
16161;;;### (autoloads (unload-feature) "loadhist" "loadhist.el" (19775 16204;;;### (autoloads (unload-feature) "loadhist" "loadhist.el" (19845
16162;;;;;; 2028)) 16205;;;;;; 45374))
16163;;; Generated autoloads from loadhist.el 16206;;; Generated autoloads from loadhist.el
16164 16207
16165(autoload 'unload-feature "loadhist" "\ 16208(autoload 'unload-feature "loadhist" "\
@@ -16191,7 +16234,7 @@ something strange, such as redefining an Emacs function.
16191;;;*** 16234;;;***
16192 16235
16193;;;### (autoloads (locate-with-filter locate locate-ls-subdir-switches) 16236;;;### (autoloads (locate-with-filter locate locate-ls-subdir-switches)
16194;;;;;; "locate" "locate.el" (19775 2028)) 16237;;;;;; "locate" "locate.el" (19845 45374))
16195;;; Generated autoloads from locate.el 16238;;; Generated autoloads from locate.el
16196 16239
16197(defvar locate-ls-subdir-switches (purecopy "-al") "\ 16240(defvar locate-ls-subdir-switches (purecopy "-al") "\
@@ -16243,7 +16286,7 @@ except that FILTER is not optional.
16243 16286
16244;;;*** 16287;;;***
16245 16288
16246;;;### (autoloads (log-edit) "log-edit" "vc/log-edit.el" (19775 2030)) 16289;;;### (autoloads (log-edit) "log-edit" "vc/log-edit.el" (19863 8742))
16247;;; Generated autoloads from vc/log-edit.el 16290;;; Generated autoloads from vc/log-edit.el
16248 16291
16249(autoload 'log-edit "log-edit" "\ 16292(autoload 'log-edit "log-edit" "\
@@ -16270,8 +16313,8 @@ uses the current buffer.
16270 16313
16271;;;*** 16314;;;***
16272 16315
16273;;;### (autoloads (log-view-mode) "log-view" "vc/log-view.el" (19775 16316;;;### (autoloads (log-view-mode) "log-view" "vc/log-view.el" (19863
16274;;;;;; 2030)) 16317;;;;;; 8742))
16275;;; Generated autoloads from vc/log-view.el 16318;;; Generated autoloads from vc/log-view.el
16276 16319
16277(autoload 'log-view-mode "log-view" "\ 16320(autoload 'log-view-mode "log-view" "\
@@ -16281,8 +16324,8 @@ Major mode for browsing CVS log output.
16281 16324
16282;;;*** 16325;;;***
16283 16326
16284;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (19775 16327;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (19845
16285;;;;;; 2028)) 16328;;;;;; 45374))
16286;;; Generated autoloads from longlines.el 16329;;; Generated autoloads from longlines.el
16287 16330
16288(autoload 'longlines-mode "longlines" "\ 16331(autoload 'longlines-mode "longlines" "\
@@ -16303,8 +16346,8 @@ are indicated with a symbol.
16303;;;*** 16346;;;***
16304 16347
16305;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer 16348;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer
16306;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (19780 16349;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (19845
16307;;;;;; 4513)) 16350;;;;;; 45374))
16308;;; Generated autoloads from lpr.el 16351;;; Generated autoloads from lpr.el
16309 16352
16310(defvar lpr-windows-system (memq system-type '(ms-dos windows-nt))) 16353(defvar lpr-windows-system (memq system-type '(ms-dos windows-nt)))
@@ -16398,7 +16441,7 @@ for further customization of the printer command.
16398;;;*** 16441;;;***
16399 16442
16400;;;### (autoloads (ls-lisp-support-shell-wildcards) "ls-lisp" "ls-lisp.el" 16443;;;### (autoloads (ls-lisp-support-shell-wildcards) "ls-lisp" "ls-lisp.el"
16401;;;;;; (19775 2028)) 16444;;;;;; (19845 45374))
16402;;; Generated autoloads from ls-lisp.el 16445;;; Generated autoloads from ls-lisp.el
16403 16446
16404(defvar ls-lisp-support-shell-wildcards t "\ 16447(defvar ls-lisp-support-shell-wildcards t "\
@@ -16409,8 +16452,8 @@ Otherwise they are treated as Emacs regexps (for backward compatibility).")
16409 16452
16410;;;*** 16453;;;***
16411 16454
16412;;;### (autoloads (lunar-phases) "lunar" "calendar/lunar.el" (19780 16455;;;### (autoloads (lunar-phases) "lunar" "calendar/lunar.el" (19845
16413;;;;;; 4513)) 16456;;;;;; 45374))
16414;;; Generated autoloads from calendar/lunar.el 16457;;; Generated autoloads from calendar/lunar.el
16415 16458
16416(autoload 'lunar-phases "lunar" "\ 16459(autoload 'lunar-phases "lunar" "\
@@ -16424,8 +16467,8 @@ This function is suitable for execution in a .emacs file.
16424 16467
16425;;;*** 16468;;;***
16426 16469
16427;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (19780 16470;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (19845
16428;;;;;; 4514)) 16471;;;;;; 45374))
16429;;; Generated autoloads from progmodes/m4-mode.el 16472;;; Generated autoloads from progmodes/m4-mode.el
16430 16473
16431(autoload 'm4-mode "m4-mode" "\ 16474(autoload 'm4-mode "m4-mode" "\
@@ -16436,7 +16479,7 @@ A major mode to edit m4 macro files.
16436;;;*** 16479;;;***
16437 16480
16438;;;### (autoloads (macroexpand-all) "macroexp" "emacs-lisp/macroexp.el" 16481;;;### (autoloads (macroexpand-all) "macroexp" "emacs-lisp/macroexp.el"
16439;;;;;; (19775 2028)) 16482;;;;;; (19863 8742))
16440;;; Generated autoloads from emacs-lisp/macroexp.el 16483;;; Generated autoloads from emacs-lisp/macroexp.el
16441 16484
16442(autoload 'macroexpand-all "macroexp" "\ 16485(autoload 'macroexpand-all "macroexp" "\
@@ -16450,7 +16493,7 @@ definitions to shadow the loaded ones for use in file byte-compilation.
16450;;;*** 16493;;;***
16451 16494
16452;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro 16495;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro
16453;;;;;; name-last-kbd-macro) "macros" "macros.el" (19780 4513)) 16496;;;;;; name-last-kbd-macro) "macros" "macros.el" (19845 45374))
16454;;; Generated autoloads from macros.el 16497;;; Generated autoloads from macros.el
16455 16498
16456(autoload 'name-last-kbd-macro "macros" "\ 16499(autoload 'name-last-kbd-macro "macros" "\
@@ -16539,7 +16582,7 @@ and then select the region of un-tablified names and use
16539;;;*** 16582;;;***
16540 16583
16541;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" 16584;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr"
16542;;;;;; "mail/mail-extr.el" (19780 4513)) 16585;;;;;; "mail/mail-extr.el" (19845 45374))
16543;;; Generated autoloads from mail/mail-extr.el 16586;;; Generated autoloads from mail/mail-extr.el
16544 16587
16545(autoload 'mail-extract-address-components "mail-extr" "\ 16588(autoload 'mail-extract-address-components "mail-extr" "\
@@ -16571,7 +16614,7 @@ Convert mail domain DOMAIN to the country it corresponds to.
16571 16614
16572;;;### (autoloads (mail-hist-put-headers-into-history mail-hist-keep-history 16615;;;### (autoloads (mail-hist-put-headers-into-history mail-hist-keep-history
16573;;;;;; mail-hist-enable mail-hist-define-keys) "mail-hist" "mail/mail-hist.el" 16616;;;;;; mail-hist-enable mail-hist-define-keys) "mail-hist" "mail/mail-hist.el"
16574;;;;;; (19775 2028)) 16617;;;;;; (19845 45374))
16575;;; Generated autoloads from mail/mail-hist.el 16618;;; Generated autoloads from mail/mail-hist.el
16576 16619
16577(autoload 'mail-hist-define-keys "mail-hist" "\ 16620(autoload 'mail-hist-define-keys "mail-hist" "\
@@ -16580,7 +16623,7 @@ Define keys for accessing mail header history. For use in hooks.
16580\(fn)" nil nil) 16623\(fn)" nil nil)
16581 16624
16582(autoload 'mail-hist-enable "mail-hist" "\ 16625(autoload 'mail-hist-enable "mail-hist" "\
16583Not documented 16626
16584 16627
16585\(fn)" nil nil) 16628\(fn)" nil nil)
16586 16629
@@ -16602,8 +16645,8 @@ This function normally would be called when the message is sent.
16602 16645
16603;;;### (autoloads (mail-fetch-field mail-unquote-printable-region 16646;;;### (autoloads (mail-fetch-field mail-unquote-printable-region
16604;;;;;; mail-unquote-printable mail-quote-printable-region mail-quote-printable 16647;;;;;; mail-unquote-printable mail-quote-printable-region mail-quote-printable
16605;;;;;; mail-file-babyl-p mail-use-rfc822) "mail-utils" "mail/mail-utils.el" 16648;;;;;; mail-file-babyl-p mail-dont-reply-to-names mail-use-rfc822)
16606;;;;;; (19775 2028)) 16649;;;;;; "mail-utils" "mail/mail-utils.el" (19845 45374))
16607;;; Generated autoloads from mail/mail-utils.el 16650;;; Generated autoloads from mail/mail-utils.el
16608 16651
16609(defvar mail-use-rfc822 nil "\ 16652(defvar mail-use-rfc822 nil "\
@@ -16613,6 +16656,16 @@ often correct parser.")
16613 16656
16614(custom-autoload 'mail-use-rfc822 "mail-utils" t) 16657(custom-autoload 'mail-use-rfc822 "mail-utils" t)
16615 16658
16659(defvar mail-dont-reply-to-names nil "\
16660Regexp specifying addresses to prune from a reply message.
16661If this is nil, it is set the first time you compose a reply, to
16662a value which excludes your own email address.
16663
16664Matching addresses are excluded from the CC field in replies, and
16665also the To field, unless this would leave an empty To field.")
16666
16667(custom-autoload 'mail-dont-reply-to-names "mail-utils" t)
16668
16616(autoload 'mail-file-babyl-p "mail-utils" "\ 16669(autoload 'mail-file-babyl-p "mail-utils" "\
16617Return non-nil if FILE is a Babyl file. 16670Return non-nil if FILE is a Babyl file.
16618 16671
@@ -16665,8 +16718,8 @@ matches may be returned from the message body.
16665;;;*** 16718;;;***
16666 16719
16667;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup 16720;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup
16668;;;;;; mail-abbrevs-mode) "mailabbrev" "mail/mailabbrev.el" (19775 16721;;;;;; mail-abbrevs-mode) "mailabbrev" "mail/mailabbrev.el" (19845
16669;;;;;; 2028)) 16722;;;;;; 45374))
16670;;; Generated autoloads from mail/mailabbrev.el 16723;;; Generated autoloads from mail/mailabbrev.el
16671 16724
16672(defvar mail-abbrevs-mode nil "\ 16725(defvar mail-abbrevs-mode nil "\
@@ -16708,8 +16761,8 @@ double-quotes.
16708;;;*** 16761;;;***
16709 16762
16710;;;### (autoloads (mail-complete define-mail-alias expand-mail-aliases 16763;;;### (autoloads (mail-complete define-mail-alias expand-mail-aliases
16711;;;;;; mail-complete-style) "mailalias" "mail/mailalias.el" (19775 16764;;;;;; mail-complete-style) "mailalias" "mail/mailalias.el" (19845
16712;;;;;; 2028)) 16765;;;;;; 45374))
16713;;; Generated autoloads from mail/mailalias.el 16766;;; Generated autoloads from mail/mailalias.el
16714 16767
16715(defvar mail-complete-style 'angles "\ 16768(defvar mail-complete-style 'angles "\
@@ -16755,7 +16808,7 @@ current header, calls `mail-complete-function' and passes prefix arg if any.
16755;;;*** 16808;;;***
16756 16809
16757;;;### (autoloads (mailclient-send-it) "mailclient" "mail/mailclient.el" 16810;;;### (autoloads (mailclient-send-it) "mailclient" "mail/mailclient.el"
16758;;;;;; (19775 2028)) 16811;;;;;; (19845 45374))
16759;;; Generated autoloads from mail/mailclient.el 16812;;; Generated autoloads from mail/mailclient.el
16760 16813
16761(autoload 'mailclient-send-it "mailclient" "\ 16814(autoload 'mailclient-send-it "mailclient" "\
@@ -16769,7 +16822,7 @@ The mail client is taken to be the handler of mailto URLs.
16769 16822
16770;;;### (autoloads (makefile-imake-mode makefile-bsdmake-mode makefile-makepp-mode 16823;;;### (autoloads (makefile-imake-mode makefile-bsdmake-mode makefile-makepp-mode
16771;;;;;; makefile-gmake-mode makefile-automake-mode makefile-mode) 16824;;;;;; makefile-gmake-mode makefile-automake-mode makefile-mode)
16772;;;;;; "make-mode" "progmodes/make-mode.el" (19775 2029)) 16825;;;;;; "make-mode" "progmodes/make-mode.el" (19845 45374))
16773;;; Generated autoloads from progmodes/make-mode.el 16826;;; Generated autoloads from progmodes/make-mode.el
16774 16827
16775(autoload 'makefile-mode "make-mode" "\ 16828(autoload 'makefile-mode "make-mode" "\
@@ -16886,8 +16939,8 @@ An adapted `makefile-mode' that knows about imake.
16886 16939
16887;;;*** 16940;;;***
16888 16941
16889;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (19775 16942;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (19845
16890;;;;;; 2029)) 16943;;;;;; 45374))
16891;;; Generated autoloads from makesum.el 16944;;; Generated autoloads from makesum.el
16892 16945
16893(autoload 'make-command-summary "makesum" "\ 16946(autoload 'make-command-summary "makesum" "\
@@ -16899,7 +16952,7 @@ Previous contents of that buffer are killed first.
16899;;;*** 16952;;;***
16900 16953
16901;;;### (autoloads (Man-bookmark-jump man-follow man) "man" "man.el" 16954;;;### (autoloads (Man-bookmark-jump man-follow man) "man" "man.el"
16902;;;;;; (19780 4513)) 16955;;;;;; (19845 45374))
16903;;; Generated autoloads from man.el 16956;;; Generated autoloads from man.el
16904 16957
16905(defalias 'manual-entry 'man) 16958(defalias 'manual-entry 'man)
@@ -16953,7 +17006,7 @@ Default bookmark handler for Man buffers.
16953 17006
16954;;;*** 17007;;;***
16955 17008
16956;;;### (autoloads (master-mode) "master" "master.el" (19780 4513)) 17009;;;### (autoloads (master-mode) "master" "master.el" (19845 45374))
16957;;; Generated autoloads from master.el 17010;;; Generated autoloads from master.el
16958 17011
16959(autoload 'master-mode "master" "\ 17012(autoload 'master-mode "master" "\
@@ -16976,7 +17029,7 @@ yourself the value of `master-of' by calling `master-show-slave'.
16976;;;*** 17029;;;***
16977 17030
16978;;;### (autoloads (minibuffer-depth-indicate-mode) "mb-depth" "mb-depth.el" 17031;;;### (autoloads (minibuffer-depth-indicate-mode) "mb-depth" "mb-depth.el"
16979;;;;;; (19775 2029)) 17032;;;;;; (19845 45374))
16980;;; Generated autoloads from mb-depth.el 17033;;; Generated autoloads from mb-depth.el
16981 17034
16982(defvar minibuffer-depth-indicate-mode nil "\ 17035(defvar minibuffer-depth-indicate-mode nil "\
@@ -17001,20 +17054,13 @@ Returns non-nil if the new state is enabled.
17001 17054
17002;;;*** 17055;;;***
17003 17056
17004;;;### (autoloads nil "menu-bar" "menu-bar.el" (19775 2029))
17005;;; Generated autoloads from menu-bar.el
17006
17007(put 'menu-bar-mode 'standard-value '(t))
17008
17009;;;***
17010
17011;;;### (autoloads (message-unbold-region message-bold-region message-news-other-frame 17057;;;### (autoloads (message-unbold-region message-bold-region message-news-other-frame
17012;;;;;; message-news-other-window message-mail-other-frame message-mail-other-window 17058;;;;;; message-news-other-window message-mail-other-frame message-mail-other-window
17013;;;;;; message-bounce message-resend message-insinuate-rmail message-forward-rmail-make-body 17059;;;;;; message-bounce message-resend message-insinuate-rmail message-forward-rmail-make-body
17014;;;;;; message-forward-make-body message-forward message-recover 17060;;;;;; message-forward-make-body message-forward message-recover
17015;;;;;; message-supersede message-cancel-news message-followup message-wide-reply 17061;;;;;; message-supersede message-cancel-news message-followup message-wide-reply
17016;;;;;; message-reply message-news message-mail message-mode) "message" 17062;;;;;; message-reply message-news message-mail message-mode) "message"
17017;;;;;; "gnus/message.el" (19775 2028)) 17063;;;;;; "gnus/message.el" (19860 32495))
17018;;; Generated autoloads from gnus/message.el 17064;;; Generated autoloads from gnus/message.el
17019 17065
17020(define-mail-user-agent 'message-user-agent 'message-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook) 17066(define-mail-user-agent 'message-user-agent 'message-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook)
@@ -17076,7 +17122,7 @@ Start editing a news article to be sent.
17076(autoload 'message-reply "message" "\ 17122(autoload 'message-reply "message" "\
17077Start editing a reply to the article in the current buffer. 17123Start editing a reply to the article in the current buffer.
17078 17124
17079\(fn &optional TO-ADDRESS WIDE)" t nil) 17125\(fn &optional TO-ADDRESS WIDE SWITCH-FUNCTION)" t nil)
17080 17126
17081(autoload 'message-wide-reply "message" "\ 17127(autoload 'message-wide-reply "message" "\
17082Make a \"wide\" reply to the message in the current buffer. 17128Make a \"wide\" reply to the message in the current buffer.
@@ -17115,12 +17161,12 @@ Optional DIGEST will use digest to forward.
17115\(fn &optional NEWS DIGEST)" t nil) 17161\(fn &optional NEWS DIGEST)" t nil)
17116 17162
17117(autoload 'message-forward-make-body "message" "\ 17163(autoload 'message-forward-make-body "message" "\
17118Not documented 17164
17119 17165
17120\(fn FORWARD-BUFFER &optional DIGEST)" nil nil) 17166\(fn FORWARD-BUFFER &optional DIGEST)" nil nil)
17121 17167
17122(autoload 'message-forward-rmail-make-body "message" "\ 17168(autoload 'message-forward-rmail-make-body "message" "\
17123Not documented 17169
17124 17170
17125\(fn FORWARD-BUFFER)" nil nil) 17171\(fn FORWARD-BUFFER)" nil nil)
17126 17172
@@ -17180,7 +17226,7 @@ which specify the range to operate on.
17180;;;*** 17226;;;***
17181 17227
17182;;;### (autoloads (metapost-mode metafont-mode) "meta-mode" "progmodes/meta-mode.el" 17228;;;### (autoloads (metapost-mode metafont-mode) "meta-mode" "progmodes/meta-mode.el"
17183;;;;;; (19775 2029)) 17229;;;;;; (19845 45374))
17184;;; Generated autoloads from progmodes/meta-mode.el 17230;;; Generated autoloads from progmodes/meta-mode.el
17185 17231
17186(autoload 'metafont-mode "meta-mode" "\ 17232(autoload 'metafont-mode "meta-mode" "\
@@ -17197,7 +17243,7 @@ Major mode for editing MetaPost sources.
17197 17243
17198;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body 17244;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body
17199;;;;;; metamail-interpret-header) "metamail" "mail/metamail.el" 17245;;;;;; metamail-interpret-header) "metamail" "mail/metamail.el"
17200;;;;;; (19775 2028)) 17246;;;;;; (19845 45374))
17201;;; Generated autoloads from mail/metamail.el 17247;;; Generated autoloads from mail/metamail.el
17202 17248
17203(autoload 'metamail-interpret-header "metamail" "\ 17249(autoload 'metamail-interpret-header "metamail" "\
@@ -17242,7 +17288,7 @@ redisplayed as output is inserted.
17242 17288
17243;;;### (autoloads (mh-fully-kill-draft mh-send-letter mh-user-agent-compose 17289;;;### (autoloads (mh-fully-kill-draft mh-send-letter mh-user-agent-compose
17244;;;;;; mh-smail-batch mh-smail-other-window mh-smail) "mh-comp" 17290;;;;;; mh-smail-batch mh-smail-other-window mh-smail) "mh-comp"
17245;;;;;; "mh-e/mh-comp.el" (19780 4513)) 17291;;;;;; "mh-e/mh-comp.el" (19845 45374))
17246;;; Generated autoloads from mh-e/mh-comp.el 17292;;; Generated autoloads from mh-e/mh-comp.el
17247 17293
17248(autoload 'mh-smail "mh-comp" "\ 17294(autoload 'mh-smail "mh-comp" "\
@@ -17332,7 +17378,7 @@ delete the draft message.
17332 17378
17333;;;*** 17379;;;***
17334 17380
17335;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (19775 2029)) 17381;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (19845 45374))
17336;;; Generated autoloads from mh-e/mh-e.el 17382;;; Generated autoloads from mh-e/mh-e.el
17337 17383
17338(put 'mh-progs 'risky-local-variable t) 17384(put 'mh-progs 'risky-local-variable t)
@@ -17349,7 +17395,7 @@ Display version information about MH-E and the MH mail handling system.
17349;;;*** 17395;;;***
17350 17396
17351;;;### (autoloads (mh-folder-mode mh-nmail mh-rmail) "mh-folder" 17397;;;### (autoloads (mh-folder-mode mh-nmail mh-rmail) "mh-folder"
17352;;;;;; "mh-e/mh-folder.el" (19780 4514)) 17398;;;;;; "mh-e/mh-folder.el" (19845 45374))
17353;;; Generated autoloads from mh-e/mh-folder.el 17399;;; Generated autoloads from mh-e/mh-folder.el
17354 17400
17355(autoload 'mh-rmail "mh-folder" "\ 17401(autoload 'mh-rmail "mh-folder" "\
@@ -17431,7 +17477,7 @@ perform the operation on all messages in that region.
17431;;;*** 17477;;;***
17432 17478
17433;;;### (autoloads (midnight-delay-set clean-buffer-list) "midnight" 17479;;;### (autoloads (midnight-delay-set clean-buffer-list) "midnight"
17434;;;;;; "midnight.el" (19780 4514)) 17480;;;;;; "midnight.el" (19853 59245))
17435;;; Generated autoloads from midnight.el 17481;;; Generated autoloads from midnight.el
17436 17482
17437(autoload 'clean-buffer-list "midnight" "\ 17483(autoload 'clean-buffer-list "midnight" "\
@@ -17458,7 +17504,7 @@ to its second argument TM.
17458;;;*** 17504;;;***
17459 17505
17460;;;### (autoloads (minibuffer-electric-default-mode) "minibuf-eldef" 17506;;;### (autoloads (minibuffer-electric-default-mode) "minibuf-eldef"
17461;;;;;; "minibuf-eldef.el" (19775 2029)) 17507;;;;;; "minibuf-eldef.el" (19845 45374))
17462;;; Generated autoloads from minibuf-eldef.el 17508;;; Generated autoloads from minibuf-eldef.el
17463 17509
17464(defvar minibuffer-electric-default-mode nil "\ 17510(defvar minibuffer-electric-default-mode nil "\
@@ -17485,7 +17531,7 @@ Returns non-nil if the new state is enabled.
17485 17531
17486;;;*** 17532;;;***
17487 17533
17488;;;### (autoloads (butterfly) "misc" "misc.el" (19775 2029)) 17534;;;### (autoloads (butterfly) "misc" "misc.el" (19845 45374))
17489;;; Generated autoloads from misc.el 17535;;; Generated autoloads from misc.el
17490 17536
17491(autoload 'butterfly "misc" "\ 17537(autoload 'butterfly "misc" "\
@@ -17504,7 +17550,7 @@ variation of `C-x M-c M-butterfly' from url `http://xkcd.com/378/'.
17504 17550
17505;;;### (autoloads (multi-isearch-files-regexp multi-isearch-files 17551;;;### (autoloads (multi-isearch-files-regexp multi-isearch-files
17506;;;;;; multi-isearch-buffers-regexp multi-isearch-buffers multi-isearch-setup) 17552;;;;;; multi-isearch-buffers-regexp multi-isearch-buffers multi-isearch-setup)
17507;;;;;; "misearch" "misearch.el" (19775 2029)) 17553;;;;;; "misearch" "misearch.el" (19845 45374))
17508;;; Generated autoloads from misearch.el 17554;;; Generated autoloads from misearch.el
17509 (add-hook 'isearch-mode-hook 'multi-isearch-setup) 17555 (add-hook 'isearch-mode-hook 'multi-isearch-setup)
17510 17556
@@ -17586,7 +17632,7 @@ whose file names match the specified wildcard.
17586;;;*** 17632;;;***
17587 17633
17588;;;### (autoloads (mixal-mode) "mixal-mode" "progmodes/mixal-mode.el" 17634;;;### (autoloads (mixal-mode) "mixal-mode" "progmodes/mixal-mode.el"
17589;;;;;; (19780 4514)) 17635;;;;;; (19845 45374))
17590;;; Generated autoloads from progmodes/mixal-mode.el 17636;;; Generated autoloads from progmodes/mixal-mode.el
17591 17637
17592(autoload 'mixal-mode "mixal-mode" "\ 17638(autoload 'mixal-mode "mixal-mode" "\
@@ -17597,7 +17643,7 @@ Major mode for the mixal asm language.
17597;;;*** 17643;;;***
17598 17644
17599;;;### (autoloads (mm-inline-external-body mm-extern-cache-contents) 17645;;;### (autoloads (mm-inline-external-body mm-extern-cache-contents)
17600;;;;;; "mm-extern" "gnus/mm-extern.el" (19775 2028)) 17646;;;;;; "mm-extern" "gnus/mm-extern.el" (19845 45374))
17601;;; Generated autoloads from gnus/mm-extern.el 17647;;; Generated autoloads from gnus/mm-extern.el
17602 17648
17603(autoload 'mm-extern-cache-contents "mm-extern" "\ 17649(autoload 'mm-extern-cache-contents "mm-extern" "\
@@ -17616,7 +17662,7 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing.
17616;;;*** 17662;;;***
17617 17663
17618;;;### (autoloads (mm-inline-partial) "mm-partial" "gnus/mm-partial.el" 17664;;;### (autoloads (mm-inline-partial) "mm-partial" "gnus/mm-partial.el"
17619;;;;;; (19775 2028)) 17665;;;;;; (19845 45374))
17620;;; Generated autoloads from gnus/mm-partial.el 17666;;; Generated autoloads from gnus/mm-partial.el
17621 17667
17622(autoload 'mm-inline-partial "mm-partial" "\ 17668(autoload 'mm-inline-partial "mm-partial" "\
@@ -17630,7 +17676,7 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing.
17630;;;*** 17676;;;***
17631 17677
17632;;;### (autoloads (mm-url-insert-file-contents-external mm-url-insert-file-contents) 17678;;;### (autoloads (mm-url-insert-file-contents-external mm-url-insert-file-contents)
17633;;;;;; "mm-url" "gnus/mm-url.el" (19780 4513)) 17679;;;;;; "mm-url" "gnus/mm-url.el" (19845 45374))
17634;;; Generated autoloads from gnus/mm-url.el 17680;;; Generated autoloads from gnus/mm-url.el
17635 17681
17636(autoload 'mm-url-insert-file-contents "mm-url" "\ 17682(autoload 'mm-url-insert-file-contents "mm-url" "\
@@ -17647,7 +17693,7 @@ Insert file contents of URL using `mm-url-program'.
17647;;;*** 17693;;;***
17648 17694
17649;;;### (autoloads (mm-uu-dissect-text-parts mm-uu-dissect) "mm-uu" 17695;;;### (autoloads (mm-uu-dissect-text-parts mm-uu-dissect) "mm-uu"
17650;;;;;; "gnus/mm-uu.el" (19775 2028)) 17696;;;;;; "gnus/mm-uu.el" (19845 45374))
17651;;; Generated autoloads from gnus/mm-uu.el 17697;;; Generated autoloads from gnus/mm-uu.el
17652 17698
17653(autoload 'mm-uu-dissect "mm-uu" "\ 17699(autoload 'mm-uu-dissect "mm-uu" "\
@@ -17667,16 +17713,16 @@ Assume text has been decoded if DECODED is non-nil.
17667;;;*** 17713;;;***
17668 17714
17669;;;### (autoloads (mml1991-sign mml1991-encrypt) "mml1991" "gnus/mml1991.el" 17715;;;### (autoloads (mml1991-sign mml1991-encrypt) "mml1991" "gnus/mml1991.el"
17670;;;;;; (19775 2028)) 17716;;;;;; (19845 45374))
17671;;; Generated autoloads from gnus/mml1991.el 17717;;; Generated autoloads from gnus/mml1991.el
17672 17718
17673(autoload 'mml1991-encrypt "mml1991" "\ 17719(autoload 'mml1991-encrypt "mml1991" "\
17674Not documented 17720
17675 17721
17676\(fn CONT &optional SIGN)" nil nil) 17722\(fn CONT &optional SIGN)" nil nil)
17677 17723
17678(autoload 'mml1991-sign "mml1991" "\ 17724(autoload 'mml1991-sign "mml1991" "\
17679Not documented 17725
17680 17726
17681\(fn CONT)" nil nil) 17727\(fn CONT)" nil nil)
17682 17728
@@ -17684,48 +17730,48 @@ Not documented
17684 17730
17685;;;### (autoloads (mml2015-self-encrypt mml2015-sign mml2015-encrypt 17731;;;### (autoloads (mml2015-self-encrypt mml2015-sign mml2015-encrypt
17686;;;;;; mml2015-verify-test mml2015-verify mml2015-decrypt-test mml2015-decrypt) 17732;;;;;; mml2015-verify-test mml2015-verify mml2015-decrypt-test mml2015-decrypt)
17687;;;;;; "mml2015" "gnus/mml2015.el" (19780 4513)) 17733;;;;;; "mml2015" "gnus/mml2015.el" (19845 45374))
17688;;; Generated autoloads from gnus/mml2015.el 17734;;; Generated autoloads from gnus/mml2015.el
17689 17735
17690(autoload 'mml2015-decrypt "mml2015" "\ 17736(autoload 'mml2015-decrypt "mml2015" "\
17691Not documented 17737
17692 17738
17693\(fn HANDLE CTL)" nil nil) 17739\(fn HANDLE CTL)" nil nil)
17694 17740
17695(autoload 'mml2015-decrypt-test "mml2015" "\ 17741(autoload 'mml2015-decrypt-test "mml2015" "\
17696Not documented 17742
17697 17743
17698\(fn HANDLE CTL)" nil nil) 17744\(fn HANDLE CTL)" nil nil)
17699 17745
17700(autoload 'mml2015-verify "mml2015" "\ 17746(autoload 'mml2015-verify "mml2015" "\
17701Not documented 17747
17702 17748
17703\(fn HANDLE CTL)" nil nil) 17749\(fn HANDLE CTL)" nil nil)
17704 17750
17705(autoload 'mml2015-verify-test "mml2015" "\ 17751(autoload 'mml2015-verify-test "mml2015" "\
17706Not documented 17752
17707 17753
17708\(fn HANDLE CTL)" nil nil) 17754\(fn HANDLE CTL)" nil nil)
17709 17755
17710(autoload 'mml2015-encrypt "mml2015" "\ 17756(autoload 'mml2015-encrypt "mml2015" "\
17711Not documented 17757
17712 17758
17713\(fn CONT &optional SIGN)" nil nil) 17759\(fn CONT &optional SIGN)" nil nil)
17714 17760
17715(autoload 'mml2015-sign "mml2015" "\ 17761(autoload 'mml2015-sign "mml2015" "\
17716Not documented 17762
17717 17763
17718\(fn CONT)" nil nil) 17764\(fn CONT)" nil nil)
17719 17765
17720(autoload 'mml2015-self-encrypt "mml2015" "\ 17766(autoload 'mml2015-self-encrypt "mml2015" "\
17721Not documented 17767
17722 17768
17723\(fn)" nil nil) 17769\(fn)" nil nil)
17724 17770
17725;;;*** 17771;;;***
17726 17772
17727;;;### (autoloads (m2-mode) "modula2" "progmodes/modula2.el" (19763 17773;;;### (autoloads (m2-mode) "modula2" "progmodes/modula2.el" (19845
17728;;;;;; 27287)) 17774;;;;;; 45374))
17729;;; Generated autoloads from progmodes/modula2.el 17775;;; Generated autoloads from progmodes/modula2.el
17730 17776
17731(defalias 'modula-2-mode 'm2-mode) 17777(defalias 'modula-2-mode 'm2-mode)
@@ -17758,8 +17804,8 @@ followed by the first character of the construct.
17758 17804
17759;;;*** 17805;;;***
17760 17806
17761;;;### (autoloads (unmorse-region morse-region) "morse" "play/morse.el" 17807;;;### (autoloads (denato-region nato-region unmorse-region morse-region)
17762;;;;;; (19775 2029)) 17808;;;;;; "morse" "play/morse.el" (19845 45374))
17763;;; Generated autoloads from play/morse.el 17809;;; Generated autoloads from play/morse.el
17764 17810
17765(autoload 'morse-region "morse" "\ 17811(autoload 'morse-region "morse" "\
@@ -17772,10 +17818,20 @@ Convert morse coded text in region to ordinary ASCII text.
17772 17818
17773\(fn BEG END)" t nil) 17819\(fn BEG END)" t nil)
17774 17820
17821(autoload 'nato-region "morse" "\
17822Convert all text in a given region to NATO phonetic alphabet.
17823
17824\(fn BEG END)" t nil)
17825
17826(autoload 'denato-region "morse" "\
17827Convert NATO phonetic alphabet in region to ordinary ASCII text.
17828
17829\(fn BEG END)" t nil)
17830
17775;;;*** 17831;;;***
17776 17832
17777;;;### (autoloads (mouse-drag-drag mouse-drag-throw) "mouse-drag" 17833;;;### (autoloads (mouse-drag-drag mouse-drag-throw) "mouse-drag"
17778;;;;;; "mouse-drag.el" (19775 2029)) 17834;;;;;; "mouse-drag.el" (19845 45374))
17779;;; Generated autoloads from mouse-drag.el 17835;;; Generated autoloads from mouse-drag.el
17780 17836
17781(autoload 'mouse-drag-throw "mouse-drag" "\ 17837(autoload 'mouse-drag-throw "mouse-drag" "\
@@ -17822,8 +17878,8 @@ To test this function, evaluate:
17822 17878
17823;;;*** 17879;;;***
17824 17880
17825;;;### (autoloads (mouse-sel-mode) "mouse-sel" "mouse-sel.el" (19775 17881;;;### (autoloads (mouse-sel-mode) "mouse-sel" "mouse-sel.el" (19845
17826;;;;;; 2029)) 17882;;;;;; 45374))
17827;;; Generated autoloads from mouse-sel.el 17883;;; Generated autoloads from mouse-sel.el
17828 17884
17829(defvar mouse-sel-mode nil "\ 17885(defvar mouse-sel-mode nil "\
@@ -17875,7 +17931,7 @@ primary selection and region.
17875 17931
17876;;;*** 17932;;;***
17877 17933
17878;;;### (autoloads (mpc) "mpc" "mpc.el" (19775 2029)) 17934;;;### (autoloads (mpc) "mpc" "mpc.el" (19863 8742))
17879;;; Generated autoloads from mpc.el 17935;;; Generated autoloads from mpc.el
17880 17936
17881(autoload 'mpc "mpc" "\ 17937(autoload 'mpc "mpc" "\
@@ -17885,7 +17941,7 @@ Main entry point for MPC.
17885 17941
17886;;;*** 17942;;;***
17887 17943
17888;;;### (autoloads (mpuz) "mpuz" "play/mpuz.el" (19775 2029)) 17944;;;### (autoloads (mpuz) "mpuz" "play/mpuz.el" (19845 45374))
17889;;; Generated autoloads from play/mpuz.el 17945;;; Generated autoloads from play/mpuz.el
17890 17946
17891(autoload 'mpuz "mpuz" "\ 17947(autoload 'mpuz "mpuz" "\
@@ -17895,7 +17951,7 @@ Multiplication puzzle with GNU Emacs.
17895 17951
17896;;;*** 17952;;;***
17897 17953
17898;;;### (autoloads (msb-mode) "msb" "msb.el" (19780 45051)) 17954;;;### (autoloads (msb-mode) "msb" "msb.el" (19845 45374))
17899;;; Generated autoloads from msb.el 17955;;; Generated autoloads from msb.el
17900 17956
17901(defvar msb-mode nil "\ 17957(defvar msb-mode nil "\
@@ -17917,20 +17973,12 @@ different buffer menu using the function `msb'.
17917 17973
17918;;;*** 17974;;;***
17919 17975
17920;;;### (autoloads nil "mule-cmds" "international/mule-cmds.el" (19775
17921;;;;;; 2028))
17922;;; Generated autoloads from international/mule-cmds.el
17923
17924(put 'input-method-alist 'risky-local-variable t)
17925
17926;;;***
17927
17928;;;### (autoloads (font-show-log mule-diag list-input-methods list-fontsets 17976;;;### (autoloads (font-show-log mule-diag list-input-methods list-fontsets
17929;;;;;; describe-fontset describe-font list-coding-categories list-coding-systems 17977;;;;;; describe-fontset describe-font list-coding-categories list-coding-systems
17930;;;;;; describe-current-coding-system describe-current-coding-system-briefly 17978;;;;;; describe-current-coding-system describe-current-coding-system-briefly
17931;;;;;; describe-coding-system describe-character-set list-charset-chars 17979;;;;;; describe-coding-system describe-character-set list-charset-chars
17932;;;;;; read-charset list-character-sets) "mule-diag" "international/mule-diag.el" 17980;;;;;; read-charset list-character-sets) "mule-diag" "international/mule-diag.el"
17933;;;;;; (19775 2028)) 17981;;;;;; (19845 45374))
17934;;; Generated autoloads from international/mule-diag.el 17982;;; Generated autoloads from international/mule-diag.el
17935 17983
17936(autoload 'list-character-sets "mule-diag" "\ 17984(autoload 'list-character-sets "mule-diag" "\
@@ -18067,7 +18115,7 @@ The default is 20. If LIMIT is negative, do not limit the listing.
18067;;;;;; coding-system-translation-table-for-decode coding-system-pre-write-conversion 18115;;;;;; coding-system-translation-table-for-decode coding-system-pre-write-conversion
18068;;;;;; coding-system-post-read-conversion lookup-nested-alist set-nested-alist 18116;;;;;; coding-system-post-read-conversion lookup-nested-alist set-nested-alist
18069;;;;;; truncate-string-to-width store-substring string-to-sequence) 18117;;;;;; truncate-string-to-width store-substring string-to-sequence)
18070;;;;;; "mule-util" "international/mule-util.el" (19775 2028)) 18118;;;;;; "mule-util" "international/mule-util.el" (19845 45374))
18071;;; Generated autoloads from international/mule-util.el 18119;;; Generated autoloads from international/mule-util.el
18072 18120
18073(autoload 'string-to-sequence "mule-util" "\ 18121(autoload 'string-to-sequence "mule-util" "\
@@ -18172,7 +18220,7 @@ Return the value of CODING-SYSTEM's `encode-translation-table' property.
18172 18220
18173(autoload 'with-coding-priority "mule-util" "\ 18221(autoload 'with-coding-priority "mule-util" "\
18174Execute BODY like `progn' with CODING-SYSTEMS at the front of priority list. 18222Execute BODY like `progn' with CODING-SYSTEMS at the front of priority list.
18175CODING-SYSTEMS is a list of coding systems. See `set-coding-priority'. 18223CODING-SYSTEMS is a list of coding systems. See `set-coding-system-priority'.
18176This affects the implicit sorting of lists of coding sysems returned by 18224This affects the implicit sorting of lists of coding sysems returned by
18177operations such as `find-coding-systems-region'. 18225operations such as `find-coding-systems-region'.
18178 18226
@@ -18207,8 +18255,8 @@ per-character basis, this may not be accurate.
18207;;;### (autoloads (network-connection network-connection-to-service 18255;;;### (autoloads (network-connection network-connection-to-service
18208;;;;;; whois-reverse-lookup whois finger ftp run-dig dns-lookup-host 18256;;;;;; whois-reverse-lookup whois finger ftp run-dig dns-lookup-host
18209;;;;;; nslookup nslookup-host ping traceroute route arp netstat 18257;;;;;; nslookup nslookup-host ping traceroute route arp netstat
18210;;;;;; iwconfig ifconfig) "net-utils" "net/net-utils.el" (19775 18258;;;;;; iwconfig ifconfig) "net-utils" "net/net-utils.el" (19845
18211;;;;;; 2029)) 18259;;;;;; 45374))
18212;;; Generated autoloads from net/net-utils.el 18260;;; Generated autoloads from net/net-utils.el
18213 18261
18214(autoload 'ifconfig "net-utils" "\ 18262(autoload 'ifconfig "net-utils" "\
@@ -18286,7 +18334,7 @@ from SEARCH-STRING. With argument, prompt for whois server.
18286\(fn ARG SEARCH-STRING)" t nil) 18334\(fn ARG SEARCH-STRING)" t nil)
18287 18335
18288(autoload 'whois-reverse-lookup "net-utils" "\ 18336(autoload 'whois-reverse-lookup "net-utils" "\
18289Not documented 18337
18290 18338
18291\(fn)" t nil) 18339\(fn)" t nil)
18292 18340
@@ -18302,8 +18350,8 @@ Open a network connection to HOST on PORT.
18302 18350
18303;;;*** 18351;;;***
18304 18352
18305;;;### (autoloads (netrc-credentials) "netrc" "net/netrc.el" (19775 18353;;;### (autoloads (netrc-credentials) "netrc" "net/netrc.el" (19845
18306;;;;;; 2029)) 18354;;;;;; 45374))
18307;;; Generated autoloads from net/netrc.el 18355;;; Generated autoloads from net/netrc.el
18308 18356
18309(autoload 'netrc-credentials "netrc" "\ 18357(autoload 'netrc-credentials "netrc" "\
@@ -18315,12 +18363,83 @@ listed in the PORTS list.
18315 18363
18316;;;*** 18364;;;***
18317 18365
18366;;;### (autoloads (open-network-stream) "network-stream" "net/network-stream.el"
18367;;;;;; (19864 29553))
18368;;; Generated autoloads from net/network-stream.el
18369
18370(autoload 'open-network-stream "network-stream" "\
18371Open a TCP connection to HOST, optionally with encryption.
18372Normally, return a network process object; with a non-nil
18373:return-list parameter, return a list instead (see below).
18374Input and output work as for subprocesses; `delete-process'
18375closes it.
18376
18377NAME is the name for the process. It is modified if necessary to
18378 make it unique.
18379BUFFER is a buffer or buffer name to associate with the process.
18380 Process output goes at end of that buffer. BUFFER may be nil,
18381 meaning that the process is not associated with any buffer.
18382HOST is the name or IP address of the host to connect to.
18383SERVICE is the name of the service desired, or an integer specifying
18384 a port number to connect to.
18385
18386The remaining PARAMETERS should be a sequence of keywords and
18387values:
18388
18389:type specifies the connection type, one of the following:
18390 nil or `network'
18391 -- Begin with an ordinary network connection, and if
18392 the parameters :success and :capability-command
18393 are also supplied, try to upgrade to an encrypted
18394 connection via STARTTLS. Even if that
18395 fails (e.g. if HOST does not support TLS), retain
18396 an unencrypted connection.
18397 `plain' -- An ordinary, unencrypted network connection.
18398 `starttls' -- Begin with an ordinary connection, and try
18399 upgrading via STARTTLS. If that fails for any
18400 reason, drop the connection; in that case the
18401 returned object is a killed process.
18402 `tls' -- A TLS connection.
18403 `ssl' -- Equivalent to `tls'.
18404 `shell' -- A shell connection.
18405
18406:return-list specifies this function's return value.
18407 If omitted or nil, return a process object. A non-nil means to
18408 return (PROC . PROPS), where PROC is a process object and PROPS
18409 is a plist of connection properties, with these keywords:
18410 :greeting -- the greeting returned by HOST (a string), or nil.
18411 :capabilities -- a string representing HOST's capabilities,
18412 or nil if none could be found.
18413 :type -- the resulting connection type; `plain' (unencrypted)
18414 or `tls' (TLS-encrypted).
18415
18416:end-of-command specifies a regexp matching the end of a command.
18417
18418:success specifies a regexp matching a message indicating a
18419 successful STARTTLS negotiation. For instance, the default
18420 should be \"^3\" for an NNTP connection.
18421
18422:capability-command specifies a command used to query the HOST
18423 for its capabilities. For instance, for IMAP this should be
18424 \"1 CAPABILITY\\r\\n\".
18425
18426:starttls-function specifies a function for handling STARTTLS.
18427 This function should take one parameter, the response to the
18428 capability command, and should return the command to switch on
18429 STARTTLS if the server supports STARTTLS, and nil otherwise.
18430
18431\(fn NAME BUFFER HOST SERVICE &rest PARAMETERS)" nil nil)
18432
18433(defalias 'open-protocol-stream 'open-network-stream)
18434
18435;;;***
18436
18318;;;### (autoloads (comment-indent-new-line comment-auto-fill-only-comments 18437;;;### (autoloads (comment-indent-new-line comment-auto-fill-only-comments
18319;;;;;; comment-dwim comment-or-uncomment-region comment-box comment-region 18438;;;;;; comment-dwim comment-or-uncomment-region comment-box comment-region
18320;;;;;; uncomment-region comment-kill comment-set-column comment-indent 18439;;;;;; uncomment-region comment-kill comment-set-column comment-indent
18321;;;;;; comment-indent-default comment-normalize-vars comment-multi-line 18440;;;;;; comment-indent-default comment-normalize-vars comment-multi-line
18322;;;;;; comment-padding comment-style comment-column) "newcomment" 18441;;;;;; comment-padding comment-style comment-column) "newcomment"
18323;;;;;; "newcomment.el" (19775 2029)) 18442;;;;;; "newcomment.el" (19863 8742))
18324;;; Generated autoloads from newcomment.el 18443;;; Generated autoloads from newcomment.el
18325 18444
18326(defalias 'indent-for-comment 'comment-indent) 18445(defalias 'indent-for-comment 'comment-indent)
@@ -18520,7 +18639,7 @@ unless optional argument SOFT is non-nil.
18520;;;*** 18639;;;***
18521 18640
18522;;;### (autoloads (newsticker-start newsticker-running-p) "newst-backend" 18641;;;### (autoloads (newsticker-start newsticker-running-p) "newst-backend"
18523;;;;;; "net/newst-backend.el" (19780 4514)) 18642;;;;;; "net/newst-backend.el" (19845 45374))
18524;;; Generated autoloads from net/newst-backend.el 18643;;; Generated autoloads from net/newst-backend.el
18525 18644
18526(autoload 'newsticker-running-p "newst-backend" "\ 18645(autoload 'newsticker-running-p "newst-backend" "\
@@ -18542,7 +18661,7 @@ Run `newsticker-start-hook' if newsticker was not running already.
18542;;;*** 18661;;;***
18543 18662
18544;;;### (autoloads (newsticker-plainview) "newst-plainview" "net/newst-plainview.el" 18663;;;### (autoloads (newsticker-plainview) "newst-plainview" "net/newst-plainview.el"
18545;;;;;; (19780 4514)) 18664;;;;;; (19845 45374))
18546;;; Generated autoloads from net/newst-plainview.el 18665;;; Generated autoloads from net/newst-plainview.el
18547 18666
18548(autoload 'newsticker-plainview "newst-plainview" "\ 18667(autoload 'newsticker-plainview "newst-plainview" "\
@@ -18553,7 +18672,7 @@ Start newsticker plainview.
18553;;;*** 18672;;;***
18554 18673
18555;;;### (autoloads (newsticker-show-news) "newst-reader" "net/newst-reader.el" 18674;;;### (autoloads (newsticker-show-news) "newst-reader" "net/newst-reader.el"
18556;;;;;; (19780 4514)) 18675;;;;;; (19845 45374))
18557;;; Generated autoloads from net/newst-reader.el 18676;;; Generated autoloads from net/newst-reader.el
18558 18677
18559(autoload 'newsticker-show-news "newst-reader" "\ 18678(autoload 'newsticker-show-news "newst-reader" "\
@@ -18564,7 +18683,7 @@ Start reading news. You may want to bind this to a key.
18564;;;*** 18683;;;***
18565 18684
18566;;;### (autoloads (newsticker-start-ticker newsticker-ticker-running-p) 18685;;;### (autoloads (newsticker-start-ticker newsticker-ticker-running-p)
18567;;;;;; "newst-ticker" "net/newst-ticker.el" (19780 4514)) 18686;;;;;; "newst-ticker" "net/newst-ticker.el" (19845 45374))
18568;;; Generated autoloads from net/newst-ticker.el 18687;;; Generated autoloads from net/newst-ticker.el
18569 18688
18570(autoload 'newsticker-ticker-running-p "newst-ticker" "\ 18689(autoload 'newsticker-ticker-running-p "newst-ticker" "\
@@ -18585,7 +18704,7 @@ running already.
18585;;;*** 18704;;;***
18586 18705
18587;;;### (autoloads (newsticker-treeview) "newst-treeview" "net/newst-treeview.el" 18706;;;### (autoloads (newsticker-treeview) "newst-treeview" "net/newst-treeview.el"
18588;;;;;; (19775 2029)) 18707;;;;;; (19845 45374))
18589;;; Generated autoloads from net/newst-treeview.el 18708;;; Generated autoloads from net/newst-treeview.el
18590 18709
18591(autoload 'newsticker-treeview "newst-treeview" "\ 18710(autoload 'newsticker-treeview "newst-treeview" "\
@@ -18596,7 +18715,7 @@ Start newsticker treeview.
18596;;;*** 18715;;;***
18597 18716
18598;;;### (autoloads (nndiary-generate-nov-databases) "nndiary" "gnus/nndiary.el" 18717;;;### (autoloads (nndiary-generate-nov-databases) "nndiary" "gnus/nndiary.el"
18599;;;;;; (19775 2028)) 18718;;;;;; (19845 45374))
18600;;; Generated autoloads from gnus/nndiary.el 18719;;; Generated autoloads from gnus/nndiary.el
18601 18720
18602(autoload 'nndiary-generate-nov-databases "nndiary" "\ 18721(autoload 'nndiary-generate-nov-databases "nndiary" "\
@@ -18606,8 +18725,8 @@ Generate NOV databases in all nndiary directories.
18606 18725
18607;;;*** 18726;;;***
18608 18727
18609;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el" (19775 18728;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el" (19845
18610;;;;;; 2028)) 18729;;;;;; 45374))
18611;;; Generated autoloads from gnus/nndoc.el 18730;;; Generated autoloads from gnus/nndoc.el
18612 18731
18613(autoload 'nndoc-add-type "nndoc" "\ 18732(autoload 'nndoc-add-type "nndoc" "\
@@ -18622,7 +18741,7 @@ symbol in the alist.
18622;;;*** 18741;;;***
18623 18742
18624;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el" 18743;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el"
18625;;;;;; (19775 2028)) 18744;;;;;; (19845 45374))
18626;;; Generated autoloads from gnus/nnfolder.el 18745;;; Generated autoloads from gnus/nnfolder.el
18627 18746
18628(autoload 'nnfolder-generate-active-file "nnfolder" "\ 18747(autoload 'nnfolder-generate-active-file "nnfolder" "\
@@ -18634,7 +18753,7 @@ This command does not work if you use short group names.
18634;;;*** 18753;;;***
18635 18754
18636;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el" 18755;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el"
18637;;;;;; (19775 2028)) 18756;;;;;; (19845 45374))
18638;;; Generated autoloads from gnus/nnml.el 18757;;; Generated autoloads from gnus/nnml.el
18639 18758
18640(autoload 'nnml-generate-nov-databases "nnml" "\ 18759(autoload 'nnml-generate-nov-databases "nnml" "\
@@ -18645,7 +18764,7 @@ Generate NOV databases in all nnml directories.
18645;;;*** 18764;;;***
18646 18765
18647;;;### (autoloads (disable-command enable-command disabled-command-function) 18766;;;### (autoloads (disable-command enable-command disabled-command-function)
18648;;;;;; "novice" "novice.el" (19775 2029)) 18767;;;;;; "novice" "novice.el" (19845 45374))
18649;;; Generated autoloads from novice.el 18768;;; Generated autoloads from novice.el
18650 18769
18651(defvar disabled-command-function 'disabled-command-function "\ 18770(defvar disabled-command-function 'disabled-command-function "\
@@ -18655,7 +18774,7 @@ If nil, the feature is disabled, i.e., all commands work normally.")
18655(define-obsolete-variable-alias 'disabled-command-hook 'disabled-command-function "22.1") 18774(define-obsolete-variable-alias 'disabled-command-hook 'disabled-command-function "22.1")
18656 18775
18657(autoload 'disabled-command-function "novice" "\ 18776(autoload 'disabled-command-function "novice" "\
18658Not documented 18777
18659 18778
18660\(fn &optional CMD KEYS)" nil nil) 18779\(fn &optional CMD KEYS)" nil nil)
18661 18780
@@ -18678,7 +18797,7 @@ to future sessions.
18678;;;*** 18797;;;***
18679 18798
18680;;;### (autoloads (nroff-mode) "nroff-mode" "textmodes/nroff-mode.el" 18799;;;### (autoloads (nroff-mode) "nroff-mode" "textmodes/nroff-mode.el"
18681;;;;;; (19780 4514)) 18800;;;;;; (19845 45374))
18682;;; Generated autoloads from textmodes/nroff-mode.el 18801;;; Generated autoloads from textmodes/nroff-mode.el
18683 18802
18684(autoload 'nroff-mode "nroff-mode" "\ 18803(autoload 'nroff-mode "nroff-mode" "\
@@ -18693,7 +18812,7 @@ closing requests for requests that are used in matched pairs.
18693;;;*** 18812;;;***
18694 18813
18695;;;### (autoloads (nxml-glyph-display-string) "nxml-glyph" "nxml/nxml-glyph.el" 18814;;;### (autoloads (nxml-glyph-display-string) "nxml-glyph" "nxml/nxml-glyph.el"
18696;;;;;; (19775 2029)) 18815;;;;;; (19845 45374))
18697;;; Generated autoloads from nxml/nxml-glyph.el 18816;;; Generated autoloads from nxml/nxml-glyph.el
18698 18817
18699(autoload 'nxml-glyph-display-string "nxml-glyph" "\ 18818(autoload 'nxml-glyph-display-string "nxml-glyph" "\
@@ -18705,8 +18824,8 @@ Return nil if the face cannot display a glyph for N.
18705 18824
18706;;;*** 18825;;;***
18707 18826
18708;;;### (autoloads (nxml-mode) "nxml-mode" "nxml/nxml-mode.el" (19780 18827;;;### (autoloads (nxml-mode) "nxml-mode" "nxml/nxml-mode.el" (19845
18709;;;;;; 4514)) 18828;;;;;; 45374))
18710;;; Generated autoloads from nxml/nxml-mode.el 18829;;; Generated autoloads from nxml/nxml-mode.el
18711 18830
18712(autoload 'nxml-mode "nxml-mode" "\ 18831(autoload 'nxml-mode "nxml-mode" "\
@@ -18768,7 +18887,7 @@ Many aspects this mode can be customized using
18768;;;*** 18887;;;***
18769 18888
18770;;;### (autoloads (nxml-enable-unicode-char-name-sets) "nxml-uchnm" 18889;;;### (autoloads (nxml-enable-unicode-char-name-sets) "nxml-uchnm"
18771;;;;;; "nxml/nxml-uchnm.el" (19775 2029)) 18890;;;;;; "nxml/nxml-uchnm.el" (19845 45374))
18772;;; Generated autoloads from nxml/nxml-uchnm.el 18891;;; Generated autoloads from nxml/nxml-uchnm.el
18773 18892
18774(autoload 'nxml-enable-unicode-char-name-sets "nxml-uchnm" "\ 18893(autoload 'nxml-enable-unicode-char-name-sets "nxml-uchnm" "\
@@ -18790,16 +18909,16 @@ the variable `nxml-enabled-unicode-blocks'.
18790;;;;;; org-babel-execute-src-block org-babel-pop-to-session-maybe 18909;;;;;; org-babel-execute-src-block org-babel-pop-to-session-maybe
18791;;;;;; org-babel-load-in-session-maybe org-babel-expand-src-block-maybe 18910;;;;;; org-babel-load-in-session-maybe org-babel-expand-src-block-maybe
18792;;;;;; org-babel-execute-maybe org-babel-execute-safely-maybe) "ob" 18911;;;;;; org-babel-execute-maybe org-babel-execute-safely-maybe) "ob"
18793;;;;;; "org/ob.el" (19775 2029)) 18912;;;;;; "org/ob.el" (19845 45374))
18794;;; Generated autoloads from org/ob.el 18913;;; Generated autoloads from org/ob.el
18795 18914
18796(autoload 'org-babel-execute-safely-maybe "ob" "\ 18915(autoload 'org-babel-execute-safely-maybe "ob" "\
18797Not documented 18916
18798 18917
18799\(fn)" nil nil) 18918\(fn)" nil nil)
18800 18919
18801(autoload 'org-babel-execute-maybe "ob" "\ 18920(autoload 'org-babel-execute-maybe "ob" "\
18802Not documented 18921
18803 18922
18804\(fn)" t nil) 18923\(fn)" t nil)
18805 18924
@@ -18972,7 +19091,7 @@ Mark current src block
18972;;;*** 19091;;;***
18973 19092
18974;;;### (autoloads (org-babel-describe-bindings) "ob-keys" "org/ob-keys.el" 19093;;;### (autoloads (org-babel-describe-bindings) "ob-keys" "org/ob-keys.el"
18975;;;;;; (19775 2029)) 19094;;;;;; (19845 45374))
18976;;; Generated autoloads from org/ob-keys.el 19095;;; Generated autoloads from org/ob-keys.el
18977 19096
18978(autoload 'org-babel-describe-bindings "ob-keys" "\ 19097(autoload 'org-babel-describe-bindings "ob-keys" "\
@@ -18983,7 +19102,7 @@ Describe all keybindings behind `org-babel-key-prefix'.
18983;;;*** 19102;;;***
18984 19103
18985;;;### (autoloads (org-babel-lob-get-info org-babel-lob-execute-maybe 19104;;;### (autoloads (org-babel-lob-get-info org-babel-lob-execute-maybe
18986;;;;;; org-babel-lob-ingest) "ob-lob" "org/ob-lob.el" (19775 2029)) 19105;;;;;; org-babel-lob-ingest) "ob-lob" "org/ob-lob.el" (19845 45374))
18987;;; Generated autoloads from org/ob-lob.el 19106;;; Generated autoloads from org/ob-lob.el
18988 19107
18989(autoload 'org-babel-lob-ingest "ob-lob" "\ 19108(autoload 'org-babel-lob-ingest "ob-lob" "\
@@ -19008,7 +19127,7 @@ Return a Library of Babel function call as a string.
19008 19127
19009;;;### (autoloads (org-babel-tangle org-babel-tangle-file org-babel-load-file 19128;;;### (autoloads (org-babel-tangle org-babel-tangle-file org-babel-load-file
19010;;;;;; org-babel-tangle-lang-exts) "ob-tangle" "org/ob-tangle.el" 19129;;;;;; org-babel-tangle-lang-exts) "ob-tangle" "org/ob-tangle.el"
19011;;;;;; (19775 2029)) 19130;;;;;; (19845 45374))
19012;;; Generated autoloads from org/ob-tangle.el 19131;;; Generated autoloads from org/ob-tangle.el
19013 19132
19014(defvar org-babel-tangle-lang-exts '(("emacs-lisp" . "el")) "\ 19133(defvar org-babel-tangle-lang-exts '(("emacs-lisp" . "el")) "\
@@ -19050,7 +19169,7 @@ exported source code blocks by language.
19050;;;*** 19169;;;***
19051 19170
19052;;;### (autoloads (inferior-octave) "octave-inf" "progmodes/octave-inf.el" 19171;;;### (autoloads (inferior-octave) "octave-inf" "progmodes/octave-inf.el"
19053;;;;;; (19780 4514)) 19172;;;;;; (19845 45374))
19054;;; Generated autoloads from progmodes/octave-inf.el 19173;;; Generated autoloads from progmodes/octave-inf.el
19055 19174
19056(autoload 'inferior-octave "octave-inf" "\ 19175(autoload 'inferior-octave "octave-inf" "\
@@ -19073,7 +19192,7 @@ startup file, `~/.emacs-octave'.
19073;;;*** 19192;;;***
19074 19193
19075;;;### (autoloads (octave-mode) "octave-mod" "progmodes/octave-mod.el" 19194;;;### (autoloads (octave-mode) "octave-mod" "progmodes/octave-mod.el"
19076;;;;;; (19775 2029)) 19195;;;;;; (19845 45374))
19077;;; Generated autoloads from progmodes/octave-mod.el 19196;;; Generated autoloads from progmodes/octave-mod.el
19078 19197
19079(autoload 'octave-mode "octave-mod" "\ 19198(autoload 'octave-mode "octave-mod" "\
@@ -19161,7 +19280,7 @@ including a reproducible test case and send the message.
19161;;;;;; org-insert-link-global org-store-link org-run-like-in-org-mode 19280;;;;;; org-insert-link-global org-store-link org-run-like-in-org-mode
19162;;;;;; turn-on-orgstruct++ turn-on-orgstruct orgstruct-mode org-global-cycle 19281;;;;;; turn-on-orgstruct++ turn-on-orgstruct orgstruct-mode org-global-cycle
19163;;;;;; org-mode org-babel-do-load-languages) "org" "org/org.el" 19282;;;;;; org-mode org-babel-do-load-languages) "org" "org/org.el"
19164;;;;;; (19780 4514)) 19283;;;;;; (19845 45374))
19165;;; Generated autoloads from org/org.el 19284;;; Generated autoloads from org/org.el
19166 19285
19167(autoload 'org-babel-do-load-languages "org" "\ 19286(autoload 'org-babel-do-load-languages "org" "\
@@ -19363,7 +19482,7 @@ information about your Org-mode version and configuration.
19363\(fn)" t nil) 19482\(fn)" t nil)
19364 19483
19365(autoload 'org-require-autoloaded-modules "org" "\ 19484(autoload 'org-require-autoloaded-modules "org" "\
19366Not documented 19485
19367 19486
19368\(fn)" t nil) 19487\(fn)" t nil)
19369 19488
@@ -19384,7 +19503,7 @@ Call the customize function with org as argument.
19384;;;;;; org-diary org-agenda-list-stuck-projects org-tags-view org-todo-list 19503;;;;;; org-diary org-agenda-list-stuck-projects org-tags-view org-todo-list
19385;;;;;; org-search-view org-agenda-list org-batch-store-agenda-views 19504;;;;;; org-search-view org-agenda-list org-batch-store-agenda-views
19386;;;;;; org-store-agenda-views org-batch-agenda-csv org-batch-agenda 19505;;;;;; org-store-agenda-views org-batch-agenda-csv org-batch-agenda
19387;;;;;; org-agenda) "org-agenda" "org/org-agenda.el" (19780 4514)) 19506;;;;;; org-agenda) "org-agenda" "org/org-agenda.el" (19845 45374))
19388;;; Generated autoloads from org/org-agenda.el 19507;;; Generated autoloads from org/org-agenda.el
19389 19508
19390(autoload 'org-agenda "org-agenda" "\ 19509(autoload 'org-agenda "org-agenda" "\
@@ -19471,7 +19590,7 @@ agenda-day The day in the agenda where this is listed
19471\(fn CMD-KEY &rest PARAMETERS)" nil (quote macro)) 19590\(fn CMD-KEY &rest PARAMETERS)" nil (quote macro))
19472 19591
19473(autoload 'org-store-agenda-views "org-agenda" "\ 19592(autoload 'org-store-agenda-views "org-agenda" "\
19474Not documented 19593
19475 19594
19476\(fn &rest PARAMETERS)" t nil) 19595\(fn &rest PARAMETERS)" t nil)
19477 19596
@@ -19634,7 +19753,7 @@ belonging to the \"Work\" category.
19634 19753
19635;;;### (autoloads (org-archive-subtree-default-with-confirmation 19754;;;### (autoloads (org-archive-subtree-default-with-confirmation
19636;;;;;; org-archive-subtree-default) "org-archive" "org/org-archive.el" 19755;;;;;; org-archive-subtree-default) "org-archive" "org/org-archive.el"
19637;;;;;; (19780 4514)) 19756;;;;;; (19845 45374))
19638;;; Generated autoloads from org/org-archive.el 19757;;; Generated autoloads from org/org-archive.el
19639 19758
19640(autoload 'org-archive-subtree-default "org-archive" "\ 19759(autoload 'org-archive-subtree-default "org-archive" "\
@@ -19654,8 +19773,8 @@ This command is set with the variable `org-archive-default-command'.
19654;;;### (autoloads (org-export-as-ascii org-export-region-as-ascii 19773;;;### (autoloads (org-export-as-ascii org-export-region-as-ascii
19655;;;;;; org-replace-region-by-ascii org-export-as-ascii-to-buffer 19774;;;;;; org-replace-region-by-ascii org-export-as-ascii-to-buffer
19656;;;;;; org-export-as-utf8-to-buffer org-export-as-utf8 org-export-as-latin1-to-buffer 19775;;;;;; org-export-as-utf8-to-buffer org-export-as-utf8 org-export-as-latin1-to-buffer
19657;;;;;; org-export-as-latin1) "org-ascii" "org/org-ascii.el" (19780 19776;;;;;; org-export-as-latin1) "org-ascii" "org/org-ascii.el" (19845
19658;;;;;; 4514)) 19777;;;;;; 45374))
19659;;; Generated autoloads from org/org-ascii.el 19778;;; Generated autoloads from org/org-ascii.el
19660 19779
19661(autoload 'org-export-as-latin1 "org-ascii" "\ 19780(autoload 'org-export-as-latin1 "org-ascii" "\
@@ -19728,8 +19847,8 @@ publishing directory.
19728 19847
19729;;;*** 19848;;;***
19730 19849
19731;;;### (autoloads (org-attach) "org-attach" "org/org-attach.el" (19775 19850;;;### (autoloads (org-attach) "org-attach" "org/org-attach.el" (19845
19732;;;;;; 2029)) 19851;;;;;; 45374))
19733;;; Generated autoloads from org/org-attach.el 19852;;; Generated autoloads from org/org-attach.el
19734 19853
19735(autoload 'org-attach "org-attach" "\ 19854(autoload 'org-attach "org-attach" "\
@@ -19741,7 +19860,7 @@ Shows a list of commands and prompts for another key to execute a command.
19741;;;*** 19860;;;***
19742 19861
19743;;;### (autoloads (org-bbdb-anniversaries) "org-bbdb" "org/org-bbdb.el" 19862;;;### (autoloads (org-bbdb-anniversaries) "org-bbdb" "org/org-bbdb.el"
19744;;;;;; (19780 4514)) 19863;;;;;; (19845 45374))
19745;;; Generated autoloads from org/org-bbdb.el 19864;;; Generated autoloads from org/org-bbdb.el
19746 19865
19747(autoload 'org-bbdb-anniversaries "org-bbdb" "\ 19866(autoload 'org-bbdb-anniversaries "org-bbdb" "\
@@ -19752,7 +19871,7 @@ Extract anniversaries from BBDB for display in the agenda.
19752;;;*** 19871;;;***
19753 19872
19754;;;### (autoloads (org-capture-import-remember-templates org-capture-insert-template-here 19873;;;### (autoloads (org-capture-import-remember-templates org-capture-insert-template-here
19755;;;;;; org-capture) "org-capture" "org/org-capture.el" (19775 2029)) 19874;;;;;; org-capture) "org-capture" "org/org-capture.el" (19845 45374))
19756;;; Generated autoloads from org/org-capture.el 19875;;; Generated autoloads from org/org-capture.el
19757 19876
19758(autoload 'org-capture "org-capture" "\ 19877(autoload 'org-capture "org-capture" "\
@@ -19778,7 +19897,7 @@ bypassed.
19778\(fn &optional GOTO KEYS)" t nil) 19897\(fn &optional GOTO KEYS)" t nil)
19779 19898
19780(autoload 'org-capture-insert-template-here "org-capture" "\ 19899(autoload 'org-capture-insert-template-here "org-capture" "\
19781Not documented 19900
19782 19901
19783\(fn)" nil nil) 19902\(fn)" nil nil)
19784 19903
@@ -19790,7 +19909,7 @@ Set org-capture-templates to be similar to `org-remember-templates'.
19790;;;*** 19909;;;***
19791 19910
19792;;;### (autoloads (org-clock-persistence-insinuate org-get-clocktable) 19911;;;### (autoloads (org-clock-persistence-insinuate org-get-clocktable)
19793;;;;;; "org-clock" "org/org-clock.el" (19780 4514)) 19912;;;;;; "org-clock" "org/org-clock.el" (19845 45374))
19794;;; Generated autoloads from org/org-clock.el 19913;;; Generated autoloads from org/org-clock.el
19795 19914
19796(autoload 'org-get-clocktable "org-clock" "\ 19915(autoload 'org-get-clocktable "org-clock" "\
@@ -19808,7 +19927,7 @@ Set up hooks for clock persistence.
19808;;;*** 19927;;;***
19809 19928
19810;;;### (autoloads (org-datetree-find-date-create) "org-datetree" 19929;;;### (autoloads (org-datetree-find-date-create) "org-datetree"
19811;;;;;; "org/org-datetree.el" (19775 2029)) 19930;;;;;; "org/org-datetree.el" (19845 45374))
19812;;; Generated autoloads from org/org-datetree.el 19931;;; Generated autoloads from org/org-datetree.el
19813 19932
19814(autoload 'org-datetree-find-date-create "org-datetree" "\ 19933(autoload 'org-datetree-find-date-create "org-datetree" "\
@@ -19824,7 +19943,7 @@ tree can be found.
19824;;;### (autoloads (org-export-as-docbook org-export-as-docbook-pdf-and-open 19943;;;### (autoloads (org-export-as-docbook org-export-as-docbook-pdf-and-open
19825;;;;;; org-export-as-docbook-pdf org-export-region-as-docbook org-replace-region-by-docbook 19944;;;;;; org-export-as-docbook-pdf org-export-region-as-docbook org-replace-region-by-docbook
19826;;;;;; org-export-as-docbook-to-buffer org-export-as-docbook-batch) 19945;;;;;; org-export-as-docbook-to-buffer org-export-as-docbook-batch)
19827;;;;;; "org-docbook" "org/org-docbook.el" (19775 2029)) 19946;;;;;; "org-docbook" "org/org-docbook.el" (19845 45374))
19828;;; Generated autoloads from org/org-docbook.el 19947;;; Generated autoloads from org/org-docbook.el
19829 19948
19830(autoload 'org-export-as-docbook-batch "org-docbook" "\ 19949(autoload 'org-export-as-docbook-batch "org-docbook" "\
@@ -19901,7 +20020,7 @@ publishing directory.
19901 20020
19902;;;### (autoloads (org-insert-export-options-template org-export-as-org 20021;;;### (autoloads (org-insert-export-options-template org-export-as-org
19903;;;;;; org-export-visible org-export) "org-exp" "org/org-exp.el" 20022;;;;;; org-export-visible org-export) "org-exp" "org/org-exp.el"
19904;;;;;; (19780 4514)) 20023;;;;;; (19845 45374))
19905;;; Generated autoloads from org/org-exp.el 20024;;; Generated autoloads from org/org-exp.el
19906 20025
19907(autoload 'org-export "org-exp" "\ 20026(autoload 'org-export "org-exp" "\
@@ -19958,8 +20077,8 @@ Insert into the buffer a template with information for exporting.
19958;;;*** 20077;;;***
19959 20078
19960;;;### (autoloads (org-feed-show-raw-feed org-feed-goto-inbox org-feed-update 20079;;;### (autoloads (org-feed-show-raw-feed org-feed-goto-inbox org-feed-update
19961;;;;;; org-feed-update-all) "org-feed" "org/org-feed.el" (19775 20080;;;;;; org-feed-update-all) "org-feed" "org/org-feed.el" (19845
19962;;;;;; 2029)) 20081;;;;;; 45374))
19963;;; Generated autoloads from org/org-feed.el 20082;;; Generated autoloads from org/org-feed.el
19964 20083
19965(autoload 'org-feed-update-all "org-feed" "\ 20084(autoload 'org-feed-update-all "org-feed" "\
@@ -19987,7 +20106,7 @@ Show the raw feed buffer of a feed.
19987;;;*** 20106;;;***
19988 20107
19989;;;### (autoloads (org-footnote-normalize org-footnote-action) "org-footnote" 20108;;;### (autoloads (org-footnote-normalize org-footnote-action) "org-footnote"
19990;;;;;; "org/org-footnote.el" (19775 2029)) 20109;;;;;; "org/org-footnote.el" (19845 45374))
19991;;; Generated autoloads from org/org-footnote.el 20110;;; Generated autoloads from org/org-footnote.el
19992 20111
19993(autoload 'org-footnote-action "org-footnote" "\ 20112(autoload 'org-footnote-action "org-footnote" "\
@@ -20014,7 +20133,7 @@ referenced sequence.
20014;;;### (autoloads (org-freemind-to-org-mode org-freemind-from-org-sparse-tree 20133;;;### (autoloads (org-freemind-to-org-mode org-freemind-from-org-sparse-tree
20015;;;;;; org-freemind-from-org-mode org-freemind-from-org-mode-node 20134;;;;;; org-freemind-from-org-mode org-freemind-from-org-mode-node
20016;;;;;; org-freemind-show org-export-as-freemind) "org-freemind" 20135;;;;;; org-freemind-show org-export-as-freemind) "org-freemind"
20017;;;;;; "org/org-freemind.el" (19775 2029)) 20136;;;;;; "org/org-freemind.el" (19845 45374))
20018;;; Generated autoloads from org/org-freemind.el 20137;;; Generated autoloads from org/org-freemind.el
20019 20138
20020(autoload 'org-export-as-freemind "org-freemind" "\ 20139(autoload 'org-export-as-freemind "org-freemind" "\
@@ -20075,7 +20194,7 @@ Convert FreeMind file MM-FILE to `org-mode' file ORG-FILE.
20075;;;### (autoloads (org-export-htmlize-generate-css org-export-as-html 20194;;;### (autoloads (org-export-htmlize-generate-css org-export-as-html
20076;;;;;; org-export-region-as-html org-replace-region-by-html org-export-as-html-to-buffer 20195;;;;;; org-export-region-as-html org-replace-region-by-html org-export-as-html-to-buffer
20077;;;;;; org-export-as-html-batch org-export-as-html-and-open) "org-html" 20196;;;;;; org-export-as-html-batch org-export-as-html-and-open) "org-html"
20078;;;;;; "org/org-html.el" (19780 4514)) 20197;;;;;; "org/org-html.el" (19845 45374))
20079;;; Generated autoloads from org/org-html.el 20198;;; Generated autoloads from org/org-html.el
20080 20199
20081(put 'org-export-html-style-include-default 'safe-local-variable 'booleanp) 20200(put 'org-export-html-style-include-default 'safe-local-variable 'booleanp)
@@ -20169,7 +20288,7 @@ that uses these same face definitions.
20169 20288
20170;;;### (autoloads (org-export-icalendar-combine-agenda-files org-export-icalendar-all-agenda-files 20289;;;### (autoloads (org-export-icalendar-combine-agenda-files org-export-icalendar-all-agenda-files
20171;;;;;; org-export-icalendar-this-file) "org-icalendar" "org/org-icalendar.el" 20290;;;;;; org-export-icalendar-this-file) "org-icalendar" "org/org-icalendar.el"
20172;;;;;; (19780 4514)) 20291;;;;;; (19845 45374))
20173;;; Generated autoloads from org/org-icalendar.el 20292;;; Generated autoloads from org/org-icalendar.el
20174 20293
20175(autoload 'org-export-icalendar-this-file "org-icalendar" "\ 20294(autoload 'org-export-icalendar-this-file "org-icalendar" "\
@@ -20197,7 +20316,7 @@ The file is stored under the name `org-combined-agenda-icalendar-file'.
20197;;;### (autoloads (org-id-store-link org-id-find-id-file org-id-find 20316;;;### (autoloads (org-id-store-link org-id-find-id-file org-id-find
20198;;;;;; org-id-goto org-id-get-with-outline-drilling org-id-get-with-outline-path-completion 20317;;;;;; org-id-goto org-id-get-with-outline-drilling org-id-get-with-outline-path-completion
20199;;;;;; org-id-get org-id-copy org-id-get-create) "org-id" "org/org-id.el" 20318;;;;;; org-id-get org-id-copy org-id-get-create) "org-id" "org/org-id.el"
20200;;;;;; (19775 2029)) 20319;;;;;; (19845 45374))
20201;;; Generated autoloads from org/org-id.el 20320;;; Generated autoloads from org/org-id.el
20202 20321
20203(autoload 'org-id-get-create "org-id" "\ 20322(autoload 'org-id-get-create "org-id" "\
@@ -20266,7 +20385,7 @@ Store a link to the current entry, using its ID.
20266;;;*** 20385;;;***
20267 20386
20268;;;### (autoloads (org-indent-mode) "org-indent" "org/org-indent.el" 20387;;;### (autoloads (org-indent-mode) "org-indent" "org/org-indent.el"
20269;;;;;; (19775 2029)) 20388;;;;;; (19845 45374))
20270;;; Generated autoloads from org/org-indent.el 20389;;; Generated autoloads from org/org-indent.el
20271 20390
20272(autoload 'org-indent-mode "org-indent" "\ 20391(autoload 'org-indent-mode "org-indent" "\
@@ -20281,7 +20400,7 @@ FIXME: How to update when broken?
20281;;;*** 20400;;;***
20282 20401
20283;;;### (autoloads (org-irc-store-link) "org-irc" "org/org-irc.el" 20402;;;### (autoloads (org-irc-store-link) "org-irc" "org/org-irc.el"
20284;;;;;; (19775 2029)) 20403;;;;;; (19845 45374))
20285;;; Generated autoloads from org/org-irc.el 20404;;; Generated autoloads from org/org-irc.el
20286 20405
20287(autoload 'org-irc-store-link "org-irc" "\ 20406(autoload 'org-irc-store-link "org-irc" "\
@@ -20294,7 +20413,7 @@ Dispatch to the appropriate function to store a link to an IRC session.
20294;;;### (autoloads (org-export-as-pdf-and-open org-export-as-pdf org-export-as-latex 20413;;;### (autoloads (org-export-as-pdf-and-open org-export-as-pdf org-export-as-latex
20295;;;;;; org-export-region-as-latex org-replace-region-by-latex org-export-as-latex-to-buffer 20414;;;;;; org-export-region-as-latex org-replace-region-by-latex org-export-as-latex-to-buffer
20296;;;;;; org-export-as-latex-batch) "org-latex" "org/org-latex.el" 20415;;;;;; org-export-as-latex-batch) "org-latex" "org/org-latex.el"
20297;;;;;; (19775 2029)) 20416;;;;;; (19845 45374))
20298;;; Generated autoloads from org/org-latex.el 20417;;; Generated autoloads from org/org-latex.el
20299 20418
20300(autoload 'org-export-as-latex-batch "org-latex" "\ 20419(autoload 'org-export-as-latex-batch "org-latex" "\
@@ -20374,8 +20493,8 @@ Export as LaTeX, then process through to PDF, and open.
20374;;;*** 20493;;;***
20375 20494
20376;;;### (autoloads (org-mobile-create-sumo-agenda org-mobile-pull 20495;;;### (autoloads (org-mobile-create-sumo-agenda org-mobile-pull
20377;;;;;; org-mobile-push) "org-mobile" "org/org-mobile.el" (19775 20496;;;;;; org-mobile-push) "org-mobile" "org/org-mobile.el" (19845
20378;;;;;; 2029)) 20497;;;;;; 45374))
20379;;; Generated autoloads from org/org-mobile.el 20498;;; Generated autoloads from org/org-mobile.el
20380 20499
20381(autoload 'org-mobile-push "org-mobile" "\ 20500(autoload 'org-mobile-push "org-mobile" "\
@@ -20400,7 +20519,7 @@ Create a file that contains all custom agenda views.
20400;;;*** 20519;;;***
20401 20520
20402;;;### (autoloads (org-plot/gnuplot) "org-plot" "org/org-plot.el" 20521;;;### (autoloads (org-plot/gnuplot) "org-plot" "org/org-plot.el"
20403;;;;;; (19775 2029)) 20522;;;;;; (19845 45374))
20404;;; Generated autoloads from org/org-plot.el 20523;;; Generated autoloads from org/org-plot.el
20405 20524
20406(autoload 'org-plot/gnuplot "org-plot" "\ 20525(autoload 'org-plot/gnuplot "org-plot" "\
@@ -20414,7 +20533,7 @@ line directly before or after the table.
20414 20533
20415;;;### (autoloads (org-publish-current-project org-publish-current-file 20534;;;### (autoloads (org-publish-current-project org-publish-current-file
20416;;;;;; org-publish-all org-publish) "org-publish" "org/org-publish.el" 20535;;;;;; org-publish-all org-publish) "org-publish" "org/org-publish.el"
20417;;;;;; (19780 4514)) 20536;;;;;; (19845 45374))
20418;;; Generated autoloads from org/org-publish.el 20537;;; Generated autoloads from org/org-publish.el
20419 20538
20420(defalias 'org-publish-project 'org-publish) 20539(defalias 'org-publish-project 'org-publish)
@@ -20448,7 +20567,7 @@ the project.
20448 20567
20449;;;### (autoloads (org-remember-handler org-remember org-remember-apply-template 20568;;;### (autoloads (org-remember-handler org-remember org-remember-apply-template
20450;;;;;; org-remember-annotation org-remember-insinuate) "org-remember" 20569;;;;;; org-remember-annotation org-remember-insinuate) "org-remember"
20451;;;;;; "org/org-remember.el" (19780 4514)) 20570;;;;;; "org/org-remember.el" (19845 45374))
20452;;; Generated autoloads from org/org-remember.el 20571;;; Generated autoloads from org/org-remember.el
20453 20572
20454(autoload 'org-remember-insinuate "org-remember" "\ 20573(autoload 'org-remember-insinuate "org-remember" "\
@@ -20524,7 +20643,7 @@ See also the variable `org-reverse-note-order'.
20524;;;*** 20643;;;***
20525 20644
20526;;;### (autoloads (org-table-to-lisp orgtbl-mode turn-on-orgtbl) 20645;;;### (autoloads (org-table-to-lisp orgtbl-mode turn-on-orgtbl)
20527;;;;;; "org-table" "org/org-table.el" (19780 4514)) 20646;;;;;; "org-table" "org/org-table.el" (19845 45374))
20528;;; Generated autoloads from org/org-table.el 20647;;; Generated autoloads from org/org-table.el
20529 20648
20530(autoload 'turn-on-orgtbl "org-table" "\ 20649(autoload 'turn-on-orgtbl "org-table" "\
@@ -20548,7 +20667,7 @@ The table is taken from the parameter TXT, or from the buffer at point.
20548;;;*** 20667;;;***
20549 20668
20550;;;### (autoloads (org-export-as-taskjuggler-and-open org-export-as-taskjuggler) 20669;;;### (autoloads (org-export-as-taskjuggler-and-open org-export-as-taskjuggler)
20551;;;;;; "org-taskjuggler" "org/org-taskjuggler.el" (19775 2029)) 20670;;;;;; "org-taskjuggler" "org/org-taskjuggler.el" (19845 45374))
20552;;; Generated autoloads from org/org-taskjuggler.el 20671;;; Generated autoloads from org/org-taskjuggler.el
20553 20672
20554(autoload 'org-export-as-taskjuggler "org-taskjuggler" "\ 20673(autoload 'org-export-as-taskjuggler "org-taskjuggler" "\
@@ -20576,7 +20695,7 @@ with the TaskJuggler GUI.
20576 20695
20577;;;### (autoloads (org-timer-set-timer org-timer-item org-timer-change-times-in-region 20696;;;### (autoloads (org-timer-set-timer org-timer-item org-timer-change-times-in-region
20578;;;;;; org-timer org-timer-start) "org-timer" "org/org-timer.el" 20697;;;;;; org-timer org-timer-start) "org-timer" "org/org-timer.el"
20579;;;;;; (19775 2029)) 20698;;;;;; (19845 45374))
20580;;; Generated autoloads from org/org-timer.el 20699;;; Generated autoloads from org/org-timer.el
20581 20700
20582(autoload 'org-timer-start "org-timer" "\ 20701(autoload 'org-timer-start "org-timer" "\
@@ -20637,7 +20756,7 @@ replace any running timer.
20637;;;*** 20756;;;***
20638 20757
20639;;;### (autoloads (org-export-as-xoxo) "org-xoxo" "org/org-xoxo.el" 20758;;;### (autoloads (org-export-as-xoxo) "org-xoxo" "org/org-xoxo.el"
20640;;;;;; (19780 4514)) 20759;;;;;; (19845 45374))
20641;;; Generated autoloads from org/org-xoxo.el 20760;;; Generated autoloads from org/org-xoxo.el
20642 20761
20643(autoload 'org-export-as-xoxo "org-xoxo" "\ 20762(autoload 'org-export-as-xoxo "org-xoxo" "\
@@ -20649,9 +20768,10 @@ The XOXO buffer is named *xoxo-<source buffer name>*
20649;;;*** 20768;;;***
20650 20769
20651;;;### (autoloads (outline-minor-mode outline-mode) "outline" "outline.el" 20770;;;### (autoloads (outline-minor-mode outline-mode) "outline" "outline.el"
20652;;;;;; (19775 2029)) 20771;;;;;; (19845 45374))
20653;;; Generated autoloads from outline.el 20772;;; Generated autoloads from outline.el
20654(put 'outline-regexp 'safe-local-variable 'string-or-null-p) 20773(put 'outline-regexp 'safe-local-variable 'stringp)
20774(put 'outline-heading-end-regexp 'safe-local-variable 'stringp)
20655 20775
20656(autoload 'outline-mode "outline" "\ 20776(autoload 'outline-mode "outline" "\
20657Set major mode for editing outlines with selective display. 20777Set major mode for editing outlines with selective display.
@@ -20709,7 +20829,7 @@ See the command `outline-mode' for more information on this mode.
20709;;;### (autoloads (list-packages describe-package package-initialize 20829;;;### (autoloads (list-packages describe-package package-initialize
20710;;;;;; package-install-file package-install-from-buffer package-install 20830;;;;;; package-install-file package-install-from-buffer package-install
20711;;;;;; package-enable-at-startup) "package" "emacs-lisp/package.el" 20831;;;;;; package-enable-at-startup) "package" "emacs-lisp/package.el"
20712;;;;;; (19775 2028)) 20832;;;;;; (19864 29553))
20713;;; Generated autoloads from emacs-lisp/package.el 20833;;; Generated autoloads from emacs-lisp/package.el
20714 20834
20715(defvar package-enable-at-startup t "\ 20835(defvar package-enable-at-startup t "\
@@ -20771,7 +20891,7 @@ The list is displayed in a buffer named `*Packages*'.
20771 20891
20772;;;*** 20892;;;***
20773 20893
20774;;;### (autoloads (show-paren-mode) "paren" "paren.el" (19775 2029)) 20894;;;### (autoloads (show-paren-mode) "paren" "paren.el" (19845 45374))
20775;;; Generated autoloads from paren.el 20895;;; Generated autoloads from paren.el
20776 20896
20777(defvar show-paren-mode nil "\ 20897(defvar show-paren-mode nil "\
@@ -20796,7 +20916,7 @@ in `show-paren-style' after `show-paren-delay' seconds of Emacs idle time.
20796;;;*** 20916;;;***
20797 20917
20798;;;### (autoloads (parse-time-string) "parse-time" "calendar/parse-time.el" 20918;;;### (autoloads (parse-time-string) "parse-time" "calendar/parse-time.el"
20799;;;;;; (19775 2027)) 20919;;;;;; (19845 45374))
20800;;; Generated autoloads from calendar/parse-time.el 20920;;; Generated autoloads from calendar/parse-time.el
20801(put 'parse-time-rules 'risky-local-variable t) 20921(put 'parse-time-rules 'risky-local-variable t)
20802 20922
@@ -20809,8 +20929,8 @@ unknown are returned as nil.
20809 20929
20810;;;*** 20930;;;***
20811 20931
20812;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (19780 20932;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (19845
20813;;;;;; 4514)) 20933;;;;;; 45374))
20814;;; Generated autoloads from progmodes/pascal.el 20934;;; Generated autoloads from progmodes/pascal.el
20815 20935
20816(autoload 'pascal-mode "pascal" "\ 20936(autoload 'pascal-mode "pascal" "\
@@ -20862,8 +20982,8 @@ no args, if that value is non-nil.
20862 20982
20863;;;*** 20983;;;***
20864 20984
20865;;;### (autoloads (password-cache-expiry password-cache) "password-cache" 20985;;;### (autoloads (password-in-cache-p password-cache-expiry password-cache)
20866;;;;;; "password-cache.el" (19775 2029)) 20986;;;;;; "password-cache" "password-cache.el" (19845 45374))
20867;;; Generated autoloads from password-cache.el 20987;;; Generated autoloads from password-cache.el
20868 20988
20869(defvar password-cache t "\ 20989(defvar password-cache t "\
@@ -20877,95 +20997,15 @@ Whether passwords are cached at all is controlled by `password-cache'.")
20877 20997
20878(custom-autoload 'password-cache-expiry "password-cache" t) 20998(custom-autoload 'password-cache-expiry "password-cache" t)
20879 20999
20880;;;*** 21000(autoload 'password-in-cache-p "password-cache" "\
20881 21001Check if KEY is in the cache.
20882;;;### (autoloads (pc-bindings-mode) "pc-mode" "emulation/pc-mode.el"
20883;;;;;; (19775 2028))
20884;;; Generated autoloads from emulation/pc-mode.el
20885
20886(autoload 'pc-bindings-mode "pc-mode" "\
20887Set up certain key bindings for PC compatibility.
20888The keys affected are:
20889Delete (and its variants) delete forward instead of backward.
20890C-Backspace kills backward a word (as C-Delete normally would).
20891M-Backspace does undo.
20892Home and End move to beginning and end of line
20893C-Home and C-End move to beginning and end of buffer.
20894C-Escape does list-buffers.
20895
20896\(fn)" t nil)
20897
20898;;;***
20899
20900;;;### (autoloads (pc-selection-mode) "pc-select" "emulation/pc-select.el"
20901;;;;;; (19775 2028))
20902;;; Generated autoloads from emulation/pc-select.el
20903
20904(defvar pc-selection-mode nil "\
20905Non-nil if Pc-Selection mode is enabled.
20906See the command `pc-selection-mode' for a description of this minor mode.
20907Setting this variable directly does not take effect;
20908either customize it (see the info node `Easy Customization')
20909or call the function `pc-selection-mode'.")
20910
20911(custom-autoload 'pc-selection-mode "pc-select" nil)
20912
20913(autoload 'pc-selection-mode "pc-select" "\
20914Change mark behavior to emulate Motif, Mac or MS-Windows cut and paste style.
20915
20916This mode enables Delete Selection mode and Transient Mark mode.
20917
20918The arrow keys (and others) are bound to new functions
20919which modify the status of the mark.
20920
20921The ordinary arrow keys disable the mark.
20922The shift-arrow keys move, leaving the mark behind.
20923
20924C-LEFT and C-RIGHT move back or forward one word, disabling the mark.
20925S-C-LEFT and S-C-RIGHT move back or forward one word, leaving the mark behind.
20926
20927M-LEFT and M-RIGHT move back or forward one word or sexp, disabling the mark.
20928S-M-LEFT and S-M-RIGHT move back or forward one word or sexp, leaving the mark
20929behind. To control whether these keys move word-wise or sexp-wise set the
20930variable `pc-select-meta-moves-sexps' after loading pc-select.el but before
20931turning PC Selection mode on.
20932
20933C-DOWN and C-UP move back or forward a paragraph, disabling the mark.
20934S-C-DOWN and S-C-UP move back or forward a paragraph, leaving the mark behind.
20935
20936HOME moves to beginning of line, disabling the mark.
20937S-HOME moves to beginning of line, leaving the mark behind.
20938With Ctrl or Meta, these keys move to beginning of buffer instead.
20939
20940END moves to end of line, disabling the mark.
20941S-END moves to end of line, leaving the mark behind.
20942With Ctrl or Meta, these keys move to end of buffer instead.
20943
20944PRIOR or PAGE-UP scrolls and disables the mark.
20945S-PRIOR or S-PAGE-UP scrolls and leaves the mark behind.
20946
20947S-DELETE kills the region (`kill-region').
20948S-INSERT yanks text from the kill ring (`yank').
20949C-INSERT copies the region into the kill ring (`copy-region-as-kill').
20950
20951In addition, certain other PC bindings are imitated (to avoid this, set
20952the variable `pc-select-selection-keys-only' to t after loading pc-select.el
20953but before calling PC Selection mode):
20954 21002
20955 F6 other-window 21003\(fn KEY)" nil nil)
20956 DELETE delete-char
20957 C-DELETE kill-line
20958 M-DELETE kill-word
20959 C-M-DELETE kill-sexp
20960 C-BACKSPACE backward-kill-word
20961 M-BACKSPACE undo
20962
20963\(fn &optional ARG)" t nil)
20964 21004
20965;;;*** 21005;;;***
20966 21006
20967;;;### (autoloads (pcase-let pcase-let* pcase) "pcase" "emacs-lisp/pcase.el" 21007;;;### (autoloads (pcase-let pcase-let* pcase) "pcase" "emacs-lisp/pcase.el"
20968;;;;;; (19775 2028)) 21008;;;;;; (19863 8742))
20969;;; Generated autoloads from emacs-lisp/pcase.el 21009;;; Generated autoloads from emacs-lisp/pcase.el
20970 21010
20971(autoload 'pcase "pcase" "\ 21011(autoload 'pcase "pcase" "\
@@ -20980,16 +21020,19 @@ UPatterns can take the following forms:
20980 `QPAT matches if the QPattern QPAT matches. 21020 `QPAT matches if the QPattern QPAT matches.
20981 (pred PRED) matches if PRED applied to the object returns non-nil. 21021 (pred PRED) matches if PRED applied to the object returns non-nil.
20982 (guard BOOLEXP) matches if BOOLEXP evaluates to non-nil. 21022 (guard BOOLEXP) matches if BOOLEXP evaluates to non-nil.
21023 (let UPAT EXP) matches if EXP matches UPAT.
21024If a SYMBOL is used twice in the same pattern (i.e. the pattern is
21025\"non-linear\"), then the second occurrence is turned into an `eq'uality test.
20983 21026
20984QPatterns can take the following forms: 21027QPatterns can take the following forms:
20985 (QPAT1 . QPAT2) matches if QPAT1 matches the car and QPAT2 the cdr. 21028 (QPAT1 . QPAT2) matches if QPAT1 matches the car and QPAT2 the cdr.
20986 ,UPAT matches if the UPattern UPAT matches. 21029 ,UPAT matches if the UPattern UPAT matches.
20987 STRING matches if the object is `equal' to STRING. 21030 STRING matches if the object is `equal' to STRING.
20988 ATOM matches if the object is `eq' to ATOM. 21031 ATOM matches if the object is `eq' to ATOM.
20989QPatterns for vectors are not implemented yet. 21032QPatterns for vectors are not implemented yet.
20990 21033
20991PRED can take the form 21034PRED can take the form
20992 FUNCTION in which case it gets called with one argument. 21035 FUNCTION in which case it gets called with one argument.
20993 (FUN ARG1 .. ARGN) in which case it gets called with N+1 arguments. 21036 (FUN ARG1 .. ARGN) in which case it gets called with N+1 arguments.
20994A PRED of the form FUNCTION is equivalent to one of the form (FUNCTION). 21037A PRED of the form FUNCTION is equivalent to one of the form (FUNCTION).
20995PRED patterns can refer to variables bound earlier in the pattern. 21038PRED patterns can refer to variables bound earlier in the pattern.
@@ -21021,8 +21064,8 @@ of the form (UPAT EXP).
21021 21064
21022;;;*** 21065;;;***
21023 21066
21024;;;### (autoloads (pcomplete/cvs) "pcmpl-cvs" "pcmpl-cvs.el" (19775 21067;;;### (autoloads (pcomplete/cvs) "pcmpl-cvs" "pcmpl-cvs.el" (19845
21025;;;;;; 2029)) 21068;;;;;; 45374))
21026;;; Generated autoloads from pcmpl-cvs.el 21069;;; Generated autoloads from pcmpl-cvs.el
21027 21070
21028(autoload 'pcomplete/cvs "pcmpl-cvs" "\ 21071(autoload 'pcomplete/cvs "pcmpl-cvs" "\
@@ -21033,7 +21076,7 @@ Completion rules for the `cvs' command.
21033;;;*** 21076;;;***
21034 21077
21035;;;### (autoloads (pcomplete/tar pcomplete/make pcomplete/bzip2 pcomplete/gzip) 21078;;;### (autoloads (pcomplete/tar pcomplete/make pcomplete/bzip2 pcomplete/gzip)
21036;;;;;; "pcmpl-gnu" "pcmpl-gnu.el" (19775 2029)) 21079;;;;;; "pcmpl-gnu" "pcmpl-gnu.el" (19845 45374))
21037;;; Generated autoloads from pcmpl-gnu.el 21080;;; Generated autoloads from pcmpl-gnu.el
21038 21081
21039(autoload 'pcomplete/gzip "pcmpl-gnu" "\ 21082(autoload 'pcomplete/gzip "pcmpl-gnu" "\
@@ -21061,7 +21104,7 @@ Completion for the GNU tar utility.
21061;;;*** 21104;;;***
21062 21105
21063;;;### (autoloads (pcomplete/mount pcomplete/umount pcomplete/kill) 21106;;;### (autoloads (pcomplete/mount pcomplete/umount pcomplete/kill)
21064;;;;;; "pcmpl-linux" "pcmpl-linux.el" (19775 2029)) 21107;;;;;; "pcmpl-linux" "pcmpl-linux.el" (19845 45374))
21065;;; Generated autoloads from pcmpl-linux.el 21108;;; Generated autoloads from pcmpl-linux.el
21066 21109
21067(autoload 'pcomplete/kill "pcmpl-linux" "\ 21110(autoload 'pcomplete/kill "pcmpl-linux" "\
@@ -21081,8 +21124,8 @@ Completion for GNU/Linux `mount'.
21081 21124
21082;;;*** 21125;;;***
21083 21126
21084;;;### (autoloads (pcomplete/rpm) "pcmpl-rpm" "pcmpl-rpm.el" (19775 21127;;;### (autoloads (pcomplete/rpm) "pcmpl-rpm" "pcmpl-rpm.el" (19845
21085;;;;;; 2029)) 21128;;;;;; 45374))
21086;;; Generated autoloads from pcmpl-rpm.el 21129;;; Generated autoloads from pcmpl-rpm.el
21087 21130
21088(autoload 'pcomplete/rpm "pcmpl-rpm" "\ 21131(autoload 'pcomplete/rpm "pcmpl-rpm" "\
@@ -21094,7 +21137,7 @@ Completion for the `rpm' command.
21094 21137
21095;;;### (autoloads (pcomplete/scp pcomplete/ssh pcomplete/chgrp pcomplete/chown 21138;;;### (autoloads (pcomplete/scp pcomplete/ssh pcomplete/chgrp pcomplete/chown
21096;;;;;; pcomplete/which pcomplete/xargs pcomplete/rm pcomplete/rmdir 21139;;;;;; pcomplete/which pcomplete/xargs pcomplete/rm pcomplete/rmdir
21097;;;;;; pcomplete/cd) "pcmpl-unix" "pcmpl-unix.el" (19775 2029)) 21140;;;;;; pcomplete/cd) "pcmpl-unix" "pcmpl-unix.el" (19845 45374))
21098;;; Generated autoloads from pcmpl-unix.el 21141;;; Generated autoloads from pcmpl-unix.el
21099 21142
21100(autoload 'pcomplete/cd "pcmpl-unix" "\ 21143(autoload 'pcomplete/cd "pcmpl-unix" "\
@@ -21151,8 +21194,8 @@ Includes files as well as host names followed by a colon.
21151 21194
21152;;;### (autoloads (pcomplete-shell-setup pcomplete-comint-setup pcomplete-list 21195;;;### (autoloads (pcomplete-shell-setup pcomplete-comint-setup pcomplete-list
21153;;;;;; pcomplete-help pcomplete-expand pcomplete-continue pcomplete-expand-and-complete 21196;;;;;; pcomplete-help pcomplete-expand pcomplete-continue pcomplete-expand-and-complete
21154;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (19775 21197;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (19845
21155;;;;;; 2029)) 21198;;;;;; 45374))
21156;;; Generated autoloads from pcomplete.el 21199;;; Generated autoloads from pcomplete.el
21157 21200
21158(autoload 'pcomplete "pcomplete" "\ 21201(autoload 'pcomplete "pcomplete" "\
@@ -21211,7 +21254,7 @@ Setup `shell-mode' to use pcomplete.
21211 21254
21212;;;### (autoloads (cvs-dired-use-hook cvs-dired-action cvs-status 21255;;;### (autoloads (cvs-dired-use-hook cvs-dired-action cvs-status
21213;;;;;; cvs-update cvs-examine cvs-quickdir cvs-checkout) "pcvs" 21256;;;;;; cvs-update cvs-examine cvs-quickdir cvs-checkout) "pcvs"
21214;;;;;; "vc/pcvs.el" (19775 2030)) 21257;;;;;; "vc/pcvs.el" (19845 45374))
21215;;; Generated autoloads from vc/pcvs.el 21258;;; Generated autoloads from vc/pcvs.el
21216 21259
21217(autoload 'cvs-checkout "pcvs" "\ 21260(autoload 'cvs-checkout "pcvs" "\
@@ -21286,7 +21329,7 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d
21286 21329
21287;;;*** 21330;;;***
21288 21331
21289;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (19780 4514)) 21332;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (19845 45374))
21290;;; Generated autoloads from vc/pcvs-defs.el 21333;;; Generated autoloads from vc/pcvs-defs.el
21291 21334
21292(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))) 21335(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)))
@@ -21294,7 +21337,7 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d
21294;;;*** 21337;;;***
21295 21338
21296;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el" 21339;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el"
21297;;;;;; (19775 2029)) 21340;;;;;; (19845 45374))
21298;;; Generated autoloads from progmodes/perl-mode.el 21341;;; Generated autoloads from progmodes/perl-mode.el
21299(put 'perl-indent-level 'safe-local-variable 'integerp) 21342(put 'perl-indent-level 'safe-local-variable 'integerp)
21300(put 'perl-continued-statement-offset 'safe-local-variable 'integerp) 21343(put 'perl-continued-statement-offset 'safe-local-variable 'integerp)
@@ -21356,7 +21399,7 @@ Turning on Perl mode runs the normal hook `perl-mode-hook'.
21356;;;*** 21399;;;***
21357 21400
21358;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el" 21401;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el"
21359;;;;;; (19775 2030)) 21402;;;;;; (19845 45374))
21360;;; Generated autoloads from textmodes/picture.el 21403;;; Generated autoloads from textmodes/picture.el
21361 21404
21362(autoload 'picture-mode "picture" "\ 21405(autoload 'picture-mode "picture" "\
@@ -21437,7 +21480,7 @@ they are not defaultly assigned to keys.
21437;;;*** 21480;;;***
21438 21481
21439;;;### (autoloads (po-find-file-coding-system) "po" "textmodes/po.el" 21482;;;### (autoloads (po-find-file-coding-system) "po" "textmodes/po.el"
21440;;;;;; (19775 2030)) 21483;;;;;; (19845 45374))
21441;;; Generated autoloads from textmodes/po.el 21484;;; Generated autoloads from textmodes/po.el
21442 21485
21443(autoload 'po-find-file-coding-system "po" "\ 21486(autoload 'po-find-file-coding-system "po" "\
@@ -21448,7 +21491,7 @@ Called through `file-coding-system-alist', before the file is visited for real.
21448 21491
21449;;;*** 21492;;;***
21450 21493
21451;;;### (autoloads (pong) "pong" "play/pong.el" (19775 2029)) 21494;;;### (autoloads (pong) "pong" "play/pong.el" (19845 45374))
21452;;; Generated autoloads from play/pong.el 21495;;; Generated autoloads from play/pong.el
21453 21496
21454(autoload 'pong "pong" "\ 21497(autoload 'pong "pong" "\
@@ -21464,7 +21507,7 @@ pong-mode keybindings:\\<pong-mode-map>
21464 21507
21465;;;*** 21508;;;***
21466 21509
21467;;;### (autoloads (pop3-movemail) "pop3" "gnus/pop3.el" (19775 2028)) 21510;;;### (autoloads (pop3-movemail) "pop3" "gnus/pop3.el" (19845 45374))
21468;;; Generated autoloads from gnus/pop3.el 21511;;; Generated autoloads from gnus/pop3.el
21469 21512
21470(autoload 'pop3-movemail "pop3" "\ 21513(autoload 'pop3-movemail "pop3" "\
@@ -21477,7 +21520,7 @@ Use streaming commands.
21477 21520
21478;;;### (autoloads (pp-macroexpand-last-sexp pp-eval-last-sexp pp-macroexpand-expression 21521;;;### (autoloads (pp-macroexpand-last-sexp pp-eval-last-sexp pp-macroexpand-expression
21479;;;;;; pp-eval-expression pp pp-buffer pp-to-string) "pp" "emacs-lisp/pp.el" 21522;;;;;; pp-eval-expression pp pp-buffer pp-to-string) "pp" "emacs-lisp/pp.el"
21480;;;;;; (19775 2028)) 21523;;;;;; (19845 45374))
21481;;; Generated autoloads from emacs-lisp/pp.el 21524;;; Generated autoloads from emacs-lisp/pp.el
21482 21525
21483(autoload 'pp-to-string "pp" "\ 21526(autoload 'pp-to-string "pp" "\
@@ -21545,7 +21588,7 @@ Ignores leading comment characters.
21545;;;;;; pr-ps-buffer-print pr-ps-buffer-using-ghostscript pr-ps-buffer-preview 21588;;;;;; pr-ps-buffer-print pr-ps-buffer-using-ghostscript pr-ps-buffer-preview
21546;;;;;; pr-ps-directory-ps-print pr-ps-directory-print pr-ps-directory-using-ghostscript 21589;;;;;; pr-ps-directory-ps-print pr-ps-directory-print pr-ps-directory-using-ghostscript
21547;;;;;; pr-ps-directory-preview pr-interface) "printing" "printing.el" 21590;;;;;; pr-ps-directory-preview pr-interface) "printing" "printing.el"
21548;;;;;; (19775 2029)) 21591;;;;;; (19845 45374))
21549;;; Generated autoloads from printing.el 21592;;; Generated autoloads from printing.el
21550 21593
21551(autoload 'pr-interface "printing" "\ 21594(autoload 'pr-interface "printing" "\
@@ -22132,7 +22175,7 @@ are both set to t.
22132 22175
22133;;;*** 22176;;;***
22134 22177
22135;;;### (autoloads (proced) "proced" "proced.el" (19775 2029)) 22178;;;### (autoloads (proced) "proced" "proced.el" (19845 45374))
22136;;; Generated autoloads from proced.el 22179;;; Generated autoloads from proced.el
22137 22180
22138(autoload 'proced "proced" "\ 22181(autoload 'proced "proced" "\
@@ -22148,7 +22191,7 @@ See `proced-mode' for a description of features available in Proced buffers.
22148;;;*** 22191;;;***
22149 22192
22150;;;### (autoloads (run-prolog mercury-mode prolog-mode) "prolog" 22193;;;### (autoloads (run-prolog mercury-mode prolog-mode) "prolog"
22151;;;;;; "progmodes/prolog.el" (19780 4514)) 22194;;;;;; "progmodes/prolog.el" (19845 45374))
22152;;; Generated autoloads from progmodes/prolog.el 22195;;; Generated autoloads from progmodes/prolog.el
22153 22196
22154(autoload 'prolog-mode "prolog" "\ 22197(autoload 'prolog-mode "prolog" "\
@@ -22183,48 +22226,8 @@ With prefix argument ARG, restart the Prolog process if running before.
22183 22226
22184;;;*** 22227;;;***
22185 22228
22186;;;### (autoloads (open-protocol-stream) "proto-stream" "gnus/proto-stream.el" 22229;;;### (autoloads (bdf-directory-list) "ps-bdf" "ps-bdf.el" (19845
22187;;;;;; (19780 4513)) 22230;;;;;; 45374))
22188;;; Generated autoloads from gnus/proto-stream.el
22189
22190(autoload 'open-protocol-stream "proto-stream" "\
22191Open a network stream to HOST, upgrading to STARTTLS if possible.
22192The first four parameters have the same meaning as in
22193`open-network-stream'. The function returns a list where the
22194first element is the stream, the second element is the greeting
22195the server replied with after connecting, and the third element
22196is a string representing the capabilities of the server (if any).
22197
22198The PARAMETERS is a keyword list that can have the following
22199values:
22200
22201:type -- either `network', `network-only, `tls', `shell' or
22202`starttls'. If omitted, the default is `network'. `network'
22203will be opportunistically upgraded to STARTTLS if both the server
22204and Emacs supports it. If you don't want STARTTLS upgrades, use
22205`network-only'.
22206
22207:end-of-command -- a regexp saying what the end of a command is.
22208This defaults to \"\\n\".
22209
22210:success -- a regexp saying whether the STARTTLS command was
22211successful or not. For instance, for NNTP this is \"^3\".
22212
22213:capability-command -- a string representing the command used to
22214query server for capabilities. For instance, for IMAP this is
22215\"1 CAPABILITY\\r\\n\".
22216
22217:starttls-function -- a function that takes one parameter, which
22218is the response to the capaibility command. It should return nil
22219if it turns out that the server doesn't support STARTTLS, or the
22220command to switch on STARTTLS otherwise.
22221
22222\(fn NAME BUFFER HOST SERVICE &rest PARAMETERS)" nil nil)
22223
22224;;;***
22225
22226;;;### (autoloads (bdf-directory-list) "ps-bdf" "ps-bdf.el" (19780
22227;;;;;; 4514))
22228;;; Generated autoloads from ps-bdf.el 22231;;; Generated autoloads from ps-bdf.el
22229 22232
22230(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")) "\ 22233(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")) "\
@@ -22235,8 +22238,8 @@ The default value is '(\"/usr/local/share/emacs/fonts/bdf\").")
22235 22238
22236;;;*** 22239;;;***
22237 22240
22238;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (19780 22241;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (19845
22239;;;;;; 4514)) 22242;;;;;; 45374))
22240;;; Generated autoloads from progmodes/ps-mode.el 22243;;; Generated autoloads from progmodes/ps-mode.el
22241 22244
22242(autoload 'ps-mode "ps-mode" "\ 22245(autoload 'ps-mode "ps-mode" "\
@@ -22287,8 +22290,8 @@ Typing \\<ps-run-mode-map>\\[ps-run-goto-error] when the cursor is at the number
22287;;;;;; ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer 22290;;;;;; ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer
22288;;;;;; ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces 22291;;;;;; ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces
22289;;;;;; ps-print-buffer ps-print-customize ps-print-color-p ps-paper-type 22292;;;;;; ps-print-buffer ps-print-customize ps-print-color-p ps-paper-type
22290;;;;;; ps-page-dimensions-database) "ps-print" "ps-print.el" (19780 22293;;;;;; ps-page-dimensions-database) "ps-print" "ps-print.el" (19845
22291;;;;;; 4514)) 22294;;;;;; 45374))
22292;;; Generated autoloads from ps-print.el 22295;;; Generated autoloads from ps-print.el
22293 22296
22294(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"))) "\ 22297(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"))) "\
@@ -22484,8 +22487,8 @@ If EXTENSION is any other symbol, it is ignored.
22484 22487
22485;;;*** 22488;;;***
22486 22489
22487;;;### (autoloads (python-shell jython-mode python-mode run-python) 22490;;;### (autoloads (jython-mode python-mode run-python) "python" "progmodes/python.el"
22488;;;;;; "python" "progmodes/python.el" (19780 4514)) 22491;;;;;; (19860 32495))
22489;;; Generated autoloads from progmodes/python.el 22492;;; Generated autoloads from progmodes/python.el
22490 22493
22491(add-to-list 'interpreter-mode-alist (cons (purecopy "jython") 'jython-mode)) 22494(add-to-list 'interpreter-mode-alist (cons (purecopy "jython") 'jython-mode))
@@ -22562,50 +22565,10 @@ Runs `jython-mode-hook' after `python-mode-hook'.
22562 22565
22563\(fn)" t nil) 22566\(fn)" t nil)
22564 22567
22565(autoload 'python-shell "python" "\
22566Start an interactive Python interpreter in another window.
22567This is like Shell mode, except that Python is running in the window
22568instead of a shell. See the `Interactive Shell' and `Shell Mode'
22569sections of the Emacs manual for details, especially for the key
22570bindings active in the `*Python*' buffer.
22571
22572With optional \\[universal-argument], the user is prompted for the
22573flags to pass to the Python interpreter. This has no effect when this
22574command is used to switch to an existing process, only when a new
22575process is started. If you use this, you will probably want to ensure
22576that the current arguments are retained (they will be included in the
22577prompt). This argument is ignored when this function is called
22578programmatically.
22579
22580Note: You can toggle between using the CPython interpreter and the
22581JPython interpreter by hitting \\[python-toggle-shells]. This toggles
22582buffer local variables which control whether all your subshell
22583interactions happen to the `*JPython*' or `*Python*' buffers (the
22584latter is the name used for the CPython buffer).
22585
22586Warning: Don't use an interactive Python if you change sys.ps1 or
22587sys.ps2 from their default values, or if you're running code that
22588prints `>>> ' or `... ' at the start of a line. `python-mode' can't
22589distinguish your output from Python's output, and assumes that `>>> '
22590at the start of a line is a prompt from Python. Similarly, the Emacs
22591Shell mode code assumes that both `>>> ' and `... ' at the start of a
22592line are Python prompts. Bad things can happen if you fool either
22593mode.
22594
22595Warning: If you do any editing *in* the process buffer *while* the
22596buffer is accepting output from Python, do NOT attempt to `undo' the
22597changes. Some of the output (nowhere near the parts you changed!) may
22598be lost if you do. This appears to be an Emacs bug, an unfortunate
22599interaction between undo and process filters; the same problem exists in
22600non-Python process buffers using the default (Emacs-supplied) process
22601filter.
22602
22603\(fn &optional ARGPROMPT)" t nil)
22604
22605;;;*** 22568;;;***
22606 22569
22607;;;### (autoloads (quoted-printable-decode-region) "qp" "gnus/qp.el" 22570;;;### (autoloads (quoted-printable-decode-region) "qp" "gnus/qp.el"
22608;;;;;; (19775 2028)) 22571;;;;;; (19845 45374))
22609;;; Generated autoloads from gnus/qp.el 22572;;; Generated autoloads from gnus/qp.el
22610 22573
22611(autoload 'quoted-printable-decode-region "qp" "\ 22574(autoload 'quoted-printable-decode-region "qp" "\
@@ -22628,7 +22591,7 @@ them into characters should be done separately.
22628;;;;;; quail-defrule quail-install-decode-map quail-install-map 22591;;;;;; quail-defrule quail-install-decode-map quail-install-map
22629;;;;;; quail-define-rules quail-show-keyboard-layout quail-set-keyboard-layout 22592;;;;;; quail-define-rules quail-show-keyboard-layout quail-set-keyboard-layout
22630;;;;;; quail-define-package quail-use-package quail-title) "quail" 22593;;;;;; quail-define-package quail-use-package quail-title) "quail"
22631;;;;;; "international/quail.el" (19780 45051)) 22594;;;;;; "international/quail.el" (19845 45374))
22632;;; Generated autoloads from international/quail.el 22595;;; Generated autoloads from international/quail.el
22633 22596
22634(autoload 'quail-title "quail" "\ 22597(autoload 'quail-title "quail" "\
@@ -22859,8 +22822,8 @@ of each directory.
22859 22822
22860;;;### (autoloads (quickurl-list quickurl-list-mode quickurl-edit-urls 22823;;;### (autoloads (quickurl-list quickurl-list-mode quickurl-edit-urls
22861;;;;;; quickurl-browse-url-ask quickurl-browse-url quickurl-add-url 22824;;;;;; quickurl-browse-url-ask quickurl-browse-url quickurl-add-url
22862;;;;;; quickurl-ask quickurl) "quickurl" "net/quickurl.el" (19775 22825;;;;;; quickurl-ask quickurl) "quickurl" "net/quickurl.el" (19845
22863;;;;;; 2029)) 22826;;;;;; 45374))
22864;;; Generated autoloads from net/quickurl.el 22827;;; Generated autoloads from net/quickurl.el
22865 22828
22866(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" "\ 22829(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" "\
@@ -22932,7 +22895,7 @@ Display `quickurl-list' as a formatted list using `quickurl-list-mode'.
22932;;;*** 22895;;;***
22933 22896
22934;;;### (autoloads (rcirc-track-minor-mode rcirc-connect rcirc) "rcirc" 22897;;;### (autoloads (rcirc-track-minor-mode rcirc-connect rcirc) "rcirc"
22935;;;;;; "net/rcirc.el" (19780 4514)) 22898;;;;;; "net/rcirc.el" (19867 5739))
22936;;; Generated autoloads from net/rcirc.el 22899;;; Generated autoloads from net/rcirc.el
22937 22900
22938(autoload 'rcirc "rcirc" "\ 22901(autoload 'rcirc "rcirc" "\
@@ -22947,7 +22910,7 @@ If ARG is non-nil, instead prompt for connection parameters.
22947(defalias 'irc 'rcirc) 22910(defalias 'irc 'rcirc)
22948 22911
22949(autoload 'rcirc-connect "rcirc" "\ 22912(autoload 'rcirc-connect "rcirc" "\
22950Not documented 22913
22951 22914
22952\(fn SERVER &optional PORT NICK USER-NAME FULL-NAME STARTUP-CHANNELS PASSWORD)" nil nil) 22915\(fn SERVER &optional PORT NICK USER-NAME FULL-NAME STARTUP-CHANNELS PASSWORD)" nil nil)
22953 22916
@@ -22967,8 +22930,8 @@ Global minor mode for tracking activity in rcirc buffers.
22967 22930
22968;;;*** 22931;;;***
22969 22932
22970;;;### (autoloads (remote-compile) "rcompile" "net/rcompile.el" (19775 22933;;;### (autoloads (remote-compile) "rcompile" "net/rcompile.el" (19845
22971;;;;;; 2029)) 22934;;;;;; 45374))
22972;;; Generated autoloads from net/rcompile.el 22935;;; Generated autoloads from net/rcompile.el
22973 22936
22974(autoload 'remote-compile "rcompile" "\ 22937(autoload 'remote-compile "rcompile" "\
@@ -22980,7 +22943,7 @@ See \\[compile].
22980;;;*** 22943;;;***
22981 22944
22982;;;### (autoloads (re-builder) "re-builder" "emacs-lisp/re-builder.el" 22945;;;### (autoloads (re-builder) "re-builder" "emacs-lisp/re-builder.el"
22983;;;;;; (19775 2028)) 22946;;;;;; (19865 50420))
22984;;; Generated autoloads from emacs-lisp/re-builder.el 22947;;; Generated autoloads from emacs-lisp/re-builder.el
22985 22948
22986(defalias 'regexp-builder 're-builder) 22949(defalias 'regexp-builder 're-builder)
@@ -22992,7 +22955,7 @@ Construct a regexp interactively.
22992 22955
22993;;;*** 22956;;;***
22994 22957
22995;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (19775 2029)) 22958;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (19845 45374))
22996;;; Generated autoloads from recentf.el 22959;;; Generated autoloads from recentf.el
22997 22960
22998(defvar recentf-mode nil "\ 22961(defvar recentf-mode nil "\
@@ -23020,7 +22983,7 @@ that were operated on recently.
23020;;;;;; string-rectangle delete-whitespace-rectangle open-rectangle 22983;;;;;; string-rectangle delete-whitespace-rectangle open-rectangle
23021;;;;;; insert-rectangle yank-rectangle kill-rectangle extract-rectangle 22984;;;;;; insert-rectangle yank-rectangle kill-rectangle extract-rectangle
23022;;;;;; delete-extract-rectangle delete-rectangle) "rect" "rect.el" 22985;;;;;; delete-extract-rectangle delete-rectangle) "rect" "rect.el"
23023;;;;;; (19775 2029)) 22986;;;;;; (19845 45374))
23024;;; Generated autoloads from rect.el 22987;;; Generated autoloads from rect.el
23025 (define-key ctl-x-r-map "c" 'clear-rectangle) 22988 (define-key ctl-x-r-map "c" 'clear-rectangle)
23026 (define-key ctl-x-r-map "k" 'kill-rectangle) 22989 (define-key ctl-x-r-map "k" 'kill-rectangle)
@@ -23156,8 +23119,8 @@ with a prefix argument, prompt for START-AT and FORMAT.
23156 23119
23157;;;*** 23120;;;***
23158 23121
23159;;;### (autoloads (refill-mode) "refill" "textmodes/refill.el" (19775 23122;;;### (autoloads (refill-mode) "refill" "textmodes/refill.el" (19845
23160;;;;;; 2030)) 23123;;;;;; 45374))
23161;;; Generated autoloads from textmodes/refill.el 23124;;; Generated autoloads from textmodes/refill.el
23162 23125
23163(autoload 'refill-mode "refill" "\ 23126(autoload 'refill-mode "refill" "\
@@ -23173,7 +23136,7 @@ refilling if they would cause auto-filling.
23173;;;*** 23136;;;***
23174 23137
23175;;;### (autoloads (reftex-reset-scanning-information reftex-mode 23138;;;### (autoloads (reftex-reset-scanning-information reftex-mode
23176;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (19775 2030)) 23139;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (19845 45374))
23177;;; Generated autoloads from textmodes/reftex.el 23140;;; Generated autoloads from textmodes/reftex.el
23178 23141
23179(autoload 'turn-on-reftex "reftex" "\ 23142(autoload 'turn-on-reftex "reftex" "\
@@ -23223,7 +23186,7 @@ This enforces rescanning the buffer on next use.
23223;;;*** 23186;;;***
23224 23187
23225;;;### (autoloads (reftex-citation) "reftex-cite" "textmodes/reftex-cite.el" 23188;;;### (autoloads (reftex-citation) "reftex-cite" "textmodes/reftex-cite.el"
23226;;;;;; (19775 2030)) 23189;;;;;; (19845 45374))
23227;;; Generated autoloads from textmodes/reftex-cite.el 23190;;; Generated autoloads from textmodes/reftex-cite.el
23228 23191
23229(autoload 'reftex-citation "reftex-cite" "\ 23192(autoload 'reftex-citation "reftex-cite" "\
@@ -23253,7 +23216,7 @@ While entering the regexp, completion on knows citation keys is possible.
23253;;;*** 23216;;;***
23254 23217
23255;;;### (autoloads (reftex-isearch-minor-mode) "reftex-global" "textmodes/reftex-global.el" 23218;;;### (autoloads (reftex-isearch-minor-mode) "reftex-global" "textmodes/reftex-global.el"
23256;;;;;; (19775 2030)) 23219;;;;;; (19845 45374))
23257;;; Generated autoloads from textmodes/reftex-global.el 23220;;; Generated autoloads from textmodes/reftex-global.el
23258 23221
23259(autoload 'reftex-isearch-minor-mode "reftex-global" "\ 23222(autoload 'reftex-isearch-minor-mode "reftex-global" "\
@@ -23270,7 +23233,7 @@ With no argument, this command toggles
23270;;;*** 23233;;;***
23271 23234
23272;;;### (autoloads (reftex-index-phrases-mode) "reftex-index" "textmodes/reftex-index.el" 23235;;;### (autoloads (reftex-index-phrases-mode) "reftex-index" "textmodes/reftex-index.el"
23273;;;;;; (19775 2030)) 23236;;;;;; (19845 45374))
23274;;; Generated autoloads from textmodes/reftex-index.el 23237;;; Generated autoloads from textmodes/reftex-index.el
23275 23238
23276(autoload 'reftex-index-phrases-mode "reftex-index" "\ 23239(autoload 'reftex-index-phrases-mode "reftex-index" "\
@@ -23303,7 +23266,7 @@ Here are all local bindings.
23303;;;*** 23266;;;***
23304 23267
23305;;;### (autoloads (reftex-all-document-files) "reftex-parse" "textmodes/reftex-parse.el" 23268;;;### (autoloads (reftex-all-document-files) "reftex-parse" "textmodes/reftex-parse.el"
23306;;;;;; (19775 2030)) 23269;;;;;; (19845 45374))
23307;;; Generated autoloads from textmodes/reftex-parse.el 23270;;; Generated autoloads from textmodes/reftex-parse.el
23308 23271
23309(autoload 'reftex-all-document-files "reftex-parse" "\ 23272(autoload 'reftex-all-document-files "reftex-parse" "\
@@ -23315,8 +23278,8 @@ of master file.
23315 23278
23316;;;*** 23279;;;***
23317 23280
23318;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (19775 23281;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (19845
23319;;;;;; 2030)) 23282;;;;;; 45374))
23320;;; Generated autoloads from textmodes/reftex-vars.el 23283;;; Generated autoloads from textmodes/reftex-vars.el
23321(put 'reftex-vref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) 23284(put 'reftex-vref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x))))
23322(put 'reftex-fref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) 23285(put 'reftex-fref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x))))
@@ -23326,7 +23289,7 @@ of master file.
23326;;;*** 23289;;;***
23327 23290
23328;;;### (autoloads (regexp-opt-depth regexp-opt) "regexp-opt" "emacs-lisp/regexp-opt.el" 23291;;;### (autoloads (regexp-opt-depth regexp-opt) "regexp-opt" "emacs-lisp/regexp-opt.el"
23329;;;;;; (19775 2028)) 23292;;;;;; (19845 45374))
23330;;; Generated autoloads from emacs-lisp/regexp-opt.el 23293;;; Generated autoloads from emacs-lisp/regexp-opt.el
23331 23294
23332(autoload 'regexp-opt "regexp-opt" "\ 23295(autoload 'regexp-opt "regexp-opt" "\
@@ -23357,7 +23320,7 @@ This means the number of non-shy regexp grouping constructs
23357 23320
23358;;;### (autoloads (remember-diary-extract-entries remember-clipboard 23321;;;### (autoloads (remember-diary-extract-entries remember-clipboard
23359;;;;;; remember-other-frame remember) "remember" "textmodes/remember.el" 23322;;;;;; remember-other-frame remember) "remember" "textmodes/remember.el"
23360;;;;;; (19775 2030)) 23323;;;;;; (19845 45374))
23361;;; Generated autoloads from textmodes/remember.el 23324;;; Generated autoloads from textmodes/remember.el
23362 23325
23363(autoload 'remember "remember" "\ 23326(autoload 'remember "remember" "\
@@ -23388,7 +23351,7 @@ Extract diary entries from the region.
23388 23351
23389;;;*** 23352;;;***
23390 23353
23391;;;### (autoloads (repeat) "repeat" "repeat.el" (19775 2029)) 23354;;;### (autoloads (repeat) "repeat" "repeat.el" (19845 45374))
23392;;; Generated autoloads from repeat.el 23355;;; Generated autoloads from repeat.el
23393 23356
23394(autoload 'repeat "repeat" "\ 23357(autoload 'repeat "repeat" "\
@@ -23411,7 +23374,7 @@ recently executed command not bound to an input event\".
23411;;;*** 23374;;;***
23412 23375
23413;;;### (autoloads (reporter-submit-bug-report) "reporter" "mail/reporter.el" 23376;;;### (autoloads (reporter-submit-bug-report) "reporter" "mail/reporter.el"
23414;;;;;; (19775 2028)) 23377;;;;;; (19845 45374))
23415;;; Generated autoloads from mail/reporter.el 23378;;; Generated autoloads from mail/reporter.el
23416 23379
23417(autoload 'reporter-submit-bug-report "reporter" "\ 23380(autoload 'reporter-submit-bug-report "reporter" "\
@@ -23443,7 +23406,7 @@ mail-sending package is used for editing and sending the message.
23443;;;*** 23406;;;***
23444 23407
23445;;;### (autoloads (reposition-window) "reposition" "reposition.el" 23408;;;### (autoloads (reposition-window) "reposition" "reposition.el"
23446;;;;;; (19775 2029)) 23409;;;;;; (19845 45374))
23447;;; Generated autoloads from reposition.el 23410;;; Generated autoloads from reposition.el
23448 23411
23449(autoload 'reposition-window "reposition" "\ 23412(autoload 'reposition-window "reposition" "\
@@ -23470,7 +23433,7 @@ first comment line visible (if point is in a comment).
23470;;;*** 23433;;;***
23471 23434
23472;;;### (autoloads (global-reveal-mode reveal-mode) "reveal" "reveal.el" 23435;;;### (autoloads (global-reveal-mode reveal-mode) "reveal" "reveal.el"
23473;;;;;; (19775 2029)) 23436;;;;;; (19863 8742))
23474;;; Generated autoloads from reveal.el 23437;;; Generated autoloads from reveal.el
23475 23438
23476(autoload 'reveal-mode "reveal" "\ 23439(autoload 'reveal-mode "reveal" "\
@@ -23505,7 +23468,7 @@ With zero or negative ARG turn mode off.
23505;;;*** 23468;;;***
23506 23469
23507;;;### (autoloads (make-ring ring-p) "ring" "emacs-lisp/ring.el" 23470;;;### (autoloads (make-ring ring-p) "ring" "emacs-lisp/ring.el"
23508;;;;;; (19775 2028)) 23471;;;;;; (19845 45374))
23509;;; Generated autoloads from emacs-lisp/ring.el 23472;;; Generated autoloads from emacs-lisp/ring.el
23510 23473
23511(autoload 'ring-p "ring" "\ 23474(autoload 'ring-p "ring" "\
@@ -23520,7 +23483,7 @@ Make a ring that can contain SIZE elements.
23520 23483
23521;;;*** 23484;;;***
23522 23485
23523;;;### (autoloads (rlogin) "rlogin" "net/rlogin.el" (19775 2029)) 23486;;;### (autoloads (rlogin) "rlogin" "net/rlogin.el" (19845 45374))
23524;;; Generated autoloads from net/rlogin.el 23487;;; Generated autoloads from net/rlogin.el
23525 (add-hook 'same-window-regexps (purecopy "^\\*rlogin-.*\\*\\(\\|<[0-9]+>\\)")) 23488 (add-hook 'same-window-regexps (purecopy "^\\*rlogin-.*\\*\\(\\|<[0-9]+>\\)"))
23526 23489
@@ -23569,9 +23532,8 @@ variable.
23569;;;;;; rmail rmail-show-message-hook rmail-secondary-file-regexp 23532;;;;;; rmail rmail-show-message-hook rmail-secondary-file-regexp
23570;;;;;; rmail-secondary-file-directory rmail-primary-inbox-list rmail-highlighted-headers 23533;;;;;; rmail-secondary-file-directory rmail-primary-inbox-list rmail-highlighted-headers
23571;;;;;; rmail-retry-ignored-headers rmail-displayed-headers rmail-ignored-headers 23534;;;;;; rmail-retry-ignored-headers rmail-displayed-headers rmail-ignored-headers
23572;;;;;; rmail-dont-reply-to-names rmail-user-mail-address-regexp 23535;;;;;; rmail-user-mail-address-regexp rmail-movemail-variant-p)
23573;;;;;; rmail-movemail-variant-p) "rmail" "mail/rmail.el" (19780 23536;;;;;; "rmail" "mail/rmail.el" (19845 45374))
23574;;;;;; 4513))
23575;;; Generated autoloads from mail/rmail.el 23537;;; Generated autoloads from mail/rmail.el
23576 23538
23577(autoload 'rmail-movemail-variant-p "rmail" "\ 23539(autoload 'rmail-movemail-variant-p "rmail" "\
@@ -23596,24 +23558,14 @@ Setting this variable has an effect only before reading a mail.")
23596 23558
23597(custom-autoload 'rmail-user-mail-address-regexp "rmail" t) 23559(custom-autoload 'rmail-user-mail-address-regexp "rmail" t)
23598 23560
23599(defvar rmail-dont-reply-to-names nil "\ 23561(defvaralias 'rmail-dont-reply-to-names 'mail-dont-reply-to-names)
23600A regexp specifying addresses to prune from a reply message.
23601If this is nil, it is set the first time you compose a reply, to
23602a value which excludes your own email address, plus whatever is
23603specified by `rmail-default-dont-reply-to-names'.
23604
23605Matching addresses are excluded from the CC field in replies, and
23606also the To field, unless this would leave an empty To field.")
23607 23562
23608(custom-autoload 'rmail-dont-reply-to-names "rmail" t) 23563(defvar rmail-default-dont-reply-to-names nil "\
23564Regexp specifying part of the default value of `mail-dont-reply-to-names'.
23565This is used when the user does not set `mail-dont-reply-to-names'
23566explicitly.")
23609 23567
23610(defvar rmail-default-dont-reply-to-names (purecopy "\\`info-") "\ 23568(make-obsolete-variable 'rmail-default-dont-reply-to-names 'mail-dont-reply-to-names "24.1")
23611Regexp specifying part of the default value of `rmail-dont-reply-to-names'.
23612This is used when the user does not set `rmail-dont-reply-to-names'
23613explicitly. (The other part of the default value is the user's
23614email address and name.) It is useful to set this variable in
23615the site customization file. The default value is conventionally
23616used for large mailing lists to broadcast announcements.")
23617 23569
23618(defvar rmail-ignored-headers (purecopy (concat "^via:\\|^mail-from:\\|^origin:\\|^references:\\|^sender:" "\\|^status:\\|^received:\\|^x400-originator:\\|^x400-recipients:" "\\|^x400-received:\\|^x400-mts-identifier:\\|^x400-content-type:" "\\|^\\(resent-\\|\\)message-id:\\|^summary-line:\\|^resent-date:" "\\|^nntp-posting-host:\\|^path:\\|^x-char.*:\\|^x-face:\\|^face:" "\\|^x-mailer:\\|^delivered-to:\\|^lines:" "\\|^content-transfer-encoding:\\|^x-coding-system:" "\\|^return-path:\\|^errors-to:\\|^return-receipt-to:" "\\|^precedence:\\|^mime-version:" "\\|^list-owner:\\|^list-help:\\|^list-post:\\|^list-subscribe:" "\\|^list-id:\\|^list-unsubscribe:\\|^list-archive:" "\\|^content-length:\\|^nntp-posting-date:\\|^user-agent" "\\|^importance:\\|^envelope-to:\\|^delivery-date\\|^openpgp:" "\\|^mbox-line:\\|^cancel-lock:" "\\|^DomainKey-Signature:\\|^dkim-signature:" "\\|^resent-face:\\|^resent-x.*:\\|^resent-organization:\\|^resent-openpgp:" "\\|^x-.*:")) "\ 23570(defvar rmail-ignored-headers (purecopy (concat "^via:\\|^mail-from:\\|^origin:\\|^references:\\|^sender:" "\\|^status:\\|^received:\\|^x400-originator:\\|^x400-recipients:" "\\|^x400-received:\\|^x400-mts-identifier:\\|^x400-content-type:" "\\|^\\(resent-\\|\\)message-id:\\|^summary-line:\\|^resent-date:" "\\|^nntp-posting-host:\\|^path:\\|^x-char.*:\\|^x-face:\\|^face:" "\\|^x-mailer:\\|^delivered-to:\\|^lines:" "\\|^content-transfer-encoding:\\|^x-coding-system:" "\\|^return-path:\\|^errors-to:\\|^return-receipt-to:" "\\|^precedence:\\|^mime-version:" "\\|^list-owner:\\|^list-help:\\|^list-post:\\|^list-subscribe:" "\\|^list-id:\\|^list-unsubscribe:\\|^list-archive:" "\\|^content-length:\\|^nntp-posting-date:\\|^user-agent" "\\|^importance:\\|^envelope-to:\\|^delivery-date\\|^openpgp:" "\\|^mbox-line:\\|^cancel-lock:" "\\|^DomainKey-Signature:\\|^dkim-signature:" "\\|^resent-face:\\|^resent-x.*:\\|^resent-organization:\\|^resent-openpgp:" "\\|^x-.*:")) "\
23619Regexp to match header fields that Rmail should normally hide. 23571Regexp to match header fields that Rmail should normally hide.
@@ -23765,7 +23717,7 @@ Set PASSWORD to be used for retrieving mail from a POP or IMAP server.
23765;;;*** 23717;;;***
23766 23718
23767;;;### (autoloads (rmail-output-body-to-file rmail-output-as-seen 23719;;;### (autoloads (rmail-output-body-to-file rmail-output-as-seen
23768;;;;;; rmail-output) "rmailout" "mail/rmailout.el" (19780 4513)) 23720;;;;;; rmail-output) "rmailout" "mail/rmailout.el" (19845 45374))
23769;;; Generated autoloads from mail/rmailout.el 23721;;; Generated autoloads from mail/rmailout.el
23770(put 'rmail-output-file-alist 'risky-local-variable t) 23722(put 'rmail-output-file-alist 'risky-local-variable t)
23771 23723
@@ -23830,7 +23782,7 @@ than appending to it. Deletes the message after writing if
23830;;;*** 23782;;;***
23831 23783
23832;;;### (autoloads (rng-c-load-schema) "rng-cmpct" "nxml/rng-cmpct.el" 23784;;;### (autoloads (rng-c-load-schema) "rng-cmpct" "nxml/rng-cmpct.el"
23833;;;;;; (19775 2029)) 23785;;;;;; (19845 45374))
23834;;; Generated autoloads from nxml/rng-cmpct.el 23786;;; Generated autoloads from nxml/rng-cmpct.el
23835 23787
23836(autoload 'rng-c-load-schema "rng-cmpct" "\ 23788(autoload 'rng-c-load-schema "rng-cmpct" "\
@@ -23842,7 +23794,7 @@ Return a pattern.
23842;;;*** 23794;;;***
23843 23795
23844;;;### (autoloads (rng-nxml-mode-init) "rng-nxml" "nxml/rng-nxml.el" 23796;;;### (autoloads (rng-nxml-mode-init) "rng-nxml" "nxml/rng-nxml.el"
23845;;;;;; (19780 4514)) 23797;;;;;; (19845 45374))
23846;;; Generated autoloads from nxml/rng-nxml.el 23798;;; Generated autoloads from nxml/rng-nxml.el
23847 23799
23848(autoload 'rng-nxml-mode-init "rng-nxml" "\ 23800(autoload 'rng-nxml-mode-init "rng-nxml" "\
@@ -23855,7 +23807,7 @@ Validation will be enabled if `rng-nxml-auto-validate-flag' is non-nil.
23855;;;*** 23807;;;***
23856 23808
23857;;;### (autoloads (rng-validate-mode) "rng-valid" "nxml/rng-valid.el" 23809;;;### (autoloads (rng-validate-mode) "rng-valid" "nxml/rng-valid.el"
23858;;;;;; (19780 4514)) 23810;;;;;; (19845 45374))
23859;;; Generated autoloads from nxml/rng-valid.el 23811;;; Generated autoloads from nxml/rng-valid.el
23860 23812
23861(autoload 'rng-validate-mode "rng-valid" "\ 23813(autoload 'rng-validate-mode "rng-valid" "\
@@ -23885,8 +23837,8 @@ to use for finding the schema.
23885 23837
23886;;;*** 23838;;;***
23887 23839
23888;;;### (autoloads (rng-xsd-compile) "rng-xsd" "nxml/rng-xsd.el" (19775 23840;;;### (autoloads (rng-xsd-compile) "rng-xsd" "nxml/rng-xsd.el" (19845
23889;;;;;; 2029)) 23841;;;;;; 45374))
23890;;; Generated autoloads from nxml/rng-xsd.el 23842;;; Generated autoloads from nxml/rng-xsd.el
23891 23843
23892(put 'http://www\.w3\.org/2001/XMLSchema-datatypes 'rng-dt-compile 'rng-xsd-compile) 23844(put 'http://www\.w3\.org/2001/XMLSchema-datatypes 'rng-dt-compile 'rng-xsd-compile)
@@ -23914,7 +23866,7 @@ must be equal.
23914;;;*** 23866;;;***
23915 23867
23916;;;### (autoloads (robin-use-package robin-modify-package robin-define-package) 23868;;;### (autoloads (robin-use-package robin-modify-package robin-define-package)
23917;;;;;; "robin" "international/robin.el" (19763 27286)) 23869;;;;;; "robin" "international/robin.el" (19845 45374))
23918;;; Generated autoloads from international/robin.el 23870;;; Generated autoloads from international/robin.el
23919 23871
23920(autoload 'robin-define-package "robin" "\ 23872(autoload 'robin-define-package "robin" "\
@@ -23947,7 +23899,7 @@ Start using robin package NAME, which is a string.
23947;;;*** 23899;;;***
23948 23900
23949;;;### (autoloads (toggle-rot13-mode rot13-other-window rot13-region 23901;;;### (autoloads (toggle-rot13-mode rot13-other-window rot13-region
23950;;;;;; rot13-string rot13) "rot13" "rot13.el" (19775 2029)) 23902;;;;;; rot13-string rot13) "rot13" "rot13.el" (19845 45374))
23951;;; Generated autoloads from rot13.el 23903;;; Generated autoloads from rot13.el
23952 23904
23953(autoload 'rot13 "rot13" "\ 23905(autoload 'rot13 "rot13" "\
@@ -23985,7 +23937,7 @@ Toggle the use of ROT13 encoding for the current window.
23985;;;*** 23937;;;***
23986 23938
23987;;;### (autoloads (rst-minor-mode rst-mode) "rst" "textmodes/rst.el" 23939;;;### (autoloads (rst-minor-mode rst-mode) "rst" "textmodes/rst.el"
23988;;;;;; (19780 4514)) 23940;;;;;; (19845 45374))
23989;;; Generated autoloads from textmodes/rst.el 23941;;; Generated autoloads from textmodes/rst.el
23990 (add-to-list 'auto-mode-alist (purecopy '("\\.re?st\\'" . rst-mode))) 23942 (add-to-list 'auto-mode-alist (purecopy '("\\.re?st\\'" . rst-mode)))
23991 23943
@@ -24023,7 +23975,7 @@ for modes derived from Text mode, like Mail mode.
24023;;;*** 23975;;;***
24024 23976
24025;;;### (autoloads (ruby-mode) "ruby-mode" "progmodes/ruby-mode.el" 23977;;;### (autoloads (ruby-mode) "ruby-mode" "progmodes/ruby-mode.el"
24026;;;;;; (19780 4514)) 23978;;;;;; (19845 45374))
24027;;; Generated autoloads from progmodes/ruby-mode.el 23979;;; Generated autoloads from progmodes/ruby-mode.el
24028 23980
24029(autoload 'ruby-mode "ruby-mode" "\ 23981(autoload 'ruby-mode "ruby-mode" "\
@@ -24044,8 +23996,8 @@ The variable `ruby-indent-level' controls the amount of indentation.
24044 23996
24045;;;*** 23997;;;***
24046 23998
24047;;;### (autoloads (ruler-mode) "ruler-mode" "ruler-mode.el" (19775 23999;;;### (autoloads (ruler-mode) "ruler-mode" "ruler-mode.el" (19845
24048;;;;;; 2029)) 24000;;;;;; 45374))
24049;;; Generated autoloads from ruler-mode.el 24001;;; Generated autoloads from ruler-mode.el
24050 24002
24051(defvar ruler-mode nil "\ 24003(defvar ruler-mode nil "\
@@ -24060,8 +24012,8 @@ In Ruler mode, Emacs displays a ruler in the header line.
24060 24012
24061;;;*** 24013;;;***
24062 24014
24063;;;### (autoloads (rx rx-to-string) "rx" "emacs-lisp/rx.el" (19775 24015;;;### (autoloads (rx rx-to-string) "rx" "emacs-lisp/rx.el" (19845
24064;;;;;; 2028)) 24016;;;;;; 45374))
24065;;; Generated autoloads from emacs-lisp/rx.el 24017;;; Generated autoloads from emacs-lisp/rx.el
24066 24018
24067(autoload 'rx-to-string "rx" "\ 24019(autoload 'rx-to-string "rx" "\
@@ -24367,8 +24319,8 @@ enclosed in `(and ...)'.
24367 24319
24368;;;*** 24320;;;***
24369 24321
24370;;;### (autoloads (savehist-mode) "savehist" "savehist.el" (19780 24322;;;### (autoloads (savehist-mode) "savehist" "savehist.el" (19845
24371;;;;;; 4514)) 24323;;;;;; 45374))
24372;;; Generated autoloads from savehist.el 24324;;; Generated autoloads from savehist.el
24373 24325
24374(defvar savehist-mode nil "\ 24326(defvar savehist-mode nil "\
@@ -24396,7 +24348,7 @@ which is probably undesirable.
24396;;;*** 24348;;;***
24397 24349
24398;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el" 24350;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el"
24399;;;;;; (19780 4514)) 24351;;;;;; (19845 45374))
24400;;; Generated autoloads from progmodes/scheme.el 24352;;; Generated autoloads from progmodes/scheme.el
24401 24353
24402(autoload 'scheme-mode "scheme" "\ 24354(autoload 'scheme-mode "scheme" "\
@@ -24438,7 +24390,7 @@ that variable's value is a string.
24438;;;*** 24390;;;***
24439 24391
24440;;;### (autoloads (gnus-score-mode) "score-mode" "gnus/score-mode.el" 24392;;;### (autoloads (gnus-score-mode) "score-mode" "gnus/score-mode.el"
24441;;;;;; (19775 2028)) 24393;;;;;; (19845 45374))
24442;;; Generated autoloads from gnus/score-mode.el 24394;;; Generated autoloads from gnus/score-mode.el
24443 24395
24444(autoload 'gnus-score-mode "score-mode" "\ 24396(autoload 'gnus-score-mode "score-mode" "\
@@ -24452,7 +24404,7 @@ This mode is an extended emacs-lisp mode.
24452;;;*** 24404;;;***
24453 24405
24454;;;### (autoloads (scroll-all-mode) "scroll-all" "scroll-all.el" 24406;;;### (autoloads (scroll-all-mode) "scroll-all" "scroll-all.el"
24455;;;;;; (19775 2029)) 24407;;;;;; (19845 45374))
24456;;; Generated autoloads from scroll-all.el 24408;;; Generated autoloads from scroll-all.el
24457 24409
24458(defvar scroll-all-mode nil "\ 24410(defvar scroll-all-mode nil "\
@@ -24475,7 +24427,7 @@ apply to all visible windows in the same frame.
24475;;;*** 24427;;;***
24476 24428
24477;;;### (autoloads (scroll-lock-mode) "scroll-lock" "scroll-lock.el" 24429;;;### (autoloads (scroll-lock-mode) "scroll-lock" "scroll-lock.el"
24478;;;;;; (19775 2029)) 24430;;;;;; (19845 45374))
24479;;; Generated autoloads from scroll-lock.el 24431;;; Generated autoloads from scroll-lock.el
24480 24432
24481(autoload 'scroll-lock-mode "scroll-lock" "\ 24433(autoload 'scroll-lock-mode "scroll-lock" "\
@@ -24489,7 +24441,7 @@ during scrolling.
24489 24441
24490;;;*** 24442;;;***
24491 24443
24492;;;### (autoloads nil "secrets" "net/secrets.el" (19775 2029)) 24444;;;### (autoloads nil "secrets" "net/secrets.el" (19845 45374))
24493;;; Generated autoloads from net/secrets.el 24445;;; Generated autoloads from net/secrets.el
24494(when (featurep 'dbusbind) 24446(when (featurep 'dbusbind)
24495 (autoload 'secrets-show-secrets "secrets" nil t)) 24447 (autoload 'secrets-show-secrets "secrets" nil t))
@@ -24497,7 +24449,7 @@ during scrolling.
24497;;;*** 24449;;;***
24498 24450
24499;;;### (autoloads (semantic-mode semantic-default-submodes) "semantic" 24451;;;### (autoloads (semantic-mode semantic-default-submodes) "semantic"
24500;;;;;; "cedet/semantic.el" (19775 2027)) 24452;;;;;; "cedet/semantic.el" (19845 45374))
24501;;; Generated autoloads from cedet/semantic.el 24453;;; Generated autoloads from cedet/semantic.el
24502 24454
24503(defvar semantic-default-submodes '(global-semantic-idle-scheduler-mode global-semanticdb-minor-mode) "\ 24455(defvar semantic-default-submodes '(global-semantic-idle-scheduler-mode global-semanticdb-minor-mode) "\
@@ -24548,7 +24500,7 @@ Semantic mode.
24548;;;;;; mail-yank-prefix mail-setup-hook mail-personal-alias-file 24500;;;;;; mail-yank-prefix mail-setup-hook mail-personal-alias-file
24549;;;;;; mail-default-reply-to mail-archive-file-name mail-header-separator 24501;;;;;; mail-default-reply-to mail-archive-file-name mail-header-separator
24550;;;;;; send-mail-function mail-interactive mail-self-blind mail-specify-envelope-from 24502;;;;;; send-mail-function mail-interactive mail-self-blind mail-specify-envelope-from
24551;;;;;; mail-from-style) "sendmail" "mail/sendmail.el" (19775 2029)) 24503;;;;;; mail-from-style) "sendmail" "mail/sendmail.el" (19845 45374))
24552;;; Generated autoloads from mail/sendmail.el 24504;;; Generated autoloads from mail/sendmail.el
24553 24505
24554(defvar mail-from-style 'default "\ 24506(defvar mail-from-style 'default "\
@@ -24712,7 +24664,7 @@ before you edit the message, so you can edit or delete the lines.")
24712(define-mail-user-agent 'sendmail-user-agent 'sendmail-user-agent-compose 'mail-send-and-exit) 24664(define-mail-user-agent 'sendmail-user-agent 'sendmail-user-agent-compose 'mail-send-and-exit)
24713 24665
24714(autoload 'sendmail-user-agent-compose "sendmail" "\ 24666(autoload 'sendmail-user-agent-compose "sendmail" "\
24715Not documented 24667
24716 24668
24717\(fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-FUNCTION YANK-ACTION SEND-ACTIONS RETURN-ACTION &rest IGNORED)" nil nil) 24669\(fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-FUNCTION YANK-ACTION SEND-ACTIONS RETURN-ACTION &rest IGNORED)" nil nil)
24718 24670
@@ -24733,7 +24685,6 @@ Here are commands that move to a header field (and create it if there isn't):
24733\\[mail-signature] mail-signature (insert `mail-signature-file' file). 24685\\[mail-signature] mail-signature (insert `mail-signature-file' file).
24734\\[mail-yank-original] mail-yank-original (insert current message, in Rmail). 24686\\[mail-yank-original] mail-yank-original (insert current message, in Rmail).
24735\\[mail-fill-yanked-message] mail-fill-yanked-message (fill what was yanked). 24687\\[mail-fill-yanked-message] mail-fill-yanked-message (fill what was yanked).
24736\\[mail-sent-via] mail-sent-via (add a sent-via field for each To or CC).
24737Turning on Mail mode runs the normal hooks `text-mode-hook' and 24688Turning on Mail mode runs the normal hooks `text-mode-hook' and
24738`mail-mode-hook' (in that order). 24689`mail-mode-hook' (in that order).
24739 24690
@@ -24828,8 +24779,8 @@ Like `mail' command, but display mail buffer in another frame.
24828;;;*** 24779;;;***
24829 24780
24830;;;### (autoloads (server-save-buffers-kill-terminal server-mode 24781;;;### (autoloads (server-save-buffers-kill-terminal server-mode
24831;;;;;; server-force-delete server-start) "server" "server.el" (19780 24782;;;;;; server-force-delete server-start) "server" "server.el" (19863
24832;;;;;; 4514)) 24783;;;;;; 8742))
24833;;; Generated autoloads from server.el 24784;;; Generated autoloads from server.el
24834 24785
24835(put 'server-host 'risky-local-variable t) 24786(put 'server-host 'risky-local-variable t)
@@ -24892,7 +24843,7 @@ only these files will be asked to be saved.
24892 24843
24893;;;*** 24844;;;***
24894 24845
24895;;;### (autoloads (ses-mode) "ses" "ses.el" (19780 4514)) 24846;;;### (autoloads (ses-mode) "ses" "ses.el" (19845 45374))
24896;;; Generated autoloads from ses.el 24847;;; Generated autoloads from ses.el
24897 24848
24898(autoload 'ses-mode "ses" "\ 24849(autoload 'ses-mode "ses" "\
@@ -24911,7 +24862,7 @@ These are active only in the minibuffer, when entering or editing a formula:
24911;;;*** 24862;;;***
24912 24863
24913;;;### (autoloads (html-mode sgml-mode) "sgml-mode" "textmodes/sgml-mode.el" 24864;;;### (autoloads (html-mode sgml-mode) "sgml-mode" "textmodes/sgml-mode.el"
24914;;;;;; (19780 4514)) 24865;;;;;; (19845 45374))
24915;;; Generated autoloads from textmodes/sgml-mode.el 24866;;; Generated autoloads from textmodes/sgml-mode.el
24916 24867
24917(autoload 'sgml-mode "sgml-mode" "\ 24868(autoload 'sgml-mode "sgml-mode" "\
@@ -24977,7 +24928,7 @@ To work around that, do:
24977;;;*** 24928;;;***
24978 24929
24979;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el" 24930;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el"
24980;;;;;; (19780 4514)) 24931;;;;;; (19845 45374))
24981;;; Generated autoloads from progmodes/sh-script.el 24932;;; Generated autoloads from progmodes/sh-script.el
24982(put 'sh-shell 'safe-local-variable 'symbolp) 24933(put 'sh-shell 'safe-local-variable 'symbolp)
24983 24934
@@ -25041,7 +24992,7 @@ with your script for an edit-interpret-debug cycle.
25041 24992
25042;;;*** 24993;;;***
25043 24994
25044;;;### (autoloads (sha1) "sha1" "sha1.el" (19775 2029)) 24995;;;### (autoloads (sha1) "sha1" "sha1.el" (19845 45374))
25045;;; Generated autoloads from sha1.el 24996;;; Generated autoloads from sha1.el
25046 24997
25047(autoload 'sha1 "sha1" "\ 24998(autoload 'sha1 "sha1" "\
@@ -25056,7 +25007,7 @@ If BINARY is non-nil, return a string in binary form.
25056;;;*** 25007;;;***
25057 25008
25058;;;### (autoloads (list-load-path-shadows) "shadow" "emacs-lisp/shadow.el" 25009;;;### (autoloads (list-load-path-shadows) "shadow" "emacs-lisp/shadow.el"
25059;;;;;; (19781 20658)) 25010;;;;;; (19845 45374))
25060;;; Generated autoloads from emacs-lisp/shadow.el 25011;;; Generated autoloads from emacs-lisp/shadow.el
25061 25012
25062(autoload 'list-load-path-shadows "shadow" "\ 25013(autoload 'list-load-path-shadows "shadow" "\
@@ -25106,8 +25057,8 @@ function, `load-path-shadows-find'.
25106;;;*** 25057;;;***
25107 25058
25108;;;### (autoloads (shadow-initialize shadow-define-regexp-group shadow-define-literal-group 25059;;;### (autoloads (shadow-initialize shadow-define-regexp-group shadow-define-literal-group
25109;;;;;; shadow-define-cluster) "shadowfile" "shadowfile.el" (19775 25060;;;;;; shadow-define-cluster) "shadowfile" "shadowfile.el" (19845
25110;;;;;; 2029)) 25061;;;;;; 45374))
25111;;; Generated autoloads from shadowfile.el 25062;;; Generated autoloads from shadowfile.el
25112 25063
25113(autoload 'shadow-define-cluster "shadowfile" "\ 25064(autoload 'shadow-define-cluster "shadowfile" "\
@@ -25146,7 +25097,7 @@ Set up file shadowing.
25146;;;*** 25097;;;***
25147 25098
25148;;;### (autoloads (shell shell-dumb-shell-regexp) "shell" "shell.el" 25099;;;### (autoloads (shell shell-dumb-shell-regexp) "shell" "shell.el"
25149;;;;;; (19780 4514)) 25100;;;;;; (19845 45374))
25150;;; Generated autoloads from shell.el 25101;;; Generated autoloads from shell.el
25151 25102
25152(defvar shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe") "\ 25103(defvar shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe") "\
@@ -25195,40 +25146,40 @@ Otherwise, one argument `-i' is passed to the shell.
25195 25146
25196;;;*** 25147;;;***
25197 25148
25198;;;### (autoloads (shr-insert-document) "shr" "gnus/shr.el" (19780 25149;;;### (autoloads (shr-insert-document) "shr" "gnus/shr.el" (19845
25199;;;;;; 4513)) 25150;;;;;; 45374))
25200;;; Generated autoloads from gnus/shr.el 25151;;; Generated autoloads from gnus/shr.el
25201 25152
25202(autoload 'shr-insert-document "shr" "\ 25153(autoload 'shr-insert-document "shr" "\
25203Not documented 25154
25204 25155
25205\(fn DOM)" nil nil) 25156\(fn DOM)" nil nil)
25206 25157
25207;;;*** 25158;;;***
25208 25159
25209;;;### (autoloads (sieve-upload-and-bury sieve-upload sieve-manage) 25160;;;### (autoloads (sieve-upload-and-bury sieve-upload sieve-manage)
25210;;;;;; "sieve" "gnus/sieve.el" (19775 2028)) 25161;;;;;; "sieve" "gnus/sieve.el" (19845 45374))
25211;;; Generated autoloads from gnus/sieve.el 25162;;; Generated autoloads from gnus/sieve.el
25212 25163
25213(autoload 'sieve-manage "sieve" "\ 25164(autoload 'sieve-manage "sieve" "\
25214Not documented 25165
25215 25166
25216\(fn SERVER &optional PORT)" t nil) 25167\(fn SERVER &optional PORT)" t nil)
25217 25168
25218(autoload 'sieve-upload "sieve" "\ 25169(autoload 'sieve-upload "sieve" "\
25219Not documented 25170
25220 25171
25221\(fn &optional NAME)" t nil) 25172\(fn &optional NAME)" t nil)
25222 25173
25223(autoload 'sieve-upload-and-bury "sieve" "\ 25174(autoload 'sieve-upload-and-bury "sieve" "\
25224Not documented 25175
25225 25176
25226\(fn &optional NAME)" t nil) 25177\(fn &optional NAME)" t nil)
25227 25178
25228;;;*** 25179;;;***
25229 25180
25230;;;### (autoloads (sieve-mode) "sieve-mode" "gnus/sieve-mode.el" 25181;;;### (autoloads (sieve-mode) "sieve-mode" "gnus/sieve-mode.el"
25231;;;;;; (19775 2028)) 25182;;;;;; (19845 45374))
25232;;; Generated autoloads from gnus/sieve-mode.el 25183;;; Generated autoloads from gnus/sieve-mode.el
25233 25184
25234(autoload 'sieve-mode "sieve-mode" "\ 25185(autoload 'sieve-mode "sieve-mode" "\
@@ -25243,8 +25194,8 @@ Turning on Sieve mode runs `sieve-mode-hook'.
25243 25194
25244;;;*** 25195;;;***
25245 25196
25246;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (19775 25197;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (19845
25247;;;;;; 2029)) 25198;;;;;; 45374))
25248;;; Generated autoloads from progmodes/simula.el 25199;;; Generated autoloads from progmodes/simula.el
25249 25200
25250(autoload 'simula-mode "simula" "\ 25201(autoload 'simula-mode "simula" "\
@@ -25293,7 +25244,7 @@ with no arguments, if that value is non-nil.
25293;;;*** 25244;;;***
25294 25245
25295;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy-new 25246;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy-new
25296;;;;;; define-skeleton) "skeleton" "skeleton.el" (19775 2030)) 25247;;;;;; define-skeleton) "skeleton" "skeleton.el" (19845 45374))
25297;;; Generated autoloads from skeleton.el 25248;;; Generated autoloads from skeleton.el
25298 25249
25299(defvar skeleton-filter-function 'identity "\ 25250(defvar skeleton-filter-function 'identity "\
@@ -25403,7 +25354,7 @@ symmetrical ones, and the same character twice for the others.
25403;;;*** 25354;;;***
25404 25355
25405;;;### (autoloads (smerge-start-session smerge-mode smerge-ediff) 25356;;;### (autoloads (smerge-start-session smerge-mode smerge-ediff)
25406;;;;;; "smerge-mode" "vc/smerge-mode.el" (19775 2030)) 25357;;;;;; "smerge-mode" "vc/smerge-mode.el" (19863 8742))
25407;;; Generated autoloads from vc/smerge-mode.el 25358;;; Generated autoloads from vc/smerge-mode.el
25408 25359
25409(autoload 'smerge-ediff "smerge-mode" "\ 25360(autoload 'smerge-ediff "smerge-mode" "\
@@ -25428,7 +25379,7 @@ If no conflict maker is found, turn off `smerge-mode'.
25428;;;*** 25379;;;***
25429 25380
25430;;;### (autoloads (smiley-buffer smiley-region) "smiley" "gnus/smiley.el" 25381;;;### (autoloads (smiley-buffer smiley-region) "smiley" "gnus/smiley.el"
25431;;;;;; (19775 2028)) 25382;;;;;; (19845 45374))
25432;;; Generated autoloads from gnus/smiley.el 25383;;; Generated autoloads from gnus/smiley.el
25433 25384
25434(autoload 'smiley-region "smiley" "\ 25385(autoload 'smiley-region "smiley" "\
@@ -25446,11 +25397,11 @@ interactively. If there's no argument, do it at the current buffer.
25446;;;*** 25397;;;***
25447 25398
25448;;;### (autoloads (smtpmail-send-queued-mail smtpmail-send-it) "smtpmail" 25399;;;### (autoloads (smtpmail-send-queued-mail smtpmail-send-it) "smtpmail"
25449;;;;;; "mail/smtpmail.el" (19775 2029)) 25400;;;;;; "mail/smtpmail.el" (19845 45374))
25450;;; Generated autoloads from mail/smtpmail.el 25401;;; Generated autoloads from mail/smtpmail.el
25451 25402
25452(autoload 'smtpmail-send-it "smtpmail" "\ 25403(autoload 'smtpmail-send-it "smtpmail" "\
25453Not documented 25404
25454 25405
25455\(fn)" nil nil) 25406\(fn)" nil nil)
25456 25407
@@ -25461,7 +25412,7 @@ Send mail that was queued as a result of setting `smtpmail-queue-mail'.
25461 25412
25462;;;*** 25413;;;***
25463 25414
25464;;;### (autoloads (snake) "snake" "play/snake.el" (19775 2029)) 25415;;;### (autoloads (snake) "snake" "play/snake.el" (19845 45374))
25465;;; Generated autoloads from play/snake.el 25416;;; Generated autoloads from play/snake.el
25466 25417
25467(autoload 'snake "snake" "\ 25418(autoload 'snake "snake" "\
@@ -25485,7 +25436,7 @@ Snake mode keybindings:
25485;;;*** 25436;;;***
25486 25437
25487;;;### (autoloads (snmpv2-mode snmp-mode) "snmp-mode" "net/snmp-mode.el" 25438;;;### (autoloads (snmpv2-mode snmp-mode) "snmp-mode" "net/snmp-mode.el"
25488;;;;;; (19775 2029)) 25439;;;;;; (19845 45374))
25489;;; Generated autoloads from net/snmp-mode.el 25440;;; Generated autoloads from net/snmp-mode.el
25490 25441
25491(autoload 'snmp-mode "snmp-mode" "\ 25442(autoload 'snmp-mode "snmp-mode" "\
@@ -25514,8 +25465,8 @@ then `snmpv2-mode-hook'.
25514 25465
25515;;;*** 25466;;;***
25516 25467
25517;;;### (autoloads (sunrise-sunset) "solar" "calendar/solar.el" (19780 25468;;;### (autoloads (sunrise-sunset) "solar" "calendar/solar.el" (19845
25518;;;;;; 4513)) 25469;;;;;; 45374))
25519;;; Generated autoloads from calendar/solar.el 25470;;; Generated autoloads from calendar/solar.el
25520 25471
25521(autoload 'sunrise-sunset "solar" "\ 25472(autoload 'sunrise-sunset "solar" "\
@@ -25530,8 +25481,8 @@ This function is suitable for execution in a .emacs file.
25530 25481
25531;;;*** 25482;;;***
25532 25483
25533;;;### (autoloads (solitaire) "solitaire" "play/solitaire.el" (19775 25484;;;### (autoloads (solitaire) "solitaire" "play/solitaire.el" (19845
25534;;;;;; 2029)) 25485;;;;;; 45374))
25535;;; Generated autoloads from play/solitaire.el 25486;;; Generated autoloads from play/solitaire.el
25536 25487
25537(autoload 'solitaire "solitaire" "\ 25488(autoload 'solitaire "solitaire" "\
@@ -25608,7 +25559,7 @@ Pick your favourite shortcuts:
25608 25559
25609;;;### (autoloads (reverse-region sort-columns sort-regexp-fields 25560;;;### (autoloads (reverse-region sort-columns sort-regexp-fields
25610;;;;;; sort-fields sort-numeric-fields sort-pages sort-paragraphs 25561;;;;;; sort-fields sort-numeric-fields sort-pages sort-paragraphs
25611;;;;;; sort-lines sort-subr) "sort" "sort.el" (19780 4514)) 25562;;;;;; sort-lines sort-subr) "sort" "sort.el" (19845 45374))
25612;;; Generated autoloads from sort.el 25563;;; Generated autoloads from sort.el
25613(put 'sort-fold-case 'safe-local-variable 'booleanp) 25564(put 'sort-fold-case 'safe-local-variable 'booleanp)
25614 25565
@@ -25752,8 +25703,8 @@ From a program takes two point or marker arguments, BEG and END.
25752 25703
25753;;;*** 25704;;;***
25754 25705
25755;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (19780 25706;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (19867
25756;;;;;; 4513)) 25707;;;;;; 52471))
25757;;; Generated autoloads from gnus/spam.el 25708;;; Generated autoloads from gnus/spam.el
25758 25709
25759(autoload 'spam-initialize "spam" "\ 25710(autoload 'spam-initialize "spam" "\
@@ -25769,7 +25720,7 @@ installed through `spam-necessary-extra-headers'.
25769 25720
25770;;;### (autoloads (spam-report-deagentize spam-report-agentize spam-report-url-to-file 25721;;;### (autoloads (spam-report-deagentize spam-report-agentize spam-report-url-to-file
25771;;;;;; spam-report-url-ping-mm-url spam-report-process-queue) "spam-report" 25722;;;;;; spam-report-url-ping-mm-url spam-report-process-queue) "spam-report"
25772;;;;;; "gnus/spam-report.el" (19780 4513)) 25723;;;;;; "gnus/spam-report.el" (19845 45374))
25773;;; Generated autoloads from gnus/spam-report.el 25724;;; Generated autoloads from gnus/spam-report.el
25774 25725
25775(autoload 'spam-report-process-queue "spam-report" "\ 25726(autoload 'spam-report-process-queue "spam-report" "\
@@ -25812,7 +25763,7 @@ Spam reports will be queued with the method used when
25812;;;*** 25763;;;***
25813 25764
25814;;;### (autoloads (speedbar-get-focus speedbar-frame-mode) "speedbar" 25765;;;### (autoloads (speedbar-get-focus speedbar-frame-mode) "speedbar"
25815;;;;;; "speedbar.el" (19780 4514)) 25766;;;;;; "speedbar.el" (19845 45374))
25816;;; Generated autoloads from speedbar.el 25767;;; Generated autoloads from speedbar.el
25817 25768
25818(defalias 'speedbar 'speedbar-frame-mode) 25769(defalias 'speedbar 'speedbar-frame-mode)
@@ -25836,8 +25787,8 @@ selected. If the speedbar frame is active, then select the attached frame.
25836 25787
25837;;;*** 25788;;;***
25838 25789
25839;;;### (autoloads (snarf-spooks spook) "spook" "play/spook.el" (19775 25790;;;### (autoloads (snarf-spooks spook) "spook" "play/spook.el" (19845
25840;;;;;; 2029)) 25791;;;;;; 45374))
25841;;; Generated autoloads from play/spook.el 25792;;; Generated autoloads from play/spook.el
25842 25793
25843(autoload 'spook "spook" "\ 25794(autoload 'spook "spook" "\
@@ -25856,7 +25807,7 @@ Return a vector containing the lines from `spook-phrases-file'.
25856;;;;;; sql-ms sql-ingres sql-solid sql-mysql sql-sqlite sql-informix 25807;;;;;; sql-ms sql-ingres sql-solid sql-mysql sql-sqlite sql-informix
25857;;;;;; sql-sybase sql-oracle sql-product-interactive sql-connect 25808;;;;;; sql-sybase sql-oracle sql-product-interactive sql-connect
25858;;;;;; sql-mode sql-help sql-add-product-keywords) "sql" "progmodes/sql.el" 25809;;;;;; sql-mode sql-help sql-add-product-keywords) "sql" "progmodes/sql.el"
25859;;;;;; (19775 2029)) 25810;;;;;; (19845 45374))
25860;;; Generated autoloads from progmodes/sql.el 25811;;; Generated autoloads from progmodes/sql.el
25861 25812
25862(autoload 'sql-add-product-keywords "sql" "\ 25813(autoload 'sql-add-product-keywords "sql" "\
@@ -26352,7 +26303,7 @@ buffer.
26352;;;*** 26303;;;***
26353 26304
26354;;;### (autoloads (srecode-template-mode) "srecode/srt-mode" "cedet/srecode/srt-mode.el" 26305;;;### (autoloads (srecode-template-mode) "srecode/srt-mode" "cedet/srecode/srt-mode.el"
26355;;;;;; (19775 2027)) 26306;;;;;; (19845 45374))
26356;;; Generated autoloads from cedet/srecode/srt-mode.el 26307;;; Generated autoloads from cedet/srecode/srt-mode.el
26357 26308
26358(autoload 'srecode-template-mode "srecode/srt-mode" "\ 26309(autoload 'srecode-template-mode "srecode/srt-mode" "\
@@ -26365,7 +26316,7 @@ Major-mode for writing SRecode macros.
26365;;;*** 26316;;;***
26366 26317
26367;;;### (autoloads (starttls-open-stream) "starttls" "gnus/starttls.el" 26318;;;### (autoloads (starttls-open-stream) "starttls" "gnus/starttls.el"
26368;;;;;; (19775 2028)) 26319;;;;;; (19845 45374))
26369;;; Generated autoloads from gnus/starttls.el 26320;;; Generated autoloads from gnus/starttls.el
26370 26321
26371(autoload 'starttls-open-stream "starttls" "\ 26322(autoload 'starttls-open-stream "starttls" "\
@@ -26392,8 +26343,8 @@ GNUTLS requires a port number.
26392;;;;;; strokes-mode strokes-list-strokes strokes-load-user-strokes 26343;;;;;; strokes-mode strokes-list-strokes strokes-load-user-strokes
26393;;;;;; strokes-help strokes-describe-stroke strokes-do-complex-stroke 26344;;;;;; strokes-help strokes-describe-stroke strokes-do-complex-stroke
26394;;;;;; strokes-do-stroke strokes-read-complex-stroke strokes-read-stroke 26345;;;;;; strokes-do-stroke strokes-read-complex-stroke strokes-read-stroke
26395;;;;;; strokes-global-set-stroke) "strokes" "strokes.el" (19775 26346;;;;;; strokes-global-set-stroke) "strokes" "strokes.el" (19845
26396;;;;;; 2030)) 26347;;;;;; 45374))
26397;;; Generated autoloads from strokes.el 26348;;; Generated autoloads from strokes.el
26398 26349
26399(autoload 'strokes-global-set-stroke "strokes" "\ 26350(autoload 'strokes-global-set-stroke "strokes" "\
@@ -26503,7 +26454,7 @@ Read a complex stroke and insert its glyph into the current buffer.
26503;;;*** 26454;;;***
26504 26455
26505;;;### (autoloads (studlify-buffer studlify-word studlify-region) 26456;;;### (autoloads (studlify-buffer studlify-word studlify-region)
26506;;;;;; "studly" "play/studly.el" (19763 27287)) 26457;;;;;; "studly" "play/studly.el" (19845 45374))
26507;;; Generated autoloads from play/studly.el 26458;;; Generated autoloads from play/studly.el
26508 26459
26509(autoload 'studlify-region "studly" "\ 26460(autoload 'studlify-region "studly" "\
@@ -26524,7 +26475,7 @@ Studlify-case the current buffer.
26524;;;*** 26475;;;***
26525 26476
26526;;;### (autoloads (global-subword-mode subword-mode) "subword" "progmodes/subword.el" 26477;;;### (autoloads (global-subword-mode subword-mode) "subword" "progmodes/subword.el"
26527;;;;;; (19775 2029)) 26478;;;;;; (19845 45374))
26528;;; Generated autoloads from progmodes/subword.el 26479;;; Generated autoloads from progmodes/subword.el
26529 26480
26530(autoload 'subword-mode "subword" "\ 26481(autoload 'subword-mode "subword" "\
@@ -26572,7 +26523,7 @@ See `subword-mode' for more information on Subword mode.
26572;;;*** 26523;;;***
26573 26524
26574;;;### (autoloads (sc-cite-original) "supercite" "mail/supercite.el" 26525;;;### (autoloads (sc-cite-original) "supercite" "mail/supercite.el"
26575;;;;;; (19775 2029)) 26526;;;;;; (19845 45374))
26576;;; Generated autoloads from mail/supercite.el 26527;;; Generated autoloads from mail/supercite.el
26577 26528
26578(autoload 'sc-cite-original "supercite" "\ 26529(autoload 'sc-cite-original "supercite" "\
@@ -26604,8 +26555,8 @@ and `sc-post-hook' is run after the guts of this function.
26604 26555
26605;;;*** 26556;;;***
26606 26557
26607;;;### (autoloads (gpm-mouse-mode) "t-mouse" "t-mouse.el" (19780 26558;;;### (autoloads (gpm-mouse-mode) "t-mouse" "t-mouse.el" (19845
26608;;;;;; 4514)) 26559;;;;;; 45374))
26609;;; Generated autoloads from t-mouse.el 26560;;; Generated autoloads from t-mouse.el
26610 26561
26611(define-obsolete-function-alias 't-mouse-mode 'gpm-mouse-mode "23.1") 26562(define-obsolete-function-alias 't-mouse-mode 'gpm-mouse-mode "23.1")
@@ -26632,7 +26583,7 @@ It relies on the `gpm' daemon being activated.
26632 26583
26633;;;*** 26584;;;***
26634 26585
26635;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (19775 2030)) 26586;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (19845 45374))
26636;;; Generated autoloads from tabify.el 26587;;; Generated autoloads from tabify.el
26637 26588
26638(autoload 'untabify "tabify" "\ 26589(autoload 'untabify "tabify" "\
@@ -26667,7 +26618,7 @@ The variable `tab-width' controls the spacing of tab stops.
26667;;;;;; table-recognize table-insert-row-column table-insert-column 26618;;;;;; table-recognize table-insert-row-column table-insert-column
26668;;;;;; table-insert-row table-insert table-point-left-cell-hook 26619;;;;;; table-insert-row table-insert table-point-left-cell-hook
26669;;;;;; table-point-entered-cell-hook table-load-hook table-cell-map-hook) 26620;;;;;; table-point-entered-cell-hook table-load-hook table-cell-map-hook)
26670;;;;;; "table" "textmodes/table.el" (19775 2030)) 26621;;;;;; "table" "textmodes/table.el" (19845 45374))
26671;;; Generated autoloads from textmodes/table.el 26622;;; Generated autoloads from textmodes/table.el
26672 26623
26673(defvar table-cell-map-hook nil "\ 26624(defvar table-cell-map-hook nil "\
@@ -26848,7 +26799,7 @@ all the table specific features.
26848\(fn &optional ARG)" t nil) 26799\(fn &optional ARG)" t nil)
26849 26800
26850(autoload 'table-unrecognize "table" "\ 26801(autoload 'table-unrecognize "table" "\
26851Not documented 26802
26852 26803
26853\(fn)" t nil) 26804\(fn)" t nil)
26854 26805
@@ -26862,7 +26813,7 @@ specific features.
26862\(fn BEG END &optional ARG)" t nil) 26813\(fn BEG END &optional ARG)" t nil)
26863 26814
26864(autoload 'table-unrecognize-region "table" "\ 26815(autoload 'table-unrecognize-region "table" "\
26865Not documented 26816
26866 26817
26867\(fn BEG END)" t nil) 26818\(fn BEG END)" t nil)
26868 26819
@@ -26875,7 +26826,7 @@ the table specific features.
26875\(fn &optional ARG)" t nil) 26826\(fn &optional ARG)" t nil)
26876 26827
26877(autoload 'table-unrecognize-table "table" "\ 26828(autoload 'table-unrecognize-table "table" "\
26878Not documented 26829
26879 26830
26880\(fn)" t nil) 26831\(fn)" t nil)
26881 26832
@@ -26890,7 +26841,7 @@ plain text and loses all the table specific features.
26890\(fn &optional FORCE NO-COPY ARG)" t nil) 26841\(fn &optional FORCE NO-COPY ARG)" t nil)
26891 26842
26892(autoload 'table-unrecognize-cell "table" "\ 26843(autoload 'table-unrecognize-cell "table" "\
26893Not documented 26844
26894 26845
26895\(fn)" t nil) 26846\(fn)" t nil)
26896 26847
@@ -27255,7 +27206,7 @@ converts a table into plain text without frames. It is a companion to
27255 27206
27256;;;*** 27207;;;***
27257 27208
27258;;;### (autoloads (talk talk-connect) "talk" "talk.el" (19775 2030)) 27209;;;### (autoloads (talk talk-connect) "talk" "talk.el" (19845 45374))
27259;;; Generated autoloads from talk.el 27210;;; Generated autoloads from talk.el
27260 27211
27261(autoload 'talk-connect "talk" "\ 27212(autoload 'talk-connect "talk" "\
@@ -27270,7 +27221,7 @@ Connect to the Emacs talk group from the current X display or tty frame.
27270 27221
27271;;;*** 27222;;;***
27272 27223
27273;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (19780 4514)) 27224;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (19845 45374))
27274;;; Generated autoloads from tar-mode.el 27225;;; Generated autoloads from tar-mode.el
27275 27226
27276(autoload 'tar-mode "tar-mode" "\ 27227(autoload 'tar-mode "tar-mode" "\
@@ -27294,7 +27245,7 @@ See also: variables `tar-update-datestamp' and `tar-anal-blocksize'.
27294;;;*** 27245;;;***
27295 27246
27296;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" 27247;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl"
27297;;;;;; "progmodes/tcl.el" (19775 2029)) 27248;;;;;; "progmodes/tcl.el" (19845 45374))
27298;;; Generated autoloads from progmodes/tcl.el 27249;;; Generated autoloads from progmodes/tcl.el
27299 27250
27300(autoload 'tcl-mode "tcl" "\ 27251(autoload 'tcl-mode "tcl" "\
@@ -27342,7 +27293,7 @@ Prefix argument means invert sense of `tcl-use-smart-word-finder'.
27342 27293
27343;;;*** 27294;;;***
27344 27295
27345;;;### (autoloads (rsh telnet) "telnet" "net/telnet.el" (19780 4514)) 27296;;;### (autoloads (rsh telnet) "telnet" "net/telnet.el" (19845 45374))
27346;;; Generated autoloads from net/telnet.el 27297;;; Generated autoloads from net/telnet.el
27347 (add-hook 'same-window-regexps (purecopy "\\*telnet-.*\\*\\(\\|<[0-9]+>\\)")) 27298 (add-hook 'same-window-regexps (purecopy "\\*telnet-.*\\*\\(\\|<[0-9]+>\\)"))
27348 27299
@@ -27370,7 +27321,7 @@ Normally input is edited in Emacs and sent a line at a time.
27370;;;*** 27321;;;***
27371 27322
27372;;;### (autoloads (serial-term ansi-term term make-term) "term" "term.el" 27323;;;### (autoloads (serial-term ansi-term term make-term) "term" "term.el"
27373;;;;;; (19775 2030)) 27324;;;;;; (19845 45374))
27374;;; Generated autoloads from term.el 27325;;; Generated autoloads from term.el
27375 27326
27376(autoload 'make-term "term" "\ 27327(autoload 'make-term "term" "\
@@ -27412,8 +27363,8 @@ use in that buffer.
27412 27363
27413;;;*** 27364;;;***
27414 27365
27415;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (19780 27366;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (19845
27416;;;;;; 4514)) 27367;;;;;; 45374))
27417;;; Generated autoloads from terminal.el 27368;;; Generated autoloads from terminal.el
27418 27369
27419(autoload 'terminal-emulator "terminal" "\ 27370(autoload 'terminal-emulator "terminal" "\
@@ -27450,7 +27401,7 @@ subprocess started.
27450;;;*** 27401;;;***
27451 27402
27452;;;### (autoloads (testcover-this-defun) "testcover" "emacs-lisp/testcover.el" 27403;;;### (autoloads (testcover-this-defun) "testcover" "emacs-lisp/testcover.el"
27453;;;;;; (19775 2028)) 27404;;;;;; (19845 45374))
27454;;; Generated autoloads from emacs-lisp/testcover.el 27405;;; Generated autoloads from emacs-lisp/testcover.el
27455 27406
27456(autoload 'testcover-this-defun "testcover" "\ 27407(autoload 'testcover-this-defun "testcover" "\
@@ -27460,7 +27411,7 @@ Start coverage on function under point.
27460 27411
27461;;;*** 27412;;;***
27462 27413
27463;;;### (autoloads (tetris) "tetris" "play/tetris.el" (19775 2029)) 27414;;;### (autoloads (tetris) "tetris" "play/tetris.el" (19845 45374))
27464;;; Generated autoloads from play/tetris.el 27415;;; Generated autoloads from play/tetris.el
27465 27416
27466(autoload 'tetris "tetris" "\ 27417(autoload 'tetris "tetris" "\
@@ -27491,7 +27442,7 @@ tetris-mode keybindings:
27491;;;;;; tex-start-commands tex-start-options slitex-run-command latex-run-command 27442;;;;;; tex-start-commands tex-start-options slitex-run-command latex-run-command
27492;;;;;; tex-run-command tex-offer-save tex-main-file tex-first-line-header-regexp 27443;;;;;; tex-run-command tex-offer-save tex-main-file tex-first-line-header-regexp
27493;;;;;; tex-directory tex-shell-file-name) "tex-mode" "textmodes/tex-mode.el" 27444;;;;;; tex-directory tex-shell-file-name) "tex-mode" "textmodes/tex-mode.el"
27494;;;;;; (19780 4514)) 27445;;;;;; (19845 45374))
27495;;; Generated autoloads from textmodes/tex-mode.el 27446;;; Generated autoloads from textmodes/tex-mode.el
27496 27447
27497(defvar tex-shell-file-name nil "\ 27448(defvar tex-shell-file-name nil "\
@@ -27781,7 +27732,7 @@ Entering SliTeX mode runs the hook `text-mode-hook', then the hook
27781\(fn)" t nil) 27732\(fn)" t nil)
27782 27733
27783(autoload 'tex-start-shell "tex-mode" "\ 27734(autoload 'tex-start-shell "tex-mode" "\
27784Not documented 27735
27785 27736
27786\(fn)" nil nil) 27737\(fn)" nil nil)
27787 27738
@@ -27793,7 +27744,7 @@ Major mode to edit DocTeX files.
27793;;;*** 27744;;;***
27794 27745
27795;;;### (autoloads (texi2info texinfo-format-region texinfo-format-buffer) 27746;;;### (autoloads (texi2info texinfo-format-region texinfo-format-buffer)
27796;;;;;; "texinfmt" "textmodes/texinfmt.el" (19780 4514)) 27747;;;;;; "texinfmt" "textmodes/texinfmt.el" (19845 45374))
27797;;; Generated autoloads from textmodes/texinfmt.el 27748;;; Generated autoloads from textmodes/texinfmt.el
27798 27749
27799(autoload 'texinfo-format-buffer "texinfmt" "\ 27750(autoload 'texinfo-format-buffer "texinfmt" "\
@@ -27833,7 +27784,7 @@ if large. You can use `Info-split' to do this manually.
27833;;;*** 27784;;;***
27834 27785
27835;;;### (autoloads (texinfo-mode texinfo-close-quote texinfo-open-quote) 27786;;;### (autoloads (texinfo-mode texinfo-close-quote texinfo-open-quote)
27836;;;;;; "texinfo" "textmodes/texinfo.el" (19775 2030)) 27787;;;;;; "texinfo" "textmodes/texinfo.el" (19845 45374))
27837;;; Generated autoloads from textmodes/texinfo.el 27788;;; Generated autoloads from textmodes/texinfo.el
27838 27789
27839(defvar texinfo-open-quote (purecopy "``") "\ 27790(defvar texinfo-open-quote (purecopy "``") "\
@@ -27919,7 +27870,7 @@ value of `texinfo-mode-hook'.
27919 27870
27920;;;### (autoloads (thai-composition-function thai-compose-buffer 27871;;;### (autoloads (thai-composition-function thai-compose-buffer
27921;;;;;; thai-compose-string thai-compose-region) "thai-util" "language/thai-util.el" 27872;;;;;; thai-compose-string thai-compose-region) "thai-util" "language/thai-util.el"
27922;;;;;; (19775 2028)) 27873;;;;;; (19845 45374))
27923;;; Generated autoloads from language/thai-util.el 27874;;; Generated autoloads from language/thai-util.el
27924 27875
27925(autoload 'thai-compose-region "thai-util" "\ 27876(autoload 'thai-compose-region "thai-util" "\
@@ -27940,7 +27891,7 @@ Compose Thai characters in the current buffer.
27940\(fn)" t nil) 27891\(fn)" t nil)
27941 27892
27942(autoload 'thai-composition-function "thai-util" "\ 27893(autoload 'thai-composition-function "thai-util" "\
27943Not documented 27894
27944 27895
27945\(fn GSTRING)" nil nil) 27896\(fn GSTRING)" nil nil)
27946 27897
@@ -27948,7 +27899,7 @@ Not documented
27948 27899
27949;;;### (autoloads (list-at-point number-at-point symbol-at-point 27900;;;### (autoloads (list-at-point number-at-point symbol-at-point
27950;;;;;; sexp-at-point thing-at-point bounds-of-thing-at-point forward-thing) 27901;;;;;; sexp-at-point thing-at-point bounds-of-thing-at-point forward-thing)
27951;;;;;; "thingatpt" "thingatpt.el" (19780 4514)) 27902;;;;;; "thingatpt" "thingatpt.el" (19852 16697))
27952;;; Generated autoloads from thingatpt.el 27903;;; Generated autoloads from thingatpt.el
27953 27904
27954(autoload 'forward-thing "thingatpt" "\ 27905(autoload 'forward-thing "thingatpt" "\
@@ -28005,7 +27956,7 @@ Return the Lisp list at point, or nil if none is found.
28005 27956
28006;;;### (autoloads (thumbs-dired-setroot thumbs-dired-show thumbs-dired-show-marked 27957;;;### (autoloads (thumbs-dired-setroot thumbs-dired-show thumbs-dired-show-marked
28007;;;;;; thumbs-show-from-dir thumbs-find-thumb) "thumbs" "thumbs.el" 27958;;;;;; thumbs-show-from-dir thumbs-find-thumb) "thumbs" "thumbs.el"
28008;;;;;; (19775 2030)) 27959;;;;;; (19845 45374))
28009;;; Generated autoloads from thumbs.el 27960;;; Generated autoloads from thumbs.el
28010 27961
28011(autoload 'thumbs-find-thumb "thumbs" "\ 27962(autoload 'thumbs-find-thumb "thumbs" "\
@@ -28043,8 +27994,8 @@ In dired, call the setroot program on the image at point.
28043;;;;;; tibetan-post-read-conversion tibetan-compose-buffer tibetan-decompose-buffer 27994;;;;;; tibetan-post-read-conversion tibetan-compose-buffer tibetan-decompose-buffer
28044;;;;;; tibetan-decompose-string tibetan-decompose-region tibetan-compose-region 27995;;;;;; tibetan-decompose-string tibetan-decompose-region tibetan-compose-region
28045;;;;;; tibetan-compose-string tibetan-transcription-to-tibetan tibetan-tibetan-to-transcription 27996;;;;;; tibetan-compose-string tibetan-transcription-to-tibetan tibetan-tibetan-to-transcription
28046;;;;;; tibetan-char-p) "tibet-util" "language/tibet-util.el" (19780 27997;;;;;; tibetan-char-p) "tibet-util" "language/tibet-util.el" (19845
28047;;;;;; 4513)) 27998;;;;;; 45374))
28048;;; Generated autoloads from language/tibet-util.el 27999;;; Generated autoloads from language/tibet-util.el
28049 28000
28050(autoload 'tibetan-char-p "tibet-util" "\ 28001(autoload 'tibetan-char-p "tibet-util" "\
@@ -28101,24 +28052,24 @@ See also docstring of the function tibetan-compose-region.
28101\(fn)" t nil) 28052\(fn)" t nil)
28102 28053
28103(autoload 'tibetan-post-read-conversion "tibet-util" "\ 28054(autoload 'tibetan-post-read-conversion "tibet-util" "\
28104Not documented 28055
28105 28056
28106\(fn LEN)" nil nil) 28057\(fn LEN)" nil nil)
28107 28058
28108(autoload 'tibetan-pre-write-conversion "tibet-util" "\ 28059(autoload 'tibetan-pre-write-conversion "tibet-util" "\
28109Not documented 28060
28110 28061
28111\(fn FROM TO)" nil nil) 28062\(fn FROM TO)" nil nil)
28112 28063
28113(autoload 'tibetan-pre-write-canonicalize-for-unicode "tibet-util" "\ 28064(autoload 'tibetan-pre-write-canonicalize-for-unicode "tibet-util" "\
28114Not documented 28065
28115 28066
28116\(fn FROM TO)" nil nil) 28067\(fn FROM TO)" nil nil)
28117 28068
28118;;;*** 28069;;;***
28119 28070
28120;;;### (autoloads (tildify-buffer tildify-region) "tildify" "textmodes/tildify.el" 28071;;;### (autoloads (tildify-buffer tildify-region) "tildify" "textmodes/tildify.el"
28121;;;;;; (19775 2030)) 28072;;;;;; (19845 45374))
28122;;; Generated autoloads from textmodes/tildify.el 28073;;; Generated autoloads from textmodes/tildify.el
28123 28074
28124(autoload 'tildify-region "tildify" "\ 28075(autoload 'tildify-region "tildify" "\
@@ -28143,7 +28094,7 @@ This function performs no refilling of the changed text.
28143 28094
28144;;;### (autoloads (emacs-init-time emacs-uptime display-time-world 28095;;;### (autoloads (emacs-init-time emacs-uptime display-time-world
28145;;;;;; display-time-mode display-time display-time-day-and-date) 28096;;;;;; display-time-mode display-time display-time-day-and-date)
28146;;;;;; "time" "time.el" (19780 4514)) 28097;;;;;; "time" "time.el" (19845 45374))
28147;;; Generated autoloads from time.el 28098;;; Generated autoloads from time.el
28148 28099
28149(defvar display-time-day-and-date nil "\ 28100(defvar display-time-day-and-date nil "\
@@ -28208,7 +28159,7 @@ Return a string giving the duration of the Emacs initialization.
28208;;;;;; time-to-day-in-year date-leap-year-p days-between date-to-day 28159;;;;;; time-to-day-in-year date-leap-year-p days-between date-to-day
28209;;;;;; time-add time-subtract time-since days-to-time time-less-p 28160;;;;;; time-add time-subtract time-since days-to-time time-less-p
28210;;;;;; seconds-to-time date-to-time) "time-date" "calendar/time-date.el" 28161;;;;;; seconds-to-time date-to-time) "time-date" "calendar/time-date.el"
28211;;;;;; (19775 2027)) 28162;;;;;; (19845 45374))
28212;;; Generated autoloads from calendar/time-date.el 28163;;; Generated autoloads from calendar/time-date.el
28213 28164
28214(autoload 'date-to-time "time-date" "\ 28165(autoload 'date-to-time "time-date" "\
@@ -28322,7 +28273,7 @@ This function does not work for SECONDS greater than `most-positive-fixnum'.
28322;;;*** 28273;;;***
28323 28274
28324;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp" 28275;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp"
28325;;;;;; "time-stamp.el" (19780 4514)) 28276;;;;;; "time-stamp.el" (19845 45374))
28326;;; Generated autoloads from time-stamp.el 28277;;; Generated autoloads from time-stamp.el
28327(put 'time-stamp-format 'safe-local-variable 'stringp) 28278(put 'time-stamp-format 'safe-local-variable 'stringp)
28328(put 'time-stamp-time-zone 'safe-local-variable 'string-or-null-p) 28279(put 'time-stamp-time-zone 'safe-local-variable 'string-or-null-p)
@@ -28366,7 +28317,7 @@ With ARG, turn time stamping on if and only if arg is positive.
28366;;;;;; timeclock-workday-remaining-string timeclock-reread-log timeclock-query-out 28317;;;;;; timeclock-workday-remaining-string timeclock-reread-log timeclock-query-out
28367;;;;;; timeclock-change timeclock-status-string timeclock-out timeclock-in 28318;;;;;; timeclock-change timeclock-status-string timeclock-out timeclock-in
28368;;;;;; timeclock-modeline-display) "timeclock" "calendar/timeclock.el" 28319;;;;;; timeclock-modeline-display) "timeclock" "calendar/timeclock.el"
28369;;;;;; (19775 2027)) 28320;;;;;; (19845 45374))
28370;;; Generated autoloads from calendar/timeclock.el 28321;;; Generated autoloads from calendar/timeclock.el
28371 28322
28372(autoload 'timeclock-modeline-display "timeclock" "\ 28323(autoload 'timeclock-modeline-display "timeclock" "\
@@ -28466,7 +28417,7 @@ relative only to the time worked today, and not to past time.
28466;;;*** 28417;;;***
28467 28418
28468;;;### (autoloads (batch-titdic-convert titdic-convert) "titdic-cnv" 28419;;;### (autoloads (batch-titdic-convert titdic-convert) "titdic-cnv"
28469;;;;;; "international/titdic-cnv.el" (19775 2028)) 28420;;;;;; "international/titdic-cnv.el" (19845 45374))
28470;;; Generated autoloads from international/titdic-cnv.el 28421;;; Generated autoloads from international/titdic-cnv.el
28471 28422
28472(autoload 'titdic-convert "titdic-cnv" "\ 28423(autoload 'titdic-convert "titdic-cnv" "\
@@ -28489,7 +28440,7 @@ To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\".
28489;;;*** 28440;;;***
28490 28441
28491;;;### (autoloads (tmm-prompt tmm-menubar-mouse tmm-menubar) "tmm" 28442;;;### (autoloads (tmm-prompt tmm-menubar-mouse tmm-menubar) "tmm"
28492;;;;;; "tmm.el" (19775 2030)) 28443;;;;;; "tmm.el" (19845 45374))
28493;;; Generated autoloads from tmm.el 28444;;; Generated autoloads from tmm.el
28494 (define-key global-map "\M-`" 'tmm-menubar) 28445 (define-key global-map "\M-`" 'tmm-menubar)
28495 (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse) 28446 (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse)
@@ -28529,7 +28480,7 @@ Its value should be an event that has a binding in MENU.
28529 28480
28530;;;### (autoloads (todo-show todo-cp todo-mode todo-print todo-top-priorities 28481;;;### (autoloads (todo-show todo-cp todo-mode todo-print todo-top-priorities
28531;;;;;; todo-insert-item todo-add-item-non-interactively todo-add-category) 28482;;;;;; todo-insert-item todo-add-item-non-interactively todo-add-category)
28532;;;;;; "todo-mode" "calendar/todo-mode.el" (19775 2027)) 28483;;;;;; "todo-mode" "calendar/todo-mode.el" (19845 45374))
28533;;; Generated autoloads from calendar/todo-mode.el 28484;;; Generated autoloads from calendar/todo-mode.el
28534 28485
28535(autoload 'todo-add-category "todo-mode" "\ 28486(autoload 'todo-add-category "todo-mode" "\
@@ -28589,7 +28540,7 @@ Show TODO list.
28589 28540
28590;;;### (autoloads (tool-bar-local-item-from-menu tool-bar-add-item-from-menu 28541;;;### (autoloads (tool-bar-local-item-from-menu tool-bar-add-item-from-menu
28591;;;;;; tool-bar-local-item tool-bar-add-item toggle-tool-bar-mode-from-frame) 28542;;;;;; tool-bar-local-item tool-bar-add-item toggle-tool-bar-mode-from-frame)
28592;;;;;; "tool-bar" "tool-bar.el" (19775 2030)) 28543;;;;;; "tool-bar" "tool-bar.el" (19845 45374))
28593;;; Generated autoloads from tool-bar.el 28544;;; Generated autoloads from tool-bar.el
28594 28545
28595(autoload 'toggle-tool-bar-mode-from-frame "tool-bar" "\ 28546(autoload 'toggle-tool-bar-mode-from-frame "tool-bar" "\
@@ -28660,7 +28611,7 @@ holds a keymap.
28660;;;*** 28611;;;***
28661 28612
28662;;;### (autoloads (tpu-edt-on tpu-edt-mode) "tpu-edt" "emulation/tpu-edt.el" 28613;;;### (autoloads (tpu-edt-on tpu-edt-mode) "tpu-edt" "emulation/tpu-edt.el"
28663;;;;;; (19780 4513)) 28614;;;;;; (19845 45374))
28664;;; Generated autoloads from emulation/tpu-edt.el 28615;;; Generated autoloads from emulation/tpu-edt.el
28665 28616
28666(defvar tpu-edt-mode nil "\ 28617(defvar tpu-edt-mode nil "\
@@ -28687,7 +28638,7 @@ Turn on TPU/edt emulation.
28687;;;*** 28638;;;***
28688 28639
28689;;;### (autoloads (tpu-mapper) "tpu-mapper" "emulation/tpu-mapper.el" 28640;;;### (autoloads (tpu-mapper) "tpu-mapper" "emulation/tpu-mapper.el"
28690;;;;;; (19775 2028)) 28641;;;;;; (19845 45374))
28691;;; Generated autoloads from emulation/tpu-mapper.el 28642;;; Generated autoloads from emulation/tpu-mapper.el
28692 28643
28693(autoload 'tpu-mapper "tpu-mapper" "\ 28644(autoload 'tpu-mapper "tpu-mapper" "\
@@ -28721,7 +28672,7 @@ your local X guru can try to figure out why the key is being ignored.
28721 28672
28722;;;*** 28673;;;***
28723 28674
28724;;;### (autoloads (tq-create) "tq" "emacs-lisp/tq.el" (19775 2028)) 28675;;;### (autoloads (tq-create) "tq" "emacs-lisp/tq.el" (19845 45374))
28725;;; Generated autoloads from emacs-lisp/tq.el 28676;;; Generated autoloads from emacs-lisp/tq.el
28726 28677
28727(autoload 'tq-create "tq" "\ 28678(autoload 'tq-create "tq" "\
@@ -28735,7 +28686,7 @@ to a tcp server on another machine.
28735;;;*** 28686;;;***
28736 28687
28737;;;### (autoloads (trace-function-background trace-function trace-buffer) 28688;;;### (autoloads (trace-function-background trace-function trace-buffer)
28738;;;;;; "trace" "emacs-lisp/trace.el" (19775 2028)) 28689;;;;;; "trace" "emacs-lisp/trace.el" (19845 45374))
28739;;; Generated autoloads from emacs-lisp/trace.el 28690;;; Generated autoloads from emacs-lisp/trace.el
28740 28691
28741(defvar trace-buffer (purecopy "*trace-output*") "\ 28692(defvar trace-buffer (purecopy "*trace-output*") "\
@@ -28772,7 +28723,7 @@ BUFFER defaults to `trace-buffer'.
28772;;;### (autoloads (tramp-unload-tramp tramp-completion-handle-file-name-completion 28723;;;### (autoloads (tramp-unload-tramp tramp-completion-handle-file-name-completion
28773;;;;;; tramp-completion-handle-file-name-all-completions tramp-unload-file-name-handlers 28724;;;;;; tramp-completion-handle-file-name-all-completions tramp-unload-file-name-handlers
28774;;;;;; tramp-file-name-handler tramp-syntax tramp-mode) "tramp" 28725;;;;;; tramp-file-name-handler tramp-syntax tramp-mode) "tramp"
28775;;;;;; "net/tramp.el" (19775 2029)) 28726;;;;;; "net/tramp.el" (19845 45374))
28776;;; Generated autoloads from net/tramp.el 28727;;; Generated autoloads from net/tramp.el
28777 28728
28778(defvar tramp-mode t "\ 28729(defvar tramp-mode t "\
@@ -28888,7 +28839,7 @@ Add Tramp file name handlers to `file-name-handler-alist'." (let ((a1 (rassq (qu
28888(tramp-register-file-name-handlers) 28839(tramp-register-file-name-handlers)
28889 28840
28890(autoload 'tramp-unload-file-name-handlers "tramp" "\ 28841(autoload 'tramp-unload-file-name-handlers "tramp" "\
28891Not documented 28842
28892 28843
28893\(fn)" nil nil) 28844\(fn)" nil nil)
28894 28845
@@ -28910,18 +28861,18 @@ Discard Tramp from loading remote files.
28910;;;*** 28861;;;***
28911 28862
28912;;;### (autoloads (tramp-ftp-enable-ange-ftp) "tramp-ftp" "net/tramp-ftp.el" 28863;;;### (autoloads (tramp-ftp-enable-ange-ftp) "tramp-ftp" "net/tramp-ftp.el"
28913;;;;;; (19775 2029)) 28864;;;;;; (19845 45374))
28914;;; Generated autoloads from net/tramp-ftp.el 28865;;; Generated autoloads from net/tramp-ftp.el
28915 28866
28916(autoload 'tramp-ftp-enable-ange-ftp "tramp-ftp" "\ 28867(autoload 'tramp-ftp-enable-ange-ftp "tramp-ftp" "\
28917Not documented 28868
28918 28869
28919\(fn)" nil nil) 28870\(fn)" nil nil)
28920 28871
28921;;;*** 28872;;;***
28922 28873
28923;;;### (autoloads (help-with-tutorial) "tutorial" "tutorial.el" (19775 28874;;;### (autoloads (help-with-tutorial) "tutorial" "tutorial.el" (19845
28924;;;;;; 2030)) 28875;;;;;; 45374))
28925;;; Generated autoloads from tutorial.el 28876;;; Generated autoloads from tutorial.el
28926 28877
28927(autoload 'help-with-tutorial "tutorial" "\ 28878(autoload 'help-with-tutorial "tutorial" "\
@@ -28946,18 +28897,18 @@ resumed later.
28946;;;*** 28897;;;***
28947 28898
28948;;;### (autoloads (tai-viet-composition-function) "tv-util" "language/tv-util.el" 28899;;;### (autoloads (tai-viet-composition-function) "tv-util" "language/tv-util.el"
28949;;;;;; (19763 27286)) 28900;;;;;; (19845 45374))
28950;;; Generated autoloads from language/tv-util.el 28901;;; Generated autoloads from language/tv-util.el
28951 28902
28952(autoload 'tai-viet-composition-function "tv-util" "\ 28903(autoload 'tai-viet-composition-function "tv-util" "\
28953Not documented 28904
28954 28905
28955\(fn FROM TO FONT-OBJECT STRING)" nil nil) 28906\(fn FROM TO FONT-OBJECT STRING)" nil nil)
28956 28907
28957;;;*** 28908;;;***
28958 28909
28959;;;### (autoloads (2C-split 2C-associate-buffer 2C-two-columns) "two-column" 28910;;;### (autoloads (2C-split 2C-associate-buffer 2C-two-columns) "two-column"
28960;;;;;; "textmodes/two-column.el" (19775 2030)) 28911;;;;;; "textmodes/two-column.el" (19845 45374))
28961;;; Generated autoloads from textmodes/two-column.el 28912;;; Generated autoloads from textmodes/two-column.el
28962 (autoload '2C-command "two-column" () t 'keymap) 28913 (autoload '2C-command "two-column" () t 'keymap)
28963 (global-set-key "\C-x6" '2C-command) 28914 (global-set-key "\C-x6" '2C-command)
@@ -29008,7 +28959,7 @@ First column's text sSs Second column's text
29008;;;;;; type-break type-break-mode type-break-keystroke-threshold 28959;;;;;; type-break type-break-mode type-break-keystroke-threshold
29009;;;;;; type-break-good-break-interval type-break-good-rest-interval 28960;;;;;; type-break-good-break-interval type-break-good-rest-interval
29010;;;;;; type-break-interval type-break-mode) "type-break" "type-break.el" 28961;;;;;; type-break-interval type-break-mode) "type-break" "type-break.el"
29011;;;;;; (19775 2030)) 28962;;;;;; (19845 45374))
29012;;; Generated autoloads from type-break.el 28963;;; Generated autoloads from type-break.el
29013 28964
29014(defvar type-break-mode nil "\ 28965(defvar type-break-mode nil "\
@@ -29190,7 +29141,7 @@ FRAC should be the inverse of the fractional value; for example, a value of
29190 29141
29191;;;*** 29142;;;***
29192 29143
29193;;;### (autoloads (uce-reply-to-uce) "uce" "mail/uce.el" (19775 2029)) 29144;;;### (autoloads (uce-reply-to-uce) "uce" "mail/uce.el" (19845 45374))
29194;;; Generated autoloads from mail/uce.el 29145;;; Generated autoloads from mail/uce.el
29195 29146
29196(autoload 'uce-reply-to-uce "uce" "\ 29147(autoload 'uce-reply-to-uce "uce" "\
@@ -29208,7 +29159,7 @@ You might need to set `uce-mail-reader' before using this.
29208;;;;;; ucs-normalize-NFKC-string ucs-normalize-NFKC-region ucs-normalize-NFKD-string 29159;;;;;; ucs-normalize-NFKC-string ucs-normalize-NFKC-region ucs-normalize-NFKD-string
29209;;;;;; ucs-normalize-NFKD-region ucs-normalize-NFC-string ucs-normalize-NFC-region 29160;;;;;; ucs-normalize-NFKD-region ucs-normalize-NFC-string ucs-normalize-NFC-region
29210;;;;;; ucs-normalize-NFD-string ucs-normalize-NFD-region) "ucs-normalize" 29161;;;;;; ucs-normalize-NFD-string ucs-normalize-NFD-region) "ucs-normalize"
29211;;;;;; "international/ucs-normalize.el" (19780 4513)) 29162;;;;;; "international/ucs-normalize.el" (19845 45374))
29212;;; Generated autoloads from international/ucs-normalize.el 29163;;; Generated autoloads from international/ucs-normalize.el
29213 29164
29214(autoload 'ucs-normalize-NFD-region "ucs-normalize" "\ 29165(autoload 'ucs-normalize-NFD-region "ucs-normalize" "\
@@ -29274,7 +29225,7 @@ Normalize the string STR by the Unicode NFC and Mac OS's HFS Plus.
29274;;;*** 29225;;;***
29275 29226
29276;;;### (autoloads (ununderline-region underline-region) "underline" 29227;;;### (autoloads (ununderline-region underline-region) "underline"
29277;;;;;; "textmodes/underline.el" (19775 2030)) 29228;;;;;; "textmodes/underline.el" (19845 45374))
29278;;; Generated autoloads from textmodes/underline.el 29229;;; Generated autoloads from textmodes/underline.el
29279 29230
29280(autoload 'underline-region "underline" "\ 29231(autoload 'underline-region "underline" "\
@@ -29295,7 +29246,7 @@ which specify the range to operate on.
29295;;;*** 29246;;;***
29296 29247
29297;;;### (autoloads (unrmail batch-unrmail) "unrmail" "mail/unrmail.el" 29248;;;### (autoloads (unrmail batch-unrmail) "unrmail" "mail/unrmail.el"
29298;;;;;; (19775 2029)) 29249;;;;;; (19845 45374))
29299;;; Generated autoloads from mail/unrmail.el 29250;;; Generated autoloads from mail/unrmail.el
29300 29251
29301(autoload 'batch-unrmail "unrmail" "\ 29252(autoload 'batch-unrmail "unrmail" "\
@@ -29314,8 +29265,8 @@ Convert old-style Rmail Babyl file FILE to system inbox format file TO-FILE.
29314 29265
29315;;;*** 29266;;;***
29316 29267
29317;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (19775 29268;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (19845
29318;;;;;; 2028)) 29269;;;;;; 45374))
29319;;; Generated autoloads from emacs-lisp/unsafep.el 29270;;; Generated autoloads from emacs-lisp/unsafep.el
29320 29271
29321(autoload 'unsafep "unsafep" "\ 29272(autoload 'unsafep "unsafep" "\
@@ -29328,7 +29279,7 @@ UNSAFEP-VARS is a list of symbols with local bindings.
29328;;;*** 29279;;;***
29329 29280
29330;;;### (autoloads (url-retrieve-synchronously url-retrieve) "url" 29281;;;### (autoloads (url-retrieve-synchronously url-retrieve) "url"
29331;;;;;; "url/url.el" (19775 2030)) 29282;;;;;; "url/url.el" (19845 45374))
29332;;; Generated autoloads from url/url.el 29283;;; Generated autoloads from url/url.el
29333 29284
29334(autoload 'url-retrieve "url" "\ 29285(autoload 'url-retrieve "url" "\
@@ -29370,7 +29321,7 @@ no further processing). URL is either a string or a parsed URL.
29370;;;*** 29321;;;***
29371 29322
29372;;;### (autoloads (url-register-auth-scheme url-get-authentication) 29323;;;### (autoloads (url-register-auth-scheme url-get-authentication)
29373;;;;;; "url-auth" "url/url-auth.el" (19775 2030)) 29324;;;;;; "url-auth" "url/url-auth.el" (19845 45374))
29374;;; Generated autoloads from url/url-auth.el 29325;;; Generated autoloads from url/url-auth.el
29375 29326
29376(autoload 'url-get-authentication "url-auth" "\ 29327(autoload 'url-get-authentication "url-auth" "\
@@ -29412,7 +29363,7 @@ RATING a rating between 1 and 10 of the strength of the authentication.
29412;;;*** 29363;;;***
29413 29364
29414;;;### (autoloads (url-cache-extract url-is-cached url-store-in-cache) 29365;;;### (autoloads (url-cache-extract url-is-cached url-store-in-cache)
29415;;;;;; "url-cache" "url/url-cache.el" (19775 2030)) 29366;;;;;; "url-cache" "url/url-cache.el" (19845 45374))
29416;;; Generated autoloads from url/url-cache.el 29367;;; Generated autoloads from url/url-cache.el
29417 29368
29418(autoload 'url-store-in-cache "url-cache" "\ 29369(autoload 'url-store-in-cache "url-cache" "\
@@ -29433,34 +29384,34 @@ Extract FNAM from the local disk cache.
29433 29384
29434;;;*** 29385;;;***
29435 29386
29436;;;### (autoloads (url-cid) "url-cid" "url/url-cid.el" (19780 4514)) 29387;;;### (autoloads (url-cid) "url-cid" "url/url-cid.el" (19845 45374))
29437;;; Generated autoloads from url/url-cid.el 29388;;; Generated autoloads from url/url-cid.el
29438 29389
29439(autoload 'url-cid "url-cid" "\ 29390(autoload 'url-cid "url-cid" "\
29440Not documented 29391
29441 29392
29442\(fn URL)" nil nil) 29393\(fn URL)" nil nil)
29443 29394
29444;;;*** 29395;;;***
29445 29396
29446;;;### (autoloads (url-dav-vc-registered url-dav-supported-p) "url-dav" 29397;;;### (autoloads (url-dav-vc-registered url-dav-supported-p) "url-dav"
29447;;;;;; "url/url-dav.el" (19780 4514)) 29398;;;;;; "url/url-dav.el" (19845 45374))
29448;;; Generated autoloads from url/url-dav.el 29399;;; Generated autoloads from url/url-dav.el
29449 29400
29450(autoload 'url-dav-supported-p "url-dav" "\ 29401(autoload 'url-dav-supported-p "url-dav" "\
29451Not documented 29402
29452 29403
29453\(fn URL)" nil nil) 29404\(fn URL)" nil nil)
29454 29405
29455(autoload 'url-dav-vc-registered "url-dav" "\ 29406(autoload 'url-dav-vc-registered "url-dav" "\
29456Not documented 29407
29457 29408
29458\(fn URL)" nil nil) 29409\(fn URL)" nil nil)
29459 29410
29460;;;*** 29411;;;***
29461 29412
29462;;;### (autoloads (url-file) "url-file" "url/url-file.el" (19775 29413;;;### (autoloads (url-file) "url-file" "url/url-file.el" (19845
29463;;;;;; 2030)) 29414;;;;;; 45374))
29464;;; Generated autoloads from url/url-file.el 29415;;; Generated autoloads from url/url-file.el
29465 29416
29466(autoload 'url-file "url-file" "\ 29417(autoload 'url-file "url-file" "\
@@ -29471,7 +29422,7 @@ Handle file: and ftp: URLs.
29471;;;*** 29422;;;***
29472 29423
29473;;;### (autoloads (url-open-stream url-gateway-nslookup-host) "url-gw" 29424;;;### (autoloads (url-open-stream url-gateway-nslookup-host) "url-gw"
29474;;;;;; "url/url-gw.el" (19780 4514)) 29425;;;;;; "url/url-gw.el" (19864 29553))
29475;;; Generated autoloads from url/url-gw.el 29426;;; Generated autoloads from url/url-gw.el
29476 29427
29477(autoload 'url-gateway-nslookup-host "url-gw" "\ 29428(autoload 'url-gateway-nslookup-host "url-gw" "\
@@ -29491,7 +29442,7 @@ Might do a non-blocking connection; use `process-status' to check.
29491 29442
29492;;;### (autoloads (url-insert-file-contents url-file-local-copy url-copy-file 29443;;;### (autoloads (url-insert-file-contents url-file-local-copy url-copy-file
29493;;;;;; url-file-handler url-handler-mode) "url-handlers" "url/url-handlers.el" 29444;;;;;; url-file-handler url-handler-mode) "url-handlers" "url/url-handlers.el"
29494;;;;;; (19775 2030)) 29445;;;;;; (19845 45374))
29495;;; Generated autoloads from url/url-handlers.el 29446;;; Generated autoloads from url/url-handlers.el
29496 29447
29497(defvar url-handler-mode nil "\ 29448(defvar url-handler-mode nil "\
@@ -29536,14 +29487,14 @@ accessible.
29536\(fn URL &rest IGNORED)" nil nil) 29487\(fn URL &rest IGNORED)" nil nil)
29537 29488
29538(autoload 'url-insert-file-contents "url-handlers" "\ 29489(autoload 'url-insert-file-contents "url-handlers" "\
29539Not documented 29490
29540 29491
29541\(fn URL &optional VISIT BEG END REPLACE)" nil nil) 29492\(fn URL &optional VISIT BEG END REPLACE)" nil nil)
29542 29493
29543;;;*** 29494;;;***
29544 29495
29545;;;### (autoloads (url-http-options url-http-file-attributes url-http-file-exists-p 29496;;;### (autoloads (url-http-options url-http-file-attributes url-http-file-exists-p
29546;;;;;; url-http) "url-http" "url/url-http.el" (19775 2030)) 29497;;;;;; url-http) "url-http" "url/url-http.el" (19845 45374))
29547;;; Generated autoloads from url/url-http.el 29498;;; Generated autoloads from url/url-http.el
29548 29499
29549(autoload 'url-http "url-http" "\ 29500(autoload 'url-http "url-http" "\
@@ -29555,14 +29506,14 @@ CBARGS as the arguments.
29555\(fn URL CALLBACK CBARGS)" nil nil) 29506\(fn URL CALLBACK CBARGS)" nil nil)
29556 29507
29557(autoload 'url-http-file-exists-p "url-http" "\ 29508(autoload 'url-http-file-exists-p "url-http" "\
29558Not documented 29509
29559 29510
29560\(fn URL)" nil nil) 29511\(fn URL)" nil nil)
29561 29512
29562(defalias 'url-http-file-readable-p 'url-http-file-exists-p) 29513(defalias 'url-http-file-readable-p 'url-http-file-exists-p)
29563 29514
29564(autoload 'url-http-file-attributes "url-http" "\ 29515(autoload 'url-http-file-attributes "url-http" "\
29565Not documented 29516
29566 29517
29567\(fn URL &optional ID-FORMAT)" nil nil) 29518\(fn URL &optional ID-FORMAT)" nil nil)
29568 29519
@@ -29609,18 +29560,18 @@ HTTPS retrievals are asynchronous.")
29609 29560
29610;;;*** 29561;;;***
29611 29562
29612;;;### (autoloads (url-irc) "url-irc" "url/url-irc.el" (19775 2030)) 29563;;;### (autoloads (url-irc) "url-irc" "url/url-irc.el" (19845 45374))
29613;;; Generated autoloads from url/url-irc.el 29564;;; Generated autoloads from url/url-irc.el
29614 29565
29615(autoload 'url-irc "url-irc" "\ 29566(autoload 'url-irc "url-irc" "\
29616Not documented 29567
29617 29568
29618\(fn URL)" nil nil) 29569\(fn URL)" nil nil)
29619 29570
29620;;;*** 29571;;;***
29621 29572
29622;;;### (autoloads (url-ldap) "url-ldap" "url/url-ldap.el" (19775 29573;;;### (autoloads (url-ldap) "url-ldap" "url/url-ldap.el" (19845
29623;;;;;; 2030)) 29574;;;;;; 45374))
29624;;; Generated autoloads from url/url-ldap.el 29575;;; Generated autoloads from url/url-ldap.el
29625 29576
29626(autoload 'url-ldap "url-ldap" "\ 29577(autoload 'url-ldap "url-ldap" "\
@@ -29634,11 +29585,11 @@ URL can be a URL string, or a URL vector of the type returned by
29634;;;*** 29585;;;***
29635 29586
29636;;;### (autoloads (url-mailto url-mail) "url-mailto" "url/url-mailto.el" 29587;;;### (autoloads (url-mailto url-mail) "url-mailto" "url/url-mailto.el"
29637;;;;;; (19775 2030)) 29588;;;;;; (19845 45374))
29638;;; Generated autoloads from url/url-mailto.el 29589;;; Generated autoloads from url/url-mailto.el
29639 29590
29640(autoload 'url-mail "url-mailto" "\ 29591(autoload 'url-mail "url-mailto" "\
29641Not documented 29592
29642 29593
29643\(fn &rest ARGS)" t nil) 29594\(fn &rest ARGS)" t nil)
29644 29595
@@ -29650,7 +29601,7 @@ Handle the mailto: URL syntax.
29650;;;*** 29601;;;***
29651 29602
29652;;;### (autoloads (url-data url-generic-emulator-loader url-info 29603;;;### (autoloads (url-data url-generic-emulator-loader url-info
29653;;;;;; url-man) "url-misc" "url/url-misc.el" (19775 2030)) 29604;;;;;; url-man) "url-misc" "url/url-misc.el" (19845 45374))
29654;;; Generated autoloads from url/url-misc.el 29605;;; Generated autoloads from url/url-misc.el
29655 29606
29656(autoload 'url-man "url-misc" "\ 29607(autoload 'url-man "url-misc" "\
@@ -29664,7 +29615,7 @@ Fetch a GNU Info URL.
29664\(fn URL)" nil nil) 29615\(fn URL)" nil nil)
29665 29616
29666(autoload 'url-generic-emulator-loader "url-misc" "\ 29617(autoload 'url-generic-emulator-loader "url-misc" "\
29667Not documented 29618
29668 29619
29669\(fn URL)" nil nil) 29620\(fn URL)" nil nil)
29670 29621
@@ -29682,16 +29633,16 @@ Fetch a data URL (RFC 2397).
29682;;;*** 29633;;;***
29683 29634
29684;;;### (autoloads (url-snews url-news) "url-news" "url/url-news.el" 29635;;;### (autoloads (url-snews url-news) "url-news" "url/url-news.el"
29685;;;;;; (19775 2030)) 29636;;;;;; (19845 45374))
29686;;; Generated autoloads from url/url-news.el 29637;;; Generated autoloads from url/url-news.el
29687 29638
29688(autoload 'url-news "url-news" "\ 29639(autoload 'url-news "url-news" "\
29689Not documented 29640
29690 29641
29691\(fn URL)" nil nil) 29642\(fn URL)" nil nil)
29692 29643
29693(autoload 'url-snews "url-news" "\ 29644(autoload 'url-snews "url-news" "\
29694Not documented 29645
29695 29646
29696\(fn URL)" nil nil) 29647\(fn URL)" nil nil)
29697 29648
@@ -29699,48 +29650,48 @@ Not documented
29699 29650
29700;;;### (autoloads (url-ns-user-pref url-ns-prefs isInNet isResolvable 29651;;;### (autoloads (url-ns-user-pref url-ns-prefs isInNet isResolvable
29701;;;;;; dnsResolve dnsDomainIs isPlainHostName) "url-ns" "url/url-ns.el" 29652;;;;;; dnsResolve dnsDomainIs isPlainHostName) "url-ns" "url/url-ns.el"
29702;;;;;; (19775 2030)) 29653;;;;;; (19845 45374))
29703;;; Generated autoloads from url/url-ns.el 29654;;; Generated autoloads from url/url-ns.el
29704 29655
29705(autoload 'isPlainHostName "url-ns" "\ 29656(autoload 'isPlainHostName "url-ns" "\
29706Not documented 29657
29707 29658
29708\(fn HOST)" nil nil) 29659\(fn HOST)" nil nil)
29709 29660
29710(autoload 'dnsDomainIs "url-ns" "\ 29661(autoload 'dnsDomainIs "url-ns" "\
29711Not documented 29662
29712 29663
29713\(fn HOST DOM)" nil nil) 29664\(fn HOST DOM)" nil nil)
29714 29665
29715(autoload 'dnsResolve "url-ns" "\ 29666(autoload 'dnsResolve "url-ns" "\
29716Not documented 29667
29717 29668
29718\(fn HOST)" nil nil) 29669\(fn HOST)" nil nil)
29719 29670
29720(autoload 'isResolvable "url-ns" "\ 29671(autoload 'isResolvable "url-ns" "\
29721Not documented 29672
29722 29673
29723\(fn HOST)" nil nil) 29674\(fn HOST)" nil nil)
29724 29675
29725(autoload 'isInNet "url-ns" "\ 29676(autoload 'isInNet "url-ns" "\
29726Not documented 29677
29727 29678
29728\(fn IP NET MASK)" nil nil) 29679\(fn IP NET MASK)" nil nil)
29729 29680
29730(autoload 'url-ns-prefs "url-ns" "\ 29681(autoload 'url-ns-prefs "url-ns" "\
29731Not documented 29682
29732 29683
29733\(fn &optional FILE)" nil nil) 29684\(fn &optional FILE)" nil nil)
29734 29685
29735(autoload 'url-ns-user-pref "url-ns" "\ 29686(autoload 'url-ns-user-pref "url-ns" "\
29736Not documented 29687
29737 29688
29738\(fn KEY &optional DEFAULT)" nil nil) 29689\(fn KEY &optional DEFAULT)" nil nil)
29739 29690
29740;;;*** 29691;;;***
29741 29692
29742;;;### (autoloads (url-generic-parse-url url-recreate-url) "url-parse" 29693;;;### (autoloads (url-generic-parse-url url-recreate-url) "url-parse"
29743;;;;;; "url/url-parse.el" (19775 2030)) 29694;;;;;; "url/url-parse.el" (19845 45374))
29744;;; Generated autoloads from url/url-parse.el 29695;;; Generated autoloads from url/url-parse.el
29745 29696
29746(autoload 'url-recreate-url "url-parse" "\ 29697(autoload 'url-recreate-url "url-parse" "\
@@ -29758,7 +29709,7 @@ TYPE USER PASSWORD HOST PORTSPEC FILENAME TARGET ATTRIBUTES FULLNESS.
29758;;;*** 29709;;;***
29759 29710
29760;;;### (autoloads (url-setup-privacy-info) "url-privacy" "url/url-privacy.el" 29711;;;### (autoloads (url-setup-privacy-info) "url-privacy" "url/url-privacy.el"
29761;;;;;; (19775 2030)) 29712;;;;;; (19845 45374))
29762;;; Generated autoloads from url/url-privacy.el 29713;;; Generated autoloads from url/url-privacy.el
29763 29714
29764(autoload 'url-setup-privacy-info "url-privacy" "\ 29715(autoload 'url-setup-privacy-info "url-privacy" "\
@@ -29774,7 +29725,7 @@ Setup variables that expose info about you and your system.
29774;;;;;; url-pretty-length url-strip-leading-spaces url-eat-trailing-space 29725;;;;;; url-pretty-length url-strip-leading-spaces url-eat-trailing-space
29775;;;;;; url-get-normalized-date url-lazy-message url-normalize-url 29726;;;;;; url-get-normalized-date url-lazy-message url-normalize-url
29776;;;;;; url-insert-entities-in-string url-parse-args url-debug url-debug) 29727;;;;;; url-insert-entities-in-string url-parse-args url-debug url-debug)
29777;;;;;; "url-util" "url/url-util.el" (19775 2030)) 29728;;;;;; "url-util" "url/url-util.el" (19845 45374))
29778;;; Generated autoloads from url/url-util.el 29729;;; Generated autoloads from url/url-util.el
29779 29730
29780(defvar url-debug nil "\ 29731(defvar url-debug nil "\
@@ -29788,12 +29739,12 @@ If a list, it is a list of the types of messages to be logged.")
29788(custom-autoload 'url-debug "url-util" t) 29739(custom-autoload 'url-debug "url-util" t)
29789 29740
29790(autoload 'url-debug "url-util" "\ 29741(autoload 'url-debug "url-util" "\
29791Not documented 29742
29792 29743
29793\(fn TAG &rest ARGS)" nil nil) 29744\(fn TAG &rest ARGS)" nil nil)
29794 29745
29795(autoload 'url-parse-args "url-util" "\ 29746(autoload 'url-parse-args "url-util" "\
29796Not documented 29747
29797 29748
29798\(fn STR &optional NODOWNCASE)" nil nil) 29749\(fn STR &optional NODOWNCASE)" nil nil)
29799 29750
@@ -29837,17 +29788,17 @@ Remove spaces at the front of a string.
29837\(fn X)" nil nil) 29788\(fn X)" nil nil)
29838 29789
29839(autoload 'url-pretty-length "url-util" "\ 29790(autoload 'url-pretty-length "url-util" "\
29840Not documented 29791
29841 29792
29842\(fn N)" nil nil) 29793\(fn N)" nil nil)
29843 29794
29844(autoload 'url-display-percentage "url-util" "\ 29795(autoload 'url-display-percentage "url-util" "\
29845Not documented 29796
29846 29797
29847\(fn FMT PERC &rest ARGS)" nil nil) 29798\(fn FMT PERC &rest ARGS)" nil nil)
29848 29799
29849(autoload 'url-percentage "url-util" "\ 29800(autoload 'url-percentage "url-util" "\
29850Not documented 29801
29851 29802
29852\(fn X Y)" nil nil) 29803\(fn X Y)" nil nil)
29853 29804
@@ -29864,7 +29815,7 @@ Return the nondirectory part of FILE, for a URL.
29864\(fn FILE)" nil nil) 29815\(fn FILE)" nil nil)
29865 29816
29866(autoload 'url-parse-query-string "url-util" "\ 29817(autoload 'url-parse-query-string "url-util" "\
29867Not documented 29818
29868 29819
29869\(fn QUERY &optional DOWNCASE ALLOW-NEWLINES)" nil nil) 29820\(fn QUERY &optional DOWNCASE ALLOW-NEWLINES)" nil nil)
29870 29821
@@ -29910,7 +29861,7 @@ This uses `url-current-object', set locally to the buffer.
29910;;;*** 29861;;;***
29911 29862
29912;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) 29863;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock)
29913;;;;;; "userlock" "userlock.el" (19775 2030)) 29864;;;;;; "userlock" "userlock.el" (19845 45374))
29914;;; Generated autoloads from userlock.el 29865;;; Generated autoloads from userlock.el
29915 29866
29916(autoload 'ask-user-about-lock "userlock" "\ 29867(autoload 'ask-user-about-lock "userlock" "\
@@ -29940,32 +29891,32 @@ The buffer in question is current when this function is called.
29940 29891
29941;;;### (autoloads (utf-7-imap-pre-write-conversion utf-7-pre-write-conversion 29892;;;### (autoloads (utf-7-imap-pre-write-conversion utf-7-pre-write-conversion
29942;;;;;; utf-7-imap-post-read-conversion utf-7-post-read-conversion) 29893;;;;;; utf-7-imap-post-read-conversion utf-7-post-read-conversion)
29943;;;;;; "utf-7" "international/utf-7.el" (19780 4513)) 29894;;;;;; "utf-7" "international/utf-7.el" (19845 45374))
29944;;; Generated autoloads from international/utf-7.el 29895;;; Generated autoloads from international/utf-7.el
29945 29896
29946(autoload 'utf-7-post-read-conversion "utf-7" "\ 29897(autoload 'utf-7-post-read-conversion "utf-7" "\
29947Not documented 29898
29948 29899
29949\(fn LEN)" nil nil) 29900\(fn LEN)" nil nil)
29950 29901
29951(autoload 'utf-7-imap-post-read-conversion "utf-7" "\ 29902(autoload 'utf-7-imap-post-read-conversion "utf-7" "\
29952Not documented 29903
29953 29904
29954\(fn LEN)" nil nil) 29905\(fn LEN)" nil nil)
29955 29906
29956(autoload 'utf-7-pre-write-conversion "utf-7" "\ 29907(autoload 'utf-7-pre-write-conversion "utf-7" "\
29957Not documented 29908
29958 29909
29959\(fn FROM TO)" nil nil) 29910\(fn FROM TO)" nil nil)
29960 29911
29961(autoload 'utf-7-imap-pre-write-conversion "utf-7" "\ 29912(autoload 'utf-7-imap-pre-write-conversion "utf-7" "\
29962Not documented 29913
29963 29914
29964\(fn FROM TO)" nil nil) 29915\(fn FROM TO)" nil nil)
29965 29916
29966;;;*** 29917;;;***
29967 29918
29968;;;### (autoloads (utf7-encode) "utf7" "gnus/utf7.el" (19775 2028)) 29919;;;### (autoloads (utf7-encode) "utf7" "gnus/utf7.el" (19845 45374))
29969;;; Generated autoloads from gnus/utf7.el 29920;;; Generated autoloads from gnus/utf7.el
29970 29921
29971(autoload 'utf7-encode "utf7" "\ 29922(autoload 'utf7-encode "utf7" "\
@@ -29977,7 +29928,7 @@ Encode UTF-7 STRING. Use IMAP modification if FOR-IMAP is non-nil.
29977 29928
29978;;;### (autoloads (uudecode-decode-region uudecode-decode-region-internal 29929;;;### (autoloads (uudecode-decode-region uudecode-decode-region-internal
29979;;;;;; uudecode-decode-region-external) "uudecode" "mail/uudecode.el" 29930;;;;;; uudecode-decode-region-external) "uudecode" "mail/uudecode.el"
29980;;;;;; (19775 2029)) 29931;;;;;; (19845 45374))
29981;;; Generated autoloads from mail/uudecode.el 29932;;; Generated autoloads from mail/uudecode.el
29982 29933
29983(autoload 'uudecode-decode-region-external "uudecode" "\ 29934(autoload 'uudecode-decode-region-external "uudecode" "\
@@ -30007,7 +29958,7 @@ If FILE-NAME is non-nil, save the result to FILE-NAME.
30007;;;;;; vc-print-log vc-retrieve-tag vc-create-tag vc-merge vc-insert-headers 29958;;;;;; vc-print-log vc-retrieve-tag vc-create-tag vc-merge vc-insert-headers
30008;;;;;; vc-revision-other-window vc-root-diff vc-diff vc-version-diff 29959;;;;;; vc-revision-other-window vc-root-diff vc-diff vc-version-diff
30009;;;;;; vc-register vc-next-action vc-before-checkin-hook vc-checkin-hook 29960;;;;;; vc-register vc-next-action vc-before-checkin-hook vc-checkin-hook
30010;;;;;; vc-checkout-hook) "vc" "vc/vc.el" (19780 4515)) 29961;;;;;; vc-checkout-hook) "vc" "vc/vc.el" (19845 45374))
30011;;; Generated autoloads from vc/vc.el 29962;;; Generated autoloads from vc/vc.el
30012 29963
30013(defvar vc-checkout-hook nil "\ 29964(defvar vc-checkout-hook nil "\
@@ -30273,7 +30224,7 @@ Return the branch part of a revision number REV.
30273;;;*** 30224;;;***
30274 30225
30275;;;### (autoloads (vc-annotate) "vc-annotate" "vc/vc-annotate.el" 30226;;;### (autoloads (vc-annotate) "vc-annotate" "vc/vc-annotate.el"
30276;;;;;; (19775 2030)) 30227;;;;;; (19845 45374))
30277;;; Generated autoloads from vc/vc-annotate.el 30228;;; Generated autoloads from vc/vc-annotate.el
30278 30229
30279(autoload 'vc-annotate "vc-annotate" "\ 30230(autoload 'vc-annotate "vc-annotate" "\
@@ -30310,7 +30261,7 @@ mode-specific menu. `vc-annotate-color-map' and
30310 30261
30311;;;*** 30262;;;***
30312 30263
30313;;;### (autoloads nil "vc-arch" "vc/vc-arch.el" (19780 4514)) 30264;;;### (autoloads nil "vc-arch" "vc/vc-arch.el" (19845 45374))
30314;;; Generated autoloads from vc/vc-arch.el 30265;;; Generated autoloads from vc/vc-arch.el
30315 (defun vc-arch-registered (file) 30266 (defun vc-arch-registered (file)
30316 (if (vc-find-root file "{arch}/=tagging-method") 30267 (if (vc-find-root file "{arch}/=tagging-method")
@@ -30320,7 +30271,7 @@ mode-specific menu. `vc-annotate-color-map' and
30320 30271
30321;;;*** 30272;;;***
30322 30273
30323;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (19780 36416)) 30274;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (19845 45374))
30324;;; Generated autoloads from vc/vc-bzr.el 30275;;; Generated autoloads from vc/vc-bzr.el
30325 30276
30326(defconst vc-bzr-admin-dirname ".bzr" "\ 30277(defconst vc-bzr-admin-dirname ".bzr" "\
@@ -30335,7 +30286,7 @@ Name of the directory containing Bzr repository status files.")
30335 30286
30336;;;*** 30287;;;***
30337 30288
30338;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (19775 2030)) 30289;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (19845 45374))
30339;;; Generated autoloads from vc/vc-cvs.el 30290;;; Generated autoloads from vc/vc-cvs.el
30340 (defun vc-cvs-registered (f) 30291 (defun vc-cvs-registered (f)
30341 (when (file-readable-p (expand-file-name 30292 (when (file-readable-p (expand-file-name
@@ -30345,7 +30296,7 @@ Name of the directory containing Bzr repository status files.")
30345 30296
30346;;;*** 30297;;;***
30347 30298
30348;;;### (autoloads (vc-dir) "vc-dir" "vc/vc-dir.el" (19780 4514)) 30299;;;### (autoloads (vc-dir) "vc-dir" "vc/vc-dir.el" (19845 45374))
30349;;; Generated autoloads from vc/vc-dir.el 30300;;; Generated autoloads from vc/vc-dir.el
30350 30301
30351(autoload 'vc-dir "vc-dir" "\ 30302(autoload 'vc-dir "vc-dir" "\
@@ -30370,7 +30321,7 @@ These are the commands available for use in the file status buffer:
30370;;;*** 30321;;;***
30371 30322
30372;;;### (autoloads (vc-do-command) "vc-dispatcher" "vc/vc-dispatcher.el" 30323;;;### (autoloads (vc-do-command) "vc-dispatcher" "vc/vc-dispatcher.el"
30373;;;;;; (19780 36416)) 30324;;;;;; (19845 45374))
30374;;; Generated autoloads from vc/vc-dispatcher.el 30325;;; Generated autoloads from vc/vc-dispatcher.el
30375 30326
30376(autoload 'vc-do-command "vc-dispatcher" "\ 30327(autoload 'vc-do-command "vc-dispatcher" "\
@@ -30393,7 +30344,7 @@ case, and the process object in the asynchronous case.
30393 30344
30394;;;*** 30345;;;***
30395 30346
30396;;;### (autoloads nil "vc-git" "vc/vc-git.el" (19780 36416)) 30347;;;### (autoloads nil "vc-git" "vc/vc-git.el" (19845 45374))
30397;;; Generated autoloads from vc/vc-git.el 30348;;; Generated autoloads from vc/vc-git.el
30398 (defun vc-git-registered (file) 30349 (defun vc-git-registered (file)
30399 "Return non-nil if FILE is registered with git." 30350 "Return non-nil if FILE is registered with git."
@@ -30404,7 +30355,7 @@ case, and the process object in the asynchronous case.
30404 30355
30405;;;*** 30356;;;***
30406 30357
30407;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (19780 36416)) 30358;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (19845 45374))
30408;;; Generated autoloads from vc/vc-hg.el 30359;;; Generated autoloads from vc/vc-hg.el
30409 (defun vc-hg-registered (file) 30360 (defun vc-hg-registered (file)
30410 "Return non-nil if FILE is registered with hg." 30361 "Return non-nil if FILE is registered with hg."
@@ -30415,14 +30366,7 @@ case, and the process object in the asynchronous case.
30415 30366
30416;;;*** 30367;;;***
30417 30368
30418;;;### (autoloads nil "vc-hooks" "vc/vc-hooks.el" (19780 4514)) 30369;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (19845 45374))
30419;;; Generated autoloads from vc/vc-hooks.el
30420
30421(put 'vc-mode 'risky-local-variable t)
30422
30423;;;***
30424
30425;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (19775 2030))
30426;;; Generated autoloads from vc/vc-mtn.el 30370;;; Generated autoloads from vc/vc-mtn.el
30427 30371
30428(defconst vc-mtn-admin-dir "_MTN") 30372(defconst vc-mtn-admin-dir "_MTN")
@@ -30437,7 +30381,7 @@ case, and the process object in the asynchronous case.
30437;;;*** 30381;;;***
30438 30382
30439;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc/vc-rcs.el" 30383;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc/vc-rcs.el"
30440;;;;;; (19780 4515)) 30384;;;;;; (19845 45374))
30441;;; Generated autoloads from vc/vc-rcs.el 30385;;; Generated autoloads from vc/vc-rcs.el
30442 30386
30443(defvar vc-rcs-master-templates (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ 30387(defvar vc-rcs-master-templates (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\
@@ -30451,7 +30395,7 @@ For a description of possible values, see `vc-check-master-templates'.")
30451;;;*** 30395;;;***
30452 30396
30453;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc/vc-sccs.el" 30397;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc/vc-sccs.el"
30454;;;;;; (19780 4515)) 30398;;;;;; (19845 45374))
30455;;; Generated autoloads from vc/vc-sccs.el 30399;;; Generated autoloads from vc/vc-sccs.el
30456 30400
30457(defvar vc-sccs-master-templates (purecopy '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ 30401(defvar vc-sccs-master-templates (purecopy '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\
@@ -30468,23 +30412,21 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir)
30468 30412
30469;;;*** 30413;;;***
30470 30414
30471;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (19780 4515)) 30415;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (19845 45374))
30472;;; Generated autoloads from vc/vc-svn.el 30416;;; Generated autoloads from vc/vc-svn.el
30473 (defun vc-svn-registered (f) 30417 (defun vc-svn-registered (f)
30474 (let ((admin-dir (cond ((and (eq system-type 'windows-nt) 30418 (let ((admin-dir (cond ((and (eq system-type 'windows-nt)
30475 (getenv "SVN_ASP_DOT_NET_HACK")) 30419 (getenv "SVN_ASP_DOT_NET_HACK"))
30476 "_svn") 30420 "_svn")
30477 (t ".svn")))) 30421 (t ".svn"))))
30478 (when (file-readable-p (expand-file-name 30422 (when (vc-find-root f admin-dir)
30479 (concat admin-dir "/entries")
30480 (file-name-directory f)))
30481 (load "vc-svn") 30423 (load "vc-svn")
30482 (vc-svn-registered f)))) 30424 (vc-svn-registered f))))
30483 30425
30484;;;*** 30426;;;***
30485 30427
30486;;;### (autoloads (vera-mode) "vera-mode" "progmodes/vera-mode.el" 30428;;;### (autoloads (vera-mode) "vera-mode" "progmodes/vera-mode.el"
30487;;;;;; (19775 2029)) 30429;;;;;; (19845 45374))
30488;;; Generated autoloads from progmodes/vera-mode.el 30430;;; Generated autoloads from progmodes/vera-mode.el
30489 (add-to-list 'auto-mode-alist (cons (purecopy "\\.vr[hi]?\\'") 'vera-mode)) 30431 (add-to-list 'auto-mode-alist (cons (purecopy "\\.vr[hi]?\\'") 'vera-mode))
30490 30432
@@ -30542,7 +30484,7 @@ Key bindings:
30542;;;*** 30484;;;***
30543 30485
30544;;;### (autoloads (verilog-mode) "verilog-mode" "progmodes/verilog-mode.el" 30486;;;### (autoloads (verilog-mode) "verilog-mode" "progmodes/verilog-mode.el"
30545;;;;;; (19775 2029)) 30487;;;;;; (19845 45374))
30546;;; Generated autoloads from progmodes/verilog-mode.el 30488;;; Generated autoloads from progmodes/verilog-mode.el
30547 30489
30548(autoload 'verilog-mode "verilog-mode" "\ 30490(autoload 'verilog-mode "verilog-mode" "\
@@ -30679,7 +30621,7 @@ Key bindings specific to `verilog-mode-map' are:
30679;;;*** 30621;;;***
30680 30622
30681;;;### (autoloads (vhdl-mode) "vhdl-mode" "progmodes/vhdl-mode.el" 30623;;;### (autoloads (vhdl-mode) "vhdl-mode" "progmodes/vhdl-mode.el"
30682;;;;;; (19780 4514)) 30624;;;;;; (19845 45374))
30683;;; Generated autoloads from progmodes/vhdl-mode.el 30625;;; Generated autoloads from progmodes/vhdl-mode.el
30684 30626
30685(autoload 'vhdl-mode "vhdl-mode" "\ 30627(autoload 'vhdl-mode "vhdl-mode" "\
@@ -31220,7 +31162,7 @@ Key bindings:
31220 31162
31221;;;*** 31163;;;***
31222 31164
31223;;;### (autoloads (vi-mode) "vi" "emulation/vi.el" (19763 27286)) 31165;;;### (autoloads (vi-mode) "vi" "emulation/vi.el" (19845 45374))
31224;;; Generated autoloads from emulation/vi.el 31166;;; Generated autoloads from emulation/vi.el
31225 31167
31226(autoload 'vi-mode "vi" "\ 31168(autoload 'vi-mode "vi" "\
@@ -31275,7 +31217,7 @@ Syntax table and abbrevs while in vi mode remain as they were in Emacs.
31275;;;### (autoloads (viqr-pre-write-conversion viqr-post-read-conversion 31217;;;### (autoloads (viqr-pre-write-conversion viqr-post-read-conversion
31276;;;;;; viet-encode-viqr-buffer viet-encode-viqr-region viet-decode-viqr-buffer 31218;;;;;; viet-encode-viqr-buffer viet-encode-viqr-region viet-decode-viqr-buffer
31277;;;;;; viet-decode-viqr-region viet-encode-viscii-char) "viet-util" 31219;;;;;; viet-decode-viqr-region viet-encode-viscii-char) "viet-util"
31278;;;;;; "language/viet-util.el" (19780 4513)) 31220;;;;;; "language/viet-util.el" (19845 45374))
31279;;; Generated autoloads from language/viet-util.el 31221;;; Generated autoloads from language/viet-util.el
31280 31222
31281(autoload 'viet-encode-viscii-char "viet-util" "\ 31223(autoload 'viet-encode-viscii-char "viet-util" "\
@@ -31308,12 +31250,12 @@ Convert Vietnamese characters of the current buffer to `VIQR' mnemonics.
31308\(fn)" t nil) 31250\(fn)" t nil)
31309 31251
31310(autoload 'viqr-post-read-conversion "viet-util" "\ 31252(autoload 'viqr-post-read-conversion "viet-util" "\
31311Not documented 31253
31312 31254
31313\(fn LEN)" nil nil) 31255\(fn LEN)" nil nil)
31314 31256
31315(autoload 'viqr-pre-write-conversion "viet-util" "\ 31257(autoload 'viqr-pre-write-conversion "viet-util" "\
31316Not documented 31258
31317 31259
31318\(fn FROM TO)" nil nil) 31260\(fn FROM TO)" nil nil)
31319 31261
@@ -31323,7 +31265,7 @@ Not documented
31323;;;;;; view-mode view-buffer-other-frame view-buffer-other-window 31265;;;;;; view-mode view-buffer-other-frame view-buffer-other-window
31324;;;;;; view-buffer view-file-other-frame view-file-other-window 31266;;;;;; view-buffer view-file-other-frame view-file-other-window
31325;;;;;; view-file kill-buffer-if-not-modified view-remove-frame-by-deleting) 31267;;;;;; view-file kill-buffer-if-not-modified view-remove-frame-by-deleting)
31326;;;;;; "view" "view.el" (19780 4515)) 31268;;;;;; "view" "view.el" (19845 45374))
31327;;; Generated autoloads from view.el 31269;;; Generated autoloads from view.el
31328 31270
31329(defvar view-remove-frame-by-deleting t "\ 31271(defvar view-remove-frame-by-deleting t "\
@@ -31569,8 +31511,8 @@ Exit View mode and make the current buffer editable.
31569 31511
31570;;;*** 31512;;;***
31571 31513
31572;;;### (autoloads (vip-mode vip-setup) "vip" "emulation/vip.el" (19780 31514;;;### (autoloads (vip-mode vip-setup) "vip" "emulation/vip.el" (19845
31573;;;;;; 4513)) 31515;;;;;; 45374))
31574;;; Generated autoloads from emulation/vip.el 31516;;; Generated autoloads from emulation/vip.el
31575 31517
31576(autoload 'vip-setup "vip" "\ 31518(autoload 'vip-setup "vip" "\
@@ -31586,7 +31528,7 @@ Turn on VIP emulation of VI.
31586;;;*** 31528;;;***
31587 31529
31588;;;### (autoloads (viper-mode toggle-viper-mode) "viper" "emulation/viper.el" 31530;;;### (autoloads (viper-mode toggle-viper-mode) "viper" "emulation/viper.el"
31589;;;;;; (19775 2028)) 31531;;;;;; (19845 45374))
31590;;; Generated autoloads from emulation/viper.el 31532;;; Generated autoloads from emulation/viper.el
31591 31533
31592(autoload 'toggle-viper-mode "viper" "\ 31534(autoload 'toggle-viper-mode "viper" "\
@@ -31603,7 +31545,7 @@ Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Top'.
31603;;;*** 31545;;;***
31604 31546
31605;;;### (autoloads (warn lwarn display-warning) "warnings" "emacs-lisp/warnings.el" 31547;;;### (autoloads (warn lwarn display-warning) "warnings" "emacs-lisp/warnings.el"
31606;;;;;; (19775 2028)) 31548;;;;;; (19845 45374))
31607;;; Generated autoloads from emacs-lisp/warnings.el 31549;;; Generated autoloads from emacs-lisp/warnings.el
31608 31550
31609(defvar warning-prefix-function nil "\ 31551(defvar warning-prefix-function nil "\
@@ -31693,7 +31635,7 @@ this is equivalent to `display-warning', using
31693;;;*** 31635;;;***
31694 31636
31695;;;### (autoloads (wdired-change-to-wdired-mode) "wdired" "wdired.el" 31637;;;### (autoloads (wdired-change-to-wdired-mode) "wdired" "wdired.el"
31696;;;;;; (19780 4515)) 31638;;;;;; (19845 45374))
31697;;; Generated autoloads from wdired.el 31639;;; Generated autoloads from wdired.el
31698 31640
31699(autoload 'wdired-change-to-wdired-mode "wdired" "\ 31641(autoload 'wdired-change-to-wdired-mode "wdired" "\
@@ -31709,7 +31651,7 @@ See `wdired-mode'.
31709 31651
31710;;;*** 31652;;;***
31711 31653
31712;;;### (autoloads (webjump) "webjump" "net/webjump.el" (19775 2029)) 31654;;;### (autoloads (webjump) "webjump" "net/webjump.el" (19845 45374))
31713;;; Generated autoloads from net/webjump.el 31655;;; Generated autoloads from net/webjump.el
31714 31656
31715(autoload 'webjump "webjump" "\ 31657(autoload 'webjump "webjump" "\
@@ -31726,7 +31668,7 @@ Please submit bug reports and other feedback to the author, Neil W. Van Dyke
31726;;;*** 31668;;;***
31727 31669
31728;;;### (autoloads (which-function-mode) "which-func" "progmodes/which-func.el" 31670;;;### (autoloads (which-function-mode) "which-func" "progmodes/which-func.el"
31729;;;;;; (19775 2029)) 31671;;;;;; (19845 45374))
31730;;; Generated autoloads from progmodes/which-func.el 31672;;; Generated autoloads from progmodes/which-func.el
31731 (put 'which-func-format 'risky-local-variable t) 31673 (put 'which-func-format 'risky-local-variable t)
31732 (put 'which-func-current 'risky-local-variable t) 31674 (put 'which-func-current 'risky-local-variable t)
@@ -31757,7 +31699,7 @@ and off otherwise.
31757;;;### (autoloads (whitespace-report-region whitespace-report whitespace-cleanup-region 31699;;;### (autoloads (whitespace-report-region whitespace-report whitespace-cleanup-region
31758;;;;;; whitespace-cleanup global-whitespace-toggle-options whitespace-toggle-options 31700;;;;;; whitespace-cleanup global-whitespace-toggle-options whitespace-toggle-options
31759;;;;;; global-whitespace-newline-mode global-whitespace-mode whitespace-newline-mode 31701;;;;;; global-whitespace-newline-mode global-whitespace-mode whitespace-newline-mode
31760;;;;;; whitespace-mode) "whitespace" "whitespace.el" (19780 4515)) 31702;;;;;; whitespace-mode) "whitespace" "whitespace.el" (19845 45374))
31761;;; Generated autoloads from whitespace.el 31703;;; Generated autoloads from whitespace.el
31762 31704
31763(autoload 'whitespace-mode "whitespace" "\ 31705(autoload 'whitespace-mode "whitespace" "\
@@ -32160,7 +32102,7 @@ cleaning up these problems.
32160;;;*** 32102;;;***
32161 32103
32162;;;### (autoloads (widget-minor-mode widget-browse-other-window widget-browse 32104;;;### (autoloads (widget-minor-mode widget-browse-other-window widget-browse
32163;;;;;; widget-browse-at) "wid-browse" "wid-browse.el" (19775 2030)) 32105;;;;;; widget-browse-at) "wid-browse" "wid-browse.el" (19845 45374))
32164;;; Generated autoloads from wid-browse.el 32106;;; Generated autoloads from wid-browse.el
32165 32107
32166(autoload 'widget-browse-at "wid-browse" "\ 32108(autoload 'widget-browse-at "wid-browse" "\
@@ -32187,8 +32129,8 @@ With arg, turn widget mode on if and only if arg is positive.
32187;;;*** 32129;;;***
32188 32130
32189;;;### (autoloads (widget-setup widget-insert widget-delete widget-create 32131;;;### (autoloads (widget-setup widget-insert widget-delete widget-create
32190;;;;;; widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (19775 32132;;;;;; widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (19845
32191;;;;;; 2030)) 32133;;;;;; 45374))
32192;;; Generated autoloads from wid-edit.el 32134;;; Generated autoloads from wid-edit.el
32193 32135
32194(autoload 'widgetp "wid-edit" "\ 32136(autoload 'widgetp "wid-edit" "\
@@ -32231,8 +32173,8 @@ Setup current buffer so editing string widgets works.
32231;;;*** 32173;;;***
32232 32174
32233;;;### (autoloads (windmove-default-keybindings windmove-down windmove-right 32175;;;### (autoloads (windmove-default-keybindings windmove-down windmove-right
32234;;;;;; windmove-up windmove-left) "windmove" "windmove.el" (19775 32176;;;;;; windmove-up windmove-left) "windmove" "windmove.el" (19845
32235;;;;;; 2030)) 32177;;;;;; 45374))
32236;;; Generated autoloads from windmove.el 32178;;; Generated autoloads from windmove.el
32237 32179
32238(autoload 'windmove-left "windmove" "\ 32180(autoload 'windmove-left "windmove" "\
@@ -32284,15 +32226,8 @@ Default MODIFIER is 'shift.
32284 32226
32285;;;*** 32227;;;***
32286 32228
32287;;;### (autoloads nil "window" "window.el" (19775 2030))
32288;;; Generated autoloads from window.el
32289
32290(put 'special-display-buffer-names 'risky-local-variable t)
32291
32292;;;***
32293
32294;;;### (autoloads (winner-mode winner-mode) "winner" "winner.el" 32229;;;### (autoloads (winner-mode winner-mode) "winner" "winner.el"
32295;;;;;; (19775 2030)) 32230;;;;;; (19845 45374))
32296;;; Generated autoloads from winner.el 32231;;; Generated autoloads from winner.el
32297 32232
32298(defvar winner-mode nil "\ 32233(defvar winner-mode nil "\
@@ -32311,7 +32246,7 @@ With arg, turn Winner mode on if and only if arg is positive.
32311;;;*** 32246;;;***
32312 32247
32313;;;### (autoloads (woman-bookmark-jump woman-find-file woman-dired-find-file 32248;;;### (autoloads (woman-bookmark-jump woman-find-file woman-dired-find-file
32314;;;;;; woman woman-locale) "woman" "woman.el" (19780 4515)) 32249;;;;;; woman woman-locale) "woman" "woman.el" (19845 45374))
32315;;; Generated autoloads from woman.el 32250;;; Generated autoloads from woman.el
32316 32251
32317(defvar woman-locale nil "\ 32252(defvar woman-locale nil "\
@@ -32360,7 +32295,7 @@ Default bookmark handler for Woman buffers.
32360;;;*** 32295;;;***
32361 32296
32362;;;### (autoloads (wordstar-mode) "ws-mode" "emulation/ws-mode.el" 32297;;;### (autoloads (wordstar-mode) "ws-mode" "emulation/ws-mode.el"
32363;;;;;; (19775 2028)) 32298;;;;;; (19845 45374))
32364;;; Generated autoloads from emulation/ws-mode.el 32299;;; Generated autoloads from emulation/ws-mode.el
32365 32300
32366(autoload 'wordstar-mode "ws-mode" "\ 32301(autoload 'wordstar-mode "ws-mode" "\
@@ -32472,7 +32407,7 @@ The key bindings are:
32472 32407
32473;;;*** 32408;;;***
32474 32409
32475;;;### (autoloads (xesam-search) "xesam" "net/xesam.el" (19775 2029)) 32410;;;### (autoloads (xesam-search) "xesam" "net/xesam.el" (19845 45374))
32476;;; Generated autoloads from net/xesam.el 32411;;; Generated autoloads from net/xesam.el
32477 32412
32478(autoload 'xesam-search "xesam" "\ 32413(autoload 'xesam-search "xesam" "\
@@ -32492,7 +32427,7 @@ Example:
32492;;;*** 32427;;;***
32493 32428
32494;;;### (autoloads (xml-parse-region xml-parse-file) "xml" "xml.el" 32429;;;### (autoloads (xml-parse-region xml-parse-file) "xml" "xml.el"
32495;;;;;; (19775 2030)) 32430;;;;;; (19845 45374))
32496;;; Generated autoloads from xml.el 32431;;; Generated autoloads from xml.el
32497 32432
32498(autoload 'xml-parse-file "xml" "\ 32433(autoload 'xml-parse-file "xml" "\
@@ -32518,7 +32453,7 @@ If PARSE-NS is non-nil, then QNAMES are expanded.
32518;;;*** 32453;;;***
32519 32454
32520;;;### (autoloads (xmltok-get-declared-encoding-position) "xmltok" 32455;;;### (autoloads (xmltok-get-declared-encoding-position) "xmltok"
32521;;;;;; "nxml/xmltok.el" (19775 2029)) 32456;;;;;; "nxml/xmltok.el" (19845 45374))
32522;;; Generated autoloads from nxml/xmltok.el 32457;;; Generated autoloads from nxml/xmltok.el
32523 32458
32524(autoload 'xmltok-get-declared-encoding-position "xmltok" "\ 32459(autoload 'xmltok-get-declared-encoding-position "xmltok" "\
@@ -32536,8 +32471,8 @@ If LIMIT is non-nil, then do not consider characters beyond LIMIT.
32536 32471
32537;;;*** 32472;;;***
32538 32473
32539;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (19775 32474;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (19845
32540;;;;;; 2030)) 32475;;;;;; 45374))
32541;;; Generated autoloads from xt-mouse.el 32476;;; Generated autoloads from xt-mouse.el
32542 32477
32543(defvar xterm-mouse-mode nil "\ 32478(defvar xterm-mouse-mode nil "\
@@ -32566,7 +32501,7 @@ down the SHIFT key while pressing the mouse button.
32566;;;*** 32501;;;***
32567 32502
32568;;;### (autoloads (yenc-extract-filename yenc-decode-region) "yenc" 32503;;;### (autoloads (yenc-extract-filename yenc-decode-region) "yenc"
32569;;;;;; "gnus/yenc.el" (19775 2028)) 32504;;;;;; "gnus/yenc.el" (19845 45374))
32570;;; Generated autoloads from gnus/yenc.el 32505;;; Generated autoloads from gnus/yenc.el
32571 32506
32572(autoload 'yenc-decode-region "yenc" "\ 32507(autoload 'yenc-decode-region "yenc" "\
@@ -32582,7 +32517,7 @@ Extract file name from an yenc header.
32582;;;*** 32517;;;***
32583 32518
32584;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism 32519;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism
32585;;;;;; yow) "yow" "play/yow.el" (19775 2029)) 32520;;;;;; yow) "yow" "play/yow.el" (19845 45374))
32586;;; Generated autoloads from play/yow.el 32521;;; Generated autoloads from play/yow.el
32587 32522
32588(autoload 'yow "yow" "\ 32523(autoload 'yow "yow" "\
@@ -32608,7 +32543,7 @@ Zippy goes to the analyst.
32608 32543
32609;;;*** 32544;;;***
32610 32545
32611;;;### (autoloads (zone) "zone" "play/zone.el" (19775 2029)) 32546;;;### (autoloads (zone) "zone" "play/zone.el" (19845 45374))
32612;;; Generated autoloads from play/zone.el 32547;;; Generated autoloads from play/zone.el
32613 32548
32614(autoload 'zone "zone" "\ 32549(autoload 'zone "zone" "\
@@ -32618,42 +32553,41 @@ Zone out, completely.
32618 32553
32619;;;*** 32554;;;***
32620 32555
32621;;;### (autoloads nil nil ("abbrev.el" "bindings.el" "button.el" 32556;;;### (autoloads nil nil ("calc/calc-aent.el" "calc/calc-alg.el"
32622;;;;;; "calc/calc-aent.el" "calc/calc-alg.el" "calc/calc-arith.el" 32557;;;;;; "calc/calc-arith.el" "calc/calc-bin.el" "calc/calc-comb.el"
32623;;;;;; "calc/calc-bin.el" "calc/calc-comb.el" "calc/calc-cplx.el" 32558;;;;;; "calc/calc-cplx.el" "calc/calc-embed.el" "calc/calc-ext.el"
32624;;;;;; "calc/calc-embed.el" "calc/calc-ext.el" "calc/calc-fin.el" 32559;;;;;; "calc/calc-fin.el" "calc/calc-forms.el" "calc/calc-frac.el"
32625;;;;;; "calc/calc-forms.el" "calc/calc-frac.el" "calc/calc-funcs.el" 32560;;;;;; "calc/calc-funcs.el" "calc/calc-graph.el" "calc/calc-help.el"
32626;;;;;; "calc/calc-graph.el" "calc/calc-help.el" "calc/calc-incom.el" 32561;;;;;; "calc/calc-incom.el" "calc/calc-keypd.el" "calc/calc-lang.el"
32627;;;;;; "calc/calc-keypd.el" "calc/calc-lang.el" "calc/calc-loaddefs.el" 32562;;;;;; "calc/calc-loaddefs.el" "calc/calc-macs.el" "calc/calc-map.el"
32628;;;;;; "calc/calc-macs.el" "calc/calc-map.el" "calc/calc-math.el" 32563;;;;;; "calc/calc-math.el" "calc/calc-menu.el" "calc/calc-misc.el"
32629;;;;;; "calc/calc-menu.el" "calc/calc-misc.el" "calc/calc-mode.el" 32564;;;;;; "calc/calc-mode.el" "calc/calc-mtx.el" "calc/calc-nlfit.el"
32630;;;;;; "calc/calc-mtx.el" "calc/calc-nlfit.el" "calc/calc-poly.el" 32565;;;;;; "calc/calc-poly.el" "calc/calc-prog.el" "calc/calc-rewr.el"
32631;;;;;; "calc/calc-prog.el" "calc/calc-rewr.el" "calc/calc-rules.el" 32566;;;;;; "calc/calc-rules.el" "calc/calc-sel.el" "calc/calc-stat.el"
32632;;;;;; "calc/calc-sel.el" "calc/calc-stat.el" "calc/calc-store.el" 32567;;;;;; "calc/calc-store.el" "calc/calc-stuff.el" "calc/calc-trail.el"
32633;;;;;; "calc/calc-stuff.el" "calc/calc-trail.el" "calc/calc-units.el" 32568;;;;;; "calc/calc-units.el" "calc/calc-vec.el" "calc/calc-yank.el"
32634;;;;;; "calc/calc-vec.el" "calc/calc-yank.el" "calc/calcalg2.el" 32569;;;;;; "calc/calcalg2.el" "calc/calcalg3.el" "calc/calccomp.el"
32635;;;;;; "calc/calcalg3.el" "calc/calccomp.el" "calc/calcsel2.el" 32570;;;;;; "calc/calcsel2.el" "calendar/cal-bahai.el" "calendar/cal-coptic.el"
32636;;;;;; "calendar/cal-bahai.el" "calendar/cal-coptic.el" "calendar/cal-french.el" 32571;;;;;; "calendar/cal-french.el" "calendar/cal-html.el" "calendar/cal-islam.el"
32637;;;;;; "calendar/cal-html.el" "calendar/cal-islam.el" "calendar/cal-iso.el" 32572;;;;;; "calendar/cal-iso.el" "calendar/cal-julian.el" "calendar/cal-loaddefs.el"
32638;;;;;; "calendar/cal-julian.el" "calendar/cal-loaddefs.el" "calendar/cal-mayan.el" 32573;;;;;; "calendar/cal-mayan.el" "calendar/cal-menu.el" "calendar/cal-move.el"
32639;;;;;; "calendar/cal-menu.el" "calendar/cal-move.el" "calendar/cal-persia.el" 32574;;;;;; "calendar/cal-persia.el" "calendar/cal-tex.el" "calendar/cal-x.el"
32640;;;;;; "calendar/cal-tex.el" "calendar/cal-x.el" "calendar/diary-loaddefs.el" 32575;;;;;; "calendar/diary-loaddefs.el" "calendar/hol-loaddefs.el" "cdl.el"
32641;;;;;; "calendar/hol-loaddefs.el" "case-table.el" "cdl.el" "cedet/cedet-cscope.el" 32576;;;;;; "cedet/cedet-cscope.el" "cedet/cedet-files.el" "cedet/cedet-global.el"
32642;;;;;; "cedet/cedet-files.el" "cedet/cedet-global.el" "cedet/cedet-idutils.el" 32577;;;;;; "cedet/cedet-idutils.el" "cedet/cedet.el" "cedet/ede/auto.el"
32643;;;;;; "cedet/cedet.el" "cedet/ede/auto.el" "cedet/ede/autoconf-edit.el" 32578;;;;;; "cedet/ede/autoconf-edit.el" "cedet/ede/base.el" "cedet/ede/cpp-root.el"
32644;;;;;; "cedet/ede/base.el" "cedet/ede/cpp-root.el" "cedet/ede/custom.el" 32579;;;;;; "cedet/ede/custom.el" "cedet/ede/dired.el" "cedet/ede/emacs.el"
32645;;;;;; "cedet/ede/dired.el" "cedet/ede/emacs.el" "cedet/ede/files.el" 32580;;;;;; "cedet/ede/files.el" "cedet/ede/generic.el" "cedet/ede/linux.el"
32646;;;;;; "cedet/ede/generic.el" "cedet/ede/linux.el" "cedet/ede/loaddefs.el" 32581;;;;;; "cedet/ede/loaddefs.el" "cedet/ede/locate.el" "cedet/ede/make.el"
32647;;;;;; "cedet/ede/locate.el" "cedet/ede/make.el" "cedet/ede/makefile-edit.el" 32582;;;;;; "cedet/ede/makefile-edit.el" "cedet/ede/pconf.el" "cedet/ede/pmake.el"
32648;;;;;; "cedet/ede/pconf.el" "cedet/ede/pmake.el" "cedet/ede/proj-archive.el" 32583;;;;;; "cedet/ede/proj-archive.el" "cedet/ede/proj-aux.el" "cedet/ede/proj-comp.el"
32649;;;;;; "cedet/ede/proj-aux.el" "cedet/ede/proj-comp.el" "cedet/ede/proj-elisp.el" 32584;;;;;; "cedet/ede/proj-elisp.el" "cedet/ede/proj-info.el" "cedet/ede/proj-misc.el"
32650;;;;;; "cedet/ede/proj-info.el" "cedet/ede/proj-misc.el" "cedet/ede/proj-obj.el" 32585;;;;;; "cedet/ede/proj-obj.el" "cedet/ede/proj-prog.el" "cedet/ede/proj-scheme.el"
32651;;;;;; "cedet/ede/proj-prog.el" "cedet/ede/proj-scheme.el" "cedet/ede/proj-shared.el" 32586;;;;;; "cedet/ede/proj-shared.el" "cedet/ede/proj.el" "cedet/ede/project-am.el"
32652;;;;;; "cedet/ede/proj.el" "cedet/ede/project-am.el" "cedet/ede/shell.el" 32587;;;;;; "cedet/ede/shell.el" "cedet/ede/simple.el" "cedet/ede/source.el"
32653;;;;;; "cedet/ede/simple.el" "cedet/ede/source.el" "cedet/ede/speedbar.el" 32588;;;;;; "cedet/ede/speedbar.el" "cedet/ede/srecode.el" "cedet/ede/system.el"
32654;;;;;; "cedet/ede/srecode.el" "cedet/ede/system.el" "cedet/ede/util.el" 32589;;;;;; "cedet/ede/util.el" "cedet/inversion.el" "cedet/mode-local.el"
32655;;;;;; "cedet/inversion.el" "cedet/mode-local.el" "cedet/pulse.el" 32590;;;;;; "cedet/pulse.el" "cedet/semantic/analyze.el" "cedet/semantic/analyze/complete.el"
32656;;;;;; "cedet/semantic/analyze.el" "cedet/semantic/analyze/complete.el"
32657;;;;;; "cedet/semantic/analyze/debug.el" "cedet/semantic/analyze/fcn.el" 32591;;;;;; "cedet/semantic/analyze/debug.el" "cedet/semantic/analyze/fcn.el"
32658;;;;;; "cedet/semantic/analyze/refs.el" "cedet/semantic/bovine.el" 32592;;;;;; "cedet/semantic/analyze/refs.el" "cedet/semantic/bovine.el"
32659;;;;;; "cedet/semantic/bovine/c-by.el" "cedet/semantic/bovine/c.el" 32593;;;;;; "cedet/semantic/bovine/c-by.el" "cedet/semantic/bovine/c.el"
@@ -32694,47 +32628,41 @@ Zone out, completely.
32694;;;;;; "cedet/srecode/loaddefs.el" "cedet/srecode/map.el" "cedet/srecode/mode.el" 32628;;;;;; "cedet/srecode/loaddefs.el" "cedet/srecode/map.el" "cedet/srecode/mode.el"
32695;;;;;; "cedet/srecode/semantic.el" "cedet/srecode/srt-wy.el" "cedet/srecode/srt.el" 32629;;;;;; "cedet/srecode/semantic.el" "cedet/srecode/srt-wy.el" "cedet/srecode/srt.el"
32696;;;;;; "cedet/srecode/table.el" "cedet/srecode/template.el" "cedet/srecode/texi.el" 32630;;;;;; "cedet/srecode/table.el" "cedet/srecode/template.el" "cedet/srecode/texi.el"
32697;;;;;; "color.el" "cus-dep.el" "cus-face.el" "cus-load.el" "cus-start.el" 32631;;;;;; "cus-dep.el" "dframe.el" "dired-aux.el" "dired-x.el" "dos-fns.el"
32698;;;;;; "custom.el" "dframe.el" "dired-aux.el" "dired-x.el" "dos-fns.el"
32699;;;;;; "dos-vars.el" "dos-w32.el" "dynamic-setting.el" "emacs-lisp/assoc.el" 32632;;;;;; "dos-vars.el" "dos-w32.el" "dynamic-setting.el" "emacs-lisp/assoc.el"
32700;;;;;; "emacs-lisp/authors.el" "emacs-lisp/avl-tree.el" "emacs-lisp/backquote.el" 32633;;;;;; "emacs-lisp/authors.el" "emacs-lisp/avl-tree.el" "emacs-lisp/bindat.el"
32701;;;;;; "emacs-lisp/bindat.el" "emacs-lisp/byte-opt.el" "emacs-lisp/byte-run.el" 32634;;;;;; "emacs-lisp/byte-opt.el" "emacs-lisp/chart.el" "emacs-lisp/cl-extra.el"
32702;;;;;; "emacs-lisp/chart.el" "emacs-lisp/cl-extra.el" "emacs-lisp/cl-loaddefs.el" 32635;;;;;; "emacs-lisp/cl-loaddefs.el" "emacs-lisp/cl-macs.el" "emacs-lisp/cl-seq.el"
32703;;;;;; "emacs-lisp/cl-macs.el" "emacs-lisp/cl-seq.el" "emacs-lisp/cl-specs.el" 32636;;;;;; "emacs-lisp/cl-specs.el" "emacs-lisp/cust-print.el" "emacs-lisp/eieio-base.el"
32704;;;;;; "emacs-lisp/cust-print.el" "emacs-lisp/eieio-base.el" "emacs-lisp/eieio-comp.el"
32705;;;;;; "emacs-lisp/eieio-custom.el" "emacs-lisp/eieio-datadebug.el" 32637;;;;;; "emacs-lisp/eieio-custom.el" "emacs-lisp/eieio-datadebug.el"
32706;;;;;; "emacs-lisp/eieio-opt.el" "emacs-lisp/eieio-speedbar.el" 32638;;;;;; "emacs-lisp/eieio-opt.el" "emacs-lisp/eieio-speedbar.el"
32707;;;;;; "emacs-lisp/eieio.el" "emacs-lisp/find-gc.el" "emacs-lisp/float-sup.el" 32639;;;;;; "emacs-lisp/eieio.el" "emacs-lisp/find-gc.el" "emacs-lisp/gulp.el"
32708;;;;;; "emacs-lisp/gulp.el" "emacs-lisp/lisp-mnt.el" "emacs-lisp/lisp-mode.el" 32640;;;;;; "emacs-lisp/lisp-mnt.el" "emacs-lisp/package-x.el" "emacs-lisp/regi.el"
32709;;;;;; "emacs-lisp/lisp.el" "emacs-lisp/map-ynp.el" "emacs-lisp/package-x.el" 32641;;;;;; "emacs-lisp/smie.el" "emacs-lisp/tcover-ses.el" "emacs-lisp/tcover-unsafep.el"
32710;;;;;; "emacs-lisp/regi.el" "emacs-lisp/smie.el" "emacs-lisp/syntax.el" 32642;;;;;; "emacs-lock.el" "emulation/cua-gmrk.el" "emulation/cua-rect.el"
32711;;;;;; "emacs-lisp/tcover-ses.el" "emacs-lisp/tcover-unsafep.el" 32643;;;;;; "emulation/edt-lk201.el" "emulation/edt-mapper.el" "emulation/edt-pc.el"
32712;;;;;; "emacs-lisp/timer.el" "emacs-lock.el" "emulation/cua-gmrk.el" 32644;;;;;; "emulation/edt-vt100.el" "emulation/tpu-extras.el" "emulation/viper-cmd.el"
32713;;;;;; "emulation/cua-rect.el" "emulation/edt-lk201.el" "emulation/edt-mapper.el" 32645;;;;;; "emulation/viper-ex.el" "emulation/viper-init.el" "emulation/viper-keym.el"
32714;;;;;; "emulation/edt-pc.el" "emulation/edt-vt100.el" "emulation/tpu-extras.el" 32646;;;;;; "emulation/viper-macs.el" "emulation/viper-mous.el" "emulation/viper-util.el"
32715;;;;;; "emulation/viper-cmd.el" "emulation/viper-ex.el" "emulation/viper-init.el" 32647;;;;;; "erc/erc-backend.el" "erc/erc-goodies.el" "erc/erc-ibuffer.el"
32716;;;;;; "emulation/viper-keym.el" "emulation/viper-macs.el" "emulation/viper-mous.el" 32648;;;;;; "erc/erc-lang.el" "eshell/em-alias.el" "eshell/em-banner.el"
32717;;;;;; "emulation/viper-util.el" "env.el" "epa-hook.el" "erc/erc-backend.el" 32649;;;;;; "eshell/em-basic.el" "eshell/em-cmpl.el" "eshell/em-dirs.el"
32718;;;;;; "erc/erc-goodies.el" "erc/erc-ibuffer.el" "erc/erc-lang.el" 32650;;;;;; "eshell/em-glob.el" "eshell/em-hist.el" "eshell/em-ls.el"
32719;;;;;; "eshell/em-alias.el" "eshell/em-banner.el" "eshell/em-basic.el" 32651;;;;;; "eshell/em-pred.el" "eshell/em-prompt.el" "eshell/em-rebind.el"
32720;;;;;; "eshell/em-cmpl.el" "eshell/em-dirs.el" "eshell/em-glob.el" 32652;;;;;; "eshell/em-script.el" "eshell/em-smart.el" "eshell/em-term.el"
32721;;;;;; "eshell/em-hist.el" "eshell/em-ls.el" "eshell/em-pred.el" 32653;;;;;; "eshell/em-unix.el" "eshell/em-xtra.el" "eshell/esh-arg.el"
32722;;;;;; "eshell/em-prompt.el" "eshell/em-rebind.el" "eshell/em-script.el" 32654;;;;;; "eshell/esh-cmd.el" "eshell/esh-ext.el" "eshell/esh-groups.el"
32723;;;;;; "eshell/em-smart.el" "eshell/em-term.el" "eshell/em-unix.el" 32655;;;;;; "eshell/esh-io.el" "eshell/esh-module.el" "eshell/esh-opt.el"
32724;;;;;; "eshell/em-xtra.el" "eshell/esh-arg.el" "eshell/esh-cmd.el" 32656;;;;;; "eshell/esh-proc.el" "eshell/esh-util.el" "eshell/esh-var.el"
32725;;;;;; "eshell/esh-ext.el" "eshell/esh-groups.el" "eshell/esh-io.el" 32657;;;;;; "ezimage.el" "foldout.el" "format-spec.el" "forms-d2.el"
32726;;;;;; "eshell/esh-module.el" "eshell/esh-opt.el" "eshell/esh-proc.el" 32658;;;;;; "forms-pass.el" "fringe.el" "generic-x.el" "gnus/compface.el"
32727;;;;;; "eshell/esh-util.el" "eshell/esh-var.el" "ezimage.el" "facemenu.el"
32728;;;;;; "faces.el" "files.el" "finder-inf.el" "foldout.el" "font-lock.el"
32729;;;;;; "format-spec.el" "forms-d2.el" "forms-pass.el" "frame.el"
32730;;;;;; "fringe.el" "generic-x.el" "gnus/auth-source.el" "gnus/compface.el"
32731;;;;;; "gnus/gnus-async.el" "gnus/gnus-bcklg.el" "gnus/gnus-cite.el" 32659;;;;;; "gnus/gnus-async.el" "gnus/gnus-bcklg.el" "gnus/gnus-cite.el"
32732;;;;;; "gnus/gnus-cus.el" "gnus/gnus-demon.el" "gnus/gnus-dup.el" 32660;;;;;; "gnus/gnus-cus.el" "gnus/gnus-demon.el" "gnus/gnus-dup.el"
32733;;;;;; "gnus/gnus-eform.el" "gnus/gnus-ems.el" "gnus/gnus-int.el" 32661;;;;;; "gnus/gnus-eform.el" "gnus/gnus-ems.el" "gnus/gnus-int.el"
32734;;;;;; "gnus/gnus-logic.el" "gnus/gnus-mh.el" "gnus/gnus-salt.el" 32662;;;;;; "gnus/gnus-logic.el" "gnus/gnus-mh.el" "gnus/gnus-salt.el"
32735;;;;;; "gnus/gnus-score.el" "gnus/gnus-setup.el" "gnus/gnus-srvr.el" 32663;;;;;; "gnus/gnus-score.el" "gnus/gnus-setup.el" "gnus/gnus-srvr.el"
32736;;;;;; "gnus/gnus-topic.el" "gnus/gnus-undo.el" "gnus/gnus-util.el" 32664;;;;;; "gnus/gnus-topic.el" "gnus/gnus-undo.el" "gnus/gnus-util.el"
32737;;;;;; "gnus/gnus-uu.el" "gnus/gnus-vm.el" "gnus/ietf-drums.el" 32665;;;;;; "gnus/gnus-uu.el" "gnus/gnus-vm.el" "gnus/gssapi.el" "gnus/ietf-drums.el"
32738;;;;;; "gnus/legacy-gnus-agent.el" "gnus/mail-parse.el" "gnus/mail-prsvr.el" 32666;;;;;; "gnus/legacy-gnus-agent.el" "gnus/mail-parse.el" "gnus/mail-prsvr.el"
32739;;;;;; "gnus/mail-source.el" "gnus/mailcap.el" "gnus/messcompat.el" 32667;;;;;; "gnus/mail-source.el" "gnus/mailcap.el" "gnus/messcompat.el"
32740;;;;;; "gnus/mm-bodies.el" "gnus/mm-decode.el" "gnus/mm-encode.el" 32668;;;;;; "gnus/mm-bodies.el" "gnus/mm-decode.el" "gnus/mm-encode.el"
@@ -32745,33 +32673,23 @@ Zone out, completely.
32745;;;;;; "gnus/nnmaildir.el" "gnus/nnmairix.el" "gnus/nnmbox.el" "gnus/nnmh.el" 32673;;;;;; "gnus/nnmaildir.el" "gnus/nnmairix.el" "gnus/nnmbox.el" "gnus/nnmh.el"
32746;;;;;; "gnus/nnnil.el" "gnus/nnoo.el" "gnus/nnregistry.el" "gnus/nnrss.el" 32674;;;;;; "gnus/nnnil.el" "gnus/nnoo.el" "gnus/nnregistry.el" "gnus/nnrss.el"
32747;;;;;; "gnus/nnspool.el" "gnus/nntp.el" "gnus/nnvirtual.el" "gnus/nnweb.el" 32675;;;;;; "gnus/nnspool.el" "gnus/nntp.el" "gnus/nnvirtual.el" "gnus/nnweb.el"
32748;;;;;; "gnus/rfc1843.el" "gnus/rfc2045.el" "gnus/rfc2047.el" "gnus/rfc2104.el" 32676;;;;;; "gnus/registry.el" "gnus/rfc1843.el" "gnus/rfc2045.el" "gnus/rfc2047.el"
32749;;;;;; "gnus/rfc2231.el" "gnus/rtree.el" "gnus/shr-color.el" "gnus/sieve-manage.el" 32677;;;;;; "gnus/rfc2104.el" "gnus/rfc2231.el" "gnus/rtree.el" "gnus/shr-color.el"
32750;;;;;; "gnus/smime.el" "gnus/spam-stat.el" "gnus/spam-wash.el" "help.el" 32678;;;;;; "gnus/sieve-manage.el" "gnus/smime.el" "gnus/spam-stat.el"
32751;;;;;; "hex-util.el" "hfy-cmap.el" "ibuf-ext.el" "indent.el" "international/characters.el" 32679;;;;;; "gnus/spam-wash.el" "hex-util.el" "hfy-cmap.el" "ibuf-ext.el"
32752;;;;;; "international/charprop.el" "international/cp51932.el" "international/eucjp-ms.el" 32680;;;;;; "international/charprop.el" "international/cp51932.el" "international/eucjp-ms.el"
32753;;;;;; "international/fontset.el" "international/iso-ascii.el" "international/ja-dic-cnv.el" 32681;;;;;; "international/fontset.el" "international/iso-ascii.el" "international/ja-dic-cnv.el"
32754;;;;;; "international/ja-dic-utl.el" "international/mule-conf.el" 32682;;;;;; "international/ja-dic-utl.el" "international/ogonek.el" "international/uni-bidi.el"
32755;;;;;; "international/mule.el" "international/ogonek.el" "international/uni-bidi.el"
32756;;;;;; "international/uni-category.el" "international/uni-combining.el" 32683;;;;;; "international/uni-category.el" "international/uni-combining.el"
32757;;;;;; "international/uni-comment.el" "international/uni-decimal.el" 32684;;;;;; "international/uni-comment.el" "international/uni-decimal.el"
32758;;;;;; "international/uni-decomposition.el" "international/uni-digit.el" 32685;;;;;; "international/uni-decomposition.el" "international/uni-digit.el"
32759;;;;;; "international/uni-lowercase.el" "international/uni-mirrored.el" 32686;;;;;; "international/uni-lowercase.el" "international/uni-mirrored.el"
32760;;;;;; "international/uni-name.el" "international/uni-numeric.el" 32687;;;;;; "international/uni-name.el" "international/uni-numeric.el"
32761;;;;;; "international/uni-old-name.el" "international/uni-titlecase.el" 32688;;;;;; "international/uni-old-name.el" "international/uni-titlecase.el"
32762;;;;;; "international/uni-uppercase.el" "isearch.el" "jit-lock.el" 32689;;;;;; "international/uni-uppercase.el" "json.el" "kermit.el" "language/hanja-util.el"
32763;;;;;; "jka-cmpr-hook.el" "json.el" "kermit.el" "language/burmese.el" 32690;;;;;; "language/thai-word.el" "ldefs-boot.el" "mail/blessmail.el"
32764;;;;;; "language/cham.el" "language/chinese.el" "language/cyrillic.el" 32691;;;;;; "mail/mailheader.el" "mail/mailpost.el" "mail/mspools.el"
32765;;;;;; "language/czech.el" "language/english.el" "language/ethiopic.el" 32692;;;;;; "mail/rfc2368.el" "mail/rfc822.el" "mail/rmail-spam-filter.el"
32766;;;;;; "language/european.el" "language/georgian.el" "language/greek.el"
32767;;;;;; "language/hanja-util.el" "language/hebrew.el" "language/indian.el"
32768;;;;;; "language/japanese.el" "language/khmer.el" "language/korean.el"
32769;;;;;; "language/lao.el" "language/misc-lang.el" "language/romanian.el"
32770;;;;;; "language/sinhala.el" "language/slovak.el" "language/tai-viet.el"
32771;;;;;; "language/thai-word.el" "language/thai.el" "language/tibetan.el"
32772;;;;;; "language/utf-8-lang.el" "language/vietnamese.el" "ldefs-boot.el"
32773;;;;;; "loadup.el" "mail/blessmail.el" "mail/mailheader.el" "mail/mailpost.el"
32774;;;;;; "mail/mspools.el" "mail/rfc2368.el" "mail/rfc822.el" "mail/rmail-spam-filter.el"
32775;;;;;; "mail/rmailedit.el" "mail/rmailkwd.el" "mail/rmailmm.el" 32693;;;;;; "mail/rmailedit.el" "mail/rmailkwd.el" "mail/rmailmm.el"
32776;;;;;; "mail/rmailmsc.el" "mail/rmailsort.el" "mail/rmailsum.el" 32694;;;;;; "mail/rmailmsc.el" "mail/rmailsort.el" "mail/rmailsum.el"
32777;;;;;; "mail/undigest.el" "md4.el" "mh-e/mh-acros.el" "mh-e/mh-alias.el" 32695;;;;;; "mail/undigest.el" "md4.el" "mh-e/mh-acros.el" "mh-e/mh-alias.el"
@@ -32781,41 +32699,41 @@ Zone out, completely.
32781;;;;;; "mh-e/mh-loaddefs.el" "mh-e/mh-mime.el" "mh-e/mh-print.el" 32699;;;;;; "mh-e/mh-loaddefs.el" "mh-e/mh-mime.el" "mh-e/mh-print.el"
32782;;;;;; "mh-e/mh-scan.el" "mh-e/mh-search.el" "mh-e/mh-seq.el" "mh-e/mh-show.el" 32700;;;;;; "mh-e/mh-scan.el" "mh-e/mh-search.el" "mh-e/mh-seq.el" "mh-e/mh-show.el"
32783;;;;;; "mh-e/mh-speed.el" "mh-e/mh-thread.el" "mh-e/mh-tool-bar.el" 32701;;;;;; "mh-e/mh-speed.el" "mh-e/mh-thread.el" "mh-e/mh-tool-bar.el"
32784;;;;;; "mh-e/mh-utils.el" "mh-e/mh-xface.el" "minibuffer.el" "mouse-copy.el" 32702;;;;;; "mh-e/mh-utils.el" "mh-e/mh-xface.el" "mouse-copy.el" "mouse.el"
32785;;;;;; "mouse.el" "mwheel.el" "net/dns.el" "net/eudc-vars.el" "net/eudcb-bbdb.el" 32703;;;;;; "mwheel.el" "net/dns.el" "net/eudc-vars.el" "net/eudcb-bbdb.el"
32786;;;;;; "net/eudcb-ldap.el" "net/eudcb-mab.el" "net/eudcb-ph.el" 32704;;;;;; "net/eudcb-ldap.el" "net/eudcb-mab.el" "net/eudcb-ph.el"
32787;;;;;; "net/gnutls.el" "net/hmac-def.el" "net/hmac-md5.el" "net/imap-hash.el" 32705;;;;;; "net/gnutls.el" "net/hmac-def.el" "net/hmac-md5.el" "net/imap.el"
32788;;;;;; "net/imap.el" "net/ldap.el" "net/mairix.el" "net/newsticker.el" 32706;;;;;; "net/ldap.el" "net/mairix.el" "net/newsticker.el" "net/ntlm.el"
32789;;;;;; "net/ntlm.el" "net/sasl-cram.el" "net/sasl-digest.el" "net/sasl-ntlm.el" 32707;;;;;; "net/sasl-cram.el" "net/sasl-digest.el" "net/sasl-ntlm.el"
32790;;;;;; "net/sasl.el" "net/socks.el" "net/tls.el" "net/tramp-cache.el" 32708;;;;;; "net/sasl.el" "net/soap-client.el" "net/soap-inspect.el"
32791;;;;;; "net/tramp-cmds.el" "net/tramp-compat.el" "net/tramp-gvfs.el" 32709;;;;;; "net/socks.el" "net/tls.el" "net/tramp-cache.el" "net/tramp-cmds.el"
32792;;;;;; "net/tramp-gw.el" "net/tramp-imap.el" "net/tramp-loaddefs.el" 32710;;;;;; "net/tramp-compat.el" "net/tramp-gvfs.el" "net/tramp-gw.el"
32793;;;;;; "net/tramp-sh.el" "net/tramp-smb.el" "net/tramp-uu.el" "net/trampver.el" 32711;;;;;; "net/tramp-loaddefs.el" "net/tramp-sh.el" "net/tramp-smb.el"
32794;;;;;; "net/zeroconf.el" "notifications.el" "nxml/nxml-enc.el" "nxml/nxml-maint.el" 32712;;;;;; "net/tramp-uu.el" "net/trampver.el" "net/zeroconf.el" "notifications.el"
32795;;;;;; "nxml/nxml-ns.el" "nxml/nxml-outln.el" "nxml/nxml-parse.el" 32713;;;;;; "nxml/nxml-enc.el" "nxml/nxml-maint.el" "nxml/nxml-ns.el"
32796;;;;;; "nxml/nxml-rap.el" "nxml/nxml-util.el" "nxml/rng-dt.el" "nxml/rng-loc.el" 32714;;;;;; "nxml/nxml-outln.el" "nxml/nxml-parse.el" "nxml/nxml-rap.el"
32797;;;;;; "nxml/rng-maint.el" "nxml/rng-match.el" "nxml/rng-parse.el" 32715;;;;;; "nxml/nxml-util.el" "nxml/rng-dt.el" "nxml/rng-loc.el" "nxml/rng-maint.el"
32798;;;;;; "nxml/rng-pttrn.el" "nxml/rng-uri.el" "nxml/rng-util.el" 32716;;;;;; "nxml/rng-match.el" "nxml/rng-parse.el" "nxml/rng-pttrn.el"
32799;;;;;; "nxml/xsd-regexp.el" "org/ob-C.el" "org/ob-R.el" "org/ob-asymptote.el" 32717;;;;;; "nxml/rng-uri.el" "nxml/rng-util.el" "nxml/xsd-regexp.el"
32800;;;;;; "org/ob-calc.el" "org/ob-clojure.el" "org/ob-comint.el" "org/ob-css.el" 32718;;;;;; "org/ob-C.el" "org/ob-R.el" "org/ob-asymptote.el" "org/ob-calc.el"
32801;;;;;; "org/ob-ditaa.el" "org/ob-dot.el" "org/ob-emacs-lisp.el" 32719;;;;;; "org/ob-clojure.el" "org/ob-comint.el" "org/ob-css.el" "org/ob-ditaa.el"
32802;;;;;; "org/ob-eval.el" "org/ob-exp.el" "org/ob-gnuplot.el" "org/ob-haskell.el" 32720;;;;;; "org/ob-dot.el" "org/ob-emacs-lisp.el" "org/ob-eval.el" "org/ob-exp.el"
32803;;;;;; "org/ob-js.el" "org/ob-latex.el" "org/ob-ledger.el" "org/ob-lisp.el" 32721;;;;;; "org/ob-gnuplot.el" "org/ob-haskell.el" "org/ob-js.el" "org/ob-latex.el"
32804;;;;;; "org/ob-matlab.el" "org/ob-mscgen.el" "org/ob-ocaml.el" "org/ob-octave.el" 32722;;;;;; "org/ob-ledger.el" "org/ob-lisp.el" "org/ob-matlab.el" "org/ob-mscgen.el"
32805;;;;;; "org/ob-org.el" "org/ob-perl.el" "org/ob-plantuml.el" "org/ob-python.el" 32723;;;;;; "org/ob-ocaml.el" "org/ob-octave.el" "org/ob-org.el" "org/ob-perl.el"
32806;;;;;; "org/ob-ref.el" "org/ob-ruby.el" "org/ob-sass.el" "org/ob-scheme.el" 32724;;;;;; "org/ob-plantuml.el" "org/ob-python.el" "org/ob-ref.el" "org/ob-ruby.el"
32807;;;;;; "org/ob-screen.el" "org/ob-sh.el" "org/ob-sql.el" "org/ob-sqlite.el" 32725;;;;;; "org/ob-sass.el" "org/ob-scheme.el" "org/ob-screen.el" "org/ob-sh.el"
32808;;;;;; "org/ob-table.el" "org/org-beamer.el" "org/org-bibtex.el" 32726;;;;;; "org/ob-sql.el" "org/ob-sqlite.el" "org/ob-table.el" "org/org-beamer.el"
32809;;;;;; "org/org-colview.el" "org/org-compat.el" "org/org-complete.el" 32727;;;;;; "org/org-bibtex.el" "org/org-colview.el" "org/org-compat.el"
32810;;;;;; "org/org-crypt.el" "org/org-ctags.el" "org/org-docview.el" 32728;;;;;; "org/org-complete.el" "org/org-crypt.el" "org/org-ctags.el"
32811;;;;;; "org/org-entities.el" "org/org-exp-blocks.el" "org/org-faces.el" 32729;;;;;; "org/org-docview.el" "org/org-entities.el" "org/org-exp-blocks.el"
32812;;;;;; "org/org-gnus.el" "org/org-habit.el" "org/org-info.el" "org/org-inlinetask.el" 32730;;;;;; "org/org-faces.el" "org/org-gnus.el" "org/org-habit.el" "org/org-info.el"
32813;;;;;; "org/org-install.el" "org/org-jsinfo.el" "org/org-list.el" 32731;;;;;; "org/org-inlinetask.el" "org/org-install.el" "org/org-jsinfo.el"
32814;;;;;; "org/org-mac-message.el" "org/org-macs.el" "org/org-mew.el" 32732;;;;;; "org/org-list.el" "org/org-mac-message.el" "org/org-macs.el"
32815;;;;;; "org/org-mhe.el" "org/org-mks.el" "org/org-mouse.el" "org/org-protocol.el" 32733;;;;;; "org/org-mew.el" "org/org-mhe.el" "org/org-mks.el" "org/org-mouse.el"
32816;;;;;; "org/org-rmail.el" "org/org-src.el" "org/org-vm.el" "org/org-w3m.el" 32734;;;;;; "org/org-protocol.el" "org/org-rmail.el" "org/org-src.el"
32817;;;;;; "org/org-wl.el" "patcomp.el" "paths.el" "play/gamegrid.el" 32735;;;;;; "org/org-vm.el" "org/org-w3m.el" "org/org-wl.el" "patcomp.el"
32818;;;;;; "play/gametree.el" "play/meese.el" "progmodes/ada-prj.el" 32736;;;;;; "play/gamegrid.el" "play/gametree.el" "play/meese.el" "progmodes/ada-prj.el"
32819;;;;;; "progmodes/cc-align.el" "progmodes/cc-awk.el" "progmodes/cc-bytecomp.el" 32737;;;;;; "progmodes/cc-align.el" "progmodes/cc-awk.el" "progmodes/cc-bytecomp.el"
32820;;;;;; "progmodes/cc-cmds.el" "progmodes/cc-defs.el" "progmodes/cc-fonts.el" 32738;;;;;; "progmodes/cc-cmds.el" "progmodes/cc-defs.el" "progmodes/cc-fonts.el"
32821;;;;;; "progmodes/cc-langs.el" "progmodes/cc-menus.el" "progmodes/ebnf-abn.el" 32739;;;;;; "progmodes/cc-langs.el" "progmodes/cc-menus.el" "progmodes/ebnf-abn.el"
@@ -32823,24 +32741,21 @@ Zone out, completely.
32823;;;;;; "progmodes/ebnf-iso.el" "progmodes/ebnf-otz.el" "progmodes/ebnf-yac.el" 32741;;;;;; "progmodes/ebnf-iso.el" "progmodes/ebnf-otz.el" "progmodes/ebnf-yac.el"
32824;;;;;; "progmodes/idlw-complete-structtag.el" "progmodes/idlw-help.el" 32742;;;;;; "progmodes/idlw-complete-structtag.el" "progmodes/idlw-help.el"
32825;;;;;; "progmodes/idlw-toolbar.el" "progmodes/mantemp.el" "progmodes/xscheme.el" 32743;;;;;; "progmodes/idlw-toolbar.el" "progmodes/mantemp.el" "progmodes/xscheme.el"
32826;;;;;; "ps-def.el" "ps-mule.el" "ps-samp.el" "register.el" "replace.el" 32744;;;;;; "ps-def.el" "ps-mule.el" "ps-samp.el" "saveplace.el" "sb-image.el"
32827;;;;;; "rfn-eshadow.el" "saveplace.el" "sb-image.el" "scroll-bar.el" 32745;;;;;; "scroll-bar.el" "select.el" "soundex.el" "subdirs.el" "tempo.el"
32828;;;;;; "select.el" "simple.el" "soundex.el" "startup.el" "subdirs.el" 32746;;;;;; "textmodes/bib-mode.el" "textmodes/makeinfo.el" "textmodes/page-ext.el"
32829;;;;;; "subr.el" "tempo.el" "textmodes/bib-mode.el" "textmodes/fill.el" 32747;;;;;; "textmodes/refbib.el" "textmodes/refer.el" "textmodes/reftex-auc.el"
32830;;;;;; "textmodes/makeinfo.el" "textmodes/page-ext.el" "textmodes/page.el" 32748;;;;;; "textmodes/reftex-dcr.el" "textmodes/reftex-ref.el" "textmodes/reftex-sel.el"
32831;;;;;; "textmodes/paragraphs.el" "textmodes/refbib.el" "textmodes/refer.el" 32749;;;;;; "textmodes/reftex-toc.el" "textmodes/texnfo-upd.el" "timezone.el"
32832;;;;;; "textmodes/reftex-auc.el" "textmodes/reftex-dcr.el" "textmodes/reftex-ref.el" 32750;;;;;; "tooltip.el" "tree-widget.el" "uniquify.el" "url/url-about.el"
32833;;;;;; "textmodes/reftex-sel.el" "textmodes/reftex-toc.el" "textmodes/texnfo-upd.el" 32751;;;;;; "url/url-cookie.el" "url/url-dired.el" "url/url-expand.el"
32834;;;;;; "textmodes/text-mode.el" "timezone.el" "tooltip.el" "tree-widget.el" 32752;;;;;; "url/url-ftp.el" "url/url-history.el" "url/url-imap.el" "url/url-methods.el"
32835;;;;;; "uniquify.el" "url/url-about.el" "url/url-cookie.el" "url/url-dired.el" 32753;;;;;; "url/url-nfs.el" "url/url-proxy.el" "url/url-vars.el" "vc/ediff-diff.el"
32836;;;;;; "url/url-expand.el" "url/url-ftp.el" "url/url-history.el" 32754;;;;;; "vc/ediff-init.el" "vc/ediff-merg.el" "vc/ediff-ptch.el"
32837;;;;;; "url/url-imap.el" "url/url-methods.el" "url/url-nfs.el" "url/url-proxy.el" 32755;;;;;; "vc/ediff-vers.el" "vc/ediff-wind.el" "vc/pcvs-info.el" "vc/pcvs-parse.el"
32838;;;;;; "url/url-vars.el" "vc/ediff-diff.el" "vc/ediff-init.el" "vc/ediff-merg.el" 32756;;;;;; "vc/pcvs-util.el" "vc/vc-dav.el" "vcursor.el" "vt-control.el"
32839;;;;;; "vc/ediff-ptch.el" "vc/ediff-vers.el" "vc/ediff-wind.el" 32757;;;;;; "vt100-led.el" "w32-fns.el" "w32-vars.el" "x-dnd.el") (19867
32840;;;;;; "vc/pcvs-info.el" "vc/pcvs-parse.el" "vc/pcvs-util.el" "vc/vc-dav.el" 32758;;;;;; 53579 794540))
32841;;;;;; "vcursor.el" "version.el" "vt-control.el" "vt100-led.el"
32842;;;;;; "w32-fns.el" "w32-vars.el" "widget.el" "x-dnd.el") (19781
32843;;;;;; 20793 754803))
32844 32759
32845;;;*** 32760;;;***
32846 32761
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog
index 4b904ed2b7a..7b48dcbbe83 100644
--- a/lisp/mh-e/ChangeLog
+++ b/lisp/mh-e/ChangeLog
@@ -1,3 +1,8 @@
12011-04-06 Juanma Barranquero <lekktu@gmail.com>
2
3 * mh-funcs.el (mh-undo-folder): Accept and ignore arguments,
4 for compatibility with `revert-buffer'. Doc fix. (Bug#8431)
5
12011-03-05 Antoine Levitt <antoine.levitt@gmail.com> 62011-03-05 Antoine Levitt <antoine.levitt@gmail.com>
2 7
3 * mh-funcs.el (mh-store-msg, mh-store-buffer): 8 * mh-funcs.el (mh-store-msg, mh-store-buffer):
diff --git a/lisp/mh-e/mh-funcs.el b/lisp/mh-e/mh-funcs.el
index c3f301e649d..dfac684ed50 100644
--- a/lisp/mh-e/mh-funcs.el
+++ b/lisp/mh-e/mh-funcs.el
@@ -349,8 +349,9 @@ See `mh-store-msg' for a description of DIRECTORY."
349 (error "Error occurred during execution of %s" command))))) 349 (error "Error occurred during execution of %s" command)))))
350 350
351;;;###mh-autoload 351;;;###mh-autoload
352(defun mh-undo-folder () 352(defun mh-undo-folder (&rest _ignored)
353 "Undo all refiles and deletes in the current folder." 353 "Undo all refiles and deletes in the current folder.
354Arguments are IGNORED (for `revert-buffer')."
354 (interactive) 355 (interactive)
355 (cond ((or mh-do-not-confirm-flag 356 (cond ((or mh-do-not-confirm-flag
356 (yes-or-no-p "Undo all commands in folder? ")) 357 (yes-or-no-p "Undo all commands in folder? "))
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el
index 83358ba2f01..19084aad5d6 100644
--- a/lisp/minibuffer.el
+++ b/lisp/minibuffer.el
@@ -1278,7 +1278,6 @@ Point needs to be somewhere between START and END."
1278;; - pcomplete: pop it down on SPC or after some time-delay. 1278;; - pcomplete: pop it down on SPC or after some time-delay.
1279;; - semantic: use a post-command-hook check similar to this one. 1279;; - semantic: use a post-command-hook check similar to this one.
1280(defun completion-in-region--postch () 1280(defun completion-in-region--postch ()
1281 (message "completion-in-region--postch: cmd=%s" this-command)
1282 (or unread-command-events ;Don't pop down the completions in the middle of 1281 (or unread-command-events ;Don't pop down the completions in the middle of
1283 ;mouse-drag-region/mouse-set-point. 1282 ;mouse-drag-region/mouse-set-point.
1284 (and completion-in-region--data 1283 (and completion-in-region--data
@@ -1310,10 +1309,8 @@ Point needs to be somewhere between START and END."
1310 (delq (assq 'completion-in-region-mode minor-mode-overriding-map-alist) 1309 (delq (assq 'completion-in-region-mode minor-mode-overriding-map-alist)
1311 minor-mode-overriding-map-alist)) 1310 minor-mode-overriding-map-alist))
1312 (if (null completion-in-region-mode) 1311 (if (null completion-in-region-mode)
1313 (progn 1312 (unless (equal "*Completions*" (buffer-name (window-buffer)))
1314 (unless (equal "*Completions*" (buffer-name (window-buffer))) 1313 (minibuffer-hide-completions))
1315 (minibuffer-hide-completions))
1316 (message "Leaving completion-in-region-mode"))
1317 ;; (add-hook 'pre-command-hook #'completion-in-region--prech) 1314 ;; (add-hook 'pre-command-hook #'completion-in-region--prech)
1318 (add-hook 'post-command-hook #'completion-in-region--postch) 1315 (add-hook 'post-command-hook #'completion-in-region--postch)
1319 (push `(completion-in-region-mode . ,completion-in-region-mode-map) 1316 (push `(completion-in-region-mode . ,completion-in-region-mode-map)