diff options
author | Glenn Morris <rgm@gnu.org> | 2011-05-25 19:57:08 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-05-25 19:57:08 -0700 |
commit | e4245494bac8d6305d408772c1fa99b28b36612d (patch) | |
tree | e1e62a8826fce14035b8a4e15f51cdf24677ad0d /lisp | |
parent | d0ff0c7d7a53f17af48b2ced1bbcabed003b9307 (diff) | |
download | emacs-e4245494bac8d6305d408772c1fa99b28b36612d.tar.gz emacs-e4245494bac8d6305d408772c1fa99b28b36612d.tar.bz2 emacs-e4245494bac8d6305d408772c1fa99b28b36612d.zip |
Adjust prompt in previous emacsbug.el change.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mail/emacsbug.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el index 2cd93cbce68..7d39edd39cd 100644 --- a/lisp/mail/emacsbug.el +++ b/lisp/mail/emacsbug.el @@ -355,9 +355,8 @@ usually do not have translators to read other languages for them.\n\n") (string-match (format "\\<%s@%s\\>" (user-login-name) (system-name)) from)) - (yes-or-no-p - (format "From address (`%s') looks suspicious. Edit it? " - from)) + (not (yes-or-no-p + (format "Is `%s' really your email address? " from))) (error "Please edit the From address and try again")))) ;; The last warning for novice users. (unless (or report-emacs-bug-no-confirmation |