emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/textmodes/artist.el


From: Richard M . Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/textmodes/artist.el
Date: Mon, 27 Jun 2005 17:57:00 -0400

Index: emacs/lisp/textmodes/artist.el
diff -c emacs/lisp/textmodes/artist.el:1.18 emacs/lisp/textmodes/artist.el:1.19
*** emacs/lisp/textmodes/artist.el:1.18 Thu Dec 30 23:37:15 2004
--- emacs/lisp/textmodes/artist.el      Mon Jun 27 21:57:00 2005
***************
*** 2875,2881 ****
  
  (defun artist-figlet-get-extra-args ()
    "Read any extra arguments for figlet."
!   (let ((extra-args (read-input "Extra args to figlet: ")))
      (if (string= extra-args "")
        nil
        extra-args)))
--- 2875,2881 ----
  
  (defun artist-figlet-get-extra-args ()
    "Read any extra arguments for figlet."
!   (let ((extra-args (read-string "Extra args to figlet: ")))
      (if (string= extra-args "")
        nil
        extra-args)))
***************
*** 2916,2922 ****
  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: "))
         (rendered-text (artist-funcall artist-text-renderer input-text)))
      (artist-text-insert-see-thru x y rendered-text)))
  
--- 2916,2922 ----
  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-string "Type text to render: "))
         (rendered-text (artist-funcall artist-text-renderer input-text)))
      (artist-text-insert-see-thru x y rendered-text)))
  
***************
*** 2927,2933 ****
  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: "))
         (rendered-text (artist-funcall artist-text-renderer input-text)))
      (artist-text-insert-overwrite x y rendered-text)))
  
--- 2927,2933 ----
  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-string "Type text to render: "))
         (rendered-text (artist-funcall artist-text-renderer input-text)))
      (artist-text-insert-overwrite x y rendered-text)))
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]