diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-05-18 10:17:18 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-05-18 10:17:18 +0000 |
commit | 3981e5b5f52b39554131132e5e3a428d8508f546 (patch) | |
tree | 5885a5b2ece5c94d20a4b52593bcc122ba309489 /lisp/textmodes/spell.el | |
parent | 9432a9de8f1bafad600e330095bd20f2a9113e34 (diff) | |
download | emacs-3981e5b5f52b39554131132e5e3a428d8508f546.tar.gz |
Replace `read-input' by `read-string'.
Diffstat (limited to 'lisp/textmodes/spell.el')
-rw-r--r-- | lisp/textmodes/spell.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/textmodes/spell.el b/lisp/textmodes/spell.el index c6289819c88..6afaae83703 100644 --- a/lisp/textmodes/spell.el +++ b/lisp/textmodes/spell.el @@ -128,9 +128,9 @@ for example, \"word\"." (forward-char 1) (delete-region (point-min) (point)) (setq newword - (read-input (concat "`" word - "' not recognized; edit a replacement: ") - word)) + (read-string (concat "`" word + "' not recognized; edit a replacement: ") + word)) (flush-lines (concat "^" (regexp-quote word) "$"))) (if (not (equal word newword)) (progn |