From bda2515e229281a69a0185a0ee8ad6b59b8cf4f6 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 31 Jan 1999 04:35:56 +0000 Subject: [PATCH] (rmail-decode-babyl-format): Avoid locking when decoding. --- lisp/mail/rmail.el | 1 + 1 file changed, 1 insertion(+) 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) -- 2.39.2