Mercurial > emacs
changeset 24231:1100d4e5201b
(rmail-decode-babyl-format): Avoid locking when decoding.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 31 Jan 1999 04:35:56 +0000 |
parents | ee835eec7607 |
children | 446e5ef3f423 |
files | lisp/mail/rmail.el |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mail/rmail.el Sat Jan 30 23:45:54 1999 +0000 +++ b/lisp/mail/rmail.el Sun Jan 31 04:35:56 1999 +0000 @@ -659,6 +659,7 @@ (setq coding-system (detect-coding-region from to t))) (unless (memq coding-system '(undecided undecided-unix)) + (set-buffer-modified-p t) ; avoid locking when decoding (decode-coding-region from to coding-system) (setq coding-system last-coding-system-used)) (set-buffer-modified-p modifiedp)