diff options
author | Sean Whitton <spwhitton@spwhitton.name> | 2025-03-12 10:09:09 +0800 |
---|---|---|
committer | Sean Whitton <spwhitton@spwhitton.name> | 2025-03-12 10:09:09 +0800 |
commit | 99852fb867e4d7d2090cbb82ff12d86d2a6ed9cc (patch) | |
tree | 7d597de0644e89ee082f7d4c324a250d19cf4e88 /src/minibuf.c | |
parent | 85b147d32100d8da89366a19ab77f996fe011043 (diff) | |
parent | 894b0e3a2fe064690eecda546f3b577886638140 (diff) | |
download | emacs-99852fb867e4d7d2090cbb82ff12d86d2a6ed9cc.tar.gz emacs-99852fb867e4d7d2090cbb82ff12d86d2a6ed9cc.tar.bz2 emacs-99852fb867e4d7d2090cbb82ff12d86d2a6ed9cc.zip |
Merge from origin/emacs-30
894b0e3a2fe ; Adapt comment in tramp.el
cc87717fa07 Add keyword placeholder to tramp.el
7d0d61d8549 Rewrite ERT manual introduction
b2f124f2a88 ; cperl-mode.el: Don't misinterpret exec_fcn as keyword exec
59d1aac49df Document return values of the various read-* functions
Diffstat (limited to 'src/minibuf.c')
-rw-r--r-- | src/minibuf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index 720172a3aa4..b0d54bd51f0 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -1296,7 +1296,7 @@ barf_if_interaction_inhibited (void) DEFUN ("read-from-minibuffer", Fread_from_minibuffer, Sread_from_minibuffer, 1, 7, 0, - doc: /* Read a string from the minibuffer, prompting with string PROMPT. + doc: /* Read and return a string from the minibuffer, prompting with string PROMPT. The optional second arg INITIAL-CONTENTS is an obsolete alternative to DEFAULT-VALUE. It normally should be nil in new code, except when HIST is a cons. It is discussed in more detail below. @@ -1448,7 +1448,7 @@ inherits the current input method and the setting of } DEFUN ("read-command", Fread_command, Sread_command, 1, 2, 0, - doc: /* Read the name of a command and return as a symbol. + doc: /* Read the name of a command and return it as a symbol. Prompt with PROMPT. By default, return DEFAULT-VALUE or its first element if it is a list. If DEFAULT-VALUE is omitted or nil, and the user enters null input, return a symbol whose name is an empty string. */) |