]> git.eshelyaron.com Git - emacs.git/commitdiff
(rmail-decode-babyl-format): Avoid locking when decoding.
authorRichard M. Stallman <rms@gnu.org>
Sun, 31 Jan 1999 04:35:56 +0000 (04:35 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 31 Jan 1999 04:35:56 +0000 (04:35 +0000)
lisp/mail/rmail.el

index 03be8dce49f080cc5afc34dee5c33caf75217907..6b9ea1b019d6f2c5c2803181dfa105d9088983f8 100644 (file)
@@ -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)