diff options
| -rw-r--r-- | lisp/ldefs-boot.el | 45 |
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" "\ |
| 6962 | Toggle desktop saving (Desktop Save mode). | 6962 | Toggle desktop saving (Desktop Save mode). |
| 6963 | 6963 | ||
| 6964 | When Desktop Save mode is enabled, the state of Emacs is saved from | 6964 | When Desktop Save mode is enabled, the state of Emacs is saved from one |
| 6965 | one session to another. In particular, Emacs will save the desktop when | 6965 | session to another. The saved Emacs \"desktop configuration\" includes the |
| 6966 | it exits (this may prompt you; see the option `desktop-save'). The next | 6966 | buffers, their file names, major modes, buffer positions, window and frame |
| 6967 | time Emacs starts, if this mode is active it will restore the desktop. | 6967 | configuration, and some important global variables. |
| 6968 | 6968 | ||
| 6969 | To manually save the desktop at any time, use the command `\\[desktop-save]'. | 6969 | To enable this feature for future sessions, customize `desktop-save-mode' |
| 6970 | To load it, use `\\[desktop-read]'. | 6970 | to t, or add this line in your init file: |
| 6971 | |||
| 6972 | (desktop-save-mode 1) | ||
| 6973 | |||
| 6974 | When 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 | ||
| 6976 | Emacs starts, if this mode is active it will restore the desktop. | ||
| 6977 | |||
| 6978 | To manually save the desktop at any time, use the command \\[desktop-save]. | ||
| 6979 | To load it, use \\[desktop-read]. | ||
| 6971 | 6980 | ||
| 6972 | Once a desktop file exists, Emacs will auto-save it according to the | 6981 | Once a desktop file exists, Emacs will auto-save it according to the |
| 6973 | option `desktop-auto-save-timeout'. | 6982 | option `desktop-auto-save-timeout'. |
| @@ -13023,7 +13032,7 @@ For instance: | |||
| 13023 | (?l . \"ls\"))) | 13032 | (?l . \"ls\"))) |
| 13024 | 13033 | ||
| 13025 | Each %-spec may contain optional flag, width, and precision | 13034 | Each %-spec may contain optional flag, width, and precision |
| 13026 | modifiers, as follows: | 13035 | specifiers, 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 | ||
| 13039 | The width and truncation modifiers behave like the corresponding | 13048 | The width and precision specifiers behave like the corresponding |
| 13040 | ones in `format' when applied to %s. | 13049 | ones in `format' when applied to %s. |
| 13041 | 13050 | ||
| 13042 | For example, \"%<010b\" means \"substitute into the output the | 13051 | For example, \"%<010b\" means \"substitute into the output the |
| @@ -17261,9 +17270,13 @@ use its file extension as image type. | |||
| 17261 | Optional DATA-P non-nil means FILE-OR-DATA is a string containing image data. | 17270 | Optional DATA-P non-nil means FILE-OR-DATA is a string containing image data. |
| 17262 | 17271 | ||
| 17263 | Optional PROPS are additional image attributes to assign to the image, | 17272 | Optional PROPS are additional image attributes to assign to the image, |
| 17264 | like, e.g. `:mask MASK'. If the property `:scale' is not given and the | 17273 | like, e.g. `:mask MASK'. See Info node `(elisp)Image Descriptors' for |
| 17265 | display has a high resolution (more exactly, when the average width of a | 17274 | the list of supported properties; see the nodes following that node |
| 17266 | character in the default font is more than 10 pixels), the image is | 17275 | for properties specific to certain image types. |
| 17276 | |||
| 17277 | If the property `:scale' is not given and the display has a high | ||
| 17278 | resolution (more exactly, when the average width of a character | ||
| 17279 | in the default font is more than 10 pixels), the image is | ||
| 17267 | automatically scaled up in proportion to the default font. | 17280 | automatically scaled up in proportion to the default font. |
| 17268 | 17281 | ||
| 17269 | Value is the image created, or nil if images of type TYPE are not supported. | 17282 | Value 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 | |||
| 23870 | EXP in each binding in BINDINGS can use the results of the destructuring | 23883 | EXP in each binding in BINDINGS can use the results of the destructuring |
| 23871 | bindings that precede it in BINDINGS' order. | 23884 | bindings that precede it in BINDINGS' order. |
| 23872 | 23885 | ||
| 23873 | Each EXP should match (i.e. be of compatible structure) to its | 23886 | Each EXP should match its respective PATTERN (i.e. be of structure |
| 23874 | respective PATTERN; a mismatch may signal an error or may go | 23887 | compatible to PATTERN); a mismatch may signal an error or may go |
| 23875 | undetected, binding variables to arbitrary values, such as nil. | 23888 | undetected, 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 | |||
| 23884 | bindings by matching each EXP against its respective PATTERN. Then | 23897 | bindings by matching each EXP against its respective PATTERN. Then |
| 23885 | BODY is evaluated with those bindings in effect. | 23898 | BODY is evaluated with those bindings in effect. |
| 23886 | 23899 | ||
| 23887 | Each EXP should match (i.e. be of compatible structure) to its | 23900 | Each EXP should match its respective PATTERN (i.e. be of structure |
| 23888 | respective PATTERN; a mismatch may signal an error or may go | 23901 | compatible to PATTERN); a mismatch may signal an error or may go |
| 23889 | undetected, binding variables to arbitrary values, such as nil. | 23902 | undetected, 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 | ||