aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ldefs-boot.el45
1 files changed, 29 insertions, 16 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index 16a9df2c92e..60e7f6811bc 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -6961,13 +6961,22 @@ or call the function `desktop-save-mode'.")
6961(autoload 'desktop-save-mode "desktop" "\ 6961(autoload 'desktop-save-mode "desktop" "\
6962Toggle desktop saving (Desktop Save mode). 6962Toggle desktop saving (Desktop Save mode).
6963 6963
6964When Desktop Save mode is enabled, the state of Emacs is saved from 6964When Desktop Save mode is enabled, the state of Emacs is saved from one
6965one session to another. In particular, Emacs will save the desktop when 6965session to another. The saved Emacs \"desktop configuration\" includes the
6966it exits (this may prompt you; see the option `desktop-save'). The next 6966buffers, their file names, major modes, buffer positions, window and frame
6967time Emacs starts, if this mode is active it will restore the desktop. 6967configuration, and some important global variables.
6968 6968
6969To manually save the desktop at any time, use the command `\\[desktop-save]'. 6969To enable this feature for future sessions, customize `desktop-save-mode'
6970To load it, use `\\[desktop-read]'. 6970to t, or add this line in your init file:
6971
6972 (desktop-save-mode 1)
6973
6974When this mode is enabled, Emacs will save the desktop when it exits
6975(this may prompt you, see the option `desktop-save'). The next time
6976Emacs starts, if this mode is active it will restore the desktop.
6977
6978To manually save the desktop at any time, use the command \\[desktop-save].
6979To load it, use \\[desktop-read].
6971 6980
6972Once a desktop file exists, Emacs will auto-save it according to the 6981Once a desktop file exists, Emacs will auto-save it according to the
6973option `desktop-auto-save-timeout'. 6982option `desktop-auto-save-timeout'.
@@ -13023,7 +13032,7 @@ For instance:
13023 (?l . \"ls\"))) 13032 (?l . \"ls\")))
13024 13033
13025Each %-spec may contain optional flag, width, and precision 13034Each %-spec may contain optional flag, width, and precision
13026modifiers, as follows: 13035specifiers, as follows:
13027 13036
13028 %<flags><width><precision>character 13037 %<flags><width><precision>character
13029 13038
@@ -13036,7 +13045,7 @@ The following flags are allowed:
13036* ^: Convert to upper case. 13045* ^: Convert to upper case.
13037* _: Convert to lower case. 13046* _: Convert to lower case.
13038 13047
13039The width and truncation modifiers behave like the corresponding 13048The width and precision specifiers behave like the corresponding
13040ones in `format' when applied to %s. 13049ones in `format' when applied to %s.
13041 13050
13042For example, \"%<010b\" means \"substitute into the output the 13051For example, \"%<010b\" means \"substitute into the output the
@@ -17261,9 +17270,13 @@ use its file extension as image type.
17261Optional DATA-P non-nil means FILE-OR-DATA is a string containing image data. 17270Optional DATA-P non-nil means FILE-OR-DATA is a string containing image data.
17262 17271
17263Optional PROPS are additional image attributes to assign to the image, 17272Optional PROPS are additional image attributes to assign to the image,
17264like, e.g. `:mask MASK'. If the property `:scale' is not given and the 17273like, e.g. `:mask MASK'. See Info node `(elisp)Image Descriptors' for
17265display has a high resolution (more exactly, when the average width of a 17274the list of supported properties; see the nodes following that node
17266character in the default font is more than 10 pixels), the image is 17275for properties specific to certain image types.
17276
17277If the property `:scale' is not given and the display has a high
17278resolution (more exactly, when the average width of a character
17279in the default font is more than 10 pixels), the image is
17267automatically scaled up in proportion to the default font. 17280automatically scaled up in proportion to the default font.
17268 17281
17269Value is the image created, or nil if images of type TYPE are not supported. 17282Value is the image created, or nil if images of type TYPE are not supported.
@@ -23870,8 +23883,8 @@ As with `pcase-let', BINDINGS are of the form (PATTERN EXP), but the
23870EXP in each binding in BINDINGS can use the results of the destructuring 23883EXP in each binding in BINDINGS can use the results of the destructuring
23871bindings that precede it in BINDINGS' order. 23884bindings that precede it in BINDINGS' order.
23872 23885
23873Each EXP should match (i.e. be of compatible structure) to its 23886Each EXP should match its respective PATTERN (i.e. be of structure
23874respective PATTERN; a mismatch may signal an error or may go 23887compatible to PATTERN); a mismatch may signal an error or may go
23875undetected, binding variables to arbitrary values, such as nil. 23888undetected, binding variables to arbitrary values, such as nil.
23876 23889
23877(fn BINDINGS &rest BODY)" nil t) 23890(fn BINDINGS &rest BODY)" nil t)
@@ -23884,8 +23897,8 @@ All EXPs are evaluated first, and then used to perform destructuring
23884bindings by matching each EXP against its respective PATTERN. Then 23897bindings by matching each EXP against its respective PATTERN. Then
23885BODY is evaluated with those bindings in effect. 23898BODY is evaluated with those bindings in effect.
23886 23899
23887Each EXP should match (i.e. be of compatible structure) to its 23900Each EXP should match its respective PATTERN (i.e. be of structure
23888respective PATTERN; a mismatch may signal an error or may go 23901compatible to PATTERN); a mismatch may signal an error or may go
23889undetected, binding variables to arbitrary values, such as nil. 23902undetected, binding variables to arbitrary values, such as nil.
23890 23903
23891(fn BINDINGS &rest BODY)" nil t) 23904(fn BINDINGS &rest BODY)" nil t)
@@ -32878,7 +32891,7 @@ Add archive file name handler to `file-name-handler-alist'." (when (and tramp-ar
32878 32891
32879;;; Generated autoloads from net/trampver.el 32892;;; Generated autoloads from net/trampver.el
32880 32893
32881(push (purecopy '(tramp 2 6 2 29 2)) package--builtin-versions) 32894(push (purecopy '(tramp 2 6 3 -1)) package--builtin-versions)
32882(register-definition-prefixes "trampver" '("tramp-")) 32895(register-definition-prefixes "trampver" '("tramp-"))
32883 32896
32884 32897