diff options
| author | Andrea Corallo | 2024-12-19 22:27:07 +0100 |
|---|---|---|
| committer | Andrea Corallo | 2024-12-19 22:29:25 +0100 |
| commit | 68bcabf58afddb377d172857ce7648ad3ff09618 (patch) | |
| tree | 8f10404dc5b27324c49ef29c5246d987960c8d2b | |
| parent | 9d93d717d58a41af29dec9cf80aa6b70b873c723 (diff) | |
| download | emacs-30.0.93.tar.gz emacs-30.0.93.zip | |
* Update 'ldefs-boot.el' (don't merge)emacs-30.0.93
* lisp/ldefs-boot.el: Update.
| -rw-r--r-- | lisp/ldefs-boot.el | 55 |
1 files changed, 34 insertions, 21 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 06797a17e18..6416f63afbf 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -10399,7 +10399,9 @@ The buffer is expected to contain a mail message." t) | |||
| 10399 | (function-put 'epa-mail-decrypt 'interactive-only 't) | 10399 | (function-put 'epa-mail-decrypt 'interactive-only 't) |
| 10400 | (autoload 'epa-mail-verify "epa-mail" "\ | 10400 | (autoload 'epa-mail-verify "epa-mail" "\ |
| 10401 | Verify OpenPGP cleartext signed messages in the current buffer. | 10401 | Verify OpenPGP cleartext signed messages in the current buffer. |
| 10402 | The buffer is expected to contain a mail message." t) | 10402 | The buffer is expected to contain a mail message. |
| 10403 | |||
| 10404 | If the verification fails, signal an error." t) | ||
| 10403 | (function-put 'epa-mail-verify 'interactive-only 't) | 10405 | (function-put 'epa-mail-verify 'interactive-only 't) |
| 10404 | (autoload 'epa-mail-sign "epa-mail" "\ | 10406 | (autoload 'epa-mail-sign "epa-mail" "\ |
| 10405 | Sign the current buffer. | 10407 | Sign the current buffer. |
| @@ -10506,7 +10508,6 @@ Look at CONFIG and try to expand GROUP. | |||
| 10506 | (dolist (symbol '( erc-sasl erc-spelling ; 29 | 10508 | (dolist (symbol '( erc-sasl erc-spelling ; 29 |
| 10507 | erc-imenu erc-nicks)) ; 30 | 10509 | erc-imenu erc-nicks)) ; 30 |
| 10508 | (custom-add-load symbol symbol)) | 10510 | (custom-add-load symbol symbol)) |
| 10509 | (custom-autoload 'erc-modules "erc") | ||
| 10510 | (autoload 'erc-select-read-args "erc" "\ | 10511 | (autoload 'erc-select-read-args "erc" "\ |
| 10511 | Prompt for connection parameters and return them in a plist. | 10512 | Prompt for connection parameters and return them in a plist. |
| 10512 | By default, collect `:server', `:port', `:nickname', and | 10513 | By default, collect `:server', `:port', `:nickname', and |
| @@ -11247,7 +11248,7 @@ For non-interactive use, this is superseded by `fileloop-initialize-replace'. | |||
| 11247 | (autoload 'list-tags "etags" "\ | 11248 | (autoload 'list-tags "etags" "\ |
| 11248 | Display list of tags in file FILE. | 11249 | Display list of tags in file FILE. |
| 11249 | Interactively, prompt for FILE, with completion, offering the current | 11250 | Interactively, prompt for FILE, with completion, offering the current |
| 11250 | buffer's file name as the defaul. | 11251 | buffer's file name as the default. |
| 11251 | This command searches only the first table in the list of tags tables, | 11252 | This command searches only the first table in the list of tags tables, |
| 11252 | and does not search included tables. | 11253 | and does not search included tables. |
| 11253 | FILE should be as it was submitted to the `etags' command, which usually | 11254 | FILE should be as it was submitted to the `etags' command, which usually |
| @@ -12458,9 +12459,14 @@ This command deletes all existing settings of VARIABLE (except `mode' | |||
| 12458 | and `eval') and adds a new file-local VARIABLE with VALUE to the | 12459 | and `eval') and adds a new file-local VARIABLE with VALUE to the |
| 12459 | Local Variables list. | 12460 | Local Variables list. |
| 12460 | 12461 | ||
| 12461 | If there is no Local Variables list in the current file buffer | 12462 | If there is no Local Variables list in the current file buffer, |
| 12462 | then this function adds the first line containing the string | 12463 | then this function adds it at the end of the file, with the first |
| 12463 | `Local Variables:' and the last line containing the string `End:'. | 12464 | line containing the string `Local Variables:' and the last line |
| 12465 | containing the string `End:'. | ||
| 12466 | |||
| 12467 | For adding local variables on the first line of a file, for example | ||
| 12468 | for settings like `lexical-binding, which must be specified there, | ||
| 12469 | use the `add-file-local-variable-prop-line' command instead. | ||
| 12464 | 12470 | ||
| 12465 | (fn VARIABLE VALUE &optional INTERACTIVE)" t) | 12471 | (fn VARIABLE VALUE &optional INTERACTIVE)" t) |
| 12466 | (autoload 'delete-file-local-variable "files-x" "\ | 12472 | (autoload 'delete-file-local-variable "files-x" "\ |
| @@ -12472,11 +12478,14 @@ Add file-local VARIABLE with its VALUE to the -*- line. | |||
| 12472 | 12478 | ||
| 12473 | This command deletes all existing settings of VARIABLE (except `mode' | 12479 | This command deletes all existing settings of VARIABLE (except `mode' |
| 12474 | and `eval') and adds a new file-local VARIABLE with VALUE to | 12480 | and `eval') and adds a new file-local VARIABLE with VALUE to |
| 12475 | the -*- line. | 12481 | the -*- line at the beginning of the file. |
| 12476 | 12482 | ||
| 12477 | If there is no -*- line at the beginning of the current file buffer | 12483 | If there is no -*- line at the beginning of the current file buffer |
| 12478 | then this function adds it. | 12484 | then this function adds it. |
| 12479 | 12485 | ||
| 12486 | To add variables to the Local Variables list at the end of the file, | ||
| 12487 | use the `add-file-local-variable' command instead. | ||
| 12488 | |||
| 12480 | (fn VARIABLE VALUE &optional INTERACTIVE)" t) | 12489 | (fn VARIABLE VALUE &optional INTERACTIVE)" t) |
| 12481 | (autoload 'delete-file-local-variable-prop-line "files-x" "\ | 12490 | (autoload 'delete-file-local-variable-prop-line "files-x" "\ |
| 12482 | Delete all settings of file-local VARIABLE from the -*- line. | 12491 | Delete all settings of file-local VARIABLE from the -*- line. |
| @@ -15603,20 +15612,20 @@ If the `kbd-help' text or overlay property at point produces a | |||
| 15603 | string, return it. Otherwise, use the `help-echo' property. | 15612 | string, return it. Otherwise, use the `help-echo' property. |
| 15604 | If this produces no string either, return nil.") | 15613 | If this produces no string either, return nil.") |
| 15605 | (autoload 'display-local-help "help-at-pt" "\ | 15614 | (autoload 'display-local-help "help-at-pt" "\ |
| 15606 | Display local help in the echo area. | 15615 | Display in the echo area `kbd-help' or `help-echo' text at point. |
| 15607 | This command, by default, displays a short help message, namely | 15616 | This command displays the help message which is the string produced |
| 15608 | the string produced by the `kbd-help' property at point. If | 15617 | by the `kbd-help' property at point. If `kbd-help' at point does not |
| 15609 | `kbd-help' does not produce a string, but the `help-echo' | 15618 | produce a string, but the `help-echo' property does, then that string |
| 15610 | property does, then that string is printed instead. | 15619 | is displayed instead. |
| 15611 | 15620 | ||
| 15612 | The string is passed through `substitute-command-keys' before it | 15621 | The string is passed through `substitute-command-keys' before it |
| 15613 | is displayed. | 15622 | is displayed. |
| 15614 | 15623 | ||
| 15615 | If INHIBIT-WARNING is non-nil, this prevents display of a message | 15624 | If INHIBIT-WARNING is non-nil, do not display a warning message when |
| 15616 | in case there is no help. | 15625 | there is no help property at point. |
| 15617 | 15626 | ||
| 15618 | If DESCRIBE-BUTTON in non-nil (interactively, the prefix arg), and | 15627 | If DESCRIBE-BUTTON in non-nil (interactively, the prefix arg), and |
| 15619 | there's a button/widget at point, pop a buffer describing that | 15628 | there's a button/widget at point, pop up a buffer describing that |
| 15620 | button/widget instead. | 15629 | button/widget instead. |
| 15621 | 15630 | ||
| 15622 | (fn &optional INHIBIT-WARNING DESCRIBE-BUTTON)" t) | 15631 | (fn &optional INHIBIT-WARNING DESCRIBE-BUTTON)" t) |
| @@ -22196,15 +22205,18 @@ values: | |||
| 22196 | used to decode and encode the data which the process reads and | 22205 | used to decode and encode the data which the process reads and |
| 22197 | writes. See `make-network-process' for details. | 22206 | writes. See `make-network-process' for details. |
| 22198 | 22207 | ||
| 22199 | :return-list specifies this function's return value. | 22208 | :return-list controls the form of the function's return value. |
| 22200 | If omitted or nil, return a process object. A non-nil means to | 22209 | If omitted or nil, return a process object. Anything else means to |
| 22201 | return (PROC . PROPS), where PROC is a process object and PROPS | 22210 | return (PROC . PROPS), where PROC is a process object, and PROPS is a |
| 22202 | is a plist of connection properties, with these keywords: | 22211 | plist of connection properties, which may include the following |
| 22212 | keywords: | ||
| 22203 | :greeting -- the greeting returned by HOST (a string), or nil. | 22213 | :greeting -- the greeting returned by HOST (a string), or nil. |
| 22204 | :capabilities -- a string representing HOST's capabilities, | 22214 | :capabilities -- a string representing HOST's capabilities, |
| 22205 | or nil if none could be found. | 22215 | or nil if none could be found. |
| 22206 | :type -- the resulting connection type; `plain' (unencrypted) | 22216 | :type -- the resulting connection type; `plain' (unencrypted) |
| 22207 | or `tls' (TLS-encrypted). | 22217 | or `tls' (TLS-encrypted). |
| 22218 | :error -- A string describing any error when attempting | ||
| 22219 | to negotiate STARTTLS. | ||
| 22208 | 22220 | ||
| 22209 | :end-of-command specifies a regexp matching the end of a command. | 22221 | :end-of-command specifies a regexp matching the end of a command. |
| 22210 | 22222 | ||
| @@ -22243,8 +22255,9 @@ writes. See `make-network-process' for details. | |||
| 22243 | :use-starttls-if-possible is a boolean that says to do opportunistic | 22255 | :use-starttls-if-possible is a boolean that says to do opportunistic |
| 22244 | STARTTLS upgrades even if Emacs doesn't have built-in TLS functionality. | 22256 | STARTTLS upgrades even if Emacs doesn't have built-in TLS functionality. |
| 22245 | 22257 | ||
| 22246 | :warn-unless-encrypted is a boolean which, if :return-list is | 22258 | :warn-unless-encrypted, if non-nil, warn the user if the connection |
| 22247 | non-nil, is used warn the user if the connection isn't encrypted. | 22259 | isn't encrypted (i.e. STARTTLS failed). Additionally, setting |
| 22260 | :return-list non-nil allows capturing any error response. | ||
| 22248 | 22261 | ||
| 22249 | :nogreeting is a boolean that can be used to inhibit waiting for | 22262 | :nogreeting is a boolean that can be used to inhibit waiting for |
| 22250 | a greeting from the server. | 22263 | a greeting from the server. |