aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ldefs-boot.el25
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
6120plain variables. This means that `setopt' will execute any 6120plain variables. This means that `setopt' will execute any
6121`custom-set' form associated with VARIABLE. 6121`custom-set' form associated with VARIABLE.
6122 6122
6123Note that `setopt' will emit a warning if the type of a VALUE
6124does not match the type of the corresponding VARIABLE as
6125declared by `defcustom'. (VARIABLE will be assigned the value
6126even 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" "\
11243Display list of tags in file FILE. 11248Display list of tags in file FILE.
11244This searches only the first table in the list, and no included 11249Interactively, prompt for FILE, with completion, offering the current
11245tables. FILE should be as it appeared in the `etags' command, 11250buffer's file name as the defaul.
11246usually without a directory specification. If called 11251This command searches only the first table in the list of tags tables,
11247interactively, FILE defaults to the file name of the current 11252and does not search included tables.
11248buffer. 11253FILE should be as it was submitted to the `etags' command, which usually
11254means 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
12679except that the car of the variable `find-ls-option' specifies what to 12685except that the car of the variable `find-ls-option' specifies what to
12680use in place of \"-ls\" as the final argument. 12686use in place of \"-ls\" as the final argument.
12681 12687
12688If your `find' program is not a GNU Find, the columns in the produced
12689Dired display might fail to align. We recommend to install GNU Find in
12690those cases (you may need to customize the value of `find-program' if
12691you do so), which attempts to align the columns.
12692
12682Collect output in the \"*Find*\" buffer. To kill the job before 12693Collect output in the \"*Find*\" buffer. To kill the job before
12683it finishes, type \\[kill-find]. 12694it 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" "\
33760Insert a SUFFIX into PREFIX before LOC. 33771Insert a SUFFIX into PREFIX before LOC.
33761PREFIX is a prefix command, a symbol. 33772PREFIX is a prefix command, a symbol.
@@ -38396,7 +38407,7 @@ TYPES should be a MIME media type symbol, a regexp, or a list
38396that can contain both symbols and regexps. 38407that can contain both symbols and regexps.
38397 38408
38398HANDLER is a function that will be called with two arguments: The 38409HANDLER is a function that will be called with two arguments: The
38399MIME type (a symbol on the form `image/png') and the selection 38410MIME type (a symbol of the form `image/png') and the selection
38400data (a string). 38411data (a string).
38401 38412
38402(fn TYPES HANDLER)") 38413(fn TYPES HANDLER)")