From: Richard M. Stallman Date: Sun, 31 Jan 1999 04:35:56 +0000 (+0000) Subject: (rmail-decode-babyl-format): Avoid locking when decoding. X-Git-Tag: emacs-20.4~718 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bda2515e229281a69a0185a0ee8ad6b59b8cf4f6;p=emacs.git (rmail-decode-babyl-format): Avoid locking when decoding. --- diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 03be8dce49f..6b9ea1b019d 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -659,6 +659,7 @@ Note: it means the file has no messages in it.\n\^_"))) (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)