diff lisp/textmodes/artist.el @ 63800:b9819eae04f1

(artist-text-overwrite) (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
author Richard M. Stallman <rms@gnu.org>
date Mon, 27 Jun 2005 21:57:00 +0000
parents 0bedd71fb49f
children c51c70065bb1 bb71c6cf2009
line wrap: on
line diff
--- a/lisp/textmodes/artist.el	Mon Jun 27 21:46:17 2005 +0000
+++ b/lisp/textmodes/artist.el	Mon Jun 27 21:57:00 2005 +0000
@@ -2875,7 +2875,7 @@
 
 (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 @@
 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 @@
 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)))