From 67613d3160cd9e87daabfb036828ceb5325d889b Mon Sep 17 00:00:00 2001 From: Teodor Zlatanov Date: Sun, 13 Mar 2011 20:50:07 +0000 Subject: auth-source.el (auth-source-netrc-create): Show the default in the prompt when prompting for token creation. --- lisp/gnus/ChangeLog | 5 +++++ lisp/gnus/auth-source.el | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index ec12faada9..af0bd1519c 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,8 @@ +2011-03-13 Teodor Zlatanov + + * auth-source.el (auth-source-netrc-create): Show the default in the + prompt when prompting for token creation. + 2011-03-12 Teodor Zlatanov * auth-source.el (auth-source-format-prompt): Always convert the value diff --git a/lisp/gnus/auth-source.el b/lisp/gnus/auth-source.el index 0fb153ad09..52f2b92e93 100644 --- a/lisp/gnus/auth-source.el +++ b/lisp/gnus/auth-source.el @@ -1100,6 +1100,10 @@ See `auth-source-search' for details on SPEC." ;; special case prompt for passwords (read-passwd prompt)) ((null data) + (when default + (setq + prompt + (concat prompt (format "(default %s) " default)))) (read-string prompt nil nil default)) (t (or data default)))) -- cgit v1.2.3