diff options
| -rw-r--r-- | lisp/international/mule.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 5477402a9ba..bec20a66df5 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el | |||
| @@ -1162,7 +1162,8 @@ just set the variable `buffer-file-coding-system' directly." | |||
| 1162 | ;; `set-buffer-major-mode-hook' take care of setting the table. | 1162 | ;; `set-buffer-major-mode-hook' take care of setting the table. |
| 1163 | (if (fboundp 'ucs-set-table-for-input) ; don't lose when building | 1163 | (if (fboundp 'ucs-set-table-for-input) ; don't lose when building |
| 1164 | (ucs-set-table-for-input)) | 1164 | (ucs-set-table-for-input)) |
| 1165 | (set-buffer-modified-p t) | 1165 | (unless nomodify |
| 1166 | (set-buffer-modified-p t)) | ||
| 1166 | (force-mode-line-update)) | 1167 | (force-mode-line-update)) |
| 1167 | 1168 | ||
| 1168 | (defun revert-buffer-with-coding-system (coding-system &optional force) | 1169 | (defun revert-buffer-with-coding-system (coding-system &optional force) |