diff options
| author | Eli Zaretskii | 2025-05-18 05:24:11 -0400 |
|---|---|---|
| committer | Eli Zaretskii | 2025-05-18 05:24:11 -0400 |
| commit | dfcde786ada0918326be849a263e2b8352db9d35 (patch) | |
| tree | 8686fed6aac6b2716e7becdaa44c6d3391918098 | |
| parent | 4c110212604d5d825abe95418db5dd822b7e9375 (diff) | |
| download | emacs-dfcde786ada0918326be849a263e2b8352db9d35.tar.gz emacs-dfcde786ada0918326be849a263e2b8352db9d35.zip | |
; Update ldefs-boot.el. Do not merge to master.
| -rw-r--r-- | lisp/ldefs-boot.el | 117 |
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" "\ |
| 1457 | Read a password, prompting with PROMPT, and return it. | 1457 | Read a password, prompting with PROMPT, and return password as a string. |
| 1458 | If optional CONFIRM is non-nil, read the password twice to make sure. | 1458 | If optional CONFIRM is non-nil, read the password twice to make sure. |
| 1459 | Optional DEFAULT is a default password to use instead of empty input. | 1459 | Optional 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') | |||
| 9703 | or call the function `electric-pair-mode'.") | 9703 | or 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" "\ |
| 9706 | Toggle automatic parens pairing (Electric Pair mode). | 9706 | Toggle automatic pairing of delimiters (Electric Pair mode). |
| 9707 | 9707 | ||
| 9708 | Electric Pair mode is a global minor mode. When enabled, typing | 9708 | Electric Pair mode is a global minor mode. When enabled, typing an |
| 9709 | an open parenthesis automatically inserts the corresponding | 9709 | opening delimiter (parenthesis, bracket, etc.) automatically inserts the |
| 9710 | closing parenthesis, and vice versa. (Likewise for brackets, etc.). | 9710 | corresponding closing delimiter. If the region is active, the |
| 9711 | If the region is active, the parentheses (brackets, etc.) are | 9711 | delimiters are inserted around the region instead. |
| 9712 | inserted around the region instead. | ||
| 9713 | 9712 | ||
| 9714 | To toggle the mode in a single buffer, use `electric-pair-local-mode'. | 9713 | To toggle the mode only in the current buffer, use |
| 9714 | `electric-pair-local-mode'. | ||
| 9715 | 9715 | ||
| 9716 | This is a global minor mode. If called interactively, toggle the | 9716 | This 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" "\ |
| 10853 | Define test NAME (a symbol) using assertions from TEST-STR. | 10853 | Define test NAME (a symbol) using assertions from TEST-STR. |
| 10854 | 10854 | ||
| 10855 | Other than MAJOR-MODE and TEST-STR parameters, this macro accepts | 10855 | The MAJOR-MODE symbol determines the syntax and font lock of TEST-STR. |
| 10856 | the same parameters and keywords as `ert-deftest' and is intended | ||
| 10857 | to be used through `ert'. | ||
| 10858 | 10856 | ||
| 10859 | (fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] MAJOR-MODE TEST-STR)" nil t) | 10857 | Except for the MAJOR-MODE and TEST-STR parameters, this macro accepts |
| 10860 | (function-put 'ert-font-lock-deftest 'doc-string-elt 3) | 10858 | the same arguments and keywords as `ert-deftest' and is intended to be |
| 10861 | (function-put 'ert-font-lock-deftest 'lisp-indent-function 2) | 10859 | used 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" "\ |
| 10863 | Define test NAME (a symbol) using assertions from FILE. | 10865 | Define test NAME (a symbol) using assertions from FILE. |
| 10864 | 10866 | ||
| 10865 | FILE - path to a file with assertions in ERT resource director as | 10867 | FILE names a file with assertions in the ERT resource directory, as |
| 10866 | return by `ert-resource-directory'. | 10868 | returned by `ert-resource-directory'. The MAJOR-MODE symbol determines |
| 10869 | the syntax and font lock of FILE's contents. | ||
| 10867 | 10870 | ||
| 10868 | Other than MAJOR-MODE and FILE parameters, this macro accepts the | 10871 | Except for the MAJOR-MODE and FILE parameters, this macro accepts the |
| 10869 | same parameters and keywords as `ert-deftest' and is intended to | 10872 | same arguments and keywords as `ert-deftest' and is intended to be used |
| 10870 | be used through `ert'. | 10873 | through `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" "\ |
| 10876 | Check font faces in TEST-STRING set by MODE. | 10879 | Check 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 | |||
| 12468 | for settings like `lexical-binding, which must be specified there, | 12471 | for settings like `lexical-binding, which must be specified there, |
| 12469 | use the `add-file-local-variable-prop-line' command instead. | 12472 | use the `add-file-local-variable-prop-line' command instead. |
| 12470 | 12473 | ||
| 12474 | If optional variable INTERACTIVE is non-nil, display a message telling | ||
| 12475 | the 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" "\ |
| 12473 | Delete all settings of file-local VARIABLE from the Local Variables list. | 12479 | Delete all settings of file-local VARIABLE from the Local Variables list. |
| 12474 | 12480 | ||
| 12481 | If optional variable INTERACTIVE is non-nil, display a message telling | ||
| 12482 | the 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" "\ |
| 12477 | Add file-local VARIABLE with its VALUE to the -*- line. | 12486 | Add file-local VARIABLE with its VALUE to the -*- line. |
| @@ -12486,10 +12495,16 @@ then this function adds it. | |||
| 12486 | To add variables to the Local Variables list at the end of the file, | 12495 | To add variables to the Local Variables list at the end of the file, |
| 12487 | use the `add-file-local-variable' command instead. | 12496 | use the `add-file-local-variable' command instead. |
| 12488 | 12497 | ||
| 12498 | If optional variable INTERACTIVE is non-nil, display a message telling | ||
| 12499 | the 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" "\ |
| 12491 | Delete all settings of file-local VARIABLE from the -*- line. | 12503 | Delete all settings of file-local VARIABLE from the -*- line. |
| 12492 | 12504 | ||
| 12505 | If optional variable INTERACTIVE is non-nil, display a message telling | ||
| 12506 | the 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" "\ |
| 12495 | Add directory-local VARIABLE with its VALUE and MODE to .dir-locals.el. | 12510 | Add 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" "\ |
| 19221 | Read a Hiragana string from the minibuffer, prompting with string PROMPT. | 19236 | Read a Hiragana string from the minibuffer, prompting with string PROMPT. |
| 19222 | If non-nil, second arg INITIAL-INPUT is a string to insert before reading. | 19237 | If non-nil, second arg INITIAL-INPUT is a string to insert before reading. |
| 19238 | Return 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" "\ |
| 21774 | Read a character set from the minibuffer, prompting with string PROMPT. | 21790 | Read a character set from the minibuffer, prompting with string PROMPT. |
| 21775 | It must be an Emacs character set listed in the variable `charset-list'. | 21791 | It must be an Emacs character set listed in the variable `charset-list'. |
| 21792 | Return the charset as a symbol. | ||
| 21776 | 21793 | ||
| 21777 | Optional arguments are DEFAULT-VALUE and INITIAL-INPUT. | 21794 | Optional arguments are DEFAULT-VALUE and INITIAL-INPUT. |
| 21778 | DEFAULT-VALUE, if non-nil, is the default value. | 21795 | DEFAULT-VALUE, if non-nil, is the default value. |
| @@ -26491,6 +26508,12 @@ argument, restrict the suggestions to imports defining the symbol | |||
| 26491 | at point. If there is only one such suggestion, act without | 26508 | at point. If there is only one such suggestion, act without |
| 26492 | asking. | 26509 | asking. |
| 26493 | 26510 | ||
| 26511 | If the buffer does not belong to a project, the import statement is | ||
| 26512 | searched under the buffer's default directory. For example, if the file | ||
| 26513 | is located directly under the home directory, all files under the home | ||
| 26514 | directory will be searched. Please note that this can take a long time | ||
| 26515 | and may appear to hang. | ||
| 26516 | |||
| 26494 | When calling from Lisp, use a non-nil NAME to restrict the | 26517 | When calling from Lisp, use a non-nil NAME to restrict the |
| 26495 | suggestions to imports defining NAME. | 26518 | suggestions to imports defining NAME. |
| 26496 | 26519 | ||
| @@ -26512,7 +26535,17 @@ asking. | |||
| 26512 | (autoload 'python-sort-imports "python" "\ | 26535 | (autoload 'python-sort-imports "python" "\ |
| 26513 | Sort Python imports in the current buffer." t) | 26536 | Sort Python imports in the current buffer." t) |
| 26514 | (autoload 'python-fix-imports "python" "\ | 26537 | (autoload 'python-fix-imports "python" "\ |
| 26515 | Add missing imports and remove unused ones from the current buffer." t) | 26538 | Add missing imports and remove unused ones from the current buffer. |
| 26539 | |||
| 26540 | If there are missing imports, ask for an import statement using all | ||
| 26541 | imports found in the current project as suggestions. If there is only | ||
| 26542 | one such suggestion, act without asking. | ||
| 26543 | |||
| 26544 | If the buffer does not belong to a project, the import statement is | ||
| 26545 | searched under the buffer's default directory. For example, if the file | ||
| 26546 | is located directly under the home directory, all files under the home | ||
| 26547 | directory will be searched. Please note that this can take a long time | ||
| 26548 | and may appear to hang." t) | ||
| 26516 | (autoload 'python-base-mode "python" "\ | 26549 | (autoload 'python-base-mode "python" "\ |
| 26517 | Generic major mode for editing Python files. | 26550 | Generic 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" "\ |
| 29549 | Pop to a buffer with short documentation summary for functions in GROUP. | 29582 | Pop to a buffer with short documentation summary for functions in GROUP. |
| 29583 | Interactively, prompt for GROUP. | ||
| 29550 | If FUNCTION is non-nil, place point on the entry for FUNCTION (if any). | 29584 | If FUNCTION is non-nil, place point on the entry for FUNCTION (if any). |
| 29551 | If SAME-WINDOW, don't pop to a new window. | 29585 | If 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" "\ |
| 30388 | Enable or disable speedbar. Positive ARG means turn on, negative turn off. | 30422 | Enable or disable speedbar. |
| 30389 | A nil ARG means toggle. Once the speedbar frame is activated, a buffer in | 30423 | Positive ARG means turn on, negative turn off. A nil ARG means toggle. |
| 30390 | `speedbar-mode' will be displayed. Currently, only one speedbar is | 30424 | Once the speedbar frame is activated, a buffer in `speedbar-mode' will |
| 30391 | supported at a time. | 30425 | be 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 | |||
| 30955 | included in the resulting string. If nil, no prompt will be | 30989 | included in the resulting string. If nil, no prompt will be |
| 30956 | inserted in the buffer. | 30990 | inserted in the buffer. |
| 30957 | 30991 | ||
| 30992 | When the user exits recursive edit, this function returns the | ||
| 30993 | edited STRING. | ||
| 30994 | |||
| 30958 | Also see `string-edit'. | 30995 | Also 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" "\ |
| 33118 | Update any time stamp string(s) in the buffer. | 33155 | Update any time stamp strings (timestamps) in the buffer. |
| 33119 | This function looks for a time stamp template and updates it with | 33156 | Look for a time stamp template and update it with the current |
| 33120 | the current date, time, and/or other info. | 33157 | date, time, author, and/or other info. |
| 33121 | 33158 | ||
| 33122 | The template, which you manually create on one of the first 8 lines | 33159 | The template, which you manually create on one of the first 8 lines |
| 33123 | of the file before running this function, by default can look like | 33160 | of 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 | |||
| 33140 | this line to a local variables list near the end of the file: | 33177 | this 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 | ||
| 33143 | If the file has no time-stamp template, this function does nothing. | 33180 | If the file has no time stamp template or if `time-stamp-active' is nil, |
| 33181 | this function does nothing. | ||
| 33144 | 33182 | ||
| 33145 | You can set `time-stamp-pattern' in a file's local variables list | 33183 | You can set `time-stamp-pattern' in a file's local variables list |
| 33146 | to customize the information in the time stamp and where it is written. | 33184 | to customize the information in the time stamp and where it is written." t) |
| 33147 | |||
| 33148 | The 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" "\ |
| 33150 | Toggle `time-stamp-active', setting whether \\[time-stamp] updates a buffer. | 33186 | Toggle `time-stamp-active', setting whether \\[time-stamp] updates a buffer. |
| 33151 | With ARG, turn time stamping on if and only if ARG is positive. | 33187 | With 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) "\ |
| 33624 | Whether Tramp is enabled. | 33661 | Whether Tramp is enabled. |
| 33625 | If it is set to nil, all remote file names are used literally.") | 33662 | If 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. |