diff options
author | Pavel Janík <Pavel@Janik.cz> | 2001-07-15 17:42:53 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2001-07-15 17:42:53 +0000 |
commit | 715a2ca2fc1be26e8420f209c3440b90d687fec6 (patch) | |
tree | 8b174bcbda39e57f48ecfae086ef3526bc9bd13d /lisp/gnus/mail-source.el | |
parent | 5553563924453df2e3c5bf011bf5b7527172b2f6 (diff) | |
download | emacs-715a2ca2fc1be26e8420f209c3440b90d687fec6.tar.gz emacs-715a2ca2fc1be26e8420f209c3440b90d687fec6.tar.bz2 emacs-715a2ca2fc1be26e8420f209c3440b90d687fec6.zip |
Some fixes to follow coding conventions in files from Gnus.
Diffstat (limited to 'lisp/gnus/mail-source.el')
-rw-r--r-- | lisp/gnus/mail-source.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/mail-source.el b/lisp/gnus/mail-source.el index 8e7d6025695..a35e506ba54 100644 --- a/lisp/gnus/mail-source.el +++ b/lisp/gnus/mail-source.el @@ -444,7 +444,7 @@ Return the number of files that were found." (error (unless (yes-or-no-p (format "Mail source error (%s). Continue? " err)) - (error "Cannot get new mail.")) + (error "Cannot get new mail")) 0)))))))) (defun mail-source-make-complex-temp-name (prefix) @@ -756,7 +756,7 @@ If ARGS, PROMPT is used as an argument to `format'." This only works when `display-time' is enabled." (interactive "P") (if (not mail-source-primary-source) - (error "Need to set `mail-source-primary-source' to check for new mail.")) + (error "Need to set `mail-source-primary-source' to check for new mail")) (let ((on (if (null arg) (not mail-source-report-new-mail) (> (prefix-numeric-value arg) 0)))) |