aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2020-06-01 06:11:55 -0700
committerGlenn Morris2020-06-01 06:11:55 -0700
commitfb90f46f47731fffaccd02a55826298419609c77 (patch)
tree6d4daee54334641e1669774f6307b391725be78f
parent44c0e074f7cb84481785cb49515a4bd7235a074b (diff)
downloademacs-fb90f46f47731fffaccd02a55826298419609c77.tar.gz
emacs-fb90f46f47731fffaccd02a55826298419609c77.zip
; Auto-commit of loaddefs files.
-rw-r--r--lisp/ldefs-boot.el82
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,
7230if different)." t nil) 7230if different)." t nil)
7231 7231
7232(autoload 'desktop-save "desktop" "\ 7232(autoload 'desktop-save "desktop" "\
7233Save the desktop in a desktop file. 7233Save the state of Emacs in a desktop file in directory DIRNAME.
7234Parameter DIRNAME specifies where to save the desktop file. 7234Optional argument RELEASE non-nil says we're done with this
7235Optional parameter RELEASE says whether we're done with this 7235desktop, in which case this function releases the lock of the
7236desktop. If ONLY-IF-CHANGED is non-nil, compare the current 7236desktop file in DIRNAME.
7237desktop information to that in the desktop file, and if the 7237If ONLY-IF-CHANGED is non-nil, compare the current desktop
7238desktop information has not changed since it was last saved then 7238information to that in the desktop file, and if the desktop
7239do not rewrite the file. 7239information has not changed since it was last saved, then do
7240not rewrite the file.
7241
7242To restore the desktop, use `desktop-read'.
7240 7243
7241This function can save the desktop in either format version 7244This function can save the desktop in either format version
7242208 (which only Emacs 25.1 and later can read) or version 7245208 (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
7246file. 7249file.
7247 7250
7248To upgrade a version 206 file to version 208, call this command 7251To upgrade a version 206 file to version 208, call this command
7249explicitly with a bare prefix argument: C-u M-x desktop-save. 7252explicitly with a prefix argument: \\[universal-argument] \\[desktop-save].
7250You are recommended to do this once you have firmly upgraded to 7253If you are upgrading from Emacs 24 or older, we recommed to do
7251Emacs 25.1 (or later). To downgrade a version 208 file to version 7254this once you decide you no longer need compatibility with versions
7252206, use a double command prefix: C-u C-u M-x desktop-save. 7255of Emacs before 25.1.
7253Confirmation will be requested in either case. In a non-interactive 7256
7254call, VERSION can be given as an integer, either 206 or 208, which 7257To downgrade a version 208 file to version 206, use a double prefix
7255will be accepted as the format version in which to save the file 7258argument: \\[universal-argument] \\[universal-argument] \\[desktop-save].
7256without further confirmation. 7259
7260Emacs will ask for confirmation when you upgrade or downgrade your
7261desktop file.
7262
7263In a non-interactive call, VERSION can be given as an integer, either
7264206 or 208, to specify the format version in which to save the file,
7265no 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.
7839To change the position of the column displayed by default 7848To change the position of the column displayed by default
7840customize `display-fill-column-indicator-column'. You can change the 7849customize `display-fill-column-indicator-column'. You can change the
7841character for the indicator setting `display-fill-column-indicator-character'. 7850character for the indicator setting `display-fill-column-indicator-character'.
7851See 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" "\
12444Initialize a new round of query&replace on several files. 12454Initialize a new round of query&replace on several files.
12445FROM is a regexp and TO is the replacement to use. 12455 FROM is a regexp and TO is the replacement to use.
12446FILES describes the file, as in `fileloop-initialize'. 12456 FILES describes the files, as in `fileloop-initialize'.
12447CASE-FOLD can be t, nil, or `default', the latter one meaning to obey 12457 CASE-FOLD can be t, nil, or `default':
12448the default setting of `case-fold-search'. 12458 if it is nil, matching of FROM is case-sensitive.
12449DELIMITED 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" "\
13026Make a Flymake diagnostic for BUFFER's region from BEG to END. 13041Make a Flymake diagnostic for BUFFER's region from BEG to END.
13027TYPE is a key to symbol and TEXT is a description of the problem 13042TYPE is a diagnostic symbol and TEXT is string describing the
13028detected in this region. DATA is any object that the caller 13043problem detected in this region. DATA is any object that the
13029wishes to attach to the created diagnostic for later retrieval. 13044caller wishes to attach to the created diagnostic for later
13045retrieval.
13030 13046
13031OVERLAY-PROPERTIES is an alist of properties attached to the 13047OVERLAY-PROPERTIES is an alist of properties attached to the
13032created diagnostic, overriding the default properties and any 13048created diagnostic, overriding the default properties and any
@@ -15989,7 +16005,10 @@ or add (global-hi-lock-mode 1) to your init file.
15989In buffers where Font Lock mode is enabled, patterns are 16005In buffers where Font Lock mode is enabled, patterns are
15990highlighted using font lock. In buffers where Font Lock mode is 16006highlighted using font lock. In buffers where Font Lock mode is
15991disabled, patterns are applied using overlays; in this case, the 16007disabled, patterns are applied using overlays; in this case, the
15992highlighting will not be updated as you type. 16008highlighting will not be updated as you type. The Font Lock mode
16009is considered \"enabled\" in a buffer if its `major-mode'
16010causes `font-lock-specified-p' to return non-nil, which means
16011the major mode specifies support for Font Lock.
15993 16012
15994When Hi Lock mode is enabled, a \"Regexp Highlighting\" submenu 16013When Hi Lock mode is enabled, a \"Regexp Highlighting\" submenu
15995is added to the \"Edit\" menu. The commands in the submenu, 16014is 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
16093Use Font lock mode, if enabled, to highlight REGEXP. Otherwise, 16112Use Font lock mode, if enabled, to highlight REGEXP. Otherwise,
16094use overlays for highlighting. If overlays are used, the 16113use overlays for highlighting. If overlays are used, the
16095highlighting will not update as you type. 16114highlighting will not update as you type. The Font Lock mode
16115is considered \"enabled\" in a buffer if its `major-mode'
16116causes `font-lock-specified-p' to return non-nil, which means
16117the 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
16110Use Font lock mode, if enabled, to highlight REGEXP. Otherwise, 16132Use Font lock mode, if enabled, to highlight REGEXP. Otherwise,
16111use overlays for highlighting. If overlays are used, the 16133use overlays for highlighting. If overlays are used, the
16112highlighting will not update as you type. 16134highlighting will not update as you type. The Font Lock mode
16135is considered \"enabled\" in a buffer if its `major-mode'
16136causes `font-lock-specified-p' to return non-nil, which means
16137the 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.
16122Uses `find-tag-default-as-symbol-regexp' to retrieve the symbol at point. 16147Uses `find-tag-default-as-symbol-regexp' to retrieve the symbol at point.
16123 16148
16124This uses Font lock mode if it is enabled; otherwise it uses overlays, 16149This uses Font lock mode if it is enabled; otherwise it uses overlays,
16125in which case the highlighting will not update as you type." t nil) 16150in which case the highlighting will not update as you type. The Font
16151Lock mode is considered \"enabled\" in a buffer if its `major-mode'
16152causes `font-lock-specified-p' to return non-nil, which means
16153the 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