aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/simple.el
diff options
context:
space:
mode:
authorJim Blandy <[email protected]>1992-08-29 02:14:58 +0000
committerJim Blandy <[email protected]>1992-08-29 02:14:58 +0000
commitbd3073920fe7bf841a155480e3a77a1030bacfa8 (patch)
tree820401de51455f41a5e7eb36b14cf46682738e79 /lisp/simple.el
parent5d305367662fbdf5f127794027673b8e1e65adf6 (diff)
*** empty log message ***
Diffstat (limited to 'lisp/simple.el')
-rw-r--r--lisp/simple.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index a70a7c5b24..69414a3cb1 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -691,7 +691,8 @@ Repeating \\[universal-argument] without digits or minus sign
(setq sign (- sign) factor nil)
;; (describe-arg value sign)
(setq key (read-key-sequence nil t)))
- (while (and (= (length key) 1)
+ (while (and (stringp key)
+ (= (length key) 1)
(not (string< key "0"))
(not (string< "9" key)))
(setq value (+ (* (if (numberp value) value 0) 10)