diff options
| -rw-r--r-- | lisp/ldefs-boot.el | 91 |
1 files changed, 68 insertions, 23 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 99fff8d8c98..82643a55508 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -5202,6 +5202,24 @@ or call the function `dynamic-completion-mode'.") | |||
| 5202 | (autoload 'dynamic-completion-mode "completion" "\ | 5202 | (autoload 'dynamic-completion-mode "completion" "\ |
| 5203 | Toggle dynamic word-completion on or off. | 5203 | Toggle dynamic word-completion on or off. |
| 5204 | 5204 | ||
| 5205 | When this minor mode is turned on, typing \\`M-RET' or \\`C-RET' | ||
| 5206 | invokes the command `complete', which completes the word or | ||
| 5207 | symbol at point using the record of words/symbols you used | ||
| 5208 | previously and the previously-inserted completions. Typing | ||
| 5209 | a word or moving point across it constitutes \"using\" the | ||
| 5210 | word. | ||
| 5211 | |||
| 5212 | By default, the database of all the dynamic completions that | ||
| 5213 | were inserted by \\[complete] is saved on the file specified | ||
| 5214 | by `save-completions-file-name' when you exit Emacs, and will | ||
| 5215 | be loaded from that file when this mode is enabled in a future | ||
| 5216 | Emacs session. | ||
| 5217 | |||
| 5218 | The following important options control the various aspects of | ||
| 5219 | this mode: `enable-completion', `save-completions-flag', and | ||
| 5220 | `save-completions-retention-time'. Few other less important | ||
| 5221 | options can be found in the `completion' group. | ||
| 5222 | |||
| 5205 | This is a global minor mode. If called interactively, toggle the | 5223 | This is a global minor mode. If called interactively, toggle the |
| 5206 | `Dynamic-Completion mode' mode. If the prefix argument is | 5224 | `Dynamic-Completion mode' mode. If the prefix argument is |
| 5207 | positive, enable the mode, and if it is zero or negative, disable | 5225 | positive, enable the mode, and if it is zero or negative, disable |
| @@ -8938,7 +8956,7 @@ MERGE-AUTOSTORE-DIR is the directory in which to store merged files. | |||
| 8938 | (autoload 'ediff-windows-wordwise "ediff" "\ | 8956 | (autoload 'ediff-windows-wordwise "ediff" "\ |
| 8939 | Compare WIND-A and WIND-B, which are selected by clicking, wordwise. | 8957 | Compare WIND-A and WIND-B, which are selected by clicking, wordwise. |
| 8940 | This compares the portions of text visible in each of the two windows. | 8958 | This compares the portions of text visible in each of the two windows. |
| 8941 | With prefix argument, DUMB-MODE, or on a non-windowing display, works as | 8959 | With prefix argument, DUMB-MODE, or on a non-graphical display, works as |
| 8942 | follows: | 8960 | follows: |
| 8943 | If WIND-A is nil, use selected window. | 8961 | If WIND-A is nil, use selected window. |
| 8944 | If WIND-B is nil, use window next to WIND-A. | 8962 | If WIND-B is nil, use window next to WIND-A. |
| @@ -8949,7 +8967,7 @@ arguments after setting up the Ediff buffers. | |||
| 8949 | (autoload 'ediff-windows-linewise "ediff" "\ | 8967 | (autoload 'ediff-windows-linewise "ediff" "\ |
| 8950 | Compare WIND-A and WIND-B, which are selected by clicking, linewise. | 8968 | Compare WIND-A and WIND-B, which are selected by clicking, linewise. |
| 8951 | This compares the portions of text visible in each of the two windows. | 8969 | This compares the portions of text visible in each of the two windows. |
| 8952 | With prefix argument, DUMB-MODE, or on a non-windowing display, works as | 8970 | With prefix argument, DUMB-MODE, or on a non-graphical display, works as |
| 8953 | follows: | 8971 | follows: |
| 8954 | If WIND-A is nil, use selected window. | 8972 | If WIND-A is nil, use selected window. |
| 8955 | If WIND-B is nil, use window next to WIND-A. | 8973 | If WIND-B is nil, use window next to WIND-A. |
| @@ -17701,9 +17719,8 @@ it is disabled. | |||
| 17701 | 17719 | ||
| 17702 | (fn &optional ARG)" t) | 17720 | (fn &optional ARG)" t) |
| 17703 | (autoload 'image-mode-to-text "image-mode" "\ | 17721 | (autoload 'image-mode-to-text "image-mode" "\ |
| 17704 | Set a non-image mode as major mode in combination with image minor mode. | 17722 | Set current buffer's modes be a non-image major mode, plus `image-minor-mode'. |
| 17705 | A non-mage major mode found from `auto-mode-alist' or fundamental mode | 17723 | A non-image major mode displays an image file as text.") |
| 17706 | displays an image file as text.") | ||
| 17707 | (autoload 'image-bookmark-jump "image-mode" "\ | 17724 | (autoload 'image-bookmark-jump "image-mode" "\ |
| 17708 | 17725 | ||
| 17709 | 17726 | ||
| @@ -19185,6 +19202,13 @@ the variables of the outer one. You can, however, access alists | |||
| 19185 | inside the original alist by using dots inside the symbol, as | 19202 | inside the original alist by using dots inside the symbol, as |
| 19186 | displayed in the example above. | 19203 | displayed in the example above. |
| 19187 | 19204 | ||
| 19205 | Note that there is no way to differentiate the case where a key | ||
| 19206 | is missing from when it is present, but its value is nil. Thus, | ||
| 19207 | the following form evaluates to nil: | ||
| 19208 | |||
| 19209 | (let-alist \\='((some-key . nil)) | ||
| 19210 | .some-key) | ||
| 19211 | |||
| 19188 | (fn ALIST &rest BODY)" nil t) | 19212 | (fn ALIST &rest BODY)" nil t) |
| 19189 | (function-put 'let-alist 'lisp-indent-function 1) | 19213 | (function-put 'let-alist 'lisp-indent-function 1) |
| 19190 | (register-definition-prefixes "let-alist" '("let-alist--")) | 19214 | (register-definition-prefixes "let-alist" '("let-alist--")) |
| @@ -22474,7 +22498,7 @@ Coloring: | |||
| 22474 | 22498 | ||
| 22475 | ;;; Generated autoloads from org/org.el | 22499 | ;;; Generated autoloads from org/org.el |
| 22476 | 22500 | ||
| 22477 | (push (purecopy '(org 9 6 6)) package--builtin-versions) | 22501 | (push (purecopy '(org 9 6 10)) package--builtin-versions) |
| 22478 | (autoload 'org-babel-do-load-languages "org" "\ | 22502 | (autoload 'org-babel-do-load-languages "org" "\ |
| 22479 | Load the languages defined in `org-babel-load-languages'. | 22503 | Load the languages defined in `org-babel-load-languages'. |
| 22480 | 22504 | ||
| @@ -28325,7 +28349,7 @@ Like `mail' command, but display mail buffer in another frame. | |||
| 28325 | 28349 | ||
| 28326 | ;;; Generated autoloads from emacs-lisp/seq.el | 28350 | ;;; Generated autoloads from emacs-lisp/seq.el |
| 28327 | 28351 | ||
| 28328 | (push (purecopy '(seq 2 23)) package--builtin-versions) | 28352 | (push (purecopy '(seq 2 24)) package--builtin-versions) |
| 28329 | 28353 | ||
| 28330 | 28354 | ||
| 28331 | ;;; Generated autoloads from server.el | 28355 | ;;; Generated autoloads from server.el |
| @@ -32199,7 +32223,10 @@ Convert SECONDS to a proper time, like `current-time' would. | |||
| 32199 | 32223 | ||
| 32200 | (fn SECONDS)") | 32224 | (fn SECONDS)") |
| 32201 | (autoload 'days-to-time "time-date" "\ | 32225 | (autoload 'days-to-time "time-date" "\ |
| 32202 | Convert DAYS into a time value. | 32226 | Convert Emacs-epoch DAYS into a time value. |
| 32227 | Note that this does not use the same epoch as `time-to-days'; you | ||
| 32228 | must subtract (time-to-days 0) first to convert, and may get nil | ||
| 32229 | if the result is before the start. | ||
| 32203 | 32230 | ||
| 32204 | (fn DAYS)") | 32231 | (fn DAYS)") |
| 32205 | (autoload 'time-since "time-date" "\ | 32232 | (autoload 'time-since "time-date" "\ |
| @@ -32228,7 +32255,7 @@ Return the day number within the year corresponding to TIME. | |||
| 32228 | 32255 | ||
| 32229 | (fn TIME)") | 32256 | (fn TIME)") |
| 32230 | (autoload 'time-to-days "time-date" "\ | 32257 | (autoload 'time-to-days "time-date" "\ |
| 32231 | The absolute date corresponding to TIME, a time value. | 32258 | The absolute pseudo-Gregorian date for TIME, a time value. |
| 32232 | The absolute date is the number of days elapsed since the imaginary | 32259 | The absolute date is the number of days elapsed since the imaginary |
| 32233 | Gregorian date Sunday, December 31, 1 BC. | 32260 | Gregorian date Sunday, December 31, 1 BC. |
| 32234 | 32261 | ||
| @@ -32844,7 +32871,7 @@ Add archive file name handler to `file-name-handler-alist'." (when (and tramp-ar | |||
| 32844 | 32871 | ||
| 32845 | ;;; Generated autoloads from net/trampver.el | 32872 | ;;; Generated autoloads from net/trampver.el |
| 32846 | 32873 | ||
| 32847 | (push (purecopy '(tramp 2 6 0 29 1)) package--builtin-versions) | 32874 | (push (purecopy '(tramp 2 6 2 -1)) package--builtin-versions) |
| 32848 | (register-definition-prefixes "trampver" '("tramp-")) | 32875 | (register-definition-prefixes "trampver" '("tramp-")) |
| 32849 | 32876 | ||
| 32850 | 32877 | ||
| @@ -33186,7 +33213,9 @@ FRAC should be the inverse of the fractional value; for example, a value of | |||
| 33186 | ;;; Generated autoloads from progmodes/typescript-ts-mode.el | 33213 | ;;; Generated autoloads from progmodes/typescript-ts-mode.el |
| 33187 | 33214 | ||
| 33188 | (autoload 'typescript-ts-base-mode "typescript-ts-mode" "\ | 33215 | (autoload 'typescript-ts-base-mode "typescript-ts-mode" "\ |
| 33189 | Major mode for editing TypeScript. | 33216 | Generic major mode for editing TypeScript. |
| 33217 | |||
| 33218 | This mode is intended to be inherited by concrete major modes. | ||
| 33190 | 33219 | ||
| 33191 | (fn)" t) | 33220 | (fn)" t) |
| 33192 | (autoload 'typescript-ts-mode "typescript-ts-mode" "\ | 33221 | (autoload 'typescript-ts-mode "typescript-ts-mode" "\ |
| @@ -33205,7 +33234,7 @@ The JSX-specific faces are used when `treesit-font-lock-level' is | |||
| 33205 | at least 3 (which is the default value). | 33234 | at least 3 (which is the default value). |
| 33206 | 33235 | ||
| 33207 | (fn)" t) | 33236 | (fn)" t) |
| 33208 | (register-definition-prefixes "typescript-ts-mode" '("tsx-ts-mode--" "typescript-ts-mode-")) | 33237 | (register-definition-prefixes "typescript-ts-mode" '("tsx-ts-" "typescript-ts-")) |
| 33209 | 33238 | ||
| 33210 | 33239 | ||
| 33211 | ;;; Generated autoloads from international/ucs-normalize.el | 33240 | ;;; Generated autoloads from international/ucs-normalize.el |
| @@ -34087,7 +34116,7 @@ Normalize arguments to delight. | |||
| 34087 | 34116 | ||
| 34088 | ;;; Generated autoloads from use-package/use-package-ensure-system-package.el | 34117 | ;;; Generated autoloads from use-package/use-package-ensure-system-package.el |
| 34089 | 34118 | ||
| 34090 | (push (purecopy '(use-package-ensure-system-package 0 2)) package--builtin-versions) | 34119 | (push (purecopy '(use-package 0 2)) package--builtin-versions) |
| 34091 | (autoload 'use-package-normalize/:ensure-system-package "use-package-ensure-system-package" "\ | 34120 | (autoload 'use-package-normalize/:ensure-system-package "use-package-ensure-system-package" "\ |
| 34092 | Turn ARGS into a list of conses of the form (PACKAGE-NAME . INSTALL-COMMAND). | 34121 | Turn ARGS into a list of conses of the form (PACKAGE-NAME . INSTALL-COMMAND). |
| 34093 | 34122 | ||
| @@ -34254,18 +34283,23 @@ responsible for the given file. | |||
| 34254 | (autoload 'vc-next-action "vc" "\ | 34283 | (autoload 'vc-next-action "vc" "\ |
| 34255 | Do the next logical version control operation on the current fileset. | 34284 | Do the next logical version control operation on the current fileset. |
| 34256 | This requires that all files in the current VC fileset be in the | 34285 | This requires that all files in the current VC fileset be in the |
| 34257 | same state. If not, signal an error. | 34286 | same state. If they are not, signal an error. Also signal an error if |
| 34258 | 34287 | files in the fileset are missing (removed, but tracked by version control), | |
| 34259 | For merging-based version control systems: | 34288 | or are ignored by the version control system. |
| 34260 | If every file in the VC fileset is not registered for version | 34289 | |
| 34261 | control, register the fileset (but don't commit). | 34290 | For modern merging-based version control systems: |
| 34262 | If every work file in the VC fileset is added or changed, pop | 34291 | If every file in the fileset is not registered for version |
| 34263 | up a *vc-log* buffer to commit the fileset. | 34292 | control, register the fileset (but don't commit). If VERBOSE is |
| 34293 | non-nil (interactively, the prefix argument), ask for the VC | ||
| 34294 | backend with which to register the fileset. | ||
| 34295 | If every work file in the VC fileset is either added or modified, | ||
| 34296 | pop up a *vc-log* buffer to commit the fileset changes. | ||
| 34264 | For a centralized version control system, if any work file in | 34297 | For a centralized version control system, if any work file in |
| 34265 | the VC fileset is out of date, offer to update the fileset. | 34298 | the VC fileset is out of date, offer to update the fileset. |
| 34266 | 34299 | ||
| 34267 | For old-style locking-based version control systems, like RCS: | 34300 | For old-style locking-based version control systems, like RCS: |
| 34268 | If every file is not registered, register the file(s). | 34301 | If every file is not registered, register the file(s); with a prefix |
| 34302 | argument, allow to specify the VC backend for registration. | ||
| 34269 | If every file is registered and unlocked, check out (lock) | 34303 | If every file is registered and unlocked, check out (lock) |
| 34270 | the file(s) for editing. | 34304 | the file(s) for editing. |
| 34271 | If every file is locked by you and has changes, pop up a | 34305 | If every file is locked by you and has changes, pop up a |
| @@ -34273,14 +34307,21 @@ For old-style locking-based version control systems, like RCS: | |||
| 34273 | read-only copy of each changed file after checking in. | 34307 | read-only copy of each changed file after checking in. |
| 34274 | If every file is locked by you and unchanged, unlock them. | 34308 | If every file is locked by you and unchanged, unlock them. |
| 34275 | If every file is locked by someone else, offer to steal the lock. | 34309 | If every file is locked by someone else, offer to steal the lock. |
| 34310 | If files are unlocked, but have changes, offer to either claim the | ||
| 34311 | lock or revert to the last checked-in version. | ||
| 34312 | |||
| 34313 | If this command is invoked from a patch buffer under `diff-mode', it | ||
| 34314 | will apply the diffs from the patch and pop up a *vc-log* buffer to | ||
| 34315 | check-in the resulting changes. | ||
| 34276 | 34316 | ||
| 34277 | When using this command to register a new file (or files), it | 34317 | When using this command to register a new file (or files), it |
| 34278 | will automatically deduce which VC repository to register it | 34318 | will automatically deduce which VC repository to register it |
| 34279 | with, using the most specific one. | 34319 | with, using the most specific one. |
| 34280 | 34320 | ||
| 34281 | If VERBOSE is non-nil (interactively, the prefix argument), | 34321 | If VERBOSE is non-nil (interactively, the prefix argument), |
| 34282 | you can specify a VC backend or (for centralized VCS only) | 34322 | you can specify another VC backend for the file(s), |
| 34283 | the revision ID or branch ID. | 34323 | or (for centralized VCS only) the revision ID or branch ID |
| 34324 | from which to check out the file(s). | ||
| 34284 | 34325 | ||
| 34285 | (fn VERBOSE)" t) | 34326 | (fn VERBOSE)" t) |
| 34286 | (autoload 'vc-register "vc" "\ | 34327 | (autoload 'vc-register "vc" "\ |
| @@ -36829,6 +36870,10 @@ updated (e.g. to re-interpret the current directory). | |||
| 36829 | Used non-interactively, arguments are optional: if given then TOPIC | 36870 | Used non-interactively, arguments are optional: if given then TOPIC |
| 36830 | should be a topic string and non-nil RE-CACHE forces re-caching. | 36871 | should be a topic string and non-nil RE-CACHE forces re-caching. |
| 36831 | 36872 | ||
| 36873 | Note that `M-x woman' doesn’t yet support the latest features of | ||
| 36874 | modern man pages, so we recommend using `M-x man' if that is | ||
| 36875 | available on your system. | ||
| 36876 | |||
| 36832 | (fn &optional TOPIC RE-CACHE)" t) | 36877 | (fn &optional TOPIC RE-CACHE)" t) |
| 36833 | (autoload 'woman-dired-find-file "woman" "\ | 36878 | (autoload 'woman-dired-find-file "woman" "\ |
| 36834 | In dired, run the WoMan man-page browser on this file." t) | 36879 | In dired, run the WoMan man-page browser on this file." t) |