From: Eshel Yaron Date: Mon, 17 Mar 2025 10:50:23 +0000 (+0100) Subject: ; Update lisp/ldefs-boot.el X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e7105b121c937931879cb960539fbd30c0f02521;p=emacs.git ; Update lisp/ldefs-boot.el --- diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 1c3e29b81bb..5764dee658d 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el @@ -2339,11 +2339,6 @@ If called from menubar, select OLD-NAME from a menu and prompt for NEW-NAME. Insert the text of the file pointed to by bookmark BOOKMARK-NAME. BOOKMARK-NAME is a bookmark name (a string), not a bookmark record. -You may have a problem using this function if the value of variable -`bookmark-alist' is nil. If that happens, you need to load in some -bookmarks. See help on function `bookmark-load' for more about -this. - (fn BOOKMARK-NAME)" t) (autoload 'bookmark-delete "bookmark" "\ Delete BOOKMARK-NAME from the bookmark list. @@ -2808,7 +2803,7 @@ disabled. (put 'byte-compile-dynamic 'safe-local-variable 'booleanp) (put 'byte-compile-dynamic-docstrings 'safe-local-variable 'booleanp) (put 'byte-compile-error-on-warn 'safe-local-variable 'booleanp) -(put 'byte-compile-warnings 'safe-local-variable (lambda (v) (or (symbolp v) (null (delq nil (mapcar (lambda (x) (not (symbolp x))) v)))))) +(put 'byte-compile-warnings 'safe-local-variable (lambda (v) (or (symbolp v) (null (delq nil (mapcar (compf not symbolp) v)))))) (autoload 'byte-compile-warning-enabled-p "bytecomp" "\ Return non-nil if WARNING is enabled, according to `byte-compile-warnings'. @@ -4087,11 +4082,6 @@ See the documentation of `define-ccl-program' for the detail of CCL program. (fn CCL-PROG &rest ARGS)") (register-definition-prefixes "ccl" '("ccl-")) - -;;; Generated autoloads from cdl.el - -(register-definition-prefixes "cdl" '("cdl-")) - ;;; Generated autoloads from progmodes/cfengine.el @@ -4196,7 +4186,9 @@ Returns non-nil if any false statements are found. (put 'checkdoc-ispell-list-words 'safe-local-variable #'list-of-strings-p) (put 'checkdoc-arguments-in-order-flag 'safe-local-variable #'booleanp) (put 'checkdoc-verb-check-experimental-flag 'safe-local-variable #'booleanp) +(put 'checkdoc-allow-quoting-nil-and-t 'safe-local-variable #'booleanp) (put 'checkdoc-symbol-words 'safe-local-variable #'list-of-strings-p) +(put 'checkdoc-arguments-missing-flag 'safe-local-variable 'booleanp) (put 'checkdoc-proper-noun-regexp 'safe-local-variable 'stringp) (put 'checkdoc-common-verbs-regexp 'safe-local-variable 'stringp) (autoload 'checkdoc "checkdoc" "\ @@ -4550,7 +4542,7 @@ printer proceeds to the next function on the list. This variable is not used at present, but it is defined in hopes that a future Emacs interpreter will be able to use it.") -(autoload 'cl-incf "cl-lib" "\ +(defalias 'cl-incf #'incf "\ Increment PLACE by X (1 by default). PLACE may be a symbol, or any generalized variable allowed by `setf'. The return value is the incremented value of PLACE. @@ -4558,7 +4550,8 @@ The return value is the incremented value of PLACE. If X is specified, it should be an expression that should evaluate to a number. -(fn PLACE &optional X)" nil t) +This macro is considered deprecated in favor of the built-in macro +`incf' that was added in Emacs 31.1.") (defvar cl-old-struct-compat-mode nil "\ Non-nil if Cl-Old-Struct-Compat mode is enabled. See the `cl-old-struct-compat-mode' command @@ -5295,28 +5288,28 @@ list.") ;;; Generated autoloads from emacs-lisp/cond-star.el +(push '(cond-star 1 0) package--builtin-versions) (autoload 'cond* "cond-star" "\ Extended form of traditional Lisp `cond' construct. A `cond*' construct is a series of clauses, and a clause normally has the form (CONDITION BODY...). CONDITION can be a Lisp expression, as in `cond'. -Or it can be one of `(pcase* PATTERN DATUM)', -`(bind* BINDINGS...)', or `(match* PATTERN DATUM)', - -`(pcase* PATTERN DATUM)' means to match DATUM against the -pattern PATTERN, using the same pattern syntax as `pcase'. -The condition counts as true if PATTERN matches DATUM. +Or it can be one of`(bind* BINDINGS...)', `(match* PATTERN DATUM)', +or `(pcase* PATTERN DATUM)', `(bind* BINDINGS...)' means to bind BINDINGS (as if they were in `let*') -for the body of the clause. As a condition, it counts as true -if the first binding's value is non-nil. All the bindings are made -unconditionally for whatever scope they cover. +for the body of the clause, and all subsequent clauses, since the `bind*' +clause is always a non-exit clause. As a condition, it counts as true +and runs the body of the clause if the first binding's value is non-nil. -`(match* PATTERN DATUM)' is an alternative to `pcase*' that uses another -syntax for its patterns, see `match*'. +`(match* PATTERN DATUM)' means to match DATUM against the pattern PATTERN +For its patterns, see `match*'. +The condition counts as true if PATTERN matches DATUM. -See `match*' for documentation of the patterns for use in such clauses. +`(pcase* PATTERN DATUM)' means to match DATUM against the +pattern PATTERN, using the same pattern syntax as `pcase'. +The condition counts as true if PATTERN matches DATUM. When a clause's condition is true, and it exits the `cond*' or is the last clause, the value of the last expression @@ -5325,12 +5318,12 @@ in its body becomes the return value of the `cond*' construct. Non-exit clause: If a clause has only one element, or if its first element is -a `bind*' clause, this clause never exits the `cond*' construct. +t or a `bind*' clause, this clause never exits the `cond*' construct. Instead, control always falls through to the next clause (if any). All bindings made in CONDITION for the BODY of the non-exit clause are passed along to the rest of the clauses in this `cond*' construct. -\\[match*\\] for documentation of the patterns for use in `match*'. +\\[match*] for documentation of the patterns for use in `match*'. (fn &rest CLAUSES)" nil t) (register-definition-prefixes "cond-star" '("cond*-" "match*")) @@ -6455,129 +6448,6 @@ string denoting the bus address. The value nil defaults to `:session'. (fn &optional BUS)" t) (register-definition-prefixes "dbus" '("dbus-")) - -;;; Generated autoloads from progmodes/dcl-mode.el - -(autoload 'dcl-mode "dcl-mode" "\ -Major mode for editing DCL-files. - -This mode indents command lines in blocks. (A block is commands between -THEN-ELSE-ENDIF and between lines matching dcl-block-begin-regexp and -dcl-block-end-regexp.) - -Labels are indented to a fixed position unless they begin or end a block. -Whole-line comments (matching dcl-comment-line-regexp) are not indented. -Data lines are not indented. - -Key bindings: - -\\{dcl-mode-map} -Commands not usually bound to keys: - -\\[dcl-save-nondefault-options] Save changed options -\\[dcl-save-all-options] Save all options -\\[dcl-save-option] Save any option -\\[dcl-save-mode] Save buffer mode - -Variables controlling indentation style and extra features: - - dcl-basic-offset - Extra indentation within blocks. - - dcl-continuation-offset - Extra indentation for continued lines. - - dcl-margin-offset - Indentation for the first command line in a file or SUBROUTINE. - - dcl-margin-label-offset - Indentation for a label. - - dcl-comment-line-regexp - Lines matching this regexp will not be indented. - - dcl-block-begin-regexp - dcl-block-end-regexp - Regexps that match command lines that begin and end, respectively, - a block of command lines that will be given extra indentation. - Command lines between THEN-ELSE-ENDIF are always indented; these variables - make it possible to define other places to indent. - Set to nil to disable this feature. - - dcl-calc-command-indent-function - Can be set to a function that customizes indentation for command lines. - Two such functions are included in the package: - dcl-calc-command-indent-multiple - dcl-calc-command-indent-hang - - dcl-calc-cont-indent-function - Can be set to a function that customizes indentation for continued lines. - One such function is included in the package: - dcl-calc-cont-indent-relative (set by default) - - dcl-tab-always-indent - If t, pressing TAB always indents the current line. - If nil, pressing TAB indents the current line if point is at the left - margin. - - dcl-electric-characters - Non-nil causes lines to be indented at once when a label, ELSE or ENDIF is - typed. - - dcl-electric-reindent-regexps - Use this variable and function dcl-electric-character to customize - which words trigger electric indentation. - - dcl-tempo-comma - dcl-tempo-left-paren - dcl-tempo-right-paren - These variables control the look of expanded templates. - - dcl-imenu-generic-expression - Default value for `imenu-generic-expression'. The default includes - SUBROUTINE labels in the main listing and sub-listings for - other labels, CALL, GOTO and GOSUB statements. - - dcl-imenu-label-labels - dcl-imenu-label-goto - dcl-imenu-label-gosub - dcl-imenu-label-call - Change the text that is used as sub-listing labels in imenu. - -Turning on DCL mode calls the value of the variable `dcl-mode-hook' -with no args, if that value is non-nil. - - -The following example uses the default values for all variables: - -$! This is a comment line that is not indented (it matches -$! dcl-comment-line-regexp) -$! Next follows the first command line. It is indented dcl-margin-offset. -$ i = 1 -$ ! Other comments are indented like command lines. -$ ! A margin label indented dcl-margin-label-offset: -$ label: -$ if i.eq.1 -$ then -$ ! Lines between THEN-ELSE and ELSE-ENDIF are -$ ! indented dcl-basic-offset -$ loop1: ! This matches dcl-block-begin-regexp... -$ ! ...so this line is indented dcl-basic-offset -$ text = \"This \" + - ! is a continued line - \"lined up with the command line\" -$ type sys$input -Data lines are not indented at all. -$ endloop1: ! This matches dcl-block-end-regexp -$ endif -$ - - -There is some minimal font-lock support (see vars -`dcl-font-lock-defaults' and `dcl-font-lock-keywords'). - -(fn)" t) -(register-definition-prefixes "dcl-mode" '("dcl-")) - ;;; Generated autoloads from emacs-lisp/debug.el @@ -8214,7 +8084,6 @@ INIT-VALUE LIGHTER KEYMAP. (fn MODE DOC [KEYWORD VAL ... &rest BODY])" nil t) (function-put 'define-minor-mode 'doc-string-elt 2) (function-put 'define-minor-mode 'lisp-indent-function 'defun) -(defalias 'define-global-minor-mode #'define-globalized-minor-mode) (autoload 'define-globalized-minor-mode "easy-mmode" "\ Make a global mode GLOBAL-MODE corresponding to buffer-local minor MODE. TURN-ON is a function that will be called with no args in every buffer @@ -8297,6 +8166,7 @@ CSS contains a list of syntax specifications of the form (CHAR . SYNTAX). (function-put 'easy-mmode-defsyntax 'lisp-indent-function 1) (define-obsolete-function-alias 'easy-mmode-define-minor-mode #'define-minor-mode "30.1") (define-obsolete-function-alias 'easy-mmode-define-global-mode #'define-globalized-minor-mode "30.1") +(define-obsolete-function-alias 'define-global-minor-mode #'define-globalized-minor-mode "31.1") (register-definition-prefixes "easy-mmode" '("easy-mmode-")) @@ -9272,26 +9142,10 @@ Major mode for editing Emacs Lisp code. ;;; Generated autoloads from elec-pair.el -(defvar electric-pair-mode nil "\ -Non-nil if Electric-Pair mode is enabled. -See the `electric-pair-mode' command -for a description of this minor mode. -Setting this variable directly does not take effect; -either customize it (see the info node `Easy Customization') -or call the function `electric-pair-mode'.") -(custom-autoload 'electric-pair-mode "elec-pair" nil) (autoload 'electric-pair-mode "elec-pair" "\ Toggle automatic parens pairing (Electric Pair mode). -Electric Pair mode is a global minor mode. When enabled, typing -an open parenthesis automatically inserts the corresponding -closing parenthesis, and vice versa. (Likewise for brackets, etc.). -If the region is active, the parentheses (brackets, etc.) are -inserted around the region instead. - -To toggle the mode in a single buffer, use `electric-pair-local-mode'. - -This is a global minor mode. If called interactively, toggle the +This is a minor mode. If called interactively, toggle the `Electric-Pair mode' mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode. @@ -9300,28 +9154,34 @@ mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number. To check whether the minor mode is enabled in the current buffer, -evaluate `(default-value \\='electric-pair-mode)'. +evaluate `electric-pair-mode'. The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) -(autoload 'electric-pair-local-mode "elec-pair" "\ -Toggle `electric-pair-mode' only in this buffer. - -This is a minor mode. If called interactively, toggle the -`Electric-Pair-Local mode' mode. If the prefix argument is positive, -enable the mode, and if it is zero or negative, disable the mode. +(put 'global-electric-pair-mode 'globalized-minor-mode t) +(defvar global-electric-pair-mode nil "\ +Non-nil if Global Electric-Pair mode is enabled. +See the `global-electric-pair-mode' command +for a description of this minor mode. +Setting this variable directly does not take effect; +either customize it (see the info node `Easy Customization') +or call the function `global-electric-pair-mode'.") +(custom-autoload 'global-electric-pair-mode "elec-pair" nil) +(autoload 'global-electric-pair-mode "elec-pair" "\ +Toggle Electric-Pair mode in all buffers. +With prefix ARG, enable Global Electric-Pair mode if ARG is positive; +otherwise, disable it. -If called from Lisp, toggle the mode if ARG is `toggle'. Enable the -mode if ARG is nil, omitted, or is a positive number. Disable the mode -if ARG is a negative number. +If called from Lisp, toggle the mode if ARG is `toggle'. +Enable the mode if ARG is nil, omitted, or is a positive number. +Disable the mode if ARG is a negative number. -To check whether the minor mode is enabled in the current buffer, -evaluate `electric-pair-mode'. +Electric-Pair mode is enabled in all buffers where +`electric-pair-mode' would do it. -The mode's hook is called both when the mode is enabled and when it is -disabled. +See `electric-pair-mode' for more information on Electric-Pair mode. (fn &optional ARG)" t) (register-definition-prefixes "elec-pair" '("electric-pair-")) @@ -9624,7 +9484,7 @@ name (which will be attached to the mail). You will end up in a Message buffer where you can explain more about the patch. (fn SUBJECT FILE)" t) -(register-definition-prefixes "emacsbug" '("report-emacs-bug-")) +(register-definition-prefixes "emacsbug" '("report-emacs-bug-" "submit-emacs-patch-excluded-maintainers")) ;;; Generated autoloads from vc/emerge.el @@ -10148,8 +10008,8 @@ Example client certificate (CertFP) usage: (erc-tls :server \"irc.libera.chat\" :port 6697 :client-certificate - \\='(\"/home/bandali/my-cert.key\" - \"/home/bandali/my-cert.crt\")) + \\='(\"/home/bandali/my-key.pem\" + \"/home/bandali/my-cert.pem\")) See the alternative entry-point command `erc' as well as Info node `(erc) Connecting' for a fuller description of the various @@ -10429,26 +10289,29 @@ Display the documentation for TEST-OR-TEST-NAME (a symbol or ert-test). (autoload 'ert-font-lock-deftest "ert-font-lock" "\ Define test NAME (a symbol) using assertions from TEST-STR. -Other than MAJOR-MODE and TEST-STR parameters, this macro accepts -the same parameters and keywords as `ert-deftest' and is intended -to be used through `ert'. +The MAJOR-MODE symbol determines the syntax and font lock of TEST-STR. -(fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] MAJOR-MODE TEST-STR)" nil t) -(function-put 'ert-font-lock-deftest 'doc-string-elt 3) -(function-put 'ert-font-lock-deftest 'lisp-indent-function 2) +Except for the MAJOR-MODE and TEST-STR parameters, this macro accepts +the same arguments and keywords as `ert-deftest' and is intended to be +used through `ert'. + +(fn NAME [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] MAJOR-MODE TEST-STR)" nil t) +(function-put 'ert-font-lock-deftest 'doc-string-elt 2) +(function-put 'ert-font-lock-deftest 'lisp-indent-function 1) (autoload 'ert-font-lock-deftest-file "ert-font-lock" "\ Define test NAME (a symbol) using assertions from FILE. -FILE - path to a file with assertions in ERT resource director as -return by `ert-resource-directory'. +FILE names a file with assertions in the ERT resource directory, as +returned by `ert-resource-directory'. The MAJOR-MODE symbol determines +the syntax and font lock of FILE's contents. -Other than MAJOR-MODE and FILE parameters, this macro accepts the -same parameters and keywords as `ert-deftest' and is intended to -be used through `ert'. +Except for the MAJOR-MODE and FILE parameters, this macro accepts the +same arguments and keywords as `ert-deftest' and is intended to be used +through `ert'. -(fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] MAJOR-MODE FILE)" nil t) -(function-put 'ert-font-lock-deftest-file 'doc-string-elt 3) -(function-put 'ert-font-lock-deftest-file 'lisp-indent-function 2) +(fn NAME [DOCSTRING] [:expected-result RESULT-TYPE] [:tags \\='(TAG...)] MAJOR-MODE FILE)" nil t) +(function-put 'ert-font-lock-deftest-file 'doc-string-elt 2) +(function-put 'ert-font-lock-deftest-file 'lisp-indent-function 1) (autoload 'ert-font-lock-test-string "ert-font-lock" "\ Check font faces in TEST-STRING set by MODE. @@ -10466,8 +10329,6 @@ The function is meant to be run from within an ERT test. ;;; Generated autoloads from emacs-lisp/ert-x.el -(autoload 'ert-kill-all-test-buffers "ert-x" "\ -Kill all test buffers that are still live." t) (register-definition-prefixes "ert-x" '("ert-")) @@ -12489,10 +12350,6 @@ The mode's hook is called both when the mode is enabled and when it is disabled. (fn &optional ARG)" t) -(autoload 'turn-on-flyspell "flyspell" "\ -Unconditionally turn on Flyspell mode.") -(autoload 'turn-off-flyspell "flyspell" "\ -Unconditionally turn off Flyspell mode.") (autoload 'flyspell--mode-off "flyspell" "\ Turn Flyspell mode off.") (autoload 'flyspell-region "flyspell" "\ @@ -12504,6 +12361,10 @@ of a misspelled word removed when you've corrected it. (fn BEG END)" t) (autoload 'flyspell-buffer "flyspell" "\ Flyspell whole buffer." t) +(define-obsolete-function-alias 'turn-on-flyspell #'flyspell-mode "31.1") +(autoload 'turn-off-flyspell "flyspell" "\ +Unconditionally turn off Flyspell mode.") +(make-obsolete 'turn-off-flyspell 'flyspell-mode "31.1") (register-definition-prefixes "flyspell" '("flyspell-" "mail-mode-flyspell-verify" "make-flyspell-overlay" "sgml-mode-flyspell-verify" "tex")) @@ -14696,6 +14557,24 @@ For example, (setf (cadr x) y) is equivalent to (setcar (cdr x) y). The return value is the last VAL in the list. (fn PLACE VAL PLACE VAL ...)" nil t) +(autoload 'incf "gv" "\ +Increment PLACE by DELTA (default to 1). + +The DELTA is first added to PLACE, and then stored in PLACE. +Return the incremented value of PLACE. + +See also `decf'. + +(fn PLACE &optional DELTA)" nil t) +(autoload 'decf "gv" "\ +Decrement PLACE by DELTA (default to 1). + +The DELTA is first subtracted from PLACE, and then stored in PLACE. +Return the decremented value of PLACE. + +See also `incf'. + +(fn PLACE &optional DELTA)" nil t) (def-edebug-elem-spec 'gv-place '(form)) (autoload 'gv-ref "gv" "\ Return a reference to PLACE. @@ -14754,42 +14633,6 @@ Repent before ring 31 moves." t) Like `hanoi-unix', but with a 64-bit clock." t) (register-definition-prefixes "hanoi" '("hanoi-")) - -;;; Generated autoloads from mail/hashcash.el - -(autoload 'hashcash-insert-payment "hashcash" "\ -Insert X-Payment and X-Hashcash headers with a payment for ARG. - -(fn ARG)" t) -(autoload 'hashcash-insert-payment-async "hashcash" "\ -Insert X-Payment and X-Hashcash headers with a payment for ARG -Only start calculation. Results are inserted when ready. - -(fn ARG)" t) -(autoload 'hashcash-verify-payment "hashcash" "\ -Verify a hashcash payment. - -(fn TOKEN &optional RESOURCE AMOUNT)") -(autoload 'mail-add-payment "hashcash" "\ -Add X-Payment: and X-Hashcash: headers with a hashcash payment -for each recipient address. Prefix arg sets default payment temporarily. -Set ASYNC to t to start asynchronous calculation. (See -`mail-add-payment-async'). - -(fn &optional ARG ASYNC)" t) -(autoload 'mail-add-payment-async "hashcash" "\ -Add X-Payment: and X-Hashcash: headers with a hashcash payment -for each recipient address. Prefix arg sets default payment temporarily. -Calculation is asynchronous. - -(fn &optional ARG)" t) -(autoload 'mail-check-payment "hashcash" "\ -Look for a valid X-Payment: or X-Hashcash: header. -Prefix arg sets default accept amount temporarily. - -(fn &optional ARG)" t) -(register-definition-prefixes "hashcash" '("hashcash-")) - ;;; Generated autoloads from progmodes/heex-ts-mode.el @@ -15543,7 +15386,7 @@ disabled. ;;; Generated autoloads from progmodes/hideshow.el -(defvar hs-special-modes-alist '((c-mode "{" "}" "/[*/]" nil nil) (c-ts-mode "{" "}" "/[*/]" nil nil) (c++-mode "{" "}" "/[*/]" nil nil) (c++-ts-mode "{" "}" "/[*/]" nil nil) (bibtex-mode ("@\\S(*\\(\\s(\\)" 1)) (java-mode "{" "}" "/[*/]" nil nil) (java-ts-mode "{" "}" "/[*/]" nil nil) (js-mode "{" "}" "/[*/]" nil) (js-ts-mode "{" "}" "/[*/]" nil) (lua-ts-mode "{\\|\\[\\[" "}\\|\\]\\]" "--" nil) (mhtml-mode "{\\|<[^/>]*?" "}\\|]*[^/]>" "