comparison lisp/cmdloop.el @ 3344:e9214c743a8b

[xemacs-hg @ 2006-04-16 17:09:30 by aidan] cmdloop.el typo fix, following my last change to it: "Any input that not a digit" -> "Any input that is not a digit".
author aidan
date Sun, 16 Apr 2006 17:09:30 +0000
parents 591c4e52c6d5
children 94903620d912
comparison
equal deleted inserted replaced
3343:29234c1a76c7 3344:e9214c743a8b
546 "Like `read-char', but do not allow quitting. 546 "Like `read-char', but do not allow quitting.
547 547
548 Also, if the first character read is a digit of base (the value of) 548 Also, if the first character read is a digit of base (the value of)
549 `read-quoted-char-radix', we read as many of such digits as are 549 `read-quoted-char-radix', we read as many of such digits as are
550 typed and return a character with the corresponding Unicode code 550 typed and return a character with the corresponding Unicode code
551 point. Any input that not a digit (in the base used) terminates the 551 point. Any input that is not a digit (in the base used) terminates
552 sequence. If the terminator is RET, it is discarded; any other 552 the sequence. If the terminator is RET, it is discarded; any other
553 terminator is used itself as input. 553 terminator is used itself as input.
554 554
555 The optional argument PROMPT specifies a string to use to prompt the user. 555 The optional argument PROMPT specifies a string to use to prompt the user.
556 The variable `read-quoted-char-radix' controls which radix to use 556 The variable `read-quoted-char-radix' controls which radix to use
557 for numeric input." 557 for numeric input."