Mercurial > emacs
comparison lisp/mail/rmail.el @ 7037:c205795eecc6
Cosmetic changes.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Sat, 23 Apr 1994 02:30:17 +0000 |
parents | dda4552eb031 |
children | 1733b6c1e30b |
comparison
equal
deleted
inserted
replaced
7036:b5a68d0dd099 | 7037:c205795eecc6 |
---|---|
171 " [0-9][0-9]\\([0-9]*\\) *" | 171 " [0-9][0-9]\\([0-9]*\\) *" |
172 | 172 |
173 ;; On some systems the time zone can appear after the year, too. | 173 ;; On some systems the time zone can appear after the year, too. |
174 time-zone-regexp | 174 time-zone-regexp |
175 | 175 |
176 ;; I'm not sure what this is. | 176 ;; Old uucp cruft. |
177 "\\(remote from [^\n]*\\)?" | 177 "\\(remote from .*\\)?" |
178 | 178 |
179 "\n")) | 179 "\n")) |
180 nil) | 180 nil) |
181 | 181 |
182 ;; Perform BODY in the summary buffer | 182 ;; Perform BODY in the summary buffer |
1684 (setq buffer-undo-list nil)) | 1684 (setq buffer-undo-list nil)) |
1685 (rmail-maybe-set-message-counters) | 1685 (rmail-maybe-set-message-counters) |
1686 (let* ((omax (- (buffer-size) (point-max))) | 1686 (let* ((omax (- (buffer-size) (point-max))) |
1687 (omin (- (buffer-size) (point-min))) | 1687 (omin (- (buffer-size) (point-min))) |
1688 (opoint (if (and (> rmail-current-message 0) | 1688 (opoint (if (and (> rmail-current-message 0) |
1689 (= ?D (aref rmail-deleted-vector rmail-current-message))) | 1689 (rmail-message-deleted-p rmail-current-message)) |
1690 0 (- (point) (point-min)))) | 1690 0 |
1691 (- (point) (point-min)))) | |
1691 (messages-head (cons (aref rmail-message-vector 0) nil)) | 1692 (messages-head (cons (aref rmail-message-vector 0) nil)) |
1692 (messages-tail messages-head) | 1693 (messages-tail messages-head) |
1693 ;; Don't make any undo records for the expunging. | 1694 ;; Don't make any undo records for the expunging. |
1694 (buffer-undo-list t) | 1695 (buffer-undo-list t) |
1695 (win)) | 1696 (win)) |