mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
(read-quoted-char): Doc fix.
This commit is contained in:
parent
f9f59935f3
commit
569b03f243
1 changed files with 4 additions and 2 deletions
|
|
@ -711,11 +711,13 @@ Legitimate radix values are 8, 10 and 16."
|
|||
"Like `read-char', but do not allow quitting.
|
||||
Also, if the first character read is an octal digit,
|
||||
we read any number of octal digits and return the
|
||||
soecified character code. Any nondigit terminates the sequence.
|
||||
specified character code. Any nondigit terminates the sequence.
|
||||
If the terminator is RET, it is discarded;
|
||||
any other terminator is used itself as input.
|
||||
|
||||
The optional argument PROMPT specifies a string to use to prompt the user."
|
||||
The optional argument PROMPT specifies a string to use to prompt the user.
|
||||
The variable `read-quoted-char-radix' controls which radix to use
|
||||
for numeric input."
|
||||
(let ((message-log-max nil) done (first t) (code 0) char)
|
||||
(while (not done)
|
||||
(let ((inhibit-quit first)
|
||||
|
|
|
|||
Loading…
Reference in a new issue