aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2020-06-01 06:27:51 -0700
committerGlenn Morris2020-06-01 06:27:51 -0700
commit056200f3ebdf74ef41cc9abdf99ae5bb03b73850 (patch)
tree4eb323c55ac3101e043a6610e3162c4f0fb256d6
parentf92925864613035c2e627862433112b12cf0d6dd (diff)
downloademacs-056200f3ebdf74ef41cc9abdf99ae5bb03b73850.tar.gz
emacs-056200f3ebdf74ef41cc9abdf99ae5bb03b73850.zip
; Auto-commit of loaddefs files.
-rw-r--r--lisp/ldefs-boot.el297
1 files changed, 175 insertions, 122 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index d49c7523848..d7da5f6c249 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -2452,16 +2452,34 @@ Function to display the current buffer in a WWW browser.
2452This is used by the `browse-url-at-point', `browse-url-at-mouse', and 2452This is used by the `browse-url-at-point', `browse-url-at-mouse', and
2453`browse-url-of-file' commands. 2453`browse-url-of-file' commands.
2454 2454
2455If the value is not a function it should be a list of pairs 2455Also see `browse-url-secondary-browser-function' and
2456\(REGEXP . FUNCTION). In this case the function called will be the one 2456`browse-url-handlers'.")
2457associated with the first REGEXP which matches the current URL. The
2458function is passed the URL and any other args of `browse-url'. The last
2459regexp should probably be \".\" to specify a default browser.
2460
2461Also see `browse-url-secondary-browser-function'.")
2462 2457
2463(custom-autoload 'browse-url-browser-function "browse-url" t) 2458(custom-autoload 'browse-url-browser-function "browse-url" t)
2464 2459
2460(defvar browse-url-default-handlers '(("\\`mailto:" . browse-url--mailto) ("\\`man:" . browse-url--man) (browse-url--non-html-file-url-p . browse-url-emacs)) "\
2461Like `browse-url-handlers' but populated by Emacs and packages.
2462
2463Emacs and external packages capable of browsing certain URLs
2464should place their entries in this alist rather than
2465`browse-url-handlers' which is reserved for the user.")
2466
2467(autoload 'browse-url-select-handler "browse-url" "\
2468Return a handler of suitable for browsing URL.
2469This searches `browse-url-handlers', and
2470`browse-url-default-handlers' for a matching handler. Return nil
2471if no handler is found.
2472
2473If KIND is given, the search is restricted to handlers whose
2474function symbol has the symbol-property `browse-url-browser-kind'
2475set to KIND.
2476
2477Currently, it also consults `browse-url-browser-function' first
2478if it is set to an alist, although this usage is deprecated since
2479Emacs 28.1 and will be removed in a future release.
2480
2481\(fn URL &optional KIND)" nil nil)
2482
2465(autoload 'browse-url-of-file "browse-url" "\ 2483(autoload 'browse-url-of-file "browse-url" "\
2466Ask a WWW browser to display FILE. 2484Ask a WWW browser to display FILE.
2467Display the current buffer's file if FILE is nil or if called 2485Display the current buffer's file if FILE is nil or if called
@@ -2491,16 +2509,18 @@ Ask a WWW browser to display the current region.
2491Ask a WWW browser to load URL. 2509Ask a WWW browser to load URL.
2492Prompt for a URL, defaulting to the URL at or before point. 2510Prompt for a URL, defaulting to the URL at or before point.
2493Invokes a suitable browser function which does the actual job. 2511Invokes a suitable browser function which does the actual job.
2494The variable `browse-url-browser-function' says which browser function to
2495use. If the URL is a mailto: URL, consult `browse-url-mailto-function'
2496first, if that exists.
2497 2512
2498The additional ARGS are passed to the browser function. See the doc 2513The variables `browse-url-browser-function',
2499strings of the actual functions, starting with `browse-url-browser-function', 2514`browse-url-handlers', and `browse-url-default-handlers'
2500for information about the significance of ARGS (most of the functions 2515determine which browser function to use.
2501ignore it). 2516
2502If ARGS are omitted, the default is to pass `browse-url-new-window-flag' 2517The additional ARGS are passed to the browser function. See the
2503as ARGS. 2518doc strings of the actual functions, starting with
2519`browse-url-browser-function', for information about the
2520significance of ARGS (most of the functions ignore it).
2521
2522If ARGS are omitted, the default is to pass
2523`browse-url-new-window-flag' as ARGS.
2504 2524
2505\(fn URL &rest ARGS)" t nil) 2525\(fn URL &rest ARGS)" t nil)
2506 2526
@@ -2512,6 +2532,15 @@ Optional prefix argument ARG non-nil inverts the value of the option
2512 2532
2513\(fn &optional ARG)" t nil) 2533\(fn &optional ARG)" t nil)
2514 2534
2535(autoload 'browse-url-with-browser-kind "browse-url" "\
2536Browse URL with a browser of the given browser KIND.
2537KIND is either `internal' or `external'.
2538
2539When called interactively, the default browser kind is the
2540opposite of the browser kind of `browse-url-browser-function'.
2541
2542\(fn KIND URL &optional ARG)" t nil)
2543
2515(autoload 'browse-url-at-mouse "browse-url" "\ 2544(autoload 'browse-url-at-mouse "browse-url" "\
2516Ask a WWW browser to load a URL clicked with the mouse. 2545Ask a WWW browser to load a URL clicked with the mouse.
2517The URL is the one around or before the position of the mouse click 2546The URL is the one around or before the position of the mouse click
@@ -2699,6 +2728,8 @@ NEW-WINDOW instead of `browse-url-new-window-flag'.
2699 2728
2700\(fn URL &optional NEW-WINDOW)" t nil) 2729\(fn URL &optional NEW-WINDOW)" t nil)
2701 2730
2731(make-obsolete 'browse-url-conkeror 'nil '"28.1")
2732
2702(autoload 'browse-url-w3 "browse-url" "\ 2733(autoload 'browse-url-w3 "browse-url" "\
2703Ask the w3 WWW browser to load URL. 2734Ask the w3 WWW browser to load URL.
2704Default to the URL around or before point. 2735Default to the URL around or before point.
@@ -3674,7 +3705,7 @@ Return the syntactic context of the current line." nil nil)
3674;;;### (autoloads nil "cc-fonts" "progmodes/cc-fonts.el" (0 0 0 0)) 3705;;;### (autoloads nil "cc-fonts" "progmodes/cc-fonts.el" (0 0 0 0))
3675;;; Generated autoloads from progmodes/cc-fonts.el 3706;;; Generated autoloads from progmodes/cc-fonts.el
3676 3707
3677(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cc-fonts" '("autodoc-" "c++-font-lock-keywords" "c-" "gtkdoc-font-lock-" "idl-font-lock-keywords" "java" "objc-font-lock-keywords" "pike-font-lock-keywords"))) 3708(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "cc-fonts" '("autodoc-" "c++-font-lock-keywords" "c-" "doxygen-font-lock-" "gtkdoc-font-lock-" "idl-font-lock-keywords" "java" "objc-font-lock-keywords" "pike-font-lock-keywords")))
3678 3709
3679;;;*** 3710;;;***
3680 3711
@@ -3843,7 +3874,7 @@ should be used.
3843 3874
3844This function attempts to use file contents to determine whether 3875This function attempts to use file contents to determine whether
3845the code is C or C++ and based on that chooses whether to enable 3876the code is C or C++ and based on that chooses whether to enable
3846`c-mode' or `c++-mode'." nil nil) 3877`c-mode' or `c++-mode'." t nil)
3847 3878
3848(autoload 'c++-mode "cc-mode" "\ 3879(autoload 'c++-mode "cc-mode" "\
3849Major mode for editing C++ code. 3880Major mode for editing C++ code.
@@ -6635,7 +6666,7 @@ Create a new data-debug buffer with NAME.
6635 6666
6636\(fn NAME)" nil nil) 6667\(fn NAME)" nil nil)
6637 6668
6638(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "data-debug" '("data-debug-" "dd-propertize"))) 6669(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "data-debug" '("data-debug-")))
6639 6670
6640;;;*** 6671;;;***
6641 6672
@@ -7258,13 +7289,16 @@ deletes all frames except the selected one (and its minibuffer frame,
7258if different)." t nil) 7289if different)." t nil)
7259 7290
7260(autoload 'desktop-save "desktop" "\ 7291(autoload 'desktop-save "desktop" "\
7261Save the desktop in a desktop file. 7292Save the state of Emacs in a desktop file in directory DIRNAME.
7262Parameter DIRNAME specifies where to save the desktop file. 7293Optional argument RELEASE non-nil says we're done with this
7263Optional parameter RELEASE says whether we're done with this 7294desktop, in which case this function releases the lock of the
7264desktop. If ONLY-IF-CHANGED is non-nil, compare the current 7295desktop file in DIRNAME.
7265desktop information to that in the desktop file, and if the 7296If ONLY-IF-CHANGED is non-nil, compare the current desktop
7266desktop information has not changed since it was last saved then 7297information to that in the desktop file, and if the desktop
7267do not rewrite the file. 7298information has not changed since it was last saved, then do
7299not rewrite the file.
7300
7301To restore the desktop, use `desktop-read'.
7268 7302
7269This function can save the desktop in either format version 7303This function can save the desktop in either format version
7270208 (which only Emacs 25.1 and later can read) or version 7304208 (which only Emacs 25.1 and later can read) or version
@@ -7274,14 +7308,20 @@ it was last saved, or version 208 when writing a fresh desktop
7274file. 7308file.
7275 7309
7276To upgrade a version 206 file to version 208, call this command 7310To upgrade a version 206 file to version 208, call this command
7277explicitly with a bare prefix argument: C-u M-x desktop-save. 7311explicitly with a prefix argument: \\[universal-argument] \\[desktop-save].
7278You are recommended to do this once you have firmly upgraded to 7312If you are upgrading from Emacs 24 or older, we recommed to do
7279Emacs 25.1 (or later). To downgrade a version 208 file to version 7313this once you decide you no longer need compatibility with versions
7280206, use a double command prefix: C-u C-u M-x desktop-save. 7314of Emacs before 25.1.
7281Confirmation will be requested in either case. In a non-interactive 7315
7282call, VERSION can be given as an integer, either 206 or 208, which 7316To downgrade a version 208 file to version 206, use a double prefix
7283will be accepted as the format version in which to save the file 7317argument: \\[universal-argument] \\[universal-argument] \\[desktop-save].
7284without further confirmation. 7318
7319Emacs will ask for confirmation when you upgrade or downgrade your
7320desktop file.
7321
7322In a non-interactive call, VERSION can be given as an integer, either
7323206 or 208, to specify the format version in which to save the file,
7324no questions asked.
7285 7325
7286\(fn DIRNAME &optional RELEASE ONLY-IF-CHANGED VERSION)" t nil) 7326\(fn DIRNAME &optional RELEASE ONLY-IF-CHANGED VERSION)" t nil)
7287 7327
@@ -7866,6 +7906,7 @@ it if ARG is `toggle'; disable the mode otherwise.
7866To change the position of the column displayed by default 7906To change the position of the column displayed by default
7867customize `display-fill-column-indicator-column'. You can change the 7907customize `display-fill-column-indicator-column'. You can change the
7868character for the indicator setting `display-fill-column-indicator-character'. 7908character for the indicator setting `display-fill-column-indicator-character'.
7909See Info node `Displaying Boundaries' for details.
7869 7910
7870\(fn &optional ARG)" t nil) 7911\(fn &optional ARG)" t nil)
7871 7912
@@ -9906,6 +9947,12 @@ It creates an autoload function for CNAME's constructor.
9906 9947
9907;;;*** 9948;;;***
9908 9949
9950;;;### (autoloads nil "eldoc" "emacs-lisp/eldoc.el" (0 0 0 0))
9951;;; Generated autoloads from emacs-lisp/eldoc.el
9952(push (purecopy '(eldoc 1 0 0)) package--builtin-versions)
9953
9954;;;***
9955
9909;;;### (autoloads nil "elec-pair" "elec-pair.el" (0 0 0 0)) 9956;;;### (autoloads nil "elec-pair" "elec-pair.el" (0 0 0 0))
9910;;; Generated autoloads from elec-pair.el 9957;;; Generated autoloads from elec-pair.el
9911 9958
@@ -12470,9 +12517,14 @@ operating on the next file and nil otherwise.
12470(autoload 'fileloop-initialize-replace "fileloop" "\ 12517(autoload 'fileloop-initialize-replace "fileloop" "\
12471Initialize a new round of query&replace on several files. 12518Initialize a new round of query&replace on several files.
12472FROM is a regexp and TO is the replacement to use. 12519FROM is a regexp and TO is the replacement to use.
12473FILES describes the file, as in `fileloop-initialize'. 12520FILES describes the files, as in `fileloop-initialize'.
12474CASE-FOLD can be t, nil, or `default', the latter one meaning to obey 12521CASE-FOLD can be t, nil, or `default':
12475the default setting of `case-fold-search'. 12522 if it is nil, matching of FROM is case-sensitive.
12523 if it is t, matching of FROM is case-insensitive, except
12524 when `search-upper-case' is non-nil and FROM includes
12525 upper-case letters.
12526 if it is `default', the function uses the value of
12527 `case-fold-search' instead.
12476DELIMITED if non-nil means replace only word-delimited matches. 12528DELIMITED if non-nil means replace only word-delimited matches.
12477 12529
12478\(fn FROM TO FILES CASE-FOLD &optional DELIMITED)" nil nil) 12530\(fn FROM TO FILES CASE-FOLD &optional DELIMITED)" nil nil)
@@ -13058,9 +13110,10 @@ generated it.
13058 13110
13059(autoload 'flymake-make-diagnostic "flymake" "\ 13111(autoload 'flymake-make-diagnostic "flymake" "\
13060Make a Flymake diagnostic for BUFFER's region from BEG to END. 13112Make a Flymake diagnostic for BUFFER's region from BEG to END.
13061TYPE is a key to symbol and TEXT is a description of the problem 13113TYPE is a diagnostic symbol and TEXT is string describing the
13062detected in this region. DATA is any object that the caller 13114problem detected in this region. DATA is any object that the
13063wishes to attach to the created diagnostic for later retrieval. 13115caller wishes to attach to the created diagnostic for later
13116retrieval.
13064 13117
13065OVERLAY-PROPERTIES is an alist of properties attached to the 13118OVERLAY-PROPERTIES is an alist of properties attached to the
13066created diagnostic, overriding the default properties and any 13119created diagnostic, overriding the default properties and any
@@ -13576,7 +13629,7 @@ and choose the directory as the fortune-file.
13576Minimum set of parameters to filter for live (on-session) framesets. 13629Minimum set of parameters to filter for live (on-session) framesets.
13577DO NOT MODIFY. See `frameset-filter-alist' for a full description.") 13630DO NOT MODIFY. See `frameset-filter-alist' for a full description.")
13578 13631
13579(defvar frameset-persistent-filter-alist (nconc '((background-color . frameset-filter-sanitize-color) (buffer-list . :never) (buffer-predicate . :never) (buried-buffer-list . :never) (client . :never) (delete-before . :never) (font . frameset-filter-font-param) (font-backend . :never) (foreground-color . frameset-filter-sanitize-color) (frameset--text-pixel-height . :save) (frameset--text-pixel-width . :save) (fullscreen . frameset-filter-shelve-param) (GUI:font . frameset-filter-unshelve-param) (GUI:fullscreen . frameset-filter-unshelve-param) (GUI:height . frameset-filter-unshelve-param) (GUI:width . frameset-filter-unshelve-param) (height . frameset-filter-shelve-param) (outer-window-id . :never) (parent-frame . :never) (parent-id . :never) (mouse-wheel-frame . :never) (tty . frameset-filter-tty-to-GUI) (tty-type . frameset-filter-tty-to-GUI) (width . frameset-filter-shelve-param) (window-id . :never) (window-system . :never)) frameset-session-filter-alist) "\ 13632(defvar frameset-persistent-filter-alist (append '((background-color . frameset-filter-sanitize-color) (buffer-list . :never) (buffer-predicate . :never) (buried-buffer-list . :never) (client . :never) (delete-before . :never) (font . frameset-filter-font-param) (font-backend . :never) (foreground-color . frameset-filter-sanitize-color) (frameset--text-pixel-height . :save) (frameset--text-pixel-width . :save) (fullscreen . frameset-filter-shelve-param) (GUI:font . frameset-filter-unshelve-param) (GUI:fullscreen . frameset-filter-unshelve-param) (GUI:height . frameset-filter-unshelve-param) (GUI:width . frameset-filter-unshelve-param) (height . frameset-filter-shelve-param) (outer-window-id . :never) (parent-frame . :never) (parent-id . :never) (mouse-wheel-frame . :never) (tty . frameset-filter-tty-to-GUI) (tty-type . frameset-filter-tty-to-GUI) (width . frameset-filter-shelve-param) (window-id . :never) (window-system . :never)) frameset-session-filter-alist) "\
13580Parameters to filter for persistent framesets. 13633Parameters to filter for persistent framesets.
13581DO NOT MODIFY. See `frameset-filter-alist' for a full description.") 13634DO NOT MODIFY. See `frameset-filter-alist' for a full description.")
13582 13635
@@ -15827,10 +15880,10 @@ Commands:
15827\(fn)" t nil) 15880\(fn)" t nil)
15828 15881
15829(autoload 'help-mode-setup "help-mode" "\ 15882(autoload 'help-mode-setup "help-mode" "\
15830Enter Help Mode in the current buffer." nil nil) 15883Enter Help mode in the current buffer." nil nil)
15831 15884
15832(autoload 'help-mode-finish "help-mode" "\ 15885(autoload 'help-mode-finish "help-mode" "\
15833Finalize Help Mode setup in current buffer." nil nil) 15886Finalize Help mode setup in current buffer." nil nil)
15834 15887
15835(autoload 'help-setup-xref "help-mode" "\ 15888(autoload 'help-setup-xref "help-mode" "\
15836Invoked from commands using the \"*Help*\" buffer to install some xref info. 15889Invoked from commands using the \"*Help*\" buffer to install some xref info.
@@ -16053,7 +16106,10 @@ or add (global-hi-lock-mode 1) to your init file.
16053In buffers where Font Lock mode is enabled, patterns are 16106In buffers where Font Lock mode is enabled, patterns are
16054highlighted using font lock. In buffers where Font Lock mode is 16107highlighted using font lock. In buffers where Font Lock mode is
16055disabled, patterns are applied using overlays; in this case, the 16108disabled, patterns are applied using overlays; in this case, the
16056highlighting will not be updated as you type. 16109highlighting will not be updated as you type. The Font Lock mode
16110is considered \"enabled\" in a buffer if its `major-mode'
16111causes `font-lock-specified-p' to return non-nil, which means
16112the major mode specifies support for Font Lock.
16057 16113
16058When Hi Lock mode is enabled, a \"Regexp Highlighting\" submenu 16114When Hi Lock mode is enabled, a \"Regexp Highlighting\" submenu
16059is added to the \"Edit\" menu. The commands in the submenu, 16115is added to the \"Edit\" menu. The commands in the submenu,
@@ -16166,7 +16222,10 @@ and `search-upper-case' is non-nil, the matching is case-sensitive.
16166 16222
16167Use Font lock mode, if enabled, to highlight REGEXP. Otherwise, 16223Use Font lock mode, if enabled, to highlight REGEXP. Otherwise,
16168use overlays for highlighting. If overlays are used, the 16224use overlays for highlighting. If overlays are used, the
16169highlighting will not update as you type. 16225highlighting will not update as you type. The Font Lock mode
16226is considered \"enabled\" in a buffer if its `major-mode'
16227causes `font-lock-specified-p' to return non-nil, which means
16228the major mode specifies support for Font Lock.
16170 16229
16171\(fn REGEXP &optional FACE SUBEXP LIGHTER)" t nil) 16230\(fn REGEXP &optional FACE SUBEXP LIGHTER)" t nil)
16172 16231
@@ -16183,7 +16242,10 @@ Also set `search-spaces-regexp' to the value of `search-whitespace-regexp'.
16183 16242
16184Use Font lock mode, if enabled, to highlight REGEXP. Otherwise, 16243Use Font lock mode, if enabled, to highlight REGEXP. Otherwise,
16185use overlays for highlighting. If overlays are used, the 16244use overlays for highlighting. If overlays are used, the
16186highlighting will not update as you type. 16245highlighting will not update as you type. The Font Lock mode
16246is considered \"enabled\" in a buffer if its `major-mode'
16247causes `font-lock-specified-p' to return non-nil, which means
16248the major mode specifies support for Font Lock.
16187 16249
16188\(fn REGEXP &optional FACE)" t nil) 16250\(fn REGEXP &optional FACE)" t nil)
16189 16251
@@ -16199,7 +16261,10 @@ If REGEXP contains upper case characters (excluding those preceded by `\\')
16199and `search-upper-case' is non-nil, the matching is case-sensitive. 16261and `search-upper-case' is non-nil, the matching is case-sensitive.
16200 16262
16201This uses Font lock mode if it is enabled; otherwise it uses overlays, 16263This uses Font lock mode if it is enabled; otherwise it uses overlays,
16202in which case the highlighting will not update as you type." t nil) 16264in which case the highlighting will not update as you type. The Font
16265Lock mode is considered \"enabled\" in a buffer if its `major-mode'
16266causes `font-lock-specified-p' to return non-nil, which means
16267the major mode specifies support for Font Lock." t nil)
16203 16268
16204(defalias 'unhighlight-regexp 'hi-lock-unface-buffer) 16269(defalias 'unhighlight-regexp 'hi-lock-unface-buffer)
16205 16270
@@ -18322,6 +18387,7 @@ Moving within a node:
18322 already visible, try to go to the previous menu entry, or up 18387 already visible, try to go to the previous menu entry, or up
18323 if there is none. 18388 if there is none.
18324\\[beginning-of-buffer] Go to beginning of node. 18389\\[beginning-of-buffer] Go to beginning of node.
18390\\[end-of-buffer] Go to end of node.
18325 18391
18326Advanced commands: 18392Advanced commands:
18327\\[Info-search] Search through this Info file for specified regexp, 18393\\[Info-search] Search through this Info file for specified regexp,
@@ -19097,7 +19163,7 @@ one of the aforementioned options instead of using this mode.
19097 19163
19098;;;### (autoloads nil "json" "json.el" (0 0 0 0)) 19164;;;### (autoloads nil "json" "json.el" (0 0 0 0))
19099;;; Generated autoloads from json.el 19165;;; Generated autoloads from json.el
19100(push (purecopy '(json 1 4)) package--builtin-versions) 19166(push (purecopy '(json 1 5)) package--builtin-versions)
19101 19167
19102(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "json" '("json-"))) 19168(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "json" '("json-")))
19103 19169
@@ -19105,7 +19171,7 @@ one of the aforementioned options instead of using this mode.
19105 19171
19106;;;### (autoloads nil "jsonrpc" "jsonrpc.el" (0 0 0 0)) 19172;;;### (autoloads nil "jsonrpc" "jsonrpc.el" (0 0 0 0))
19107;;; Generated autoloads from jsonrpc.el 19173;;; Generated autoloads from jsonrpc.el
19108(push (purecopy '(jsonrpc 1 0 9)) package--builtin-versions) 19174(push (purecopy '(jsonrpc 1 0 11)) package--builtin-versions)
19109 19175
19110(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "jsonrpc" '("jrpc-default-request-timeout" "jsonrpc-"))) 19176(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "jsonrpc" '("jrpc-default-request-timeout" "jsonrpc-")))
19111 19177
@@ -20701,49 +20767,6 @@ Major mode for editing MetaPost sources.
20701 20767
20702;;;*** 20768;;;***
20703 20769
20704;;;### (autoloads nil "metamail" "mail/metamail.el" (0 0 0 0))
20705;;; Generated autoloads from mail/metamail.el
20706
20707(autoload 'metamail-interpret-header "metamail" "\
20708Interpret a header part of a MIME message in current buffer.
20709Its body part is not interpreted at all." t nil)
20710
20711(autoload 'metamail-interpret-body "metamail" "\
20712Interpret a body part of a MIME message in current buffer.
20713Optional argument VIEWMODE specifies the value of the
20714EMACS_VIEW_MODE environment variable (defaulted to 1).
20715Optional argument NODISPLAY non-nil means buffer is not
20716redisplayed as output is inserted.
20717Its header part is not interpreted at all.
20718
20719\(fn &optional VIEWMODE NODISPLAY)" t nil)
20720
20721(autoload 'metamail-buffer "metamail" "\
20722Process current buffer through `metamail'.
20723Optional argument VIEWMODE specifies the value of the
20724EMACS_VIEW_MODE environment variable (defaulted to 1).
20725Optional argument BUFFER specifies a buffer to be filled (nil
20726means current).
20727Optional argument NODISPLAY non-nil means buffer is not
20728redisplayed as output is inserted.
20729
20730\(fn &optional VIEWMODE BUFFER NODISPLAY)" t nil)
20731
20732(autoload 'metamail-region "metamail" "\
20733Process current region through `metamail'.
20734Optional argument VIEWMODE specifies the value of the
20735EMACS_VIEW_MODE environment variable (defaulted to 1).
20736Optional argument BUFFER specifies a buffer to be filled (nil
20737means current).
20738Optional argument NODISPLAY non-nil means buffer is not
20739redisplayed as output is inserted.
20740
20741\(fn BEG END &optional VIEWMODE BUFFER NODISPLAY)" t nil)
20742
20743(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "metamail" '("metamail-")))
20744
20745;;;***
20746
20747;;;### (autoloads nil "mh-acros" "mh-e/mh-acros.el" (0 0 0 0)) 20770;;;### (autoloads nil "mh-acros" "mh-e/mh-acros.el" (0 0 0 0))
20748;;; Generated autoloads from mh-e/mh-acros.el 20771;;; Generated autoloads from mh-e/mh-acros.el
20749 20772
@@ -26181,13 +26204,12 @@ Open profile FILENAME.
26181 26204
26182;;;### (autoloads nil "project" "progmodes/project.el" (0 0 0 0)) 26205;;;### (autoloads nil "project" "progmodes/project.el" (0 0 0 0))
26183;;; Generated autoloads from progmodes/project.el 26206;;; Generated autoloads from progmodes/project.el
26207(push (purecopy '(project 0 3 0)) package--builtin-versions)
26184 26208
26185(autoload 'project-current "project" "\ 26209(autoload 'project-current "project" "\
26186Return the project instance in DIR or `default-directory'. 26210Return the project instance in DIR or `default-directory'.
26187When no project found in DIR, and MAYBE-PROMPT is non-nil, ask 26211When no project found in DIR, and MAYBE-PROMPT is non-nil, ask
26188the user for a different directory to look in. If that directory 26212the user for a different project to look in.
26189is not a part of a detectable project either, return a
26190`transient' project instance rooted in it.
26191 26213
26192\(fn &optional MAYBE-PROMPT DIR)" nil nil) 26214\(fn &optional MAYBE-PROMPT DIR)" nil nil)
26193 26215
@@ -26210,15 +26232,21 @@ pattern to search for.
26210\(fn REGEXP)" t nil) 26232\(fn REGEXP)" t nil)
26211 26233
26212(autoload 'project-find-file "project" "\ 26234(autoload 'project-find-file "project" "\
26213Visit a file (with completion) in the current project's roots. 26235Visit a file (with completion) in the current project.
26214The completion default is the filename at point, if one is 26236The completion default is the filename at point, if one is
26215recognized." t nil) 26237recognized." t nil)
26216 26238
26217(autoload 'project-or-external-find-file "project" "\ 26239(autoload 'project-or-external-find-file "project" "\
26218Visit a file (with completion) in the current project's roots or external roots. 26240Visit a file (with completion) in the current project or external roots.
26219The completion default is the filename at point, if one is 26241The completion default is the filename at point, if one is
26220recognized." t nil) 26242recognized." t nil)
26221 26243
26244(autoload 'project-dired "project" "\
26245Open Dired in the current project." t nil)
26246
26247(autoload 'project-eshell "project" "\
26248Open Eshell in the current project." t nil)
26249
26222(autoload 'project-search "project" "\ 26250(autoload 'project-search "project" "\
26223Search for REGEXP in all the files of the project. 26251Search for REGEXP in all the files of the project.
26224Stops when a match is found. 26252Stops when a match is found.
@@ -26235,6 +26263,23 @@ loop using the command \\[fileloop-continue].
26235 26263
26236\(fn FROM TO)" t nil) 26264\(fn FROM TO)" t nil)
26237 26265
26266(autoload 'project-compile "project" "\
26267Run `compile' in the project root." t nil)
26268
26269(defvar project-switch-commands '(("f" "Find file" project-find-file) ("s" "Find regexp" project-find-regexp) ("d" "Dired" project-dired) ("e" "Eshell" project-eshell)) "\
26270Alist mapping keys to project switching menu entries.
26271Used by `project-switch-project' to construct a dispatch menu of
26272commands available upon \"switching\" to another project.
26273
26274Each element looks like (KEY LABEL COMMAND), where COMMAND is the
26275command to run when KEY is pressed. LABEL is used to distinguish
26276the choice in the dispatch menu.")
26277
26278(autoload 'project-switch-project "project" "\
26279\"Switch\" to another project by running a chosen command.
26280The available commands are picked from `project-switch-commands'
26281and presented in a dispatch menu." t nil)
26282
26238(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "project" '("project-"))) 26283(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "project" '("project-")))
26239 26284
26240;;;*** 26285;;;***
@@ -26890,7 +26935,7 @@ HELP-TEXT is a text set in `hangul-input-method-help-text'.
26890;;;;;; 0 0)) 26935;;;;;; 0 0))
26891;;; Generated autoloads from leim/quail/indian.el 26936;;; Generated autoloads from leim/quail/indian.el
26892 26937
26893(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "quail/indian" '("inscript-" "quail-"))) 26938(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "quail/indian" '("indian-mlm-mozhi-u" "inscript-" "quail-")))
26894 26939
26895;;;*** 26940;;;***
26896 26941
@@ -30138,7 +30183,7 @@ have <h1>Very Major Headlines</h1> through <h6>Very Minor Headlines</h6>
30138 30183
30139<p>Paragraphs only need an opening tag. Line breaks and multiple spaces are 30184<p>Paragraphs only need an opening tag. Line breaks and multiple spaces are
30140ignored unless the text is <pre>preformatted.</pre> Text can be marked as 30185ignored unless the text is <pre>preformatted.</pre> Text can be marked as
30141<b>bold</b>, <i>italic</i> or <u>underlined</u> using the normal M-o or 30186<strong>bold</strong>, <em>italic</em> or <u>underlined</u> using the normal M-o or
30142Edit/Text Properties/Face commands. 30187Edit/Text Properties/Face commands.
30143 30188
30144Pages can have <a name=\"SOMENAME\">named points</a> and can link other points 30189Pages can have <a name=\"SOMENAME\">named points</a> and can link other points
@@ -36425,6 +36470,13 @@ These are the commands available for use in the file status buffer:
36425 36470
36426\(fn DIR &optional BACKEND)" t nil) 36471\(fn DIR &optional BACKEND)" t nil)
36427 36472
36473(autoload 'vc-dir-bookmark-jump "vc-dir" "\
36474Provides the bookmark-jump behavior for a `vc-dir' buffer.
36475This implements the `handler' function interface for the record
36476type returned by `vc-dir-bookmark-make-record'.
36477
36478\(fn BMK)" nil nil)
36479
36428(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vc-dir" '("vc-"))) 36480(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "vc-dir" '("vc-")))
36429 36481
36430;;;*** 36482;;;***
@@ -38695,6 +38747,7 @@ If LIMIT is non-nil, then do not consider characters beyond LIMIT.
38695 38747
38696;;;### (autoloads nil "xref" "progmodes/xref.el" (0 0 0 0)) 38748;;;### (autoloads nil "xref" "progmodes/xref.el" (0 0 0 0))
38697;;; Generated autoloads from progmodes/xref.el 38749;;; Generated autoloads from progmodes/xref.el
38750(push (purecopy '(xref 1 0 1)) package--builtin-versions)
38698 38751
38699(autoload 'xref-find-backend "xref" nil nil nil) 38752(autoload 'xref-find-backend "xref" nil nil nil)
38700 38753
@@ -38920,29 +38973,29 @@ Zone out, completely." t nil)
38920;;;;;; "electric.el" "emacs-lisp/backquote.el" "emacs-lisp/byte-run.el" 38973;;;;;; "electric.el" "emacs-lisp/backquote.el" "emacs-lisp/byte-run.el"
38921;;;;;; "emacs-lisp/cl-extra.el" "emacs-lisp/cl-macs.el" "emacs-lisp/cl-preloaded.el" 38974;;;;;; "emacs-lisp/cl-extra.el" "emacs-lisp/cl-macs.el" "emacs-lisp/cl-preloaded.el"
38922;;;;;; "emacs-lisp/cl-seq.el" "emacs-lisp/eieio-compat.el" "emacs-lisp/eieio-custom.el" 38975;;;;;; "emacs-lisp/cl-seq.el" "emacs-lisp/eieio-compat.el" "emacs-lisp/eieio-custom.el"
38923;;;;;; "emacs-lisp/eieio-opt.el" "emacs-lisp/eldoc.el" "emacs-lisp/float-sup.el" 38976;;;;;; "emacs-lisp/eieio-opt.el" "emacs-lisp/float-sup.el" "emacs-lisp/lisp-mode.el"
38924;;;;;; "emacs-lisp/lisp-mode.el" "emacs-lisp/lisp.el" "emacs-lisp/macroexp.el" 38977;;;;;; "emacs-lisp/lisp.el" "emacs-lisp/macroexp.el" "emacs-lisp/map-ynp.el"
38925;;;;;; "emacs-lisp/map-ynp.el" "emacs-lisp/nadvice.el" "emacs-lisp/syntax.el" 38978;;;;;; "emacs-lisp/nadvice.el" "emacs-lisp/syntax.el" "emacs-lisp/timer.el"
38926;;;;;; "emacs-lisp/timer.el" "env.el" "epa-hook.el" "erc/erc-autoaway.el" 38979;;;;;; "env.el" "epa-hook.el" "erc/erc-autoaway.el" "erc/erc-button.el"
38927;;;;;; "erc/erc-button.el" "erc/erc-capab.el" "erc/erc-compat.el" 38980;;;;;; "erc/erc-capab.el" "erc/erc-compat.el" "erc/erc-dcc.el" "erc/erc-desktop-notifications.el"
38928;;;;;; "erc/erc-dcc.el" "erc/erc-desktop-notifications.el" "erc/erc-ezbounce.el" 38981;;;;;; "erc/erc-ezbounce.el" "erc/erc-fill.el" "erc/erc-identd.el"
38929;;;;;; "erc/erc-fill.el" "erc/erc-identd.el" "erc/erc-imenu.el" 38982;;;;;; "erc/erc-imenu.el" "erc/erc-join.el" "erc/erc-list.el" "erc/erc-log.el"
38930;;;;;; "erc/erc-join.el" "erc/erc-list.el" "erc/erc-log.el" "erc/erc-match.el" 38983;;;;;; "erc/erc-match.el" "erc/erc-menu.el" "erc/erc-netsplit.el"
38931;;;;;; "erc/erc-menu.el" "erc/erc-netsplit.el" "erc/erc-notify.el" 38984;;;;;; "erc/erc-notify.el" "erc/erc-page.el" "erc/erc-pcomplete.el"
38932;;;;;; "erc/erc-page.el" "erc/erc-pcomplete.el" "erc/erc-replace.el" 38985;;;;;; "erc/erc-replace.el" "erc/erc-ring.el" "erc/erc-services.el"
38933;;;;;; "erc/erc-ring.el" "erc/erc-services.el" "erc/erc-sound.el" 38986;;;;;; "erc/erc-sound.el" "erc/erc-speedbar.el" "erc/erc-spelling.el"
38934;;;;;; "erc/erc-speedbar.el" "erc/erc-spelling.el" "erc/erc-stamp.el" 38987;;;;;; "erc/erc-stamp.el" "erc/erc-track.el" "erc/erc-truncate.el"
38935;;;;;; "erc/erc-track.el" "erc/erc-truncate.el" "erc/erc-xdcc.el" 38988;;;;;; "erc/erc-xdcc.el" "eshell/em-alias.el" "eshell/em-banner.el"
38936;;;;;; "eshell/em-alias.el" "eshell/em-banner.el" "eshell/em-basic.el" 38989;;;;;; "eshell/em-basic.el" "eshell/em-cmpl.el" "eshell/em-dirs.el"
38937;;;;;; "eshell/em-cmpl.el" "eshell/em-dirs.el" "eshell/em-glob.el" 38990;;;;;; "eshell/em-glob.el" "eshell/em-hist.el" "eshell/em-ls.el"
38938;;;;;; "eshell/em-hist.el" "eshell/em-ls.el" "eshell/em-pred.el" 38991;;;;;; "eshell/em-pred.el" "eshell/em-prompt.el" "eshell/em-rebind.el"
38939;;;;;; "eshell/em-prompt.el" "eshell/em-rebind.el" "eshell/em-script.el" 38992;;;;;; "eshell/em-script.el" "eshell/em-smart.el" "eshell/em-term.el"
38940;;;;;; "eshell/em-smart.el" "eshell/em-term.el" "eshell/em-tramp.el" 38993;;;;;; "eshell/em-tramp.el" "eshell/em-unix.el" "eshell/em-xtra.el"
38941;;;;;; "eshell/em-unix.el" "eshell/em-xtra.el" "facemenu.el" "faces.el" 38994;;;;;; "facemenu.el" "faces.el" "files.el" "font-core.el" "font-lock.el"
38942;;;;;; "files.el" "font-core.el" "font-lock.el" "format.el" "frame.el" 38995;;;;;; "format.el" "frame.el" "help.el" "hfy-cmap.el" "ibuf-ext.el"
38943;;;;;; "help.el" "hfy-cmap.el" "ibuf-ext.el" "indent.el" "international/characters.el" 38996;;;;;; "indent.el" "international/characters.el" "international/charprop.el"
38944;;;;;; "international/charprop.el" "international/charscript.el" 38997;;;;;; "international/charscript.el" "international/cp51932.el"
38945;;;;;; "international/cp51932.el" "international/eucjp-ms.el" "international/mule-cmds.el" 38998;;;;;; "international/eucjp-ms.el" "international/mule-cmds.el"
38946;;;;;; "international/mule-conf.el" "international/mule.el" "international/uni-bidi.el" 38999;;;;;; "international/mule-conf.el" "international/mule.el" "international/uni-bidi.el"
38947;;;;;; "international/uni-brackets.el" "international/uni-category.el" 39000;;;;;; "international/uni-brackets.el" "international/uni-category.el"
38948;;;;;; "international/uni-combining.el" "international/uni-comment.el" 39001;;;;;; "international/uni-combining.el" "international/uni-comment.el"