From: Richard M. Stallman Date: Sat, 28 Feb 1998 19:00:34 +0000 (+0000) Subject: (read-quoted-char): Doc fix. X-Git-Tag: emacs-20.3~2066 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=569b03f2437c4aeef08e2b2b22493cafaae71fe9;p=emacs.git (read-quoted-char): Doc fix. --- diff --git a/lisp/subr.el b/lisp/subr.el index 90588a90046..7f763633dfc 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -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)