monnier pushed a commit to branch master
in repository elpa.
commit fe2451e0f81f31a2f56d35a6c126f70f83dc08da
Author: Teemu Likonen <[email protected]>
Date: Tue Aug 3 16:17:09 2010 +0000
Vaihdetaan näppäimenlukufunktiota read-char-exclusive -> read-key
---
wcheck-mode.el | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/wcheck-mode.el b/wcheck-mode.el
index f077925..5f721ea 100644
--- a/wcheck-mode.el
+++ b/wcheck-mode.el
@@ -1195,7 +1195,7 @@ SUGGESTIONS is a list of strings. Return user's choice
(string)."
minibuffer-prompt-properties)))
(set-window-buffer window (current-buffer))
(set-window-dedicated-p window t)
- (cond ((cdr (assq (read-char-exclusive prompt) alist)))
+ (cond ((cdr (assq (read-key prompt) alist)))
(t (message "Invalid character") nil)))))
(message "No suggestions")
nil))