* lisp/mail/unrmail.el (unrmail): Tweak previous change.
(for trailing whitespace in otherwise empty BABYL files).
This commit is contained in:
parent
a0db8d43d7
commit
b09a806e0f
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
2012-01-10 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* mail/unrmail.el (unrmail): Tweak previous change.
|
||||
|
||||
2012-01-09 Chong Yidong <cyd@gnu.org>
|
||||
|
||||
* custom.el (custom-safe-themes): Use SHA-256 for hashing.
|
||||
|
|
|
@ -66,11 +66,11 @@ For example, invoke `emacs -batch -f batch-unrmail RMAIL'."
|
|||
from to)
|
||||
(goto-char (point-min))
|
||||
(search-forward "\n\^_" nil t) ; Skip BABYL header.
|
||||
(if (= (setq from (point)) (point-max))
|
||||
(error "The input file contains no messages"))
|
||||
(setq from (point))
|
||||
(goto-char (point-max))
|
||||
(search-backward "\n\^_" from 'mv)
|
||||
(setq to (point))
|
||||
(if (= from (setq to (point)))
|
||||
(error "The input file contains no messages"))
|
||||
(unless (and coding-system
|
||||
(coding-system-p coding-system))
|
||||
(setq coding-system
|
||||
|
|
Loading…
Add table
Reference in a new issue