diff options
| -rw-r--r-- | lisp/ldefs-boot.el | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 51a2333826e..06797a17e18 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -6120,6 +6120,11 @@ This is like `setq', but is meant for user options instead of | |||
| 6120 | plain variables. This means that `setopt' will execute any | 6120 | plain variables. This means that `setopt' will execute any |
| 6121 | `custom-set' form associated with VARIABLE. | 6121 | `custom-set' form associated with VARIABLE. |
| 6122 | 6122 | ||
| 6123 | Note that `setopt' will emit a warning if the type of a VALUE | ||
| 6124 | does not match the type of the corresponding VARIABLE as | ||
| 6125 | declared by `defcustom'. (VARIABLE will be assigned the value | ||
| 6126 | even if it doesn't match the type.) | ||
| 6127 | |||
| 6123 | (fn [VARIABLE VALUE]...)" nil t) | 6128 | (fn [VARIABLE VALUE]...)" nil t) |
| 6124 | (autoload 'setopt--set "cus-edit" "\ | 6129 | (autoload 'setopt--set "cus-edit" "\ |
| 6125 | 6130 | ||
| @@ -11241,11 +11246,12 @@ For non-interactive use, this is superseded by `fileloop-initialize-replace'. | |||
| 11241 | (set-advertised-calling-convention 'tags-query-replace '(from to &optional delimited) '"27.1") | 11246 | (set-advertised-calling-convention 'tags-query-replace '(from to &optional delimited) '"27.1") |
| 11242 | (autoload 'list-tags "etags" "\ | 11247 | (autoload 'list-tags "etags" "\ |
| 11243 | Display list of tags in file FILE. | 11248 | Display list of tags in file FILE. |
| 11244 | This searches only the first table in the list, and no included | 11249 | Interactively, prompt for FILE, with completion, offering the current |
| 11245 | tables. FILE should be as it appeared in the `etags' command, | 11250 | buffer's file name as the defaul. |
| 11246 | usually without a directory specification. If called | 11251 | This command searches only the first table in the list of tags tables, |
| 11247 | interactively, FILE defaults to the file name of the current | 11252 | and does not search included tables. |
| 11248 | buffer. | 11253 | FILE should be as it was submitted to the `etags' command, which usually |
| 11254 | means relative to the directory of the tags table file. | ||
| 11249 | 11255 | ||
| 11250 | (fn FILE &optional NEXT-MATCH)" t) | 11256 | (fn FILE &optional NEXT-MATCH)" t) |
| 11251 | (autoload 'tags-apropos "etags" "\ | 11257 | (autoload 'tags-apropos "etags" "\ |
| @@ -12679,6 +12685,11 @@ The command run (after changing into DIR) is essentially | |||
| 12679 | except that the car of the variable `find-ls-option' specifies what to | 12685 | except that the car of the variable `find-ls-option' specifies what to |
| 12680 | use in place of \"-ls\" as the final argument. | 12686 | use in place of \"-ls\" as the final argument. |
| 12681 | 12687 | ||
| 12688 | If your `find' program is not a GNU Find, the columns in the produced | ||
| 12689 | Dired display might fail to align. We recommend to install GNU Find in | ||
| 12690 | those cases (you may need to customize the value of `find-program' if | ||
| 12691 | you do so), which attempts to align the columns. | ||
| 12692 | |||
| 12682 | Collect output in the \"*Find*\" buffer. To kill the job before | 12693 | Collect output in the \"*Find*\" buffer. To kill the job before |
| 12683 | it finishes, type \\[kill-find]. | 12694 | it finishes, type \\[kill-find]. |
| 12684 | 12695 | ||
| @@ -33755,7 +33766,7 @@ Add archive file name handler to `file-name-handler-alist'." (when (and tramp-ar | |||
| 33755 | 33766 | ||
| 33756 | ;;; Generated autoloads from transient.el | 33767 | ;;; Generated autoloads from transient.el |
| 33757 | 33768 | ||
| 33758 | (push (purecopy '(transient 0 7 2 1)) package--builtin-versions) | 33769 | (push (purecopy '(transient 0 7 2 2)) package--builtin-versions) |
| 33759 | (autoload 'transient-insert-suffix "transient" "\ | 33770 | (autoload 'transient-insert-suffix "transient" "\ |
| 33760 | Insert a SUFFIX into PREFIX before LOC. | 33771 | Insert a SUFFIX into PREFIX before LOC. |
| 33761 | PREFIX is a prefix command, a symbol. | 33772 | PREFIX is a prefix command, a symbol. |
| @@ -38396,7 +38407,7 @@ TYPES should be a MIME media type symbol, a regexp, or a list | |||
| 38396 | that can contain both symbols and regexps. | 38407 | that can contain both symbols and regexps. |
| 38397 | 38408 | ||
| 38398 | HANDLER is a function that will be called with two arguments: The | 38409 | HANDLER is a function that will be called with two arguments: The |
| 38399 | MIME type (a symbol on the form `image/png') and the selection | 38410 | MIME type (a symbol of the form `image/png') and the selection |
| 38400 | data (a string). | 38411 | data (a string). |
| 38401 | 38412 | ||
| 38402 | (fn TYPES HANDLER)") | 38413 | (fn TYPES HANDLER)") |