1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

; Auto-commit of loaddefs files.

This commit is contained in:
Glenn Morris 2017-04-02 12:11:26 -04:00
parent afabe53b56
commit 057d27760a

View file

@ -5224,7 +5224,9 @@ You might also use mode hooks to specify it in certain modes, like this:
(concat \"make -k \" (concat \"make -k \"
(if buffer-file-name (if buffer-file-name
(shell-quote-argument (shell-quote-argument
(file-name-sans-extension buffer-file-name))))))))") (file-name-sans-extension buffer-file-name))))))))
It's often useful to leave a space at the end of the value.")
(custom-autoload 'compile-command "compile" t) (custom-autoload 'compile-command "compile" t)
(put 'compile-command 'safe-local-variable (lambda (a) (and (stringp a) (or (not (boundp 'compilation-read-command)) compilation-read-command)))) (put 'compile-command 'safe-local-variable (lambda (a) (and (stringp a) (or (not (boundp 'compilation-read-command)) compilation-read-command))))
@ -12465,12 +12467,10 @@ Copy directory-local variables to the -*- line.
Non-nil means enable use of connection-local variables.") Non-nil means enable use of connection-local variables.")
(autoload 'connection-local-set-profiles "files-x" "\ (autoload 'connection-local-set-profiles "files-x" "\
Add PROFILES for remote servers. Add PROFILES for CRITERIA.
CRITERIA is either a regular expression identifying a remote CRITERIA is a plist identifying a connection and the application
server, or a function with one argument IDENTIFICATION, which using this connection, see `connection-local-criteria-alist'.
returns non-nil when a remote server shall apply PROFILE's PROFILES are the names of connection profiles (a symbol).
variables. If CRITERIA is nil, it always applies.
PROFILES are the names of a connection profile (a symbol).
When a connection to a remote server is opened and CRITERIA When a connection to a remote server is opened and CRITERIA
matches to that server, the connection-local variables from matches to that server, the connection-local variables from
@ -12504,7 +12504,7 @@ will not be changed.
(autoload 'with-connection-local-profiles "files-x" "\ (autoload 'with-connection-local-profiles "files-x" "\
Apply connection-local variables according to PROFILES in current buffer. Apply connection-local variables according to PROFILES in current buffer.
Execute BODY, and unwind connection local variables. Execute BODY, and unwind connection-local variables.
\(fn PROFILES &rest BODY)" nil t) \(fn PROFILES &rest BODY)" nil t)
@ -15855,14 +15855,6 @@ This discards the buffer's undo information.
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "hexl" '("hexl-" "dehexlify-buffer"))) (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "hexl" '("hexl-" "dehexlify-buffer")))
;;;***
;;;### (autoloads "actual autoloads are elsewhere" "hfy-cmap" "hfy-cmap.el"
;;;;;; (0 0 0 0))
;;; Generated autoloads from hfy-cmap.el
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "hfy-cmap" '("hfy-" "htmlfontify-unload-rgb-file")))
;;;*** ;;;***
;;;### (autoloads nil "hi-lock" "hi-lock.el" (0 0 0 0)) ;;;### (autoloads nil "hi-lock" "hi-lock.el" (0 0 0 0))
@ -21868,7 +21860,7 @@ QUALITY can be:
`approximate', in which case we may cut some corners to avoid `approximate', in which case we may cut some corners to avoid
excessive work. excessive work.
`exact', in which case we may end up re-(en/de)coding a large `exact', in which case we may end up re-(en/de)coding a large
part of the file/buffer. part of the file/buffer, this can be expensive and slow.
nil, in which case we may return nil rather than an approximation. nil, in which case we may return nil rather than an approximation.
\(fn BYTE &optional QUALITY CODING-SYSTEM)" nil nil) \(fn BYTE &optional QUALITY CODING-SYSTEM)" nil nil)
@ -21882,7 +21874,7 @@ QUALITY can be:
`approximate', in which case we may cut some corners to avoid `approximate', in which case we may cut some corners to avoid
excessive work. excessive work.
`exact', in which case we may end up re-(en/de)coding a large `exact', in which case we may end up re-(en/de)coding a large
part of the file/buffer. part of the file/buffer, this can be expensive and slow.
nil, in which case we may return nil rather than an approximation. nil, in which case we may return nil rather than an approximation.
\(fn POSITION &optional QUALITY CODING-SYSTEM)" nil nil) \(fn POSITION &optional QUALITY CODING-SYSTEM)" nil nil)
@ -33879,7 +33871,7 @@ It can have the following values:
(custom-autoload 'tramp-syntax "tramp" t) (custom-autoload 'tramp-syntax "tramp" t)
(defconst tramp-file-name-regexp-unified (if (memq system-type '(cygwin windows-nt)) "\\`/\\(\\[.*\\]\\|[^/|:]\\{2,\\}[^/|]*\\):" "\\`/[^/|:][^/|]*:") "\ (defconst tramp-file-name-regexp-unified "\\`/.+:.*:" "\
Value for `tramp-file-name-regexp' for unified remoting. Value for `tramp-file-name-regexp' for unified remoting.
See `tramp-file-name-structure' for more explanations. See `tramp-file-name-structure' for more explanations.
@ -33889,23 +33881,23 @@ On W32 systems, the volume letter must be ignored.")
Value for `tramp-file-name-regexp' for separate remoting. Value for `tramp-file-name-regexp' for separate remoting.
See `tramp-file-name-structure' for more explanations.") See `tramp-file-name-structure' for more explanations.")
(defvar tramp-file-name-regexp (cond ((equal tramp-syntax 'ftp) tramp-file-name-regexp-unified) ((equal tramp-syntax 'sep) tramp-file-name-regexp-separate) (t (error "Wrong `tramp-syntax' defined"))) "\ (defvar tramp-file-name-regexp (cond ((eq tramp-syntax 'ftp) tramp-file-name-regexp-unified) ((eq tramp-syntax 'sep) tramp-file-name-regexp-separate) (t (error "Wrong `tramp-syntax' defined"))) "\
Regular expression matching file names handled by Tramp. Regular expression matching file names handled by Tramp.
This regexp should match Tramp file names but no other file This regexp should match Tramp file names but no other file
names. When calling `tramp-register-file-name-handlers', the names. When calling `tramp-register-file-name-handlers', the
initial value is overwritten by the car of `tramp-file-name-structure'.") initial value is overwritten by the car of `tramp-file-name-structure'.")
(defconst tramp-completion-file-name-regexp-unified (if (memq system-type '(cygwin windows-nt)) "\\`/[^/]\\{2,\\}\\'" "\\`/[^/]*\\'") "\ (defconst tramp-completion-file-name-regexp-unified (concat "\\`/\\(" "\\([^/|:]+:[^/|:]*|\\)*" (if (memq system-type '(cygwin windows-nt)) "\\(-\\|[^/|:]\\{2,\\}\\)" "[^/|:]+") "\\(:[^/|:]*\\)?" "\\)?\\'") "\
Value for `tramp-completion-file-name-regexp' for unified remoting. Value for `tramp-completion-file-name-regexp' for unified remoting.
See `tramp-file-name-structure' for more explanations. See `tramp-file-name-structure' for more explanations.
On W32 systems, the volume letter must be ignored.") On W32 systems, the volume letter must be ignored.")
(defconst tramp-completion-file-name-regexp-separate "\\`/\\([[][^]]*\\)?\\'" "\ (defconst tramp-completion-file-name-regexp-separate "\\`/\\[\\([^]]*\\)?\\'" "\
Value for `tramp-completion-file-name-regexp' for separate remoting. Value for `tramp-completion-file-name-regexp' for separate remoting.
See `tramp-file-name-structure' for more explanations.") See `tramp-file-name-structure' for more explanations.")
(defconst tramp-completion-file-name-regexp (cond ((equal tramp-syntax 'ftp) tramp-completion-file-name-regexp-unified) ((equal tramp-syntax 'sep) tramp-completion-file-name-regexp-separate) (t (error "Wrong `tramp-syntax' defined"))) "\ (defconst tramp-completion-file-name-regexp (cond ((eq tramp-syntax 'ftp) tramp-completion-file-name-regexp-unified) ((eq tramp-syntax 'sep) tramp-completion-file-name-regexp-separate) (t (error "Wrong `tramp-syntax' defined"))) "\
Regular expression matching file names handled by Tramp completion. Regular expression matching file names handled by Tramp completion.
This regexp should match partial Tramp file names only. This regexp should match partial Tramp file names only.
@ -33916,20 +33908,31 @@ updated after changing this variable.
Also see `tramp-file-name-structure'.") Also see `tramp-file-name-structure'.")
(defun tramp-completion-run-real-handler (operation args) "\ (defconst tramp-completion-file-name-handler-alist '((file-name-all-completions . tramp-completion-handle-file-name-all-completions) (file-name-completion . tramp-completion-handle-file-name-completion)) "\
Invoke `tramp-file-name-handler' for OPERATION. Alist of completion handler functions.
First arg specifies the OPERATION, second arg is a list of arguments to Used for file names matching `tramp-completion-file-name-regexp'.
pass to the OPERATION." (let* ((inhibit-file-name-handlers (\` (tramp-completion-file-name-handler cygwin-mount-name-hook-function cygwin-mount-map-drive-hook-function \, (and (eq inhibit-file-name-operation operation) inhibit-file-name-handlers)))) (inhibit-file-name-operation operation)) (apply operation args))) Operations not mentioned here will be handled by Tramp's file
(defun tramp-completion-file-name-handler (operation &rest args) name handler functions, or the normal Emacs functions.")
(if (tramp-completion-mode-p)
(apply 'tramp-autoload-file-name-handler operation args)
(tramp-completion-run-real-handler operation args)))
(defun tramp-autoload-file-name-handler (operation &rest args) "\ (defun tramp-run-real-handler (operation args) "\
Load Tramp file name handler, and perform OPERATION." (if (and (not (and (stringp (car args)) (string-equal (car args) "/"))) (let ((default-directory temporary-file-directory)) (and (null load-in-progress) (load "tramp" (quote noerror) (quote nomessage))))) (apply operation args) (tramp-completion-run-real-handler operation args))) Invoke normal file name handler for OPERATION.
First arg specifies the OPERATION, second arg is a list of arguments to
pass to the OPERATION." (let* ((inhibit-file-name-handlers (\` (tramp-file-name-handler tramp-vc-file-name-handler tramp-completion-file-name-handler cygwin-mount-name-hook-function cygwin-mount-map-drive-hook-function \, (and (eq inhibit-file-name-operation operation) inhibit-file-name-handlers)))) (inhibit-file-name-operation operation)) (apply operation args)))
(autoload 'tramp-file-name-handler "tramp" "\
Invoke Tramp file name handler.
Falls back to normal file name handler if no Tramp file name handler exists.
\(fn OPERATION &rest ARGS)" nil nil)
(autoload 'tramp-completion-file-name-handler "tramp" "\
Invoke Tramp file name completion handler.
Falls back to normal file name handler if no Tramp file name handler exists.
\(fn OPERATION &rest ARGS)" nil nil)
(defun tramp-register-autoload-file-name-handlers nil "\ (defun tramp-register-autoload-file-name-handlers nil "\
Add Tramp file name handlers to `file-name-handler-alist' during autoload." (add-to-list (quote file-name-handler-alist) (cons tramp-file-name-regexp (quote tramp-autoload-file-name-handler))) (put (quote tramp-autoload-file-name-handler) (quote safe-magic) t) (add-to-list (quote file-name-handler-alist) (cons tramp-completion-file-name-regexp (quote tramp-completion-file-name-handler))) (put (quote tramp-completion-file-name-handler) (quote safe-magic) t)) Add Tramp file name handlers to `file-name-handler-alist' during autoload." (add-to-list (quote file-name-handler-alist) (cons tramp-file-name-regexp (quote tramp-file-name-handler))) (put (quote tramp-file-name-handler) (quote safe-magic) t) (put (quote tramp-file-name-handler) (quote operations) (quote (file-name-all-completions file-name-completion file-remote-p))) (add-to-list (quote file-name-handler-alist) (cons tramp-completion-file-name-regexp (quote tramp-completion-file-name-handler))) (put (quote tramp-completion-file-name-handler) (quote safe-magic) t) (put (quote tramp-completion-file-name-handler) (quote operations) (mapcar (quote car) tramp-completion-file-name-handler-alist)))
(tramp-register-autoload-file-name-handlers) (tramp-register-autoload-file-name-handlers)
@ -33939,15 +33942,7 @@ Unload Tramp file name handlers from `file-name-handler-alist'.
\(fn)" nil nil) \(fn)" nil nil)
(defvar tramp-completion-mode nil "\ (defvar tramp-completion-mode nil "\
If non-nil, external packages signal that they are in file name completion. If non-nil, external packages signal that they are in file name completion.")
This is necessary, because Tramp uses a heuristic depending on last
input event. This fails when external packages use other characters
but <TAB>, <SPACE> or ?\\? for file name completion. This variable
should never be set globally, the intention is to let-bind it.")
(defun tramp-completion-mode-p nil "\
Check, whether method / user name / host name completion is active." (or (and (boundp (quote non-essential)) (symbol-value (quote non-essential))) tramp-completion-mode (equal last-input-event (quote tab))))
(autoload 'tramp-unload-tramp "tramp" "\ (autoload 'tramp-unload-tramp "tramp" "\
Discard Tramp from loading remote files. Discard Tramp from loading remote files.
@ -37759,7 +37754,7 @@ The major browsing mode used is essentially the standard Man mode.
Choose the filename for the man page using completion, based on the Choose the filename for the man page using completion, based on the
topic selected from the directories specified in `woman-manpath' and topic selected from the directories specified in `woman-manpath' and
`woman-path'. The directory expansions and topics are cached for `woman-path'. The directory expansions and topics are cached for
speed, but a non-nil interactive argument forces the caches to be speed. With a prefix argument, force the caches to be
updated (e.g. to re-interpret the current directory). updated (e.g. to re-interpret the current directory).
Used non-interactively, arguments are optional: if given then TOPIC Used non-interactively, arguments are optional: if given then TOPIC
@ -38050,17 +38045,16 @@ Zone out, completely.
;;;*** ;;;***
;;;### (autoloads nil nil ("abbrev.el" "bindings.el" "buff-menu.el" ;;;### (autoloads nil nil ("abbrev.el" "bindings.el" "buff-menu.el"
;;;;;; "button.el" "calc/calc-aent.el" "calc/calc-embed.el" "calc/calc-loaddefs.el" ;;;;;; "button.el" "calc/calc-aent.el" "calc/calc-embed.el" "calc/calc-misc.el"
;;;;;; "calc/calc-misc.el" "calc/calc-yank.el" "calendar/cal-loaddefs.el" ;;;;;; "calc/calc-yank.el" "calendar/cal-loaddefs.el" "calendar/diary-loaddefs.el"
;;;;;; "calendar/diary-loaddefs.el" "calendar/hol-loaddefs.el" "case-table.el" ;;;;;; "calendar/hol-loaddefs.el" "case-table.el" "cedet/ede/base.el"
;;;;;; "cedet/ede/base.el" "cedet/ede/config.el" "cedet/ede/cpp-root.el" ;;;;;; "cedet/ede/config.el" "cedet/ede/cpp-root.el" "cedet/ede/custom.el"
;;;;;; "cedet/ede/custom.el" "cedet/ede/dired.el" "cedet/ede/emacs.el" ;;;;;; "cedet/ede/dired.el" "cedet/ede/emacs.el" "cedet/ede/files.el"
;;;;;; "cedet/ede/files.el" "cedet/ede/generic.el" "cedet/ede/linux.el" ;;;;;; "cedet/ede/generic.el" "cedet/ede/linux.el" "cedet/ede/locate.el"
;;;;;; "cedet/ede/loaddefs.el" "cedet/ede/locate.el" "cedet/ede/make.el" ;;;;;; "cedet/ede/make.el" "cedet/ede/shell.el" "cedet/ede/speedbar.el"
;;;;;; "cedet/ede/shell.el" "cedet/ede/speedbar.el" "cedet/ede/system.el" ;;;;;; "cedet/ede/system.el" "cedet/ede/util.el" "cedet/semantic/analyze.el"
;;;;;; "cedet/ede/util.el" "cedet/semantic/analyze.el" "cedet/semantic/analyze/complete.el" ;;;;;; "cedet/semantic/analyze/complete.el" "cedet/semantic/analyze/refs.el"
;;;;;; "cedet/semantic/analyze/refs.el" "cedet/semantic/bovine.el" ;;;;;; "cedet/semantic/bovine.el" "cedet/semantic/bovine/c.el" "cedet/semantic/bovine/el.el"
;;;;;; "cedet/semantic/bovine/c.el" "cedet/semantic/bovine/el.el"
;;;;;; "cedet/semantic/bovine/gcc.el" "cedet/semantic/bovine/make.el" ;;;;;; "cedet/semantic/bovine/gcc.el" "cedet/semantic/bovine/make.el"
;;;;;; "cedet/semantic/bovine/scm.el" "cedet/semantic/complete.el" ;;;;;; "cedet/semantic/bovine/scm.el" "cedet/semantic/complete.el"
;;;;;; "cedet/semantic/ctxt.el" "cedet/semantic/db-file.el" "cedet/semantic/db-find.el" ;;;;;; "cedet/semantic/ctxt.el" "cedet/semantic/db-file.el" "cedet/semantic/db-find.el"
@ -38071,40 +38065,38 @@ Zone out, completely.
;;;;;; "cedet/semantic/find.el" "cedet/semantic/format.el" "cedet/semantic/html.el" ;;;;;; "cedet/semantic/find.el" "cedet/semantic/format.el" "cedet/semantic/html.el"
;;;;;; "cedet/semantic/ia-sb.el" "cedet/semantic/ia.el" "cedet/semantic/idle.el" ;;;;;; "cedet/semantic/ia-sb.el" "cedet/semantic/ia.el" "cedet/semantic/idle.el"
;;;;;; "cedet/semantic/imenu.el" "cedet/semantic/lex-spp.el" "cedet/semantic/lex.el" ;;;;;; "cedet/semantic/imenu.el" "cedet/semantic/lex-spp.el" "cedet/semantic/lex.el"
;;;;;; "cedet/semantic/loaddefs.el" "cedet/semantic/mru-bookmark.el" ;;;;;; "cedet/semantic/mru-bookmark.el" "cedet/semantic/scope.el"
;;;;;; "cedet/semantic/scope.el" "cedet/semantic/senator.el" "cedet/semantic/sort.el" ;;;;;; "cedet/semantic/senator.el" "cedet/semantic/sort.el" "cedet/semantic/symref.el"
;;;;;; "cedet/semantic/symref.el" "cedet/semantic/symref/cscope.el" ;;;;;; "cedet/semantic/symref/cscope.el" "cedet/semantic/symref/global.el"
;;;;;; "cedet/semantic/symref/global.el" "cedet/semantic/symref/grep.el" ;;;;;; "cedet/semantic/symref/grep.el" "cedet/semantic/symref/idutils.el"
;;;;;; "cedet/semantic/symref/idutils.el" "cedet/semantic/symref/list.el" ;;;;;; "cedet/semantic/symref/list.el" "cedet/semantic/tag-file.el"
;;;;;; "cedet/semantic/tag-file.el" "cedet/semantic/tag-ls.el" "cedet/semantic/tag-write.el" ;;;;;; "cedet/semantic/tag-ls.el" "cedet/semantic/tag-write.el"
;;;;;; "cedet/semantic/tag.el" "cedet/semantic/texi.el" "cedet/semantic/util-modes.el" ;;;;;; "cedet/semantic/tag.el" "cedet/semantic/texi.el" "cedet/semantic/util-modes.el"
;;;;;; "cedet/semantic/wisent/java-tags.el" "cedet/semantic/wisent/javascript.el" ;;;;;; "cedet/semantic/wisent/java-tags.el" "cedet/semantic/wisent/javascript.el"
;;;;;; "cedet/semantic/wisent/python.el" "cedet/srecode/compile.el" ;;;;;; "cedet/semantic/wisent/python.el" "cedet/srecode/compile.el"
;;;;;; "cedet/srecode/cpp.el" "cedet/srecode/document.el" "cedet/srecode/el.el" ;;;;;; "cedet/srecode/cpp.el" "cedet/srecode/document.el" "cedet/srecode/el.el"
;;;;;; "cedet/srecode/expandproto.el" "cedet/srecode/getset.el" ;;;;;; "cedet/srecode/expandproto.el" "cedet/srecode/getset.el"
;;;;;; "cedet/srecode/insert.el" "cedet/srecode/java.el" "cedet/srecode/loaddefs.el" ;;;;;; "cedet/srecode/insert.el" "cedet/srecode/java.el" "cedet/srecode/map.el"
;;;;;; "cedet/srecode/map.el" "cedet/srecode/mode.el" "cedet/srecode/srt.el" ;;;;;; "cedet/srecode/mode.el" "cedet/srecode/srt.el" "cedet/srecode/template.el"
;;;;;; "cedet/srecode/template.el" "cedet/srecode/texi.el" "composite.el" ;;;;;; "cedet/srecode/texi.el" "composite.el" "cus-face.el" "cus-start.el"
;;;;;; "cus-face.el" "cus-start.el" "custom.el" "dired-aux.el" "dired-loaddefs.el" ;;;;;; "custom.el" "dired-aux.el" "dired-x.el" "electric.el" "emacs-lisp/backquote.el"
;;;;;; "dired-x.el" "electric.el" "emacs-lisp/backquote.el" "emacs-lisp/byte-run.el" ;;;;;; "emacs-lisp/byte-run.el" "emacs-lisp/cl-extra.el" "emacs-lisp/cl-macs.el"
;;;;;; "emacs-lisp/cl-extra.el" "emacs-lisp/cl-loaddefs.el" "emacs-lisp/cl-macs.el"
;;;;;; "emacs-lisp/cl-preloaded.el" "emacs-lisp/cl-seq.el" "emacs-lisp/eieio-compat.el" ;;;;;; "emacs-lisp/cl-preloaded.el" "emacs-lisp/cl-seq.el" "emacs-lisp/eieio-compat.el"
;;;;;; "emacs-lisp/eieio-custom.el" "emacs-lisp/eieio-loaddefs.el" ;;;;;; "emacs-lisp/eieio-custom.el" "emacs-lisp/eieio-opt.el" "emacs-lisp/eldoc.el"
;;;;;; "emacs-lisp/eieio-opt.el" "emacs-lisp/eldoc.el" "emacs-lisp/float-sup.el" ;;;;;; "emacs-lisp/float-sup.el" "emacs-lisp/lisp-mode.el" "emacs-lisp/lisp.el"
;;;;;; "emacs-lisp/lisp-mode.el" "emacs-lisp/lisp.el" "emacs-lisp/macroexp.el" ;;;;;; "emacs-lisp/macroexp.el" "emacs-lisp/map-ynp.el" "emacs-lisp/nadvice.el"
;;;;;; "emacs-lisp/map-ynp.el" "emacs-lisp/nadvice.el" "emacs-lisp/syntax.el" ;;;;;; "emacs-lisp/syntax.el" "emacs-lisp/timer.el" "env.el" "epa-hook.el"
;;;;;; "emacs-lisp/timer.el" "env.el" "epa-hook.el" "eshell/em-alias.el" ;;;;;; "eshell/em-alias.el" "eshell/em-banner.el" "eshell/em-basic.el"
;;;;;; "eshell/em-banner.el" "eshell/em-basic.el" "eshell/em-cmpl.el" ;;;;;; "eshell/em-cmpl.el" "eshell/em-dirs.el" "eshell/em-glob.el"
;;;;;; "eshell/em-dirs.el" "eshell/em-glob.el" "eshell/em-hist.el" ;;;;;; "eshell/em-hist.el" "eshell/em-ls.el" "eshell/em-pred.el"
;;;;;; "eshell/em-ls.el" "eshell/em-pred.el" "eshell/em-prompt.el" ;;;;;; "eshell/em-prompt.el" "eshell/em-rebind.el" "eshell/em-script.el"
;;;;;; "eshell/em-rebind.el" "eshell/em-script.el" "eshell/em-smart.el" ;;;;;; "eshell/em-smart.el" "eshell/em-term.el" "eshell/em-tramp.el"
;;;;;; "eshell/em-term.el" "eshell/em-tramp.el" "eshell/em-unix.el" ;;;;;; "eshell/em-unix.el" "eshell/em-xtra.el" "facemenu.el" "faces.el"
;;;;;; "eshell/em-xtra.el" "eshell/esh-groups.el" "facemenu.el" ;;;;;; "files.el" "font-core.el" "font-lock.el" "format.el" "frame.el"
;;;;;; "faces.el" "files.el" "font-core.el" "font-lock.el" "format.el" ;;;;;; "help.el" "hfy-cmap.el" "htmlfontify-loaddefs.el" "ibuf-ext.el"
;;;;;; "frame.el" "help.el" "hfy-cmap.el" "htmlfontify-loaddefs.el" ;;;;;; "indent.el" "international/characters.el" "international/charprop.el"
;;;;;; "ibuf-ext.el" "ibuffer-loaddefs.el" "indent.el" "international/characters.el" ;;;;;; "international/charscript.el" "international/cp51932.el"
;;;;;; "international/charprop.el" "international/charscript.el" ;;;;;; "international/eucjp-ms.el" "international/mule-cmds.el"
;;;;;; "international/cp51932.el" "international/eucjp-ms.el" "international/mule-cmds.el"
;;;;;; "international/mule-conf.el" "international/mule.el" "international/uni-bidi.el" ;;;;;; "international/mule-conf.el" "international/mule.el" "international/uni-bidi.el"
;;;;;; "international/uni-brackets.el" "international/uni-category.el" ;;;;;; "international/uni-brackets.el" "international/uni-category.el"
;;;;;; "international/uni-combining.el" "international/uni-comment.el" ;;;;;; "international/uni-combining.el" "international/uni-comment.el"
@ -38132,32 +38124,30 @@ Zone out, completely.
;;;;;; "leim/quail/pypunct-b5.el" "leim/quail/rfc1345.el" "leim/quail/sgml-input.el" ;;;;;; "leim/quail/pypunct-b5.el" "leim/quail/rfc1345.el" "leim/quail/sgml-input.el"
;;;;;; "leim/quail/slovak.el" "leim/quail/symbol-ksc.el" "leim/quail/tamil-dvorak.el" ;;;;;; "leim/quail/slovak.el" "leim/quail/symbol-ksc.el" "leim/quail/tamil-dvorak.el"
;;;;;; "leim/quail/vntelex.el" "leim/quail/vnvni.el" "leim/quail/welsh.el" ;;;;;; "leim/quail/vntelex.el" "leim/quail/vnvni.el" "leim/quail/welsh.el"
;;;;;; "loadup.el" "mail/blessmail.el" "mail/rmail-loaddefs.el" ;;;;;; "loadup.el" "mail/blessmail.el" "mail/rmailedit.el" "mail/rmailkwd.el"
;;;;;; "mail/rmailedit.el" "mail/rmailkwd.el" "mail/rmailmm.el" ;;;;;; "mail/rmailmm.el" "mail/rmailmsc.el" "mail/rmailsort.el"
;;;;;; "mail/rmailmsc.el" "mail/rmailsort.el" "mail/rmailsum.el" ;;;;;; "mail/rmailsum.el" "mail/undigest.el" "menu-bar.el" "mh-e/mh-gnus.el"
;;;;;; "mail/undigest.el" "menu-bar.el" "mh-e/mh-gnus.el" "mh-e/mh-loaddefs.el" ;;;;;; "mh-e/mh-loaddefs.el" "minibuffer.el" "mouse.el" "net/tramp-loaddefs.el"
;;;;;; "minibuffer.el" "mouse.el" "net/tramp-loaddefs.el" "newcomment.el" ;;;;;; "newcomment.el" "obarray.el" "org/ob-core.el" "org/ob-keys.el"
;;;;;; "obarray.el" "org/ob-core.el" "org/ob-keys.el" "org/ob-lob.el" ;;;;;; "org/ob-lob.el" "org/ob-matlab.el" "org/ob-tangle.el" "org/ob.el"
;;;;;; "org/ob-matlab.el" "org/ob-tangle.el" "org/ob.el" "org/org-archive.el" ;;;;;; "org/org-archive.el" "org/org-attach.el" "org/org-bbdb.el"
;;;;;; "org/org-attach.el" "org/org-bbdb.el" "org/org-clock.el" ;;;;;; "org/org-clock.el" "org/org-datetree.el" "org/org-element.el"
;;;;;; "org/org-datetree.el" "org/org-element.el" "org/org-feed.el" ;;;;;; "org/org-feed.el" "org/org-footnote.el" "org/org-id.el" "org/org-indent.el"
;;;;;; "org/org-footnote.el" "org/org-id.el" "org/org-indent.el" ;;;;;; "org/org-install.el" "org/org-irc.el" "org/org-mobile.el"
;;;;;; "org/org-install.el" "org/org-irc.el" "org/org-loaddefs.el" ;;;;;; "org/org-plot.el" "org/org-table.el" "org/org-timer.el" "org/ox-ascii.el"
;;;;;; "org/org-mobile.el" "org/org-plot.el" "org/org-table.el" ;;;;;; "org/ox-beamer.el" "org/ox-html.el" "org/ox-icalendar.el"
;;;;;; "org/org-timer.el" "org/ox-ascii.el" "org/ox-beamer.el" "org/ox-html.el" ;;;;;; "org/ox-latex.el" "org/ox-man.el" "org/ox-md.el" "org/ox-odt.el"
;;;;;; "org/ox-icalendar.el" "org/ox-latex.el" "org/ox-man.el" "org/ox-md.el" ;;;;;; "org/ox-org.el" "org/ox-publish.el" "org/ox-texinfo.el" "org/ox.el"
;;;;;; "org/ox-odt.el" "org/ox-org.el" "org/ox-publish.el" "org/ox-texinfo.el" ;;;;;; "progmodes/elisp-mode.el" "progmodes/prog-mode.el" "ps-def.el"
;;;;;; "org/ox.el" "progmodes/elisp-mode.el" "progmodes/prog-mode.el" ;;;;;; "ps-mule.el" "register.el" "replace.el" "rfn-eshadow.el"
;;;;;; "ps-def.el" "ps-mule.el" "ps-print-loaddefs.el" "register.el" ;;;;;; "select.el" "simple.el" "startup.el" "subdirs.el" "subr.el"
;;;;;; "replace.el" "rfn-eshadow.el" "select.el" "simple.el" "startup.el" ;;;;;; "textmodes/fill.el" "textmodes/page.el" "textmodes/paragraphs.el"
;;;;;; "subdirs.el" "subr.el" "textmodes/fill.el" "textmodes/page.el" ;;;;;; "textmodes/reftex-auc.el" "textmodes/reftex-cite.el" "textmodes/reftex-dcr.el"
;;;;;; "textmodes/paragraphs.el" "textmodes/reftex-auc.el" "textmodes/reftex-cite.el" ;;;;;; "textmodes/reftex-global.el" "textmodes/reftex-index.el"
;;;;;; "textmodes/reftex-dcr.el" "textmodes/reftex-global.el" "textmodes/reftex-index.el" ;;;;;; "textmodes/reftex-parse.el" "textmodes/reftex-ref.el" "textmodes/reftex-sel.el"
;;;;;; "textmodes/reftex-loaddefs.el" "textmodes/reftex-parse.el" ;;;;;; "textmodes/reftex-toc.el" "textmodes/text-mode.el" "uniquify.el"
;;;;;; "textmodes/reftex-ref.el" "textmodes/reftex-sel.el" "textmodes/reftex-toc.el" ;;;;;; "vc/ediff-hook.el" "vc/vc-hooks.el" "version.el" "widget.el"
;;;;;; "textmodes/text-mode.el" "uniquify.el" "vc/ediff-hook.el" ;;;;;; "window.el") (0 0 0 0))
;;;;;; "vc/vc-hooks.el" "version.el" "widget.el" "window.el") (0
;;;;;; 0 0 0))
;;;*** ;;;***