]> git.eshelyaron.com Git - emacs.git/commitdiff
auth-source.el (auth-source-netrc-create): Use `read-char' with no argument that...
authorKatsumi Yamaoka <yamaoka@jpl.org>
Thu, 24 Feb 2011 06:32:33 +0000 (06:32 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Thu, 24 Feb 2011 06:32:33 +0000 (06:32 +0000)
lisp/gnus/ChangeLog
lisp/gnus/auth-source.el

index 45f0d68023ddbca6fa8b449bf81cf994f4fda8ed..9dd315782ff777f1d2139f08bbb2547d9bba22ea 100644 (file)
@@ -1,3 +1,8 @@
+2011-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * auth-source.el (auth-source-netrc-create): Use `read-char' with no
+       argument that XEmacs doesn't support.
+
 2011-02-23  Julien Danjou  <julien@danjou.info>
 
        * gnus-art.el (article-make-date-line): Ignore errors if time is
index a7f626c3cd329fa3699746029f4c1631abf04113..63ec93dd760a877295c676e39a84c5b59793e154 100644 (file)
@@ -1031,7 +1031,8 @@ See `auth-source-search' for details on SPEC."
                             "(y)es/(n)o but use it/(e)dit line/(s)kip file"))
             done k)
         (while (not done)
-          (setq k (read-char prompt))
+         (message "%s" prompt)
+          (setq k (read-char))
           (case k
             (?y (setq done t))
             (?n (setq add ""