diff options
| author | Karl Heuer | 1996-01-25 01:02:59 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-01-25 01:02:59 +0000 |
| commit | f965c3d7f14a4ce907c4c851d232cc9caf24204c (patch) | |
| tree | 51f04f178c4e5ea1f4b4c26ce3f18f01895b22c4 | |
| parent | a59d908439acbea0e64013579edc6f0f0f50a895 (diff) | |
| download | emacs-f965c3d7f14a4ce907c4c851d232cc9caf24204c.tar.gz emacs-f965c3d7f14a4ce907c4c851d232cc9caf24204c.zip | |
(mh-get-new-mail): Delete format call inside message.
| -rw-r--r-- | lisp/mail/mh-e.el | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/lisp/mail/mh-e.el b/lisp/mail/mh-e.el index d75e6a9721e..134d5d87cb5 100644 --- a/lisp/mail/mh-e.el +++ b/lisp/mail/mh-e.el | |||
| @@ -60,7 +60,7 @@ | |||
| 60 | ;; Modified by James Larus, BBN, July 1984 and UCB, 1984 & 1985. | 60 | ;; Modified by James Larus, BBN, July 1984 and UCB, 1984 & 1985. |
| 61 | ;; Rewritten for GNU Emacs, James Larus 1985. larus@ginger.berkeley.edu | 61 | ;; Rewritten for GNU Emacs, James Larus 1985. larus@ginger.berkeley.edu |
| 62 | ;; Modified by Stephen Gildea 1988. gildea@lcs.mit.edu | 62 | ;; Modified by Stephen Gildea 1988. gildea@lcs.mit.edu |
| 63 | (defconst mh-e-RCS-id "$Id: mh-e.el,v 1.10 1996/01/04 23:45:17 kwzh Exp erik $") | 63 | (defconst mh-e-RCS-id "$Id: mh-e.el,v 1.12 1996/01/20 02:47:33 erik Exp kwzh $") |
| 64 | 64 | ||
| 65 | ;;; Code: | 65 | ;;; Code: |
| 66 | 66 | ||
| @@ -865,9 +865,9 @@ The value of mh-folder-mode-hook is called when a new folder is set up." | |||
| 865 | (folder mh-current-folder) | 865 | (folder mh-current-folder) |
| 866 | (new-mail-p nil)) | 866 | (new-mail-p nil)) |
| 867 | (with-mh-folder-updating (t) | 867 | (with-mh-folder-updating (t) |
| 868 | (message (if maildrop-name | 868 | (if maildrop-name |
| 869 | (format "inc %s -file %s..." folder maildrop-name) | 869 | (message "inc %s -file %s..." folder maildrop-name) |
| 870 | (format "inc %s..." folder))) | 870 | (message "inc %s..." folder)) |
| 871 | (setq mh-next-direction 'forward) | 871 | (setq mh-next-direction 'forward) |
| 872 | (goto-char (point-max)) | 872 | (goto-char (point-max)) |
| 873 | (let ((start-of-inc (point))) | 873 | (let ((start-of-inc (point))) |
| @@ -880,10 +880,9 @@ The value of mh-folder-mode-hook is called when a new folder is set up." | |||
| 880 | "-truncate") | 880 | "-truncate") |
| 881 | (mh-exec-cmd-output mh-inc-prog nil | 881 | (mh-exec-cmd-output mh-inc-prog nil |
| 882 | "-width" (window-width))) | 882 | "-width" (window-width))) |
| 883 | (message | 883 | (if maildrop-name |
| 884 | (if maildrop-name | 884 | (message "inc %s -file %s...done" folder maildrop-name) |
| 885 | (format "inc %s -file %s...done" folder maildrop-name) | 885 | (message "inc %s...done" folder)) |
| 886 | (format "inc %s...done" folder))) | ||
| 887 | (goto-char start-of-inc) | 886 | (goto-char start-of-inc) |
| 888 | (cond ((save-excursion | 887 | (cond ((save-excursion |
| 889 | (re-search-forward "^inc: no mail" nil t)) | 888 | (re-search-forward "^inc: no mail" nil t)) |