diff options
| author | Glenn Morris | 2020-06-01 06:27:51 -0700 |
|---|---|---|
| committer | Glenn Morris | 2020-06-01 06:27:51 -0700 |
| commit | 056200f3ebdf74ef41cc9abdf99ae5bb03b73850 (patch) | |
| tree | 4eb323c55ac3101e043a6610e3162c4f0fb256d6 | |
| parent | f92925864613035c2e627862433112b12cf0d6dd (diff) | |
| download | emacs-056200f3ebdf74ef41cc9abdf99ae5bb03b73850.tar.gz emacs-056200f3ebdf74ef41cc9abdf99ae5bb03b73850.zip | |
; Auto-commit of loaddefs files.
| -rw-r--r-- | lisp/ldefs-boot.el | 297 |
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. | |||
| 2452 | This is used by the `browse-url-at-point', `browse-url-at-mouse', and | 2452 | This 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 | ||
| 2455 | If the value is not a function it should be a list of pairs | 2455 | Also see `browse-url-secondary-browser-function' and |
| 2456 | \(REGEXP . FUNCTION). In this case the function called will be the one | 2456 | `browse-url-handlers'.") |
| 2457 | associated with the first REGEXP which matches the current URL. The | ||
| 2458 | function is passed the URL and any other args of `browse-url'. The last | ||
| 2459 | regexp should probably be \".\" to specify a default browser. | ||
| 2460 | |||
| 2461 | Also 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)) "\ | ||
| 2461 | Like `browse-url-handlers' but populated by Emacs and packages. | ||
| 2462 | |||
| 2463 | Emacs and external packages capable of browsing certain URLs | ||
| 2464 | should 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" "\ | ||
| 2468 | Return a handler of suitable for browsing URL. | ||
| 2469 | This searches `browse-url-handlers', and | ||
| 2470 | `browse-url-default-handlers' for a matching handler. Return nil | ||
| 2471 | if no handler is found. | ||
| 2472 | |||
| 2473 | If KIND is given, the search is restricted to handlers whose | ||
| 2474 | function symbol has the symbol-property `browse-url-browser-kind' | ||
| 2475 | set to KIND. | ||
| 2476 | |||
| 2477 | Currently, it also consults `browse-url-browser-function' first | ||
| 2478 | if it is set to an alist, although this usage is deprecated since | ||
| 2479 | Emacs 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" "\ |
| 2466 | Ask a WWW browser to display FILE. | 2484 | Ask a WWW browser to display FILE. |
| 2467 | Display the current buffer's file if FILE is nil or if called | 2485 | Display 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. | |||
| 2491 | Ask a WWW browser to load URL. | 2509 | Ask a WWW browser to load URL. |
| 2492 | Prompt for a URL, defaulting to the URL at or before point. | 2510 | Prompt for a URL, defaulting to the URL at or before point. |
| 2493 | Invokes a suitable browser function which does the actual job. | 2511 | Invokes a suitable browser function which does the actual job. |
| 2494 | The variable `browse-url-browser-function' says which browser function to | ||
| 2495 | use. If the URL is a mailto: URL, consult `browse-url-mailto-function' | ||
| 2496 | first, if that exists. | ||
| 2497 | 2512 | ||
| 2498 | The additional ARGS are passed to the browser function. See the doc | 2513 | The variables `browse-url-browser-function', |
| 2499 | strings of the actual functions, starting with `browse-url-browser-function', | 2514 | `browse-url-handlers', and `browse-url-default-handlers' |
| 2500 | for information about the significance of ARGS (most of the functions | 2515 | determine which browser function to use. |
| 2501 | ignore it). | 2516 | |
| 2502 | If ARGS are omitted, the default is to pass `browse-url-new-window-flag' | 2517 | The additional ARGS are passed to the browser function. See the |
| 2503 | as ARGS. | 2518 | doc strings of the actual functions, starting with |
| 2519 | `browse-url-browser-function', for information about the | ||
| 2520 | significance of ARGS (most of the functions ignore it). | ||
| 2521 | |||
| 2522 | If 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" "\ | ||
| 2536 | Browse URL with a browser of the given browser KIND. | ||
| 2537 | KIND is either `internal' or `external'. | ||
| 2538 | |||
| 2539 | When called interactively, the default browser kind is the | ||
| 2540 | opposite 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" "\ |
| 2516 | Ask a WWW browser to load a URL clicked with the mouse. | 2545 | Ask a WWW browser to load a URL clicked with the mouse. |
| 2517 | The URL is the one around or before the position of the mouse click | 2546 | The 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" "\ |
| 2703 | Ask the w3 WWW browser to load URL. | 2734 | Ask the w3 WWW browser to load URL. |
| 2704 | Default to the URL around or before point. | 2735 | Default 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 | ||
| 3844 | This function attempts to use file contents to determine whether | 3875 | This function attempts to use file contents to determine whether |
| 3845 | the code is C or C++ and based on that chooses whether to enable | 3876 | the 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" "\ |
| 3849 | Major mode for editing C++ code. | 3880 | Major 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, | |||
| 7258 | if different)." t nil) | 7289 | if different)." t nil) |
| 7259 | 7290 | ||
| 7260 | (autoload 'desktop-save "desktop" "\ | 7291 | (autoload 'desktop-save "desktop" "\ |
| 7261 | Save the desktop in a desktop file. | 7292 | Save the state of Emacs in a desktop file in directory DIRNAME. |
| 7262 | Parameter DIRNAME specifies where to save the desktop file. | 7293 | Optional argument RELEASE non-nil says we're done with this |
| 7263 | Optional parameter RELEASE says whether we're done with this | 7294 | desktop, in which case this function releases the lock of the |
| 7264 | desktop. If ONLY-IF-CHANGED is non-nil, compare the current | 7295 | desktop file in DIRNAME. |
| 7265 | desktop information to that in the desktop file, and if the | 7296 | If ONLY-IF-CHANGED is non-nil, compare the current desktop |
| 7266 | desktop information has not changed since it was last saved then | 7297 | information to that in the desktop file, and if the desktop |
| 7267 | do not rewrite the file. | 7298 | information has not changed since it was last saved, then do |
| 7299 | not rewrite the file. | ||
| 7300 | |||
| 7301 | To restore the desktop, use `desktop-read'. | ||
| 7268 | 7302 | ||
| 7269 | This function can save the desktop in either format version | 7303 | This function can save the desktop in either format version |
| 7270 | 208 (which only Emacs 25.1 and later can read) or version | 7304 | 208 (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 | |||
| 7274 | file. | 7308 | file. |
| 7275 | 7309 | ||
| 7276 | To upgrade a version 206 file to version 208, call this command | 7310 | To upgrade a version 206 file to version 208, call this command |
| 7277 | explicitly with a bare prefix argument: C-u M-x desktop-save. | 7311 | explicitly with a prefix argument: \\[universal-argument] \\[desktop-save]. |
| 7278 | You are recommended to do this once you have firmly upgraded to | 7312 | If you are upgrading from Emacs 24 or older, we recommed to do |
| 7279 | Emacs 25.1 (or later). To downgrade a version 208 file to version | 7313 | this once you decide you no longer need compatibility with versions |
| 7280 | 206, use a double command prefix: C-u C-u M-x desktop-save. | 7314 | of Emacs before 25.1. |
| 7281 | Confirmation will be requested in either case. In a non-interactive | 7315 | |
| 7282 | call, VERSION can be given as an integer, either 206 or 208, which | 7316 | To downgrade a version 208 file to version 206, use a double prefix |
| 7283 | will be accepted as the format version in which to save the file | 7317 | argument: \\[universal-argument] \\[universal-argument] \\[desktop-save]. |
| 7284 | without further confirmation. | 7318 | |
| 7319 | Emacs will ask for confirmation when you upgrade or downgrade your | ||
| 7320 | desktop file. | ||
| 7321 | |||
| 7322 | In a non-interactive call, VERSION can be given as an integer, either | ||
| 7323 | 206 or 208, to specify the format version in which to save the file, | ||
| 7324 | no 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. | |||
| 7866 | To change the position of the column displayed by default | 7906 | To change the position of the column displayed by default |
| 7867 | customize `display-fill-column-indicator-column'. You can change the | 7907 | customize `display-fill-column-indicator-column'. You can change the |
| 7868 | character for the indicator setting `display-fill-column-indicator-character'. | 7908 | character for the indicator setting `display-fill-column-indicator-character'. |
| 7909 | See 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" "\ |
| 12471 | Initialize a new round of query&replace on several files. | 12518 | Initialize a new round of query&replace on several files. |
| 12472 | FROM is a regexp and TO is the replacement to use. | 12519 | FROM is a regexp and TO is the replacement to use. |
| 12473 | FILES describes the file, as in `fileloop-initialize'. | 12520 | FILES describes the files, as in `fileloop-initialize'. |
| 12474 | CASE-FOLD can be t, nil, or `default', the latter one meaning to obey | 12521 | CASE-FOLD can be t, nil, or `default': |
| 12475 | the 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. | ||
| 12476 | DELIMITED if non-nil means replace only word-delimited matches. | 12528 | DELIMITED 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" "\ |
| 13060 | Make a Flymake diagnostic for BUFFER's region from BEG to END. | 13112 | Make a Flymake diagnostic for BUFFER's region from BEG to END. |
| 13061 | TYPE is a key to symbol and TEXT is a description of the problem | 13113 | TYPE is a diagnostic symbol and TEXT is string describing the |
| 13062 | detected in this region. DATA is any object that the caller | 13114 | problem detected in this region. DATA is any object that the |
| 13063 | wishes to attach to the created diagnostic for later retrieval. | 13115 | caller wishes to attach to the created diagnostic for later |
| 13116 | retrieval. | ||
| 13064 | 13117 | ||
| 13065 | OVERLAY-PROPERTIES is an alist of properties attached to the | 13118 | OVERLAY-PROPERTIES is an alist of properties attached to the |
| 13066 | created diagnostic, overriding the default properties and any | 13119 | created diagnostic, overriding the default properties and any |
| @@ -13576,7 +13629,7 @@ and choose the directory as the fortune-file. | |||
| 13576 | Minimum set of parameters to filter for live (on-session) framesets. | 13629 | Minimum set of parameters to filter for live (on-session) framesets. |
| 13577 | DO NOT MODIFY. See `frameset-filter-alist' for a full description.") | 13630 | DO 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) "\ |
| 13580 | Parameters to filter for persistent framesets. | 13633 | Parameters to filter for persistent framesets. |
| 13581 | DO NOT MODIFY. See `frameset-filter-alist' for a full description.") | 13634 | DO 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" "\ |
| 15830 | Enter Help Mode in the current buffer." nil nil) | 15883 | Enter Help mode in the current buffer." nil nil) |
| 15831 | 15884 | ||
| 15832 | (autoload 'help-mode-finish "help-mode" "\ | 15885 | (autoload 'help-mode-finish "help-mode" "\ |
| 15833 | Finalize Help Mode setup in current buffer." nil nil) | 15886 | Finalize Help mode setup in current buffer." nil nil) |
| 15834 | 15887 | ||
| 15835 | (autoload 'help-setup-xref "help-mode" "\ | 15888 | (autoload 'help-setup-xref "help-mode" "\ |
| 15836 | Invoked from commands using the \"*Help*\" buffer to install some xref info. | 15889 | Invoked 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. | |||
| 16053 | In buffers where Font Lock mode is enabled, patterns are | 16106 | In buffers where Font Lock mode is enabled, patterns are |
| 16054 | highlighted using font lock. In buffers where Font Lock mode is | 16107 | highlighted using font lock. In buffers where Font Lock mode is |
| 16055 | disabled, patterns are applied using overlays; in this case, the | 16108 | disabled, patterns are applied using overlays; in this case, the |
| 16056 | highlighting will not be updated as you type. | 16109 | highlighting will not be updated as you type. The Font Lock mode |
| 16110 | is considered \"enabled\" in a buffer if its `major-mode' | ||
| 16111 | causes `font-lock-specified-p' to return non-nil, which means | ||
| 16112 | the major mode specifies support for Font Lock. | ||
| 16057 | 16113 | ||
| 16058 | When Hi Lock mode is enabled, a \"Regexp Highlighting\" submenu | 16114 | When Hi Lock mode is enabled, a \"Regexp Highlighting\" submenu |
| 16059 | is added to the \"Edit\" menu. The commands in the submenu, | 16115 | is 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 | ||
| 16167 | Use Font lock mode, if enabled, to highlight REGEXP. Otherwise, | 16223 | Use Font lock mode, if enabled, to highlight REGEXP. Otherwise, |
| 16168 | use overlays for highlighting. If overlays are used, the | 16224 | use overlays for highlighting. If overlays are used, the |
| 16169 | highlighting will not update as you type. | 16225 | highlighting will not update as you type. The Font Lock mode |
| 16226 | is considered \"enabled\" in a buffer if its `major-mode' | ||
| 16227 | causes `font-lock-specified-p' to return non-nil, which means | ||
| 16228 | the 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 | ||
| 16184 | Use Font lock mode, if enabled, to highlight REGEXP. Otherwise, | 16243 | Use Font lock mode, if enabled, to highlight REGEXP. Otherwise, |
| 16185 | use overlays for highlighting. If overlays are used, the | 16244 | use overlays for highlighting. If overlays are used, the |
| 16186 | highlighting will not update as you type. | 16245 | highlighting will not update as you type. The Font Lock mode |
| 16246 | is considered \"enabled\" in a buffer if its `major-mode' | ||
| 16247 | causes `font-lock-specified-p' to return non-nil, which means | ||
| 16248 | the 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 `\\') | |||
| 16199 | and `search-upper-case' is non-nil, the matching is case-sensitive. | 16261 | and `search-upper-case' is non-nil, the matching is case-sensitive. |
| 16200 | 16262 | ||
| 16201 | This uses Font lock mode if it is enabled; otherwise it uses overlays, | 16263 | This uses Font lock mode if it is enabled; otherwise it uses overlays, |
| 16202 | in which case the highlighting will not update as you type." t nil) | 16264 | in which case the highlighting will not update as you type. The Font |
| 16265 | Lock mode is considered \"enabled\" in a buffer if its `major-mode' | ||
| 16266 | causes `font-lock-specified-p' to return non-nil, which means | ||
| 16267 | the 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 | ||
| 18326 | Advanced commands: | 18392 | Advanced 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" "\ | ||
| 20708 | Interpret a header part of a MIME message in current buffer. | ||
| 20709 | Its body part is not interpreted at all." t nil) | ||
| 20710 | |||
| 20711 | (autoload 'metamail-interpret-body "metamail" "\ | ||
| 20712 | Interpret a body part of a MIME message in current buffer. | ||
| 20713 | Optional argument VIEWMODE specifies the value of the | ||
| 20714 | EMACS_VIEW_MODE environment variable (defaulted to 1). | ||
| 20715 | Optional argument NODISPLAY non-nil means buffer is not | ||
| 20716 | redisplayed as output is inserted. | ||
| 20717 | Its header part is not interpreted at all. | ||
| 20718 | |||
| 20719 | \(fn &optional VIEWMODE NODISPLAY)" t nil) | ||
| 20720 | |||
| 20721 | (autoload 'metamail-buffer "metamail" "\ | ||
| 20722 | Process current buffer through `metamail'. | ||
| 20723 | Optional argument VIEWMODE specifies the value of the | ||
| 20724 | EMACS_VIEW_MODE environment variable (defaulted to 1). | ||
| 20725 | Optional argument BUFFER specifies a buffer to be filled (nil | ||
| 20726 | means current). | ||
| 20727 | Optional argument NODISPLAY non-nil means buffer is not | ||
| 20728 | redisplayed as output is inserted. | ||
| 20729 | |||
| 20730 | \(fn &optional VIEWMODE BUFFER NODISPLAY)" t nil) | ||
| 20731 | |||
| 20732 | (autoload 'metamail-region "metamail" "\ | ||
| 20733 | Process current region through `metamail'. | ||
| 20734 | Optional argument VIEWMODE specifies the value of the | ||
| 20735 | EMACS_VIEW_MODE environment variable (defaulted to 1). | ||
| 20736 | Optional argument BUFFER specifies a buffer to be filled (nil | ||
| 20737 | means current). | ||
| 20738 | Optional argument NODISPLAY non-nil means buffer is not | ||
| 20739 | redisplayed 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" "\ |
| 26186 | Return the project instance in DIR or `default-directory'. | 26210 | Return the project instance in DIR or `default-directory'. |
| 26187 | When no project found in DIR, and MAYBE-PROMPT is non-nil, ask | 26211 | When no project found in DIR, and MAYBE-PROMPT is non-nil, ask |
| 26188 | the user for a different directory to look in. If that directory | 26212 | the user for a different project to look in. |
| 26189 | is 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" "\ |
| 26213 | Visit a file (with completion) in the current project's roots. | 26235 | Visit a file (with completion) in the current project. |
| 26214 | The completion default is the filename at point, if one is | 26236 | The completion default is the filename at point, if one is |
| 26215 | recognized." t nil) | 26237 | recognized." t nil) |
| 26216 | 26238 | ||
| 26217 | (autoload 'project-or-external-find-file "project" "\ | 26239 | (autoload 'project-or-external-find-file "project" "\ |
| 26218 | Visit a file (with completion) in the current project's roots or external roots. | 26240 | Visit a file (with completion) in the current project or external roots. |
| 26219 | The completion default is the filename at point, if one is | 26241 | The completion default is the filename at point, if one is |
| 26220 | recognized." t nil) | 26242 | recognized." t nil) |
| 26221 | 26243 | ||
| 26244 | (autoload 'project-dired "project" "\ | ||
| 26245 | Open Dired in the current project." t nil) | ||
| 26246 | |||
| 26247 | (autoload 'project-eshell "project" "\ | ||
| 26248 | Open Eshell in the current project." t nil) | ||
| 26249 | |||
| 26222 | (autoload 'project-search "project" "\ | 26250 | (autoload 'project-search "project" "\ |
| 26223 | Search for REGEXP in all the files of the project. | 26251 | Search for REGEXP in all the files of the project. |
| 26224 | Stops when a match is found. | 26252 | Stops 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" "\ | ||
| 26267 | Run `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)) "\ | ||
| 26270 | Alist mapping keys to project switching menu entries. | ||
| 26271 | Used by `project-switch-project' to construct a dispatch menu of | ||
| 26272 | commands available upon \"switching\" to another project. | ||
| 26273 | |||
| 26274 | Each element looks like (KEY LABEL COMMAND), where COMMAND is the | ||
| 26275 | command to run when KEY is pressed. LABEL is used to distinguish | ||
| 26276 | the choice in the dispatch menu.") | ||
| 26277 | |||
| 26278 | (autoload 'project-switch-project "project" "\ | ||
| 26279 | \"Switch\" to another project by running a chosen command. | ||
| 26280 | The available commands are picked from `project-switch-commands' | ||
| 26281 | and 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 |
| 30140 | ignored unless the text is <pre>preformatted.</pre> Text can be marked as | 30185 | ignored 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 |
| 30142 | Edit/Text Properties/Face commands. | 30187 | Edit/Text Properties/Face commands. |
| 30143 | 30188 | ||
| 30144 | Pages can have <a name=\"SOMENAME\">named points</a> and can link other points | 30189 | Pages 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" "\ | ||
| 36474 | Provides the bookmark-jump behavior for a `vc-dir' buffer. | ||
| 36475 | This implements the `handler' function interface for the record | ||
| 36476 | type 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" |