diff options
| author | Stefan Monnier | 2017-10-12 10:20:23 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2017-10-12 10:20:23 -0400 |
| commit | 36375d35aa06e84865cce678559ddfa8f79a9775 (patch) | |
| tree | c8d2ce60ba34421e50884b85889fd05797fb54b5 | |
| parent | 57b22f490dfb32d3b298c83716cf8f7d7d2c6e25 (diff) | |
| download | emacs-36375d35aa06e84865cce678559ddfa8f79a9775.tar.gz emacs-36375d35aa06e84865cce678559ddfa8f79a9775.zip | |
* lisp/gnus/message.el (message-check-recipients): Bogus adr is a user error.
| -rw-r--r-- | lisp/gnus/message.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 7dc9dd7b13c..cc914643779 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el | |||
| @@ -4389,7 +4389,7 @@ This function could be useful in `message-setup-hook'." | |||
| 4389 | (if (string= encoded bog) | 4389 | (if (string= encoded bog) |
| 4390 | "" | 4390 | "" |
| 4391 | (format " (%s)" encoded)))))) | 4391 | (format " (%s)" encoded)))))) |
| 4392 | (error "Bogus address")))))))) | 4392 | (user-error "Bogus address")))))))) |
| 4393 | 4393 | ||
| 4394 | (custom-add-option 'message-setup-hook 'message-check-recipients) | 4394 | (custom-add-option 'message-setup-hook 'message-check-recipients) |
| 4395 | 4395 | ||