kp-0 to ascii equivalents (Bug#4325).
+2009-09-13 Per Starbäck <starback@ling.uu.se> (tiny change)
+
+ * textmodes/ispell.el (ispell-command-loop): Convert keys such as
+ kp-0 to ascii equivalents (Bug#4325).
+
2009-09-13 Chong Yidong <cyd@stupidchicken.com>
* progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
;; ignore mouse events occuring in the same frame.
(while (and input-valid (not (characterp char)))
(setq char (read-event))
+ ;; Convert kp-0 to ?0, etc.
+ (when (symbolp char)
+ (setq char (get char 'ascii-character)))
(setq input-valid
(or (characterp char)
(and (mouse-event-p char)