User: aidan
Date: 06/04/16 19:09:31
Modified: xemacs/lisp cmdloop.el
Log:
cmdloop.el typo fix, following my last change to it: "Any input that not a
digit" -> "Any input that is not a digit".
Revision Changes Path
1.21 +2 -2 XEmacs/xemacs/lisp/cmdloop.el
Index: cmdloop.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/cmdloop.el,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -p -r1.20 -r1.21
--- cmdloop.el 2006/04/15 14:44:34 1.20
+++ cmdloop.el 2006/04/16 17:09:30 1.21
@@ -548,8 +548,8 @@ Legitimate radix values are 8, 10 and 16
Also, if the first character read is a digit of base (the value of)
`read-quoted-char-radix', we read as many of such digits as are
typed and return a character with the corresponding Unicode code
-point. Any input that not a digit (in the base used) terminates the
-sequence. If the terminator is RET, it is discarded; any other
+point. Any input that is not a digit (in the base used) 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.