diff options
| author | Richard M. Stallman | 1999-01-31 04:35:56 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1999-01-31 04:35:56 +0000 |
| commit | bda2515e229281a69a0185a0ee8ad6b59b8cf4f6 (patch) | |
| tree | 5891969730b33ca551363c13a7ed3593fbc6d149 | |
| parent | e90c4fe62a6d7e68c5bd5b2d50cb37d7f6f1f3f7 (diff) | |
| download | emacs-bda2515e229281a69a0185a0ee8ad6b59b8cf4f6.tar.gz emacs-bda2515e229281a69a0185a0ee8ad6b59b8cf4f6.zip | |
(rmail-decode-babyl-format): Avoid locking when decoding.
| -rw-r--r-- | lisp/mail/rmail.el | 1 |
1 files changed, 1 insertions, 0 deletions
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\^_"))) | |||
| 659 | (setq coding-system (detect-coding-region from to t))) | 659 | (setq coding-system (detect-coding-region from to t))) |
| 660 | (unless (memq coding-system | 660 | (unless (memq coding-system |
| 661 | '(undecided undecided-unix)) | 661 | '(undecided undecided-unix)) |
| 662 | (set-buffer-modified-p t) ; avoid locking when decoding | ||
| 662 | (decode-coding-region from to coding-system) | 663 | (decode-coding-region from to coding-system) |
| 663 | (setq coding-system last-coding-system-used)) | 664 | (setq coding-system last-coding-system-used)) |
| 664 | (set-buffer-modified-p modifiedp) | 665 | (set-buffer-modified-p modifiedp) |