diff lisp/add-log.el @ 62458:2c228409c44d

Replace `read-input' by `read-string'.
author Juanma Barranquero <lekktu@gmail.com>
date Wed, 18 May 2005 10:17:18 +0000
parents 14a8632a734e
children b03135d4ca2a f042e7c0fe20
line wrap: on
line diff
--- a/lisp/add-log.el	Wed May 18 09:48:34 2005 +0000
+++ b/lisp/add-log.el	Wed May 18 10:17:18 2005 +0000
@@ -492,13 +492,13 @@
 
     (if whoami
 	(progn
-	  (setq full-name (read-input "Full name: " full-name))
+	  (setq full-name (read-string "Full name: " full-name))
 	  ;; Note that some sites have room and phone number fields in
 	  ;; full name which look silly when inserted.  Rather than do
 	  ;; anything about that here, let user give prefix argument so that
 	  ;; s/he can edit the full name field in prompter if s/he wants.
 	  (setq mailing-address
-		(read-input "Mailing address: " mailing-address))))
+		(read-string "Mailing address: " mailing-address))))
 
     (unless (equal file-name buffer-file-name)
       (if (or other-window (window-dedicated-p (selected-window)))