diff options
| author | Glenn Morris | 2020-06-01 06:11:55 -0700 |
|---|---|---|
| committer | Glenn Morris | 2020-06-01 06:11:55 -0700 |
| commit | fb90f46f47731fffaccd02a55826298419609c77 (patch) | |
| tree | 6d4daee54334641e1669774f6307b391725be78f | |
| parent | 44c0e074f7cb84481785cb49515a4bd7235a074b (diff) | |
| download | emacs-fb90f46f47731fffaccd02a55826298419609c77.tar.gz emacs-fb90f46f47731fffaccd02a55826298419609c77.zip | |
; Auto-commit of loaddefs files.
| -rw-r--r-- | lisp/ldefs-boot.el | 82 |
1 files changed, 55 insertions, 27 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index fd0cd3efee0..177e41ee4c4 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -7230,13 +7230,16 @@ deletes all frames except the selected one (and its minibuffer frame, | |||
| 7230 | if different)." t nil) | 7230 | if different)." t nil) |
| 7231 | 7231 | ||
| 7232 | (autoload 'desktop-save "desktop" "\ | 7232 | (autoload 'desktop-save "desktop" "\ |
| 7233 | Save the desktop in a desktop file. | 7233 | Save the state of Emacs in a desktop file in directory DIRNAME. |
| 7234 | Parameter DIRNAME specifies where to save the desktop file. | 7234 | Optional argument RELEASE non-nil says we're done with this |
| 7235 | Optional parameter RELEASE says whether we're done with this | 7235 | desktop, in which case this function releases the lock of the |
| 7236 | desktop. If ONLY-IF-CHANGED is non-nil, compare the current | 7236 | desktop file in DIRNAME. |
| 7237 | desktop information to that in the desktop file, and if the | 7237 | If ONLY-IF-CHANGED is non-nil, compare the current desktop |
| 7238 | desktop information has not changed since it was last saved then | 7238 | information to that in the desktop file, and if the desktop |
| 7239 | do not rewrite the file. | 7239 | information has not changed since it was last saved, then do |
| 7240 | not rewrite the file. | ||
| 7241 | |||
| 7242 | To restore the desktop, use `desktop-read'. | ||
| 7240 | 7243 | ||
| 7241 | This function can save the desktop in either format version | 7244 | This function can save the desktop in either format version |
| 7242 | 208 (which only Emacs 25.1 and later can read) or version | 7245 | 208 (which only Emacs 25.1 and later can read) or version |
| @@ -7246,14 +7249,20 @@ it was last saved, or version 208 when writing a fresh desktop | |||
| 7246 | file. | 7249 | file. |
| 7247 | 7250 | ||
| 7248 | To upgrade a version 206 file to version 208, call this command | 7251 | To upgrade a version 206 file to version 208, call this command |
| 7249 | explicitly with a bare prefix argument: C-u M-x desktop-save. | 7252 | explicitly with a prefix argument: \\[universal-argument] \\[desktop-save]. |
| 7250 | You are recommended to do this once you have firmly upgraded to | 7253 | If you are upgrading from Emacs 24 or older, we recommed to do |
| 7251 | Emacs 25.1 (or later). To downgrade a version 208 file to version | 7254 | this once you decide you no longer need compatibility with versions |
| 7252 | 206, use a double command prefix: C-u C-u M-x desktop-save. | 7255 | of Emacs before 25.1. |
| 7253 | Confirmation will be requested in either case. In a non-interactive | 7256 | |
| 7254 | call, VERSION can be given as an integer, either 206 or 208, which | 7257 | To downgrade a version 208 file to version 206, use a double prefix |
| 7255 | will be accepted as the format version in which to save the file | 7258 | argument: \\[universal-argument] \\[universal-argument] \\[desktop-save]. |
| 7256 | without further confirmation. | 7259 | |
| 7260 | Emacs will ask for confirmation when you upgrade or downgrade your | ||
| 7261 | desktop file. | ||
| 7262 | |||
| 7263 | In a non-interactive call, VERSION can be given as an integer, either | ||
| 7264 | 206 or 208, to specify the format version in which to save the file, | ||
| 7265 | no questions asked. | ||
| 7257 | 7266 | ||
| 7258 | \(fn DIRNAME &optional RELEASE ONLY-IF-CHANGED VERSION)" t nil) | 7267 | \(fn DIRNAME &optional RELEASE ONLY-IF-CHANGED VERSION)" t nil) |
| 7259 | 7268 | ||
| @@ -7839,6 +7848,7 @@ it if ARG is `toggle'; disable the mode otherwise. | |||
| 7839 | To change the position of the column displayed by default | 7848 | To change the position of the column displayed by default |
| 7840 | customize `display-fill-column-indicator-column'. You can change the | 7849 | customize `display-fill-column-indicator-column'. You can change the |
| 7841 | character for the indicator setting `display-fill-column-indicator-character'. | 7850 | character for the indicator setting `display-fill-column-indicator-character'. |
| 7851 | See Info node `Displaying Boundaries' for details. | ||
| 7842 | 7852 | ||
| 7843 | \(fn &optional ARG)" t nil) | 7853 | \(fn &optional ARG)" t nil) |
| 7844 | 7854 | ||
| @@ -12442,11 +12452,16 @@ operating on the next file and nil otherwise. | |||
| 12442 | 12452 | ||
| 12443 | (autoload 'fileloop-initialize-replace "fileloop" "\ | 12453 | (autoload 'fileloop-initialize-replace "fileloop" "\ |
| 12444 | Initialize a new round of query&replace on several files. | 12454 | Initialize a new round of query&replace on several files. |
| 12445 | FROM is a regexp and TO is the replacement to use. | 12455 | FROM is a regexp and TO is the replacement to use. |
| 12446 | FILES describes the file, as in `fileloop-initialize'. | 12456 | FILES describes the files, as in `fileloop-initialize'. |
| 12447 | CASE-FOLD can be t, nil, or `default', the latter one meaning to obey | 12457 | CASE-FOLD can be t, nil, or `default': |
| 12448 | the default setting of `case-fold-search'. | 12458 | if it is nil, matching of FROM is case-sensitive. |
| 12449 | DELIMITED if non-nil means replace only word-delimited matches. | 12459 | if it is t, matching of FROM is case-insensitive, except |
| 12460 | when `search-upper-case' is non-nil and FROM includes | ||
| 12461 | upper-case letters. | ||
| 12462 | if it is `default', the function uses the value of | ||
| 12463 | `case-fold-search' instead. | ||
| 12464 | DELIMITED if non-nil means replace only word-delimited matches. | ||
| 12450 | 12465 | ||
| 12451 | \(fn FROM TO FILES CASE-FOLD &optional DELIMITED)" nil nil) | 12466 | \(fn FROM TO FILES CASE-FOLD &optional DELIMITED)" nil nil) |
| 12452 | 12467 | ||
| @@ -13024,9 +13039,10 @@ generated it. | |||
| 13024 | 13039 | ||
| 13025 | (autoload 'flymake-make-diagnostic "flymake" "\ | 13040 | (autoload 'flymake-make-diagnostic "flymake" "\ |
| 13026 | Make a Flymake diagnostic for BUFFER's region from BEG to END. | 13041 | Make a Flymake diagnostic for BUFFER's region from BEG to END. |
| 13027 | TYPE is a key to symbol and TEXT is a description of the problem | 13042 | TYPE is a diagnostic symbol and TEXT is string describing the |
| 13028 | detected in this region. DATA is any object that the caller | 13043 | problem detected in this region. DATA is any object that the |
| 13029 | wishes to attach to the created diagnostic for later retrieval. | 13044 | caller wishes to attach to the created diagnostic for later |
| 13045 | retrieval. | ||
| 13030 | 13046 | ||
| 13031 | OVERLAY-PROPERTIES is an alist of properties attached to the | 13047 | OVERLAY-PROPERTIES is an alist of properties attached to the |
| 13032 | created diagnostic, overriding the default properties and any | 13048 | created diagnostic, overriding the default properties and any |
| @@ -15989,7 +16005,10 @@ or add (global-hi-lock-mode 1) to your init file. | |||
| 15989 | In buffers where Font Lock mode is enabled, patterns are | 16005 | In buffers where Font Lock mode is enabled, patterns are |
| 15990 | highlighted using font lock. In buffers where Font Lock mode is | 16006 | highlighted using font lock. In buffers where Font Lock mode is |
| 15991 | disabled, patterns are applied using overlays; in this case, the | 16007 | disabled, patterns are applied using overlays; in this case, the |
| 15992 | highlighting will not be updated as you type. | 16008 | highlighting will not be updated as you type. The Font Lock mode |
| 16009 | is considered \"enabled\" in a buffer if its `major-mode' | ||
| 16010 | causes `font-lock-specified-p' to return non-nil, which means | ||
| 16011 | the major mode specifies support for Font Lock. | ||
| 15993 | 16012 | ||
| 15994 | When Hi Lock mode is enabled, a \"Regexp Highlighting\" submenu | 16013 | When Hi Lock mode is enabled, a \"Regexp Highlighting\" submenu |
| 15995 | is added to the \"Edit\" menu. The commands in the submenu, | 16014 | is added to the \"Edit\" menu. The commands in the submenu, |
| @@ -16092,7 +16111,10 @@ If SUBEXP is omitted or nil, the entire REGEXP is highlighted. | |||
| 16092 | 16111 | ||
| 16093 | Use Font lock mode, if enabled, to highlight REGEXP. Otherwise, | 16112 | Use Font lock mode, if enabled, to highlight REGEXP. Otherwise, |
| 16094 | use overlays for highlighting. If overlays are used, the | 16113 | use overlays for highlighting. If overlays are used, the |
| 16095 | highlighting will not update as you type. | 16114 | highlighting will not update as you type. The Font Lock mode |
| 16115 | is considered \"enabled\" in a buffer if its `major-mode' | ||
| 16116 | causes `font-lock-specified-p' to return non-nil, which means | ||
| 16117 | the major mode specifies support for Font Lock. | ||
| 16096 | 16118 | ||
| 16097 | \(fn REGEXP &optional FACE SUBEXP)" t nil) | 16119 | \(fn REGEXP &optional FACE SUBEXP)" t nil) |
| 16098 | 16120 | ||
| @@ -16109,7 +16131,10 @@ letters case-insensitive, before highlighting with `hi-lock-set-pattern'. | |||
| 16109 | 16131 | ||
| 16110 | Use Font lock mode, if enabled, to highlight REGEXP. Otherwise, | 16132 | Use Font lock mode, if enabled, to highlight REGEXP. Otherwise, |
| 16111 | use overlays for highlighting. If overlays are used, the | 16133 | use overlays for highlighting. If overlays are used, the |
| 16112 | highlighting will not update as you type. | 16134 | highlighting will not update as you type. The Font Lock mode |
| 16135 | is considered \"enabled\" in a buffer if its `major-mode' | ||
| 16136 | causes `font-lock-specified-p' to return non-nil, which means | ||
| 16137 | the major mode specifies support for Font Lock. | ||
| 16113 | 16138 | ||
| 16114 | \(fn REGEXP &optional FACE)" t nil) | 16139 | \(fn REGEXP &optional FACE)" t nil) |
| 16115 | 16140 | ||
| @@ -16122,7 +16147,10 @@ unless you use a prefix argument. | |||
| 16122 | Uses `find-tag-default-as-symbol-regexp' to retrieve the symbol at point. | 16147 | Uses `find-tag-default-as-symbol-regexp' to retrieve the symbol at point. |
| 16123 | 16148 | ||
| 16124 | This uses Font lock mode if it is enabled; otherwise it uses overlays, | 16149 | This uses Font lock mode if it is enabled; otherwise it uses overlays, |
| 16125 | in which case the highlighting will not update as you type." t nil) | 16150 | in which case the highlighting will not update as you type. The Font |
| 16151 | Lock mode is considered \"enabled\" in a buffer if its `major-mode' | ||
| 16152 | causes `font-lock-specified-p' to return non-nil, which means | ||
| 16153 | the major mode specifies support for Font Lock." t nil) | ||
| 16126 | 16154 | ||
| 16127 | (defalias 'unhighlight-regexp 'hi-lock-unface-buffer) | 16155 | (defalias 'unhighlight-regexp 'hi-lock-unface-buffer) |
| 16128 | 16156 | ||