diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-06-27 21:57:00 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-06-27 21:57:00 +0000 |
commit | e327a62daee5c0d8c509d02d8c191d4a33fcb594 (patch) | |
tree | e2bf920b0468db919633590ecb3d0e87c3999080 /lisp/textmodes | |
parent | b61bfa4dc03331ddc4a0eb26831a6bfe2cba72fe (diff) | |
download | emacs-e327a62daee5c0d8c509d02d8c191d4a33fcb594.tar.gz |
(artist-text-overwrite)
(artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/artist.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/textmodes/artist.el b/lisp/textmodes/artist.el index 2d40d6da026..1fe3c9dcbfe 100644 --- a/lisp/textmodes/artist.el +++ b/lisp/textmodes/artist.el @@ -2875,7 +2875,7 @@ Returns a list of strings." (defun artist-figlet-get-extra-args () "Read any extra arguments for figlet." - (let ((extra-args (read-input "Extra args to figlet: "))) + (let ((extra-args (read-string "Extra args to figlet: "))) (if (string= extra-args "") nil extra-args))) @@ -2916,7 +2916,7 @@ This is done by calling the function specified by `artist-text-renderer', which must return a list of strings, to be inserted in the buffer. Text already in the buffer ``shines thru'' blanks in the rendered text." - (let* ((input-text (read-input "Type text to render: ")) + (let* ((input-text (read-string "Type text to render: ")) (rendered-text (artist-funcall artist-text-renderer input-text))) (artist-text-insert-see-thru x y rendered-text))) @@ -2927,7 +2927,7 @@ This is done by calling the function specified by `artist-text-renderer', which must return a list of strings, to be inserted in the buffer. Blanks in the rendered text overwrites any text in the buffer." - (let* ((input-text (read-input "Type text to render: ")) + (let* ((input-text (read-string "Type text to render: ")) (rendered-text (artist-funcall artist-text-renderer input-text))) (artist-text-insert-overwrite x y rendered-text))) |