From: Richard M. Stallman Date: Mon, 27 Jun 2005 21:57:00 +0000 (+0000) Subject: (artist-text-overwrite) X-Git-Tag: emacs-pretest-22.0.90~8614 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e327a62daee5c0d8c509d02d8c191d4a33fcb594;p=emacs.git (artist-text-overwrite) (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string. --- 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)))