1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-21 06:55:39 +00:00

Merge from origin/emacs-30

c29c54410e * lisp/subr.el (read-number): Document collision with 'fo...
68337106f9 ; Fix TRAMP manual indexing
8f6ff233ef ; TRAMP manual spelling and grammar fixes
This commit is contained in:
Michael Albinus 2024-11-15 15:10:34 +01:00
commit df4bc525a8
2 changed files with 170 additions and 166 deletions

File diff suppressed because it is too large Load Diff

View File

@ -3424,9 +3424,10 @@ with Emacs. Do not call it directly in your own packages."
(defun read-number (prompt &optional default hist)
"Read a numeric value in the minibuffer, prompting with PROMPT.
DEFAULT specifies a default value to return if the user just types RET.
The value of DEFAULT is inserted into PROMPT.
HIST specifies a history list variable. See `read-from-minibuffer'
for details of the HIST argument.
For historical reasons, the value of DEFAULT is always inserted into
PROMPT, so it's recommended to use `format' instead of `format-prompt'
to generate PROMPT. HIST specifies a history list variable. See
`read-from-minibuffer' for details of the HIST argument.
This function is used by the `interactive' code letter \"n\"."
(let ((n nil)