# HG changeset patch # User Richard M. Stallman # Date 888692434 0 # Node ID 7111f9cf9392dafd4f6f54e7f071f155477583fc # Parent 66d807bdc5b4276835860e00790157c50ace9fa2 (read-quoted-char): Doc fix. diff -r 66d807bdc5b4 -r 7111f9cf9392 lisp/subr.el --- a/lisp/subr.el Sat Feb 28 01:53:53 1998 +0000 +++ b/lisp/subr.el Sat Feb 28 19:00:34 1998 +0000 @@ -711,11 +711,13 @@ "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)