Changeset 4161 for trunk/lisp/mail/rmail.el
- Timestamp:
- 09/09/06 16:30:10 (2 years ago)
- Files:
-
- trunk/lisp/mail/rmail.el (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/mail/rmail.el
r4091 r4161 1678 1678 rmail-use-spam-filter 1679 1679 (> rsf-number-of-spam 0)) 1680 (if (= 1 new-messages) 1681 ", and found to be a spam message" 1682 (if (> rsf-number-of-spam 1) 1683 (format ", %d of which found to be spam messages" 1684 rsf-number-of-spam) 1685 ", one of which found to be a spam message")) 1680 (cond ((= 1 new-messages) 1681 ", and appears to be spam") 1682 ((= rsf-number-of-spam new-messages) 1683 ", and all appear to be spam") 1684 ((> rsf-number-of-spam 1) 1685 (format ", and %d appear to be spam" 1686 rsf-number-of-spam)) 1687 (t 1688 ", and 1 appears to be spam")) 1686 1689 "")) 1687 1690 (if (and (featurep 'rmail-spam-filter) … … 1901 1904 (let ((count 0) start 1902 1905 (case-fold-search nil) 1906 (buffer-undo-list t) 1903 1907 (invalid-input-resync 1904 1908 (function (lambda () … … 2174 2178 ((eolp) (delete-char 1)) 2175 2179 (t (error "Cannot convert to babyl format"))))) 2180 (setq buffer-undo-list nil) 2176 2181 count)) 2177 2182
