aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2017-03-07 12:59:40 -0500
committerGlenn Morris2017-03-07 13:00:05 -0500
commitbe538ba778fc32587c9f46a61728b1ceffa6d290 (patch)
tree09024366f2b1f1af00a31197c3cc4ed32fe44b8b
parenta136734f3fdc17bfb5924e30e597b00057c916d0 (diff)
downloademacs-be538ba778fc32587c9f46a61728b1ceffa6d290.tar.gz
emacs-be538ba778fc32587c9f46a61728b1ceffa6d290.zip
; Update ldefs-boot.el
-rw-r--r--lisp/ldefs-boot.el327
1 files changed, 218 insertions, 109 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index 406f0456662..01a3e5d1506 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -1717,6 +1717,9 @@ Auto-Revert Mode is a minor mode that affects only the current
1717buffer. When enabled, it reverts the buffer when the file on 1717buffer. When enabled, it reverts the buffer when the file on
1718disk changes. 1718disk changes.
1719 1719
1720When a buffer is reverted, a message is generated. This can be
1721suppressed by setting `auto-revert-verbose' to nil.
1722
1720Use `global-auto-revert-mode' to automatically revert all buffers. 1723Use `global-auto-revert-mode' to automatically revert all buffers.
1721Use `auto-revert-tail-mode' if you know that the file will only grow 1724Use `auto-revert-tail-mode' if you know that the file will only grow
1722without being changed in the part that is already in the buffer. 1725without being changed in the part that is already in the buffer.
@@ -1747,6 +1750,9 @@ You can edit the buffer and turn this mode off and on again as
1747you please. But make sure the background process has stopped 1750you please. But make sure the background process has stopped
1748writing before you save the file! 1751writing before you save the file!
1749 1752
1753When a buffer is reverted, a message is generated. This can be
1754suppressed by setting `auto-revert-verbose' to nil.
1755
1750Use `auto-revert-mode' for changes other than appends! 1756Use `auto-revert-mode' for changes other than appends!
1751 1757
1752\(fn &optional ARG)" t nil) 1758\(fn &optional ARG)" t nil)
@@ -1785,6 +1791,9 @@ documentation of that variable. It ignores buffers with modes
1785matching `global-auto-revert-ignore-modes', and buffers with a 1791matching `global-auto-revert-ignore-modes', and buffers with a
1786non-nil vale of `global-auto-revert-ignore-buffer'. 1792non-nil vale of `global-auto-revert-ignore-buffer'.
1787 1793
1794When a buffer is reverted, a message is generated. This can be
1795suppressed by setting `auto-revert-verbose' to nil.
1796
1788This function calls the hook `global-auto-revert-mode-hook'. 1797This function calls the hook `global-auto-revert-mode-hook'.
1789It displays the text that `global-auto-revert-mode-text' 1798It displays the text that `global-auto-revert-mode-text'
1790specifies in the mode line. 1799specifies in the mode line.
@@ -3575,7 +3584,6 @@ diary entries can also be marked on the calendar (see
3575 3584
3576Runs the following hooks: 3585Runs the following hooks:
3577 3586
3578`calendar-load-hook' - after loading calendar.el
3579`calendar-today-visible-hook', `calendar-today-invisible-hook' - after 3587`calendar-today-visible-hook', `calendar-today-invisible-hook' - after
3580 generating a calendar, if today's date is visible or not, respectively 3588 generating a calendar, if today's date is visible or not, respectively
3581`calendar-initial-window-hook' - after first creating a calendar 3589`calendar-initial-window-hook' - after first creating a calendar
@@ -4768,6 +4776,13 @@ and runs the normal hook `command-history-hook'.
4768 4776
4769;;;*** 4777;;;***
4770 4778
4779;;;### (autoloads nil "cl-generic" "emacs-lisp/cl-generic.el" (0
4780;;;;;; 0 0 0))
4781;;; Generated autoloads from emacs-lisp/cl-generic.el
4782(push (purecopy '(cl-generic 1 0)) package--builtin-versions)
4783
4784;;;***
4785
4771;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (0 0 4786;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (0 0
4772;;;;;; 0 0)) 4787;;;;;; 0 0))
4773;;; Generated autoloads from emacs-lisp/cl-indent.el 4788;;; Generated autoloads from emacs-lisp/cl-indent.el
@@ -4870,6 +4885,15 @@ printer proceeds to the next function on the list.
4870This variable is not used at present, but it is defined in hopes that 4885This variable is not used at present, but it is defined in hopes that
4871a future Emacs interpreter will be able to use it.") 4886a future Emacs interpreter will be able to use it.")
4872 4887
4888(autoload 'cl-mapcar "cl-lib" "\
4889Apply FUNCTION to each element of SEQ, and make a list of the results.
4890If there are several SEQs, FUNCTION is called with that many arguments,
4891and mapping stops as soon as the shortest list runs out. With just one
4892SEQ, this is like `mapcar'. With several, it is like the Common Lisp
4893`mapcar' function extended to arbitrary sequence types.
4894
4895\(fn FUNCTION SEQ...)" nil nil)
4896
4873(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cl-lib" '("cl-"))) 4897(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cl-lib" '("cl-")))
4874 4898
4875;;;*** 4899;;;***
@@ -4882,6 +4906,33 @@ a future Emacs interpreter will be able to use it.")
4882 4906
4883;;;*** 4907;;;***
4884 4908
4909;;;### (autoloads nil "cl-print" "emacs-lisp/cl-print.el" (0 0 0
4910;;;;;; 0))
4911;;; Generated autoloads from emacs-lisp/cl-print.el
4912(push (purecopy '(cl-print 1 0)) package--builtin-versions)
4913
4914(autoload 'cl-print-object "cl-print" "\
4915Dispatcher to print OBJECT on STREAM according to its type.
4916You can add methods to it to customize the output.
4917But if you just want to print something, don't call this directly:
4918call other entry points instead, such as `cl-prin1'.
4919
4920\(fn OBJECT STREAM)" nil nil)
4921
4922(autoload 'cl-prin1 "cl-print" "\
4923
4924
4925\(fn OBJECT &optional STREAM)" nil nil)
4926
4927(autoload 'cl-prin1-to-string "cl-print" "\
4928
4929
4930\(fn OBJECT)" nil nil)
4931
4932(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cl-print" '("cl-print-")))
4933
4934;;;***
4935
4885;;;### (autoloads "actual autoloads are elsewhere" "cl-seq" "emacs-lisp/cl-seq.el" 4936;;;### (autoloads "actual autoloads are elsewhere" "cl-seq" "emacs-lisp/cl-seq.el"
4886;;;;;; (0 0 0 0)) 4937;;;;;; (0 0 0 0))
4887;;; Generated autoloads from emacs-lisp/cl-seq.el 4938;;; Generated autoloads from emacs-lisp/cl-seq.el
@@ -5803,7 +5854,16 @@ Major mode to edit \"Sassy CSS\" files.
5803 5854
5804\(fn)" t nil) 5855\(fn)" t nil)
5805 5856
5806(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "css-mode" '("scss-" "css-"))) 5857(autoload 'css-lookup-symbol "css-mode" "\
5858Display the CSS documentation for SYMBOL, as found on MDN.
5859When this command is used interactively, it picks a default
5860symbol based on the CSS text before point -- either an @-keyword,
5861a property name, a pseudo-class, or a pseudo-element, depending
5862on what is seen near point.
5863
5864\(fn SYMBOL)" t nil)
5865
5866(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "css-mode" '("css-" "scss-")))
5807 5867
5808;;;*** 5868;;;***
5809 5869
@@ -6195,7 +6255,7 @@ option itself, into the file you specify, overwriting any
6195`custom-set-variables' and `custom-set-faces' forms already 6255`custom-set-variables' and `custom-set-faces' forms already
6196present in that file. It will not delete any customizations from 6256present in that file. It will not delete any customizations from
6197the old custom file. You should do that manually if that is what you 6257the old custom file. You should do that manually if that is what you
6198want. You also have to put something like `(load \"CUSTOM-FILE\") 6258want. You also have to put something like (load \"CUSTOM-FILE\")
6199in your init file, where CUSTOM-FILE is the actual name of the 6259in your init file, where CUSTOM-FILE is the actual name of the
6200file. Otherwise, Emacs will not load the file when it starts up, 6260file. Otherwise, Emacs will not load the file when it starts up,
6201and hence will not set `custom-file' to that file either.") 6261and hence will not set `custom-file' to that file either.")
@@ -6602,6 +6662,38 @@ To specify a nil argument interactively, exit with an empty minibuffer.
6602 6662
6603\(fn &optional FUNCTION)" t nil) 6663\(fn &optional FUNCTION)" t nil)
6604 6664
6665(autoload 'debug-on-variable-change "debug" "\
6666Trigger a debugger invocation when VARIABLE is changed.
6667
6668When called interactively, prompt for VARIABLE in the minibuffer.
6669
6670This works by calling `add-variable-watch' on VARIABLE. If you
6671quit from the debugger, this will abort the change (unless the
6672change is caused by the termination of a let-binding).
6673
6674The watchpoint may be circumvented by C code that changes the
6675variable directly (i.e., not via `set'). Changing the value of
6676the variable (e.g., `setcar' on a list variable) will not trigger
6677watchpoint.
6678
6679Use \\[cancel-debug-on-variable-change] to cancel the effect of
6680this command. Uninterning VARIABLE or making it an alias of
6681another symbol also cancels it.
6682
6683\(fn VARIABLE)" t nil)
6684
6685(defalias 'debug-watch #'debug-on-variable-change)
6686
6687(autoload 'cancel-debug-on-variable-change "debug" "\
6688Undo effect of \\[debug-on-variable-change] on VARIABLE.
6689If VARIABLE is nil, cancel debug-on-variable-change for all variables.
6690When called interactively, prompt for VARIABLE in the minibuffer.
6691To specify a nil argument interactively, exit with an empty minibuffer.
6692
6693\(fn &optional VARIABLE)" t nil)
6694
6695(defalias 'cancel-debug-watch #'cancel-debug-on-variable-change)
6696
6605(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "debug" '("debug" "inhibit-debug-on-entry"))) 6697(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "debug" '("debug" "inhibit-debug-on-entry")))
6606 6698
6607;;;*** 6699;;;***
@@ -7241,6 +7333,10 @@ Switches passed to `ls' for Dired. MUST contain the `l' option.
7241May contain all other options that don't contradict `-l'; 7333May contain all other options that don't contradict `-l';
7242may contain even `F', `b', `i' and `s'. See also the variable 7334may contain even `F', `b', `i' and `s'. See also the variable
7243`dired-ls-F-marks-symlinks' concerning the `F' switch. 7335`dired-ls-F-marks-symlinks' concerning the `F' switch.
7336Options that include embedded whitespace must be quoted
7337like this: \\\"--option=value with spaces\\\"; you can use
7338`combine-and-quote-strings' to produce the correct quoting of
7339each option.
7244On systems such as MS-DOS and MS-Windows, which use `ls' emulation in Lisp, 7340On systems such as MS-DOS and MS-Windows, which use `ls' emulation in Lisp,
7245some of the `ls' switches are not supported; see the doc string of 7341some of the `ls' switches are not supported; see the doc string of
7246`insert-directory' in `ls-lisp.el' for more details.") 7342`insert-directory' in `ls-lisp.el' for more details.")
@@ -7733,7 +7829,7 @@ Switch to *dungeon* buffer and start game.
7733 7829
7734\(fn)" t nil) 7830\(fn)" t nil)
7735 7831
7736(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dunnet" '("down" "dun" "out" "obj-special" "south" "north" "west" "east"))) 7832(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dunnet" '("dun" "obj-special")))
7737 7833
7738;;;*** 7834;;;***
7739 7835
@@ -9506,7 +9602,7 @@ It creates an autoload function for CNAME's constructor.
9506;;;### (autoloads nil "elec-pair" "elec-pair.el" (0 0 0 0)) 9602;;;### (autoloads nil "elec-pair" "elec-pair.el" (0 0 0 0))
9507;;; Generated autoloads from elec-pair.el 9603;;; Generated autoloads from elec-pair.el
9508 9604
9509(defvar electric-pair-text-pairs '((34 . 34)) "\ 9605(defvar electric-pair-text-pairs '((34 . 34) ((nth 0 electric-quote-chars) nth 1 electric-quote-chars) ((nth 2 electric-quote-chars) nth 3 electric-quote-chars)) "\
9510Alist of pairs that should always be used in comments and strings. 9606Alist of pairs that should always be used in comments and strings.
9511 9607
9512Pairs of delimiters in this list are a fallback in case they have 9608Pairs of delimiters in this list are a fallback in case they have
@@ -11064,8 +11160,9 @@ corresponding to a successful execution.
11064 11160
11065(defvar tags-file-name nil "\ 11161(defvar tags-file-name nil "\
11066File name of tags table. 11162File name of tags table.
11067To switch to a new tags table, setting this variable is sufficient. 11163To switch to a new tags table, do not set this variable; instead,
11068If you set this variable, do not also set `tags-table-list'. 11164invoke `visit-tags-table', which is the only reliable way of
11165setting the value of this variable, whether buffer-local or global.
11069Use the `etags' program to make a tags table file.") 11166Use the `etags' program to make a tags table file.")
11070 (put 'tags-file-name 'variable-interactive (purecopy "fVisit tags table: ")) 11167 (put 'tags-file-name 'variable-interactive (purecopy "fVisit tags table: "))
11071 (put 'tags-file-name 'safe-local-variable 'stringp) 11168 (put 'tags-file-name 'safe-local-variable 'stringp)
@@ -11126,7 +11223,8 @@ FILE should be the name of a file created with the `etags' program.
11126A directory name is ok too; it means file TAGS in that directory. 11223A directory name is ok too; it means file TAGS in that directory.
11127 11224
11128Normally \\[visit-tags-table] sets the global value of `tags-file-name'. 11225Normally \\[visit-tags-table] sets the global value of `tags-file-name'.
11129With a prefix arg, set the buffer-local value instead. 11226With a prefix arg, set the buffer-local value instead. When called
11227from Lisp, if the optional arg LOCAL is non-nil, set the local value.
11130When you find a tag with \\[find-tag], the buffer it finds the tag 11228When you find a tag with \\[find-tag], the buffer it finds the tag
11131in is given a local value of this variable which is the name of the tags 11229in is given a local value of this variable which is the name of the tags
11132file the tag was in. 11230file the tag was in.
@@ -11135,15 +11233,18 @@ file the tag was in.
11135 11233
11136(autoload 'visit-tags-table-buffer "etags" "\ 11234(autoload 'visit-tags-table-buffer "etags" "\
11137Select the buffer containing the current tags table. 11235Select the buffer containing the current tags table.
11138If optional arg is a string, visit that file as a tags table. 11236Optional arg CONT specifies which tags table to visit.
11139If optional arg is t, visit the next table in `tags-table-list'. 11237If CONT is a string, visit that file as a tags table.
11140If optional arg is the atom `same', don't look for a new table; 11238If CONT is t, visit the next table in `tags-table-list'.
11239If CONT is the atom `same', don't look for a new table;
11141 just select the buffer visiting `tags-file-name'. 11240 just select the buffer visiting `tags-file-name'.
11142If arg is nil or absent, choose a first buffer from information in 11241If CONT is nil or absent, choose a first buffer from information in
11143 `tags-file-name', `tags-table-list', `tags-table-list-pointer'. 11242 `tags-file-name', `tags-table-list', `tags-table-list-pointer'.
11243Optional second arg CBUF, if non-nil, specifies the initial buffer,
11244which is important if that buffer has a local value of `tags-file-name'.
11144Returns t if it visits a tags table, or nil if there are no more in the list. 11245Returns t if it visits a tags table, or nil if there are no more in the list.
11145 11246
11146\(fn &optional CONT)" nil nil) 11247\(fn &optional CONT CBUF)" nil nil)
11147 11248
11148(autoload 'tags-table-files "etags" "\ 11249(autoload 'tags-table-files "etags" "\
11149Return a list of files in the current tags table. 11250Return a list of files in the current tags table.
@@ -12363,49 +12464,51 @@ Copy directory-local variables to the -*- line.
12363(defvar enable-connection-local-variables t "\ 12464(defvar enable-connection-local-variables t "\
12364Non-nil means enable use of connection-local variables.") 12465Non-nil means enable use of connection-local variables.")
12365 12466
12366(autoload 'connection-local-set-classes "files-x" "\ 12467(autoload 'connection-local-set-profiles "files-x" "\
12367Add CLASSES for remote servers. 12468Add PROFILES for remote servers.
12368CRITERIA is either a regular expression identifying a remote 12469CRITERIA is either a regular expression identifying a remote
12369server, or a function with one argument IDENTIFICATION, which 12470server, or a function with one argument IDENTIFICATION, which
12370returns non-nil when a remote server shall apply CLASS'es 12471returns non-nil when a remote server shall apply PROFILE's
12371variables. If CRITERIA is nil, it always applies. 12472variables. If CRITERIA is nil, it always applies.
12372CLASSES are the names of a variable class (a symbol). 12473PROFILES are the names of a connection profile (a symbol).
12373 12474
12374When a connection to a remote server is opened and CRITERIA 12475When a connection to a remote server is opened and CRITERIA
12375matches to that server, the connection-local variables from CLASSES 12476matches to that server, the connection-local variables from
12376are applied to the corresponding process buffer. The variables 12477PROFILES are applied to the corresponding process buffer. The
12377for a class are defined using `connection-local-set-class-variables'. 12478variables for a connection profile are defined using
12479`connection-local-set-profile-variables'.
12378 12480
12379\(fn CRITERIA &rest CLASSES)" nil nil) 12481\(fn CRITERIA &rest PROFILES)" nil nil)
12380 12482
12381(autoload 'connection-local-set-class-variables "files-x" "\ 12483(autoload 'connection-local-set-profile-variables "files-x" "\
12382Map the symbol CLASS to a list of variable settings. 12484Map the symbol PROFILE to a list of variable settings.
12383VARIABLES is a list that declares connection-local variables for 12485VARIABLES is a list that declares connection-local variables for
12384the class. An element in VARIABLES is an alist whose elements 12486the connection profile. An element in VARIABLES is an alist
12385are of the form (VAR . VALUE). 12487whose elements are of the form (VAR . VALUE).
12386 12488
12387When a connection to a remote server is opened, the server's 12489When a connection to a remote server is opened, the server's
12388classes are found. A server may be assigned a class using 12490connection profiles are found. A server may be assigned a
12389`connection-local-set-class'. Then variables are set in the 12491connection profile using `connection-local-set-profile'. Then
12390server's process buffer according to the VARIABLES list of the 12492variables are set in the server's process buffer according to the
12391class. The list is processed in order. 12493VARIABLES list of the connection profile. The list is processed
12494in order.
12392 12495
12393\(fn CLASS VARIABLES)" nil nil) 12496\(fn PROFILE VARIABLES)" nil nil)
12394 12497
12395(autoload 'hack-connection-local-variables-apply "files-x" "\ 12498(autoload 'hack-connection-local-variables-apply "files-x" "\
12396Apply connection-local variables identified by `default-directory'. 12499Apply connection-local variables identified by CRITERIA.
12397Other local variables, like file-local and dir-local variables, 12500Other local variables, like file-local and dir-local variables,
12398will not be changed. 12501will not be changed.
12399 12502
12400\(fn)" nil nil) 12503\(fn CRITERIA)" nil nil)
12401 12504
12402(autoload 'with-connection-local-classes "files-x" "\ 12505(autoload 'with-connection-local-profiles "files-x" "\
12403Apply connection-local variables according to CLASSES in current buffer. 12506Apply connection-local variables according to PROFILES in current buffer.
12404Execute BODY, and unwind connection local variables. 12507Execute BODY, and unwind connection local variables.
12405 12508
12406\(fn CLASSES &rest BODY)" nil t) 12509\(fn PROFILES &rest BODY)" nil t)
12407 12510
12408(function-put 'with-connection-local-classes 'lisp-indent-function '1) 12511(function-put 'with-connection-local-profiles 'lisp-indent-function '1)
12409 12512
12410(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "files-x" '("hack-connection-local-variables" "connection-local-" "modify-" "read-file-local-variable"))) 12513(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "files-x" '("hack-connection-local-variables" "connection-local-" "modify-" "read-file-local-variable")))
12411 12514
@@ -14977,22 +15080,7 @@ file name to `*.gz', and sets `grep-highlight-matches' to `always'.
14977 15080
14978(defalias 'rzgrep 'zrgrep) 15081(defalias 'rzgrep 'zrgrep)
14979 15082
14980(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "grep" '("rgrep-default-command" "grep-" "kill-grep"))) 15083(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "grep" '("rgrep-" "grep-" "kill-grep")))
14981
14982;;;***
14983
14984;;;### (autoloads nil "gs" "gs.el" (0 0 0 0))
14985;;; Generated autoloads from gs.el
14986
14987(autoload 'gs-load-image "gs" "\
14988Load a PS image for display on FRAME.
14989SPEC is an image specification, IMG-HEIGHT and IMG-WIDTH are width
14990and height of the image in pixels. WINDOW-AND-PIXMAP-ID is a string of
14991the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful.
14992
14993\(fn FRAME SPEC IMG-WIDTH IMG-HEIGHT WINDOW-AND-PIXMAP-ID PIXEL-COLORS)" nil nil)
14994
14995(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gs" '("gs-")))
14996 15084
14997;;;*** 15085;;;***
14998 15086
@@ -15769,6 +15857,14 @@ This discards the buffer's undo information.
15769 15857
15770;;;*** 15858;;;***
15771 15859
15860;;;### (autoloads "actual autoloads are elsewhere" "hfy-cmap" "hfy-cmap.el"
15861;;;;;; (0 0 0 0))
15862;;; Generated autoloads from hfy-cmap.el
15863
15864(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "hfy-cmap" '("hfy-" "htmlfontify-unload-rgb-file")))
15865
15866;;;***
15867
15772;;;### (autoloads nil "hi-lock" "hi-lock.el" (0 0 0 0)) 15868;;;### (autoloads nil "hi-lock" "hi-lock.el" (0 0 0 0))
15773;;; Generated autoloads from hi-lock.el 15869;;; Generated autoloads from hi-lock.el
15774 15870
@@ -16450,7 +16546,7 @@ You may also want to set `hfy-page-header' and `hfy-page-footer'.
16450;;;;;; (0 0 0 0)) 16546;;;;;; (0 0 0 0))
16451;;; Generated autoloads from ibuf-ext.el 16547;;; Generated autoloads from ibuf-ext.el
16452 16548
16453(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ibuf-ext" '("ibuffer-" "filename" "shell-command-" "size" "alphabetic" "major-mode" "mode" "print" "predicate" "content" "name" "derived-mode" "used-mode" "query-replace" "rename-uniquely" "revert" "replace-regexp" "view-and-eval" "eval"))) 16549(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")))
16454 16550
16455;;;*** 16551;;;***
16456 16552
@@ -16528,6 +16624,8 @@ operation is complete, in the form:
16528ACTIVE-OPSTRING is a string which will be displayed to the user in a 16624ACTIVE-OPSTRING is a string which will be displayed to the user in a
16529confirmation message, in the form: 16625confirmation message, in the form:
16530 \"Really ACTIVE-OPSTRING x buffers?\" 16626 \"Really ACTIVE-OPSTRING x buffers?\"
16627BEFORE is a form to evaluate before start the operation.
16628AFTER is a form to evaluate once the operation is complete.
16531COMPLEX means this function is special; if COMPLEX is nil BODY 16629COMPLEX means this function is special; if COMPLEX is nil BODY
16532evaluates once for each marked buffer, MBUF, with MBUF current 16630evaluates once for each marked buffer, MBUF, with MBUF current
16533and saving the point. If COMPLEX is non-nil, BODY evaluates 16631and saving the point. If COMPLEX is non-nil, BODY evaluates
@@ -16536,7 +16634,7 @@ BODY define the operation; they are forms to evaluate per each
16536marked buffer. BODY is evaluated with `buf' bound to the 16634marked buffer. BODY is evaluated with `buf' bound to the
16537buffer object. 16635buffer object.
16538 16636
16539\(fn OP ARGS DOCUMENTATION (&key INTERACTIVE MARK MODIFIER-P DANGEROUS OPSTRING ACTIVE-OPSTRING COMPLEX) &rest BODY)" nil t) 16637\(fn OP ARGS DOCUMENTATION (&key INTERACTIVE MARK MODIFIER-P DANGEROUS OPSTRING ACTIVE-OPSTRING BEFORE AFTER COMPLEX) &rest BODY)" nil t)
16540 16638
16541(function-put 'define-ibuffer-op 'lisp-indent-function '2) 16639(function-put 'define-ibuffer-op 'lisp-indent-function '2)
16542 16640
@@ -16600,6 +16698,12 @@ FORMATS is the value to use for `ibuffer-formats'.
16600 16698
16601\(fn &optional OTHER-WINDOW-P NAME QUALIFIERS NOSELECT SHRINK FILTER-GROUPS FORMATS)" t nil) 16699\(fn &optional OTHER-WINDOW-P NAME QUALIFIERS NOSELECT SHRINK FILTER-GROUPS FORMATS)" t nil)
16602 16700
16701(autoload 'ibuffer-jump "ibuffer" "\
16702Call Ibuffer and set point at the line listing the current buffer.
16703If optional arg OTHER-WINDOW is non-nil, then use another window.
16704
16705\(fn &optional OTHER-WINDOW)" t nil)
16706
16603(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ibuffer" '("ibuffer-" "filename" "process" "mark" "mod" "size" "name" "locked" "read-only"))) 16707(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ibuffer" '("ibuffer-" "filename" "process" "mark" "mod" "size" "name" "locked" "read-only")))
16604 16708
16605;;;*** 16709;;;***
@@ -17509,12 +17613,14 @@ Jump to thumbnail buffer.
17509 17613
17510\(fn)" t nil) 17614\(fn)" t nil)
17511 17615
17512(autoload 'image-dired-setup-dired-keybindings "image-dired" "\ 17616(autoload 'image-dired-minor-mode "image-dired" "\
17513Setup easy-to-use keybindings for the commands to be used in dired mode. 17617Setup easy-to-use keybindings for the commands to be used in dired mode.
17514Note that n, p and <down> and <up> will be hijacked and bound to 17618Note that n, p and <down> and <up> will be hijacked and bound to
17515`image-dired-dired-x-line'. 17619`image-dired-dired-x-line'.
17516 17620
17517\(fn)" t nil) 17621\(fn &optional ARG)" t nil)
17622
17623(define-obsolete-function-alias 'image-dired-setup-dired-keybindings 'image-dired-minor-mode "26.1")
17518 17624
17519(autoload 'image-dired-display-thumbs-append "image-dired" "\ 17625(autoload 'image-dired-display-thumbs-append "image-dired" "\
17520Append thumbnails to `image-dired-thumbnail-buffer'. 17626Append thumbnails to `image-dired-thumbnail-buffer'.
@@ -18451,9 +18557,7 @@ Add submenus to the File menu, to convert to and from various formats.
18451 18557
18452(defvar ispell-personal-dictionary nil "\ 18558(defvar ispell-personal-dictionary nil "\
18453File name of your personal spelling dictionary, or nil. 18559File name of your personal spelling dictionary, or nil.
18454If nil, the default personal dictionary, (\"~/.ispell_DICTNAME\" for ispell or 18560If nil, the default personal dictionary for your spelling checker is used.")
18455\"~/.aspell.LANG.pws\" for Aspell) is used, where DICTNAME is the name of your
18456default dictionary and LANG the two letter language code.")
18457 18561
18458(custom-autoload 'ispell-personal-dictionary "ispell" t) 18562(custom-autoload 'ispell-personal-dictionary "ispell" t)
18459 18563
@@ -18462,12 +18566,7 @@ default dictionary and LANG the two letter language code.")
18462(defvar ispell-menu-map nil "\ 18566(defvar ispell-menu-map nil "\
18463Key map for ispell menu.") 18567Key map for ispell menu.")
18464 18568
18465(defvar ispell-menu-xemacs nil "\ 18569(defvar ispell-menu-map-needed (unless ispell-menu-map 'reload))
18466Spelling menu for XEmacs.
18467If nil when package is loaded, a standard menu will be set,
18468and added as a submenu of the \"Edit\" menu.")
18469
18470(defvar ispell-menu-map-needed (and (not ispell-menu-map) (not (featurep 'xemacs)) 'reload))
18471 18570
18472(if ispell-menu-map-needed (progn (setq ispell-menu-map (make-sparse-keymap "Spell")) (define-key ispell-menu-map [ispell-change-dictionary] `(menu-item ,(purecopy "Change Dictionary...") ispell-change-dictionary :help ,(purecopy "Supply explicit dictionary file name"))) (define-key ispell-menu-map [ispell-kill-ispell] `(menu-item ,(purecopy "Kill Process") (lambda nil (interactive) (ispell-kill-ispell nil 'clear)) :enable (and (boundp 'ispell-process) ispell-process (eq (ispell-process-status) 'run)) :help ,(purecopy "Terminate Ispell subprocess"))) (define-key ispell-menu-map [ispell-pdict-save] `(menu-item ,(purecopy "Save Dictionary") (lambda nil (interactive) (ispell-pdict-save t t)) :help ,(purecopy "Save personal dictionary"))) (define-key ispell-menu-map [ispell-customize] `(menu-item ,(purecopy "Customize...") (lambda nil (interactive) (customize-group 'ispell)) :help ,(purecopy "Customize spell checking options"))) (define-key ispell-menu-map [ispell-help] `(menu-item ,(purecopy "Help") (lambda nil (interactive) (describe-function 'ispell-help)) :help ,(purecopy "Show standard Ispell keybindings and commands"))) (define-key ispell-menu-map [flyspell-mode] `(menu-item ,(purecopy "Automatic spell checking (Flyspell)") flyspell-mode :help ,(purecopy "Check spelling while you edit the text") :button (:toggle bound-and-true-p flyspell-mode))) (define-key ispell-menu-map [ispell-complete-word] `(menu-item ,(purecopy "Complete Word") ispell-complete-word :help ,(purecopy "Complete word at cursor using dictionary"))) (define-key ispell-menu-map [ispell-complete-word-interior-frag] `(menu-item ,(purecopy "Complete Word Fragment") ispell-complete-word-interior-frag :help ,(purecopy "Complete word fragment at cursor"))))) 18571(if ispell-menu-map-needed (progn (setq ispell-menu-map (make-sparse-keymap "Spell")) (define-key ispell-menu-map [ispell-change-dictionary] `(menu-item ,(purecopy "Change Dictionary...") ispell-change-dictionary :help ,(purecopy "Supply explicit dictionary file name"))) (define-key ispell-menu-map [ispell-kill-ispell] `(menu-item ,(purecopy "Kill Process") (lambda nil (interactive) (ispell-kill-ispell nil 'clear)) :enable (and (boundp 'ispell-process) ispell-process (eq (ispell-process-status) 'run)) :help ,(purecopy "Terminate Ispell subprocess"))) (define-key ispell-menu-map [ispell-pdict-save] `(menu-item ,(purecopy "Save Dictionary") (lambda nil (interactive) (ispell-pdict-save t t)) :help ,(purecopy "Save personal dictionary"))) (define-key ispell-menu-map [ispell-customize] `(menu-item ,(purecopy "Customize...") (lambda nil (interactive) (customize-group 'ispell)) :help ,(purecopy "Customize spell checking options"))) (define-key ispell-menu-map [ispell-help] `(menu-item ,(purecopy "Help") (lambda nil (interactive) (describe-function 'ispell-help)) :help ,(purecopy "Show standard Ispell keybindings and commands"))) (define-key ispell-menu-map [flyspell-mode] `(menu-item ,(purecopy "Automatic spell checking (Flyspell)") flyspell-mode :help ,(purecopy "Check spelling while you edit the text") :button (:toggle bound-and-true-p flyspell-mode))) (define-key ispell-menu-map [ispell-complete-word] `(menu-item ,(purecopy "Complete Word") ispell-complete-word :help ,(purecopy "Complete word at cursor using dictionary"))) (define-key ispell-menu-map [ispell-complete-word-interior-frag] `(menu-item ,(purecopy "Complete Word Fragment") ispell-complete-word-interior-frag :help ,(purecopy "Complete word fragment at cursor")))))
18473 18572
@@ -19226,7 +19325,7 @@ A major mode to edit GNU ld script files
19226;;;### (autoloads nil "let-alist" "emacs-lisp/let-alist.el" (0 0 19325;;;### (autoloads nil "let-alist" "emacs-lisp/let-alist.el" (0 0
19227;;;;;; 0 0)) 19326;;;;;; 0 0))
19228;;; Generated autoloads from emacs-lisp/let-alist.el 19327;;; Generated autoloads from emacs-lisp/let-alist.el
19229(push (purecopy '(let-alist 1 0 4)) package--builtin-versions) 19328(push (purecopy '(let-alist 1 0 5)) package--builtin-versions)
19230 19329
19231(autoload 'let-alist "let-alist" "\ 19330(autoload 'let-alist "let-alist" "\
19232Let-bind dotted symbols to their cdrs in ALIST and execute BODY. 19331Let-bind dotted symbols to their cdrs in ALIST and execute BODY.
@@ -21232,6 +21331,10 @@ specifies how the attachment is intended to be displayed. It can
21232be either \"inline\" (displayed automatically within the message 21331be either \"inline\" (displayed automatically within the message
21233body) or \"attachment\" (separate from the body). 21332body) or \"attachment\" (separate from the body).
21234 21333
21334If given a prefix interactively, no prompting will be done for
21335the TYPE, DESCRIPTION or DISPOSITION values. Instead defaults
21336will be computed and used.
21337
21235\(fn FILE &optional TYPE DESCRIPTION DISPOSITION)" t nil) 21338\(fn FILE &optional TYPE DESCRIPTION DISPOSITION)" t nil)
21236 21339
21237(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mml" '("mime-to-mml" "mml-"))) 21340(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "mml" '("mime-to-mml" "mml-")))
@@ -21636,12 +21739,6 @@ The default is 20. If LIMIT is negative, do not limit the listing.
21636;;;;;; 0 0 0)) 21739;;;;;; 0 0 0))
21637;;; Generated autoloads from international/mule-util.el 21740;;; Generated autoloads from international/mule-util.el
21638 21741
21639(defsubst string-to-list (string) "\
21640Return a list of characters in STRING." (append string nil))
21641
21642(defsubst string-to-vector (string) "\
21643Return a vector of characters in STRING." (vconcat string))
21644
21645(autoload 'store-substring "mule-util" "\ 21742(autoload 'store-substring "mule-util" "\
21646Embed OBJ (string or character) at index IDX of STRING. 21743Embed OBJ (string or character) at index IDX of STRING.
21647 21744
@@ -22002,6 +22099,10 @@ a greeting from the server.
22002:nowait, if non-nil, says the connection should be made 22099:nowait, if non-nil, says the connection should be made
22003asynchronously, if possible. 22100asynchronously, if possible.
22004 22101
22102:shell-command is a format-spec string that can be used if :type
22103is `shell'. It has two specs, %s for host and %p for port
22104number. Example: \"ssh gateway nc %s %p\".
22105
22005:tls-parameters is a list that should be supplied if you're 22106:tls-parameters is a list that should be supplied if you're
22006opening a TLS connection. The first element is the TLS 22107opening a TLS connection. The first element is the TLS
22007type (either `gnutls-x509pki' or `gnutls-anon'), and the 22108type (either `gnutls-x509pki' or `gnutls-anon'), and the
@@ -27822,8 +27923,6 @@ for modes derived from Text mode, like Mail mode.
27822(autoload 'ruby-mode "ruby-mode" "\ 27923(autoload 'ruby-mode "ruby-mode" "\
27823Major mode for editing Ruby code. 27924Major mode for editing Ruby code.
27824 27925
27825\\{ruby-mode-map}
27826
27827\(fn)" t nil) 27926\(fn)" t nil)
27828 27927
27829(add-to-list 'auto-mode-alist (cons (purecopy (concat "\\(?:\\.\\(?:" "rbw?\\|ru\\|rake\\|thor" "\\|jbuilder\\|rabl\\|gemspec\\|podspec" "\\)" "\\|/" "\\(?:Gem\\|Rake\\|Cap\\|Thor" "\\|Puppet\\|Berks" "\\|Vagrant\\|Guard\\|Pod\\)file" "\\)\\'")) 'ruby-mode)) 27928(add-to-list 'auto-mode-alist (cons (purecopy (concat "\\(?:\\.\\(?:" "rbw?\\|ru\\|rake\\|thor" "\\|jbuilder\\|rabl\\|gemspec\\|podspec" "\\)" "\\|/" "\\(?:Gem\\|Rake\\|Cap\\|Thor" "\\|Puppet\\|Berks" "\\|Vagrant\\|Guard\\|Pod\\)file" "\\)\\'")) 'ruby-mode))
@@ -29930,6 +30029,10 @@ The optional third argument STR, if specified, is the value for the
29930variable `str' within the skeleton. When this is non-nil, the 30029variable `str' within the skeleton. When this is non-nil, the
29931interactor gets ignored, and this should be a valid skeleton element. 30030interactor gets ignored, and this should be a valid skeleton element.
29932 30031
30032When done with skeleton, but before going back to `_'-point, add
30033a newline (unless `skeleton-end-newline' is nil) and run the hook
30034`skeleton-end-hook'.
30035
29933SKELETON is made up as (INTERACTOR ELEMENT ...). INTERACTOR may be nil if 30036SKELETON is made up as (INTERACTOR ELEMENT ...). INTERACTOR may be nil if
29934not needed, a prompt-string or an expression for complex read functions. 30037not needed, a prompt-string or an expression for complex read functions.
29935 30038
@@ -29980,9 +30083,6 @@ available:
29980 input initial input (string or cons with index) while reading str 30083 input initial input (string or cons with index) while reading str
29981 v1, v2 local variables for memorizing anything you want 30084 v1, v2 local variables for memorizing anything you want
29982 30085
29983When done with skeleton, but before going back to `_'-point call
29984`skeleton-end-hook' if that is non-nil.
29985
29986\(fn SKELETON &optional REGIONS STR)" nil nil) 30086\(fn SKELETON &optional REGIONS STR)" nil nil)
29987 30087
29988(autoload 'skeleton-pair-insert-maybe "skeleton" "\ 30088(autoload 'skeleton-pair-insert-maybe "skeleton" "\
@@ -31383,7 +31483,7 @@ Studlify-case the current buffer.
31383;;;### (autoloads nil "subr-x" "emacs-lisp/subr-x.el" (0 0 0 0)) 31483;;;### (autoloads nil "subr-x" "emacs-lisp/subr-x.el" (0 0 0 0))
31384;;; Generated autoloads from emacs-lisp/subr-x.el 31484;;; Generated autoloads from emacs-lisp/subr-x.el
31385 31485
31386(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "subr-x" '("read-multiple-choice" "string-" "hash-table-" "when-let" "internal--" "if-let" "thread-"))) 31486(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "subr-x" '("read-multiple-choice" "string-" "hash-table-" "and-let*" "when-let" "internal--" "if-let" "thread-")))
31387 31487
31388;;;*** 31488;;;***
31389 31489
@@ -33821,10 +33921,12 @@ Invoke `tramp-file-name-handler' for OPERATION.
33821First arg specifies the OPERATION, second arg is a list of arguments to 33921First arg specifies the OPERATION, second arg is a list of arguments to
33822pass 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))) 33922pass 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)))
33823(defun tramp-completion-file-name-handler (operation &rest args) 33923(defun tramp-completion-file-name-handler (operation &rest args)
33824 (tramp-completion-run-real-handler operation args)) 33924 (if (tramp-completion-mode-p)
33925 (apply 'tramp-autoload-file-name-handler operation args)
33926 (tramp-completion-run-real-handler operation args)))
33825 33927
33826(defun tramp-autoload-file-name-handler (operation &rest args) "\ 33928(defun tramp-autoload-file-name-handler (operation &rest args) "\
33827Load Tramp file name handler, and perform OPERATION." (let ((default-directory temporary-file-directory)) (load "tramp" nil t)) (apply operation args)) 33929Load 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)))
33828 33930
33829(defun tramp-register-autoload-file-name-handlers nil "\ 33931(defun tramp-register-autoload-file-name-handlers nil "\
33830Add 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)) 33932Add 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))
@@ -33844,6 +33946,9 @@ input event. This fails when external packages use other characters
33844but <TAB>, <SPACE> or ?\\? for file name completion. This variable 33946but <TAB>, <SPACE> or ?\\? for file name completion. This variable
33845should never be set globally, the intention is to let-bind it.") 33947should never be set globally, the intention is to let-bind it.")
33846 33948
33949(defun tramp-completion-mode-p nil "\
33950Check, 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))))
33951
33847(autoload 'tramp-unload-tramp "tramp" "\ 33952(autoload 'tramp-unload-tramp "tramp" "\
33848Discard Tramp from loading remote files. 33953Discard Tramp from loading remote files.
33849 33954
@@ -33901,13 +34006,6 @@ Reenable Ange-FTP, when Tramp is unloaded.
33901 34006
33902;;;*** 34007;;;***
33903 34008
33904;;;### (autoloads nil "tramp-gw" "net/tramp-gw.el" (0 0 0 0))
33905;;; Generated autoloads from net/tramp-gw.el
33906
33907(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "tramp-gw" '("tramp-gw-" "socks-")))
33908
33909;;;***
33910
33911;;;### (autoloads nil "tramp-sh" "net/tramp-sh.el" (0 0 0 0)) 34009;;;### (autoloads nil "tramp-sh" "net/tramp-sh.el" (0 0 0 0))
33912;;; Generated autoloads from net/tramp-sh.el 34010;;; Generated autoloads from net/tramp-sh.el
33913 34011
@@ -33931,7 +34029,7 @@ Reenable Ange-FTP, when Tramp is unloaded.
33931 34029
33932;;;### (autoloads nil "trampver" "net/trampver.el" (0 0 0 0)) 34030;;;### (autoloads nil "trampver" "net/trampver.el" (0 0 0 0))
33933;;; Generated autoloads from net/trampver.el 34031;;; Generated autoloads from net/trampver.el
33934(push (purecopy '(tramp 2 3 1 -1)) package--builtin-versions) 34032(push (purecopy '(tramp 2 3 2 -1)) package--builtin-versions)
33935 34033
33936(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "trampver" '("tramp-"))) 34034(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "trampver" '("tramp-")))
33937 34035
@@ -35372,7 +35470,7 @@ For each file in or below DIR, retrieve their tagged version NAME.
35372NAME can name a branch, in which case this command will switch to the 35470NAME can name a branch, in which case this command will switch to the
35373named branch in the directory DIR. 35471named branch in the directory DIR.
35374Interactively, prompt for DIR only for VCS that works at file level; 35472Interactively, prompt for DIR only for VCS that works at file level;
35375otherwise use the default directory of the current buffer. 35473otherwise use the repository root of the current buffer.
35376If NAME is empty, it refers to the latest revisions of the current branch. 35474If NAME is empty, it refers to the latest revisions of the current branch.
35377If locking is used for the files in DIR, then there must not be any 35475If locking is used for the files in DIR, then there must not be any
35378locked files at or below DIR (but if NAME is empty, locked files are 35476locked files at or below DIR (but if NAME is empty, locked files are
@@ -35399,6 +35497,11 @@ When called interactively with a prefix argument, prompt for LIMIT.
35399 35497
35400\(fn &optional LIMIT)" t nil) 35498\(fn &optional LIMIT)" t nil)
35401 35499
35500(autoload 'vc-print-branch-log "vc" "\
35501
35502
35503\(fn BRANCH)" t nil)
35504
35402(autoload 'vc-log-incoming "vc" "\ 35505(autoload 'vc-log-incoming "vc" "\
35403Show a log of changes that will be received with a pull operation from REMOTE-LOCATION. 35506Show a log of changes that will be received with a pull operation from REMOTE-LOCATION.
35404When called interactively with a prefix argument, prompt for REMOTE-LOCATION. 35507When called interactively with a prefix argument, prompt for REMOTE-LOCATION.
@@ -35920,7 +36023,7 @@ AUTO expansion functions are, in part:
35920 36023
35921Some other functions are: 36024Some other functions are:
35922 36025
35923 \\[verilog-complete-word] Complete word with appropriate possibilities. 36026 \\[completion-at-point] Complete word with appropriate possibilities.
35924 \\[verilog-mark-defun] Mark function. 36027 \\[verilog-mark-defun] Mark function.
35925 \\[verilog-beg-of-defun] Move to beginning of current function. 36028 \\[verilog-beg-of-defun] Move to beginning of current function.
35926 \\[verilog-end-of-defun] Move to end of current function. 36029 \\[verilog-end-of-defun] Move to end of current function.
@@ -37696,6 +37799,13 @@ Default bookmark handler for Woman buffers.
37696 37799
37697;;;*** 37800;;;***
37698 37801
37802;;;### (autoloads nil "xdg" "xdg.el" (0 0 0 0))
37803;;; Generated autoloads from xdg.el
37804
37805(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "xdg" '("xdg-")))
37806
37807;;;***
37808
37699;;;### (autoloads nil "xml" "xml.el" (0 0 0 0)) 37809;;;### (autoloads nil "xml" "xml.el" (0 0 0 0))
37700;;; Generated autoloads from xml.el 37810;;; Generated autoloads from xml.el
37701 37811
@@ -37977,25 +38087,24 @@ Zone out, completely.
37977;;;;;; "cedet/srecode/template.el" "cedet/srecode/texi.el" "composite.el" 38087;;;;;; "cedet/srecode/template.el" "cedet/srecode/texi.el" "composite.el"
37978;;;;;; "cus-face.el" "cus-start.el" "custom.el" "dired-aux.el" "dired-loaddefs.el" 38088;;;;;; "cus-face.el" "cus-start.el" "custom.el" "dired-aux.el" "dired-loaddefs.el"
37979;;;;;; "dired-x.el" "electric.el" "emacs-lisp/backquote.el" "emacs-lisp/byte-run.el" 38089;;;;;; "dired-x.el" "electric.el" "emacs-lisp/backquote.el" "emacs-lisp/byte-run.el"
37980;;;;;; "emacs-lisp/cl-extra.el" "emacs-lisp/cl-generic.el" "emacs-lisp/cl-loaddefs.el" 38090;;;;;; "emacs-lisp/cl-extra.el" "emacs-lisp/cl-loaddefs.el" "emacs-lisp/cl-macs.el"
37981;;;;;; "emacs-lisp/cl-macs.el" "emacs-lisp/cl-preloaded.el" "emacs-lisp/cl-seq.el" 38091;;;;;; "emacs-lisp/cl-preloaded.el" "emacs-lisp/cl-seq.el" "emacs-lisp/eieio-compat.el"
37982;;;;;; "emacs-lisp/eieio-compat.el" "emacs-lisp/eieio-custom.el" 38092;;;;;; "emacs-lisp/eieio-custom.el" "emacs-lisp/eieio-loaddefs.el"
37983;;;;;; "emacs-lisp/eieio-loaddefs.el" "emacs-lisp/eieio-opt.el" 38093;;;;;; "emacs-lisp/eieio-opt.el" "emacs-lisp/eldoc.el" "emacs-lisp/float-sup.el"
37984;;;;;; "emacs-lisp/eldoc.el" "emacs-lisp/float-sup.el" "emacs-lisp/lisp-mode.el" 38094;;;;;; "emacs-lisp/lisp-mode.el" "emacs-lisp/lisp.el" "emacs-lisp/macroexp.el"
37985;;;;;; "emacs-lisp/lisp.el" "emacs-lisp/macroexp.el" "emacs-lisp/map-ynp.el" 38095;;;;;; "emacs-lisp/map-ynp.el" "emacs-lisp/nadvice.el" "emacs-lisp/syntax.el"
37986;;;;;; "emacs-lisp/nadvice.el" "emacs-lisp/syntax.el" "emacs-lisp/timer.el" 38096;;;;;; "emacs-lisp/timer.el" "env.el" "epa-hook.el" "eshell/em-alias.el"
37987;;;;;; "env.el" "epa-hook.el" "eshell/em-alias.el" "eshell/em-banner.el" 38097;;;;;; "eshell/em-banner.el" "eshell/em-basic.el" "eshell/em-cmpl.el"
37988;;;;;; "eshell/em-basic.el" "eshell/em-cmpl.el" "eshell/em-dirs.el" 38098;;;;;; "eshell/em-dirs.el" "eshell/em-glob.el" "eshell/em-hist.el"
37989;;;;;; "eshell/em-glob.el" "eshell/em-hist.el" "eshell/em-ls.el" 38099;;;;;; "eshell/em-ls.el" "eshell/em-pred.el" "eshell/em-prompt.el"
37990;;;;;; "eshell/em-pred.el" "eshell/em-prompt.el" "eshell/em-rebind.el" 38100;;;;;; "eshell/em-rebind.el" "eshell/em-script.el" "eshell/em-smart.el"
37991;;;;;; "eshell/em-script.el" "eshell/em-smart.el" "eshell/em-term.el" 38101;;;;;; "eshell/em-term.el" "eshell/em-tramp.el" "eshell/em-unix.el"
37992;;;;;; "eshell/em-tramp.el" "eshell/em-unix.el" "eshell/em-xtra.el" 38102;;;;;; "eshell/em-xtra.el" "eshell/esh-groups.el" "facemenu.el"
37993;;;;;; "eshell/esh-groups.el" "facemenu.el" "faces.el" "files.el" 38103;;;;;; "faces.el" "files.el" "font-core.el" "font-lock.el" "format.el"
37994;;;;;; "font-core.el" "font-lock.el" "format.el" "frame.el" "help.el" 38104;;;;;; "frame.el" "help.el" "hfy-cmap.el" "htmlfontify-loaddefs.el"
37995;;;;;; "hfy-cmap.el" "htmlfontify-loaddefs.el" "ibuf-ext.el" "ibuffer-loaddefs.el" 38105;;;;;; "ibuf-ext.el" "ibuffer-loaddefs.el" "indent.el" "international/characters.el"
37996;;;;;; "indent.el" "international/characters.el" "international/charprop.el" 38106;;;;;; "international/charprop.el" "international/charscript.el"
37997;;;;;; "international/charscript.el" "international/cp51932.el" 38107;;;;;; "international/cp51932.el" "international/eucjp-ms.el" "international/mule-cmds.el"
37998;;;;;; "international/eucjp-ms.el" "international/mule-cmds.el"
37999;;;;;; "international/mule-conf.el" "international/mule.el" "international/uni-bidi.el" 38108;;;;;; "international/mule-conf.el" "international/mule.el" "international/uni-bidi.el"
38000;;;;;; "international/uni-brackets.el" "international/uni-category.el" 38109;;;;;; "international/uni-brackets.el" "international/uni-category.el"
38001;;;;;; "international/uni-combining.el" "international/uni-comment.el" 38110;;;;;; "international/uni-combining.el" "international/uni-comment.el"