aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2025-05-18 05:24:11 -0400
committerEli Zaretskii2025-05-18 05:24:11 -0400
commitdfcde786ada0918326be849a263e2b8352db9d35 (patch)
tree8686fed6aac6b2716e7becdaa44c6d3391918098
parent4c110212604d5d825abe95418db5dd822b7e9375 (diff)
downloademacs-dfcde786ada0918326be849a263e2b8352db9d35.tar.gz
emacs-dfcde786ada0918326be849a263e2b8352db9d35.zip
; Update ldefs-boot.el. Do not merge to master.
-rw-r--r--lisp/ldefs-boot.el117
1 files changed, 77 insertions, 40 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index e445c1700b4..57790632047 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -1454,7 +1454,7 @@ point is moved into the passwords (see `authinfo-hide-elements').
1454 1454
1455(fn)" t) 1455(fn)" t)
1456(autoload 'read-passwd "auth-source" "\ 1456(autoload 'read-passwd "auth-source" "\
1457Read a password, prompting with PROMPT, and return it. 1457Read a password, prompting with PROMPT, and return password as a string.
1458If optional CONFIRM is non-nil, read the password twice to make sure. 1458If optional CONFIRM is non-nil, read the password twice to make sure.
1459Optional DEFAULT is a default password to use instead of empty input. 1459Optional DEFAULT is a default password to use instead of empty input.
1460 1460
@@ -9703,15 +9703,15 @@ either customize it (see the info node `Easy Customization')
9703or call the function `electric-pair-mode'.") 9703or call the function `electric-pair-mode'.")
9704(custom-autoload 'electric-pair-mode "elec-pair" nil) 9704(custom-autoload 'electric-pair-mode "elec-pair" nil)
9705(autoload 'electric-pair-mode "elec-pair" "\ 9705(autoload 'electric-pair-mode "elec-pair" "\
9706Toggle automatic parens pairing (Electric Pair mode). 9706Toggle automatic pairing of delimiters (Electric Pair mode).
9707 9707
9708Electric Pair mode is a global minor mode. When enabled, typing 9708Electric Pair mode is a global minor mode. When enabled, typing an
9709an open parenthesis automatically inserts the corresponding 9709opening delimiter (parenthesis, bracket, etc.) automatically inserts the
9710closing parenthesis, and vice versa. (Likewise for brackets, etc.). 9710corresponding closing delimiter. If the region is active, the
9711If the region is active, the parentheses (brackets, etc.) are 9711delimiters are inserted around the region instead.
9712inserted around the region instead.
9713 9712
9714To toggle the mode in a single buffer, use `electric-pair-local-mode'. 9713To toggle the mode only in the current buffer, use
9714`electric-pair-local-mode'.
9715 9715
9716This is a global minor mode. If called interactively, toggle the 9716This is a global minor mode. If called interactively, toggle the
9717`Electric-Pair mode' mode. If the prefix argument is positive, enable 9717`Electric-Pair mode' mode. If the prefix argument is positive, enable
@@ -10852,26 +10852,29 @@ Display the documentation for TEST-OR-TEST-NAME (a symbol or ert-test).
10852(autoload 'ert-font-lock-deftest "ert-font-lock" "\ 10852(autoload 'ert-font-lock-deftest "ert-font-lock" "\
10853Define test NAME (a symbol) using assertions from TEST-STR. 10853Define test NAME (a symbol) using assertions from TEST-STR.
10854 10854
10855Other than MAJOR-MODE and TEST-STR parameters, this macro accepts 10855The MAJOR-MODE symbol determines the syntax and font lock of TEST-STR.
10856the same parameters and keywords as `ert-deftest' and is intended
10857to be used through `ert'.
10858 10856
10859(fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] MAJOR-MODE TEST-STR)" nil t) 10857Except for the MAJOR-MODE and TEST-STR parameters, this macro accepts
10860(function-put 'ert-font-lock-deftest 'doc-string-elt 3) 10858the same arguments and keywords as `ert-deftest' and is intended to be
10861(function-put 'ert-font-lock-deftest 'lisp-indent-function 2) 10859used through `ert'.
10860
10861(fn NAME [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] MAJOR-MODE TEST-STR)" nil t)
10862(function-put 'ert-font-lock-deftest 'doc-string-elt 2)
10863(function-put 'ert-font-lock-deftest 'lisp-indent-function 1)
10862(autoload 'ert-font-lock-deftest-file "ert-font-lock" "\ 10864(autoload 'ert-font-lock-deftest-file "ert-font-lock" "\
10863Define test NAME (a symbol) using assertions from FILE. 10865Define test NAME (a symbol) using assertions from FILE.
10864 10866
10865FILE - path to a file with assertions in ERT resource director as 10867FILE names a file with assertions in the ERT resource directory, as
10866return by `ert-resource-directory'. 10868returned by `ert-resource-directory'. The MAJOR-MODE symbol determines
10869the syntax and font lock of FILE's contents.
10867 10870
10868Other than MAJOR-MODE and FILE parameters, this macro accepts the 10871Except for the MAJOR-MODE and FILE parameters, this macro accepts the
10869same parameters and keywords as `ert-deftest' and is intended to 10872same arguments and keywords as `ert-deftest' and is intended to be used
10870be used through `ert'. 10873through `ert'.
10871 10874
10872(fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] MAJOR-MODE FILE)" nil t) 10875(fn NAME [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] MAJOR-MODE FILE)" nil t)
10873(function-put 'ert-font-lock-deftest-file 'doc-string-elt 3) 10876(function-put 'ert-font-lock-deftest-file 'doc-string-elt 2)
10874(function-put 'ert-font-lock-deftest-file 'lisp-indent-function 2) 10877(function-put 'ert-font-lock-deftest-file 'lisp-indent-function 1)
10875(autoload 'ert-font-lock-test-string "ert-font-lock" "\ 10878(autoload 'ert-font-lock-test-string "ert-font-lock" "\
10876Check font faces in TEST-STRING set by MODE. 10879Check font faces in TEST-STRING set by MODE.
10877 10880
@@ -12468,10 +12471,16 @@ For adding local variables on the first line of a file, for example
12468for settings like `lexical-binding, which must be specified there, 12471for settings like `lexical-binding, which must be specified there,
12469use the `add-file-local-variable-prop-line' command instead. 12472use the `add-file-local-variable-prop-line' command instead.
12470 12473
12474If optional variable INTERACTIVE is non-nil, display a message telling
12475the user how to make the new value take effect.
12476
12471(fn VARIABLE VALUE &optional INTERACTIVE)" t) 12477(fn VARIABLE VALUE &optional INTERACTIVE)" t)
12472(autoload 'delete-file-local-variable "files-x" "\ 12478(autoload 'delete-file-local-variable "files-x" "\
12473Delete all settings of file-local VARIABLE from the Local Variables list. 12479Delete all settings of file-local VARIABLE from the Local Variables list.
12474 12480
12481If optional variable INTERACTIVE is non-nil, display a message telling
12482the user how to make the new value take effect.
12483
12475(fn VARIABLE &optional INTERACTIVE)" t) 12484(fn VARIABLE &optional INTERACTIVE)" t)
12476(autoload 'add-file-local-variable-prop-line "files-x" "\ 12485(autoload 'add-file-local-variable-prop-line "files-x" "\
12477Add file-local VARIABLE with its VALUE to the -*- line. 12486Add file-local VARIABLE with its VALUE to the -*- line.
@@ -12486,10 +12495,16 @@ then this function adds it.
12486To add variables to the Local Variables list at the end of the file, 12495To add variables to the Local Variables list at the end of the file,
12487use the `add-file-local-variable' command instead. 12496use the `add-file-local-variable' command instead.
12488 12497
12498If optional variable INTERACTIVE is non-nil, display a message telling
12499the user how to make the new value take effect.
12500
12489(fn VARIABLE VALUE &optional INTERACTIVE)" t) 12501(fn VARIABLE VALUE &optional INTERACTIVE)" t)
12490(autoload 'delete-file-local-variable-prop-line "files-x" "\ 12502(autoload 'delete-file-local-variable-prop-line "files-x" "\
12491Delete all settings of file-local VARIABLE from the -*- line. 12503Delete all settings of file-local VARIABLE from the -*- line.
12492 12504
12505If optional variable INTERACTIVE is non-nil, display a message telling
12506the user how to make the new value take effect.
12507
12493(fn VARIABLE &optional INTERACTIVE)" t) 12508(fn VARIABLE &optional INTERACTIVE)" t)
12494(autoload 'add-dir-local-variable "files-x" "\ 12509(autoload 'add-dir-local-variable "files-x" "\
12495Add directory-local VARIABLE with its VALUE and MODE to .dir-locals.el. 12510Add directory-local VARIABLE with its VALUE and MODE to .dir-locals.el.
@@ -19220,6 +19235,7 @@ Optional argument KATAKANA-ONLY non-nil means to convert only KATAKANA char.
19220(autoload 'read-hiragana-string "japan-util" "\ 19235(autoload 'read-hiragana-string "japan-util" "\
19221Read a Hiragana string from the minibuffer, prompting with string PROMPT. 19236Read a Hiragana string from the minibuffer, prompting with string PROMPT.
19222If non-nil, second arg INITIAL-INPUT is a string to insert before reading. 19237If non-nil, second arg INITIAL-INPUT is a string to insert before reading.
19238Return the string read from the minibuffer.
19223 19239
19224(fn PROMPT &optional INITIAL-INPUT)") 19240(fn PROMPT &optional INITIAL-INPUT)")
19225(register-definition-prefixes "japan-util" '("japanese-")) 19241(register-definition-prefixes "japan-util" '("japanese-"))
@@ -21773,6 +21789,7 @@ but still shows the full information.
21773(autoload 'read-charset "mule-diag" "\ 21789(autoload 'read-charset "mule-diag" "\
21774Read a character set from the minibuffer, prompting with string PROMPT. 21790Read a character set from the minibuffer, prompting with string PROMPT.
21775It must be an Emacs character set listed in the variable `charset-list'. 21791It must be an Emacs character set listed in the variable `charset-list'.
21792Return the charset as a symbol.
21776 21793
21777Optional arguments are DEFAULT-VALUE and INITIAL-INPUT. 21794Optional arguments are DEFAULT-VALUE and INITIAL-INPUT.
21778DEFAULT-VALUE, if non-nil, is the default value. 21795DEFAULT-VALUE, if non-nil, is the default value.
@@ -26491,6 +26508,12 @@ argument, restrict the suggestions to imports defining the symbol
26491at point. If there is only one such suggestion, act without 26508at point. If there is only one such suggestion, act without
26492asking. 26509asking.
26493 26510
26511If the buffer does not belong to a project, the import statement is
26512searched under the buffer's default directory. For example, if the file
26513is located directly under the home directory, all files under the home
26514directory will be searched. Please note that this can take a long time
26515and may appear to hang.
26516
26494When calling from Lisp, use a non-nil NAME to restrict the 26517When calling from Lisp, use a non-nil NAME to restrict the
26495suggestions to imports defining NAME. 26518suggestions to imports defining NAME.
26496 26519
@@ -26512,7 +26535,17 @@ asking.
26512(autoload 'python-sort-imports "python" "\ 26535(autoload 'python-sort-imports "python" "\
26513Sort Python imports in the current buffer." t) 26536Sort Python imports in the current buffer." t)
26514(autoload 'python-fix-imports "python" "\ 26537(autoload 'python-fix-imports "python" "\
26515Add missing imports and remove unused ones from the current buffer." t) 26538Add missing imports and remove unused ones from the current buffer.
26539
26540If there are missing imports, ask for an import statement using all
26541imports found in the current project as suggestions. If there is only
26542one such suggestion, act without asking.
26543
26544If the buffer does not belong to a project, the import statement is
26545searched under the buffer's default directory. For example, if the file
26546is located directly under the home directory, all files under the home
26547directory will be searched. Please note that this can take a long time
26548and may appear to hang." t)
26516(autoload 'python-base-mode "python" "\ 26549(autoload 'python-base-mode "python" "\
26517Generic major mode for editing Python files. 26550Generic major mode for editing Python files.
26518 26551
@@ -29547,6 +29580,7 @@ A FUNC form can have any number of `:no-eval' (or `:no-value'),
29547`:eg-result-string' properties." (declare (indent defun)) (shortdoc--check group functions) `(progn (setq shortdoc--groups (delq (assq ',group shortdoc--groups) shortdoc--groups)) (push (cons ',group ',functions) shortdoc--groups))) 29580`:eg-result-string' properties." (declare (indent defun)) (shortdoc--check group functions) `(progn (setq shortdoc--groups (delq (assq ',group shortdoc--groups) shortdoc--groups)) (push (cons ',group ',functions) shortdoc--groups)))
29548(autoload 'shortdoc-display-group "shortdoc" "\ 29581(autoload 'shortdoc-display-group "shortdoc" "\
29549Pop to a buffer with short documentation summary for functions in GROUP. 29582Pop to a buffer with short documentation summary for functions in GROUP.
29583Interactively, prompt for GROUP.
29550If FUNCTION is non-nil, place point on the entry for FUNCTION (if any). 29584If FUNCTION is non-nil, place point on the entry for FUNCTION (if any).
29551If SAME-WINDOW, don't pop to a new window. 29585If SAME-WINDOW, don't pop to a new window.
29552 29586
@@ -30385,10 +30419,10 @@ Spam reports will be queued with the method used when
30385 30419
30386(defalias 'speedbar 'speedbar-frame-mode) 30420(defalias 'speedbar 'speedbar-frame-mode)
30387(autoload 'speedbar-frame-mode "speedbar" "\ 30421(autoload 'speedbar-frame-mode "speedbar" "\
30388Enable or disable speedbar. Positive ARG means turn on, negative turn off. 30422Enable or disable speedbar.
30389A nil ARG means toggle. Once the speedbar frame is activated, a buffer in 30423Positive ARG means turn on, negative turn off. A nil ARG means toggle.
30390`speedbar-mode' will be displayed. Currently, only one speedbar is 30424Once the speedbar frame is activated, a buffer in `speedbar-mode' will
30391supported at a time. 30425be displayed. Currently, only one speedbar is supported at a time.
30392`speedbar-before-popup-hook' is called before popping up the speedbar frame. 30426`speedbar-before-popup-hook' is called before popping up the speedbar frame.
30393`speedbar-before-delete-hook' is called before the frame is deleted. 30427`speedbar-before-delete-hook' is called before the frame is deleted.
30394 30428
@@ -30955,6 +30989,9 @@ PROMPT will be inserted at the start of the buffer, but won't be
30955included in the resulting string. If nil, no prompt will be 30989included in the resulting string. If nil, no prompt will be
30956inserted in the buffer. 30990inserted in the buffer.
30957 30991
30992When the user exits recursive edit, this function returns the
30993edited STRING.
30994
30958Also see `string-edit'. 30995Also see `string-edit'.
30959 30996
30960(fn PROMPT STRING)") 30997(fn PROMPT STRING)")
@@ -33115,9 +33152,9 @@ Valid ZONE values are described in the documentation of `format-time-string'.
33115(put 'time-stamp-count 'safe-local-variable 'integerp) 33152(put 'time-stamp-count 'safe-local-variable 'integerp)
33116(put 'time-stamp-pattern 'safe-local-variable 'stringp) 33153(put 'time-stamp-pattern 'safe-local-variable 'stringp)
33117(autoload 'time-stamp "time-stamp" "\ 33154(autoload 'time-stamp "time-stamp" "\
33118Update any time stamp string(s) in the buffer. 33155Update any time stamp strings (timestamps) in the buffer.
33119This function looks for a time stamp template and updates it with 33156Look for a time stamp template and update it with the current
33120the current date, time, and/or other info. 33157date, time, author, and/or other info.
33121 33158
33122The template, which you manually create on one of the first 8 lines 33159The template, which you manually create on one of the first 8 lines
33123of the file before running this function, by default can look like 33160of the file before running this function, by default can look like
@@ -33140,12 +33177,11 @@ To enable automatic time-stamping for only a specific file, add
33140this line to a local variables list near the end of the file: 33177this line to a local variables list near the end of the file:
33141 eval: (add-hook \\='before-save-hook \\='time-stamp nil t) 33178 eval: (add-hook \\='before-save-hook \\='time-stamp nil t)
33142 33179
33143If the file has no time-stamp template, this function does nothing. 33180If the file has no time stamp template or if `time-stamp-active' is nil,
33181this function does nothing.
33144 33182
33145You can set `time-stamp-pattern' in a file's local variables list 33183You can set `time-stamp-pattern' in a file's local variables list
33146to customize the information in the time stamp and where it is written. 33184to customize the information in the time stamp and where it is written." t)
33147
33148The time stamp is updated only if `time-stamp-active' is non-nil." t)
33149(autoload 'time-stamp-toggle-active "time-stamp" "\ 33185(autoload 'time-stamp-toggle-active "time-stamp" "\
33150Toggle `time-stamp-active', setting whether \\[time-stamp] updates a buffer. 33186Toggle `time-stamp-active', setting whether \\[time-stamp] updates a buffer.
33151With ARG, turn time stamping on if and only if ARG is positive. 33187With ARG, turn time stamping on if and only if ARG is positive.
@@ -33618,9 +33654,10 @@ the output buffer or changing the window configuration.
33618 33654
33619;;; Generated autoloads from net/tramp.el 33655;;; Generated autoloads from net/tramp.el
33620 33656
33657(push (purecopy '(tramp 0)) package--builtin-versions)
33621 (when (featurep 'tramp-compat) 33658 (when (featurep 'tramp-compat)
33622 (load "tramp-compat" 'noerror 'nomessage)) 33659 (load "tramp-compat" 'noerror 'nomessage))
33623(defvar tramp-mode t "\ 33660(defvar tramp-mode (fboundp 'make-process) "\
33624Whether Tramp is enabled. 33661Whether Tramp is enabled.
33625If it is set to nil, all remote file names are used literally.") 33662If it is set to nil, all remote file names are used literally.")
33626(custom-autoload 'tramp-mode "tramp" t) 33663(custom-autoload 'tramp-mode "tramp" t)
@@ -33779,7 +33816,7 @@ Add archive file name handler to `file-name-handler-alist'." (when (and tramp-ar
33779 33816
33780;;; Generated autoloads from net/trampver.el 33817;;; Generated autoloads from net/trampver.el
33781 33818
33782(push (purecopy '(tramp 2 7 1 30 1)) package--builtin-versions) 33819(push (purecopy '(tramp 2 7 3 -1)) package--builtin-versions)
33783(register-definition-prefixes "trampver" '("tramp-")) 33820(register-definition-prefixes "trampver" '("tramp-"))
33784 33821
33785 33822
@@ -34898,11 +34935,11 @@ Usage:
34898:magic-fallback Form to be added to `magic-fallback-mode-alist'. 34935:magic-fallback Form to be added to `magic-fallback-mode-alist'.
34899:interpreter Form to be added to `interpreter-mode-alist'. 34936:interpreter Form to be added to `interpreter-mode-alist'.
34900 34937
34901:commands Define autoloads for commands that will be defined by the 34938:commands Define autoloads for commands defined by the package.
34902 package. This is useful if the package is being lazily 34939 This is useful if the package is being lazily loaded,
34903 loaded, and you wish to conditionally call functions in your 34940 and you wish to conditionally call functions in your
34904 `:init' block that are defined in the package. 34941 `:init' block that are defined in the package.
34905:autoload Similar to :commands, but it for no-interactive one. 34942:autoload Similar to `:commands', but used for non-interactive functions.
34906:hook Specify hook(s) to attach this package to. 34943:hook Specify hook(s) to attach this package to.
34907 34944
34908:bind Bind keys, and define autoloads for the bound commands. 34945:bind Bind keys, and define autoloads for the bound commands.