diff options
| -rw-r--r-- | lisp/language/english.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/language/english.el b/lisp/language/english.el index b0a03a1028c..0fcdaa73858 100644 --- a/lisp/language/english.el +++ b/lisp/language/english.el | |||
| @@ -32,9 +32,10 @@ | |||
| 32 | 32 | ||
| 33 | (defun setup-english-environment () | 33 | (defun setup-english-environment () |
| 34 | "Reset multilingual environment of Emacs to the default status. | 34 | "Reset multilingual environment of Emacs to the default status. |
| 35 | The default status is as follows. | 35 | This function is called by all the `setup-function's for |
| 36 | the various supported language environments. | ||
| 36 | 37 | ||
| 37 | The default value of enable-multibyte-characters is t. | 38 | The default status is as follows: |
| 38 | 39 | ||
| 39 | The default value of buffer-file-coding-system is nil. | 40 | The default value of buffer-file-coding-system is nil. |
| 40 | The coding system for terminal output is nil. | 41 | The coding system for terminal output is nil. |
| @@ -57,7 +58,8 @@ The default status is as follows. | |||
| 57 | coding-category-binarry no-conversion | 58 | coding-category-binarry no-conversion |
| 58 | " | 59 | " |
| 59 | (interactive) | 60 | (interactive) |
| 60 | (setq-default enable-multibyte-characters t) | 61 | ;; This function formerly set default-enable-multibyte-characters to t, |
| 62 | ;; but that is incorrect. It should not alter the unibyte/multibyte choice. | ||
| 61 | 63 | ||
| 62 | (setq coding-category-iso-7-tight 'iso-2022-jp | 64 | (setq coding-category-iso-7-tight 'iso-2022-jp |
| 63 | coding-category-iso-7 'iso-2022-7bit | 65 | coding-category-iso-7 'iso-2022-7bit |