aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2017-11-01 07:27:31 -0400
committerGlenn Morris2017-11-01 07:27:31 -0400
commit33f08a38478150fef3fcfb13ad31da2d00327a01 (patch)
tree729685fa6af800bc342ceb8881f7d12c6ecbda35
parent733da54c30a2fceb40a7f1a4bb7d03c82cd716a1 (diff)
downloademacs-33f08a38478150fef3fcfb13ad31da2d00327a01.tar.gz
emacs-33f08a38478150fef3fcfb13ad31da2d00327a01.zip
; Auto-commit of loaddefs files.
-rw-r--r--lisp/ldefs-boot.el270
1 files changed, 214 insertions, 56 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index 0dea176ab64..ea46f50fc7c 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -8337,7 +8337,7 @@ See also `ebnf-print-buffer'.
8337(autoload 'ebnf-print-buffer "ebnf2ps" "\ 8337(autoload 'ebnf-print-buffer "ebnf2ps" "\
8338Generate and print a PostScript syntactic chart image of the buffer. 8338Generate and print a PostScript syntactic chart image of the buffer.
8339 8339
8340When called with a numeric prefix argument (C-u), prompts the user for 8340When called with a numeric prefix argument (\\[universal-argument]), prompts the user for
8341the name of a file to save the PostScript image in, instead of sending 8341the name of a file to save the PostScript image in, instead of sending
8342it to the printer. 8342it to the printer.
8343 8343
@@ -8459,7 +8459,7 @@ WARNING: This function does *NOT* ask any confirmation to override existing
8459 8459
8460\(fn FROM TO)" t nil) 8460\(fn FROM TO)" t nil)
8461 8461
8462(defalias 'ebnf-despool 'ps-despool) 8462(defalias 'ebnf-despool #'ps-despool)
8463 8463
8464(autoload 'ebnf-syntax-directory "ebnf2ps" "\ 8464(autoload 'ebnf-syntax-directory "ebnf2ps" "\
8465Do a syntactic analysis of the files in DIRECTORY. 8465Do a syntactic analysis of the files in DIRECTORY.
@@ -12321,6 +12321,49 @@ Besides the choice of face, it is the same as `buffer-face-mode'.
12321 12321
12322;;;*** 12322;;;***
12323 12323
12324;;;### (autoloads nil "faceup" "emacs-lisp/faceup.el" (0 0 0 0))
12325;;; Generated autoloads from emacs-lisp/faceup.el
12326(push (purecopy '(faceup 0 0 6)) package--builtin-versions)
12327
12328(autoload 'faceup-view-buffer "faceup" "\
12329Display the faceup representation of the current buffer.
12330
12331\(fn)" t nil)
12332
12333(autoload 'faceup-write-file "faceup" "\
12334Save the faceup representation of the current buffer to the file FILE-NAME.
12335
12336Unless a name is given, the file will be named xxx.faceup, where
12337xxx is the file name associated with the buffer.
12338
12339If optional second arg CONFIRM is non-nil, this function
12340asks for confirmation before overwriting an existing file.
12341Interactively, confirmation is required unless you supply a prefix argument.
12342
12343\(fn &optional FILE-NAME CONFIRM)" t nil)
12344
12345(autoload 'faceup-render-view-buffer "faceup" "\
12346Convert BUFFER containing Faceup markup to a new buffer and display it.
12347
12348\(fn &optional BUFFER)" t nil)
12349
12350(autoload 'faceup-clean-buffer "faceup" "\
12351Remove faceup markup from buffer.
12352
12353\(fn)" t nil)
12354
12355(autoload 'faceup-defexplainer "faceup" "\
12356Defines an Ert explainer function for FUNCTION.
12357
12358FUNCTION must return an explanation when the test fails and
12359`faceup-test-explain' is set.
12360
12361\(fn FUNCTION)" nil t)
12362
12363(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "faceup" '("faceup-")))
12364
12365;;;***
12366
12324;;;### (autoloads nil "feedmail" "mail/feedmail.el" (0 0 0 0)) 12367;;;### (autoloads nil "feedmail" "mail/feedmail.el" (0 0 0 0))
12325;;; Generated autoloads from mail/feedmail.el 12368;;; Generated autoloads from mail/feedmail.el
12326(push (purecopy '(feedmail 11)) package--builtin-versions) 12369(push (purecopy '(feedmail 11)) package--builtin-versions)
@@ -13080,31 +13123,96 @@ to get the effect of a C-q.
13080;;; Generated autoloads from progmodes/flymake.el 13123;;; Generated autoloads from progmodes/flymake.el
13081(push (purecopy '(flymake 0 3)) package--builtin-versions) 13124(push (purecopy '(flymake 0 3)) package--builtin-versions)
13082 13125
13126(autoload 'flymake-log "flymake" "\
13127Log, at level LEVEL, the message MSG formatted with ARGS.
13128LEVEL is passed to `display-warning', which is used to display
13129the warning. If this form is included in a byte-compiled file,
13130the generated warning contains an indication of the file that
13131generated it.
13132
13133\(fn LEVEL MSG &rest ARGS)" nil t)
13134
13135(autoload 'flymake-make-diagnostic "flymake" "\
13136Make a Flymake diagnostic for BUFFER's region from BEG to END.
13137TYPE is a key to `flymake-diagnostic-types-alist' and TEXT is a
13138description of the problem detected in this region.
13139
13140\(fn BUFFER BEG END TYPE TEXT)" nil nil)
13141
13142(autoload 'flymake-diagnostics "flymake" "\
13143Get Flymake diagnostics in region determined by BEG and END.
13144
13145If neither BEG or END is supplied, use the whole buffer,
13146otherwise if BEG is non-nil and END is nil, consider only
13147diagnostics at BEG.
13148
13149\(fn &optional BEG END)" nil nil)
13150
13151(autoload 'flymake-diag-region "flymake" "\
13152Compute BUFFER's region (BEG . END) corresponding to LINE and COL.
13153If COL is nil, return a region just for LINE. Return nil if the
13154region is invalid.
13155
13156\(fn BUFFER LINE &optional COL)" nil nil)
13157
13083(autoload 'flymake-mode "flymake" "\ 13158(autoload 'flymake-mode "flymake" "\
13084Toggle Flymake mode on or off. 13159Toggle Flymake mode on or off.
13085With a prefix argument ARG, enable Flymake mode if ARG is 13160With a prefix argument ARG, enable Flymake mode if ARG is
13086positive, and disable it otherwise. If called from Lisp, enable 13161positive, and disable it otherwise. If called from Lisp, enable
13087the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'. 13162the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'.
13088\\{flymake-mode-map} 13163
13164Flymake is an Emacs minor mode for on-the-fly syntax checking.
13165Flymake collects diagnostic information from multiple sources,
13166called backends, and visually annotates the buffer with the
13167results.
13168
13169Flymake performs these checks while the user is editing. The
13170customization variables `flymake-start-on-flymake-mode',
13171`flymake-no-changes-timeout' and
13172`flymake-start-syntax-check-on-newline' determine the exact
13173circumstances whereupon Flymake decides to initiate a check of
13174the buffer.
13175
13176The commands `flymake-goto-next-error' and
13177`flymake-goto-prev-error' can be used to navigate among Flymake
13178diagnostics annotated in the buffer.
13179
13180The visual appearance of each type of diagnostic can be changed
13181in the variable `flymake-diagnostic-types-alist'.
13182
13183Activation or deactivation of backends used by Flymake in each
13184buffer happens via the special hook
13185`flymake-diagnostic-functions'.
13186
13187Some backends may take longer than others to respond or complete,
13188and some may decide to disable themselves if they are not
13189suitable for the current buffer. The commands
13190`flymake-running-backends', `flymake-disabled-backends' and
13191`flymake-reporting-backends' summarize the situation, as does the
13192special *Flymake log* buffer.
13089 13193
13090\(fn &optional ARG)" t nil) 13194\(fn &optional ARG)" t nil)
13091 13195
13092(autoload 'flymake-mode-on "flymake" "\ 13196(autoload 'flymake-mode-on "flymake" "\
13093Turn flymake mode on. 13197Turn Flymake mode on.
13094 13198
13095\(fn)" nil nil) 13199\(fn)" nil nil)
13096 13200
13097(autoload 'flymake-mode-off "flymake" "\ 13201(autoload 'flymake-mode-off "flymake" "\
13098Turn flymake mode off. 13202Turn Flymake mode off.
13099 13203
13100\(fn)" nil nil) 13204\(fn)" nil nil)
13101 13205
13102(autoload 'flymake-find-file-hook "flymake" "\ 13206(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "flymake" '("flymake-")))
13103
13104 13207
13105\(fn)" nil nil) 13208;;;***
13209
13210;;;### (autoloads nil "flymake-proc" "progmodes/flymake-proc.el"
13211;;;;;; (0 0 0 0))
13212;;; Generated autoloads from progmodes/flymake-proc.el
13213(push (purecopy '(flymake-proc 0 3)) package--builtin-versions)
13106 13214
13107(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "flymake" '("flymake-"))) 13215(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "flymake-proc" '("flymake-proc-")))
13108 13216
13109;;;*** 13217;;;***
13110 13218
@@ -14565,8 +14673,7 @@ match any of the group-specified splitting rules. See
14565 14673
14566(autoload 'gnus-group-split-update "gnus-mlspl" "\ 14674(autoload 'gnus-group-split-update "gnus-mlspl" "\
14567Computes nnmail-split-fancy from group params and CATCH-ALL. 14675Computes nnmail-split-fancy from group params and CATCH-ALL.
14568It does this by calling by calling (gnus-group-split-fancy nil 14676It does this by calling (gnus-group-split-fancy nil nil CATCH-ALL).
14569nil CATCH-ALL).
14570 14677
14571If CATCH-ALL is nil, `gnus-group-split-default-catch-all-group' is used 14678If CATCH-ALL is nil, `gnus-group-split-default-catch-all-group' is used
14572instead. This variable is set by `gnus-group-split-setup'. 14679instead. This variable is set by `gnus-group-split-setup'.
@@ -16666,7 +16773,7 @@ You may also want to set `hfy-page-header' and `hfy-page-footer'.
16666;;;;;; (0 0 0 0)) 16773;;;;;; (0 0 0 0))
16667;;; Generated autoloads from ibuf-ext.el 16774;;; Generated autoloads from ibuf-ext.el
16668 16775
16669(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ibuf-ext" '("ibuffer-" "file" "shell-command-" "starred-name" "size" "alphabetic" "major-mode" "mod" "print" "predicate" "content" "view-and-eval" "visiting-file" "derived-mode" "directory" "basename" "name" "used-mode" "query-replace" "rename-uniquely" "revert" "replace-regexp" "eval"))) 16776(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ibuf-ext" '("ibuffer-" "file" "shell-command-" "starred-name" "size" "alphabetic" "major-mode" "mod" "print" "process" "predicate" "content" "view-and-eval" "visiting-file" "derived-mode" "directory" "basename" "name" "used-mode" "query-replace" "rename-uniquely" "revert" "replace-regexp" "eval")))
16670 16777
16671;;;*** 16778;;;***
16672 16779
@@ -27164,6 +27271,10 @@ With a prefix (or a FILL) argument, also fill too short lines.
27164Replace rectangle contents with STRING on each line. 27271Replace rectangle contents with STRING on each line.
27165The length of STRING need not be the same as the rectangle width. 27272The length of STRING need not be the same as the rectangle width.
27166 27273
27274When called interactively and option `rectangle-preview' is
27275non-nil, display the result as the user enters the string into
27276the minibuffer.
27277
27167Called from a program, takes three args; START, END and STRING. 27278Called from a program, takes three args; START, END and STRING.
27168 27279
27169\(fn START END STRING)" t nil) 27280\(fn START END STRING)" t nil)
@@ -28063,6 +28174,46 @@ than appending to it. Deletes the message after writing if
28063 28174
28064;;;*** 28175;;;***
28065 28176
28177;;;### (autoloads nil "rmc" "emacs-lisp/rmc.el" (0 0 0 0))
28178;;; Generated autoloads from emacs-lisp/rmc.el
28179
28180(autoload 'read-multiple-choice "rmc" "\
28181Ask user a multiple choice question.
28182PROMPT should be a string that will be displayed as the prompt.
28183
28184CHOICES is an alist where the first element in each entry is a
28185character to be entered, the second element is a short name for
28186the entry to be displayed while prompting (if there's room, it
28187might be shortened), and the third, optional entry is a longer
28188explanation that will be displayed in a help buffer if the user
28189requests more help.
28190
28191This function translates user input into responses by consulting
28192the bindings in `query-replace-map'; see the documentation of
28193that variable for more information. In this case, the useful
28194bindings are `recenter', `scroll-up', and `scroll-down'. If the
28195user enters `recenter', `scroll-up', or `scroll-down' responses,
28196perform the requested window recentering or scrolling and ask
28197again.
28198
28199When `use-dialog-box' is t (the default), this function can pop
28200up a dialog window to collect the user input. That functionality
28201requires `display-popup-menus-p' to return t. Otherwise, a text
28202dialog will be used.
28203
28204The return value is the matching entry from the CHOICES list.
28205
28206Usage example:
28207
28208\(read-multiple-choice \"Continue connecting?\"
28209 \\='((?a \"always\")
28210 (?s \"session only\")
28211 (?n \"no\")))
28212
28213\(fn PROMPT CHOICES)" nil nil)
28214
28215;;;***
28216
28066;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (0 0 0 0)) 28217;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (0 0 0 0))
28067;;; Generated autoloads from nxml/rng-cmpct.el 28218;;; Generated autoloads from nxml/rng-cmpct.el
28068 28219
@@ -31907,7 +32058,7 @@ Studlify-case the current buffer.
31907;;;### (autoloads nil "subr-x" "emacs-lisp/subr-x.el" (0 0 0 0)) 32058;;;### (autoloads nil "subr-x" "emacs-lisp/subr-x.el" (0 0 0 0))
31908;;; Generated autoloads from emacs-lisp/subr-x.el 32059;;; Generated autoloads from emacs-lisp/subr-x.el
31909 32060
31910(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "subr-x" '("read-multiple-choice" "string-" "hash-table-" "when-let" "internal--" "if-let" "and-let*" "thread-"))) 32061(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "subr-x" '("string-" "hash-table-" "when-let" "internal--" "if-let" "and-let*" "thread-")))
31911 32062
31912;;;*** 32063;;;***
31913 32064
@@ -32885,10 +33036,8 @@ use in that buffer.
32885;;; Generated autoloads from emacs-lisp/testcover.el 33036;;; Generated autoloads from emacs-lisp/testcover.el
32886 33037
32887(autoload 'testcover-start "testcover" "\ 33038(autoload 'testcover-start "testcover" "\
32888Uses edebug to instrument all macros and functions in FILENAME, then 33039Use Edebug to instrument for coverage all macros and functions in FILENAME.
32889changes the instrumentation from edebug to testcover--much faster, no 33040If BYTE-COMPILE is non-nil, byte compile each function after instrumenting.
32890problems with type-ahead or post-command-hook, etc. If BYTE-COMPILE is
32891non-nil, byte-compiles each function after instrumenting.
32892 33041
32893\(fn FILENAME &optional BYTE-COMPILE)" t nil) 33042\(fn FILENAME &optional BYTE-COMPILE)" t nil)
32894 33043
@@ -34435,7 +34584,7 @@ Reenable Ange-FTP, when Tramp is unloaded.
34435 34584
34436;;;### (autoloads nil "trampver" "net/trampver.el" (0 0 0 0)) 34585;;;### (autoloads nil "trampver" "net/trampver.el" (0 0 0 0))
34437;;; Generated autoloads from net/trampver.el 34586;;; Generated autoloads from net/trampver.el
34438(push (purecopy '(tramp 2 3 3 26 1)) package--builtin-versions) 34587(push (purecopy '(tramp 2 3 3 -1)) package--builtin-versions)
34439 34588
34440(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "trampver" '("tramp-"))) 34589(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "trampver" '("tramp-")))
34441 34590
@@ -38508,44 +38657,53 @@ Zone out, completely.
38508;;;;;; "eshell/em-term.el" "eshell/em-tramp.el" "eshell/em-unix.el" 38657;;;;;; "eshell/em-term.el" "eshell/em-tramp.el" "eshell/em-unix.el"
38509;;;;;; "eshell/em-xtra.el" "facemenu.el" "faces.el" "files.el" "font-core.el" 38658;;;;;; "eshell/em-xtra.el" "facemenu.el" "faces.el" "files.el" "font-core.el"
38510;;;;;; "font-lock.el" "format.el" "frame.el" "help.el" "hfy-cmap.el" 38659;;;;;; "font-lock.el" "format.el" "frame.el" "help.el" "hfy-cmap.el"
38511;;;;;; "ibuf-ext.el" "indent.el" "international/characters.el" "international/charscript.el" 38660;;;;;; "ibuf-ext.el" "indent.el" "international/characters.el" "international/charprop.el"
38512;;;;;; "international/cp51932.el" "international/eucjp-ms.el" "international/mule-cmds.el" 38661;;;;;; "international/charscript.el" "international/cp51932.el"
38513;;;;;; "international/mule-conf.el" "international/mule.el" "isearch.el" 38662;;;;;; "international/eucjp-ms.el" "international/mule-cmds.el"
38514;;;;;; "jit-lock.el" "jka-cmpr-hook.el" "language/burmese.el" "language/cham.el" 38663;;;;;; "international/mule-conf.el" "international/mule.el" "international/uni-bidi.el"
38515;;;;;; "language/chinese.el" "language/cyrillic.el" "language/czech.el" 38664;;;;;; "international/uni-brackets.el" "international/uni-category.el"
38516;;;;;; "language/english.el" "language/ethiopic.el" "language/european.el" 38665;;;;;; "international/uni-combining.el" "international/uni-comment.el"
38517;;;;;; "language/georgian.el" "language/greek.el" "language/hebrew.el" 38666;;;;;; "international/uni-decimal.el" "international/uni-decomposition.el"
38518;;;;;; "language/indian.el" "language/japanese.el" "language/khmer.el" 38667;;;;;; "international/uni-digit.el" "international/uni-lowercase.el"
38519;;;;;; "language/korean.el" "language/lao.el" "language/misc-lang.el" 38668;;;;;; "international/uni-mirrored.el" "international/uni-name.el"
38520;;;;;; "language/romanian.el" "language/sinhala.el" "language/slovak.el" 38669;;;;;; "international/uni-numeric.el" "international/uni-old-name.el"
38521;;;;;; "language/tai-viet.el" "language/thai.el" "language/tibetan.el" 38670;;;;;; "international/uni-titlecase.el" "international/uni-uppercase.el"
38522;;;;;; "language/utf-8-lang.el" "language/vietnamese.el" "ldefs-boot.el" 38671;;;;;; "isearch.el" "jit-lock.el" "jka-cmpr-hook.el" "language/burmese.el"
38523;;;;;; "leim/ja-dic/ja-dic.el" "leim/leim-list.el" "leim/quail/4Corner.el" 38672;;;;;; "language/cham.el" "language/chinese.el" "language/cyrillic.el"
38524;;;;;; "leim/quail/ARRAY30.el" "leim/quail/CCDOSPY.el" "leim/quail/CTLau-b5.el" 38673;;;;;; "language/czech.el" "language/english.el" "language/ethiopic.el"
38525;;;;;; "leim/quail/CTLau.el" "leim/quail/ECDICT.el" "leim/quail/ETZY.el" 38674;;;;;; "language/european.el" "language/georgian.el" "language/greek.el"
38526;;;;;; "leim/quail/PY-b5.el" "leim/quail/PY.el" "leim/quail/Punct-b5.el" 38675;;;;;; "language/hebrew.el" "language/indian.el" "language/japanese.el"
38527;;;;;; "leim/quail/Punct.el" "leim/quail/QJ-b5.el" "leim/quail/QJ.el" 38676;;;;;; "language/khmer.el" "language/korean.el" "language/lao.el"
38528;;;;;; "leim/quail/SW.el" "leim/quail/TONEPY.el" "leim/quail/ZIRANMA.el" 38677;;;;;; "language/misc-lang.el" "language/romanian.el" "language/sinhala.el"
38529;;;;;; "leim/quail/ZOZY.el" "leim/quail/arabic.el" "leim/quail/croatian.el" 38678;;;;;; "language/slovak.el" "language/tai-viet.el" "language/thai.el"
38530;;;;;; "leim/quail/cyril-jis.el" "leim/quail/cyrillic.el" "leim/quail/czech.el" 38679;;;;;; "language/tibetan.el" "language/utf-8-lang.el" "language/vietnamese.el"
38531;;;;;; "leim/quail/georgian.el" "leim/quail/greek.el" "leim/quail/hanja-jis.el" 38680;;;;;; "ldefs-boot.el" "leim/ja-dic/ja-dic.el" "leim/leim-list.el"
38532;;;;;; "leim/quail/hanja.el" "leim/quail/hanja3.el" "leim/quail/hebrew.el" 38681;;;;;; "leim/quail/4Corner.el" "leim/quail/ARRAY30.el" "leim/quail/CCDOSPY.el"
38533;;;;;; "leim/quail/ipa-praat.el" "leim/quail/latin-alt.el" "leim/quail/latin-ltx.el" 38682;;;;;; "leim/quail/CTLau-b5.el" "leim/quail/CTLau.el" "leim/quail/ECDICT.el"
38534;;;;;; "leim/quail/latin-post.el" "leim/quail/latin-pre.el" "leim/quail/persian.el" 38683;;;;;; "leim/quail/ETZY.el" "leim/quail/PY-b5.el" "leim/quail/PY.el"
38535;;;;;; "leim/quail/programmer-dvorak.el" "leim/quail/py-punct.el" 38684;;;;;; "leim/quail/Punct-b5.el" "leim/quail/Punct.el" "leim/quail/QJ-b5.el"
38536;;;;;; "leim/quail/pypunct-b5.el" "leim/quail/quick-b5.el" "leim/quail/quick-cns.el" 38685;;;;;; "leim/quail/QJ.el" "leim/quail/SW.el" "leim/quail/TONEPY.el"
38537;;;;;; "leim/quail/rfc1345.el" "leim/quail/sgml-input.el" "leim/quail/slovak.el" 38686;;;;;; "leim/quail/ZIRANMA.el" "leim/quail/ZOZY.el" "leim/quail/arabic.el"
38538;;;;;; "leim/quail/symbol-ksc.el" "leim/quail/tamil-dvorak.el" "leim/quail/tsang-b5.el" 38687;;;;;; "leim/quail/croatian.el" "leim/quail/cyril-jis.el" "leim/quail/cyrillic.el"
38539;;;;;; "leim/quail/tsang-cns.el" "leim/quail/vntelex.el" "leim/quail/vnvni.el" 38688;;;;;; "leim/quail/czech.el" "leim/quail/georgian.el" "leim/quail/greek.el"
38540;;;;;; "leim/quail/welsh.el" "loadup.el" "mail/blessmail.el" "mail/rmailedit.el" 38689;;;;;; "leim/quail/hanja-jis.el" "leim/quail/hanja.el" "leim/quail/hanja3.el"
38541;;;;;; "mail/rmailkwd.el" "mail/rmailmm.el" "mail/rmailmsc.el" "mail/rmailsort.el" 38690;;;;;; "leim/quail/hebrew.el" "leim/quail/ipa-praat.el" "leim/quail/latin-alt.el"
38542;;;;;; "mail/rmailsum.el" "mail/undigest.el" "menu-bar.el" "mh-e/mh-gnus.el" 38691;;;;;; "leim/quail/latin-ltx.el" "leim/quail/latin-post.el" "leim/quail/latin-pre.el"
38543;;;;;; "mh-e/mh-loaddefs.el" "minibuffer.el" "mouse.el" "net/tramp-loaddefs.el" 38692;;;;;; "leim/quail/persian.el" "leim/quail/programmer-dvorak.el"
38544;;;;;; "newcomment.el" "obarray.el" "org/ob-core.el" "org/ob-keys.el" 38693;;;;;; "leim/quail/py-punct.el" "leim/quail/pypunct-b5.el" "leim/quail/quick-b5.el"
38545;;;;;; "org/ob-lob.el" "org/ob-matlab.el" "org/ob-tangle.el" "org/ob.el" 38694;;;;;; "leim/quail/quick-cns.el" "leim/quail/rfc1345.el" "leim/quail/sgml-input.el"
38546;;;;;; "org/org-archive.el" "org/org-attach.el" "org/org-bbdb.el" 38695;;;;;; "leim/quail/slovak.el" "leim/quail/symbol-ksc.el" "leim/quail/tamil-dvorak.el"
38547;;;;;; "org/org-clock.el" "org/org-datetree.el" "org/org-element.el" 38696;;;;;; "leim/quail/tsang-b5.el" "leim/quail/tsang-cns.el" "leim/quail/vntelex.el"
38548;;;;;; "org/org-feed.el" "org/org-footnote.el" "org/org-id.el" "org/org-indent.el" 38697;;;;;; "leim/quail/vnvni.el" "leim/quail/welsh.el" "loadup.el" "mail/blessmail.el"
38698;;;;;; "mail/rmailedit.el" "mail/rmailkwd.el" "mail/rmailmm.el"
38699;;;;;; "mail/rmailmsc.el" "mail/rmailsort.el" "mail/rmailsum.el"
38700;;;;;; "mail/undigest.el" "menu-bar.el" "mh-e/mh-gnus.el" "mh-e/mh-loaddefs.el"
38701;;;;;; "minibuffer.el" "mouse.el" "net/tramp-loaddefs.el" "newcomment.el"
38702;;;;;; "obarray.el" "org/ob-core.el" "org/ob-keys.el" "org/ob-lob.el"
38703;;;;;; "org/ob-matlab.el" "org/ob-tangle.el" "org/ob.el" "org/org-archive.el"
38704;;;;;; "org/org-attach.el" "org/org-bbdb.el" "org/org-clock.el"
38705;;;;;; "org/org-datetree.el" "org/org-element.el" "org/org-feed.el"
38706;;;;;; "org/org-footnote.el" "org/org-id.el" "org/org-indent.el"
38549;;;;;; "org/org-install.el" "org/org-irc.el" "org/org-mobile.el" 38707;;;;;; "org/org-install.el" "org/org-irc.el" "org/org-mobile.el"
38550;;;;;; "org/org-plot.el" "org/org-table.el" "org/org-timer.el" "org/ox-ascii.el" 38708;;;;;; "org/org-plot.el" "org/org-table.el" "org/org-timer.el" "org/ox-ascii.el"
38551;;;;;; "org/ox-beamer.el" "org/ox-html.el" "org/ox-icalendar.el" 38709;;;;;; "org/ox-beamer.el" "org/ox-html.el" "org/ox-icalendar.el"