diff options
| author | Richard M. Stallman | 1998-04-26 00:13:36 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-04-26 00:13:36 +0000 |
| commit | ebada62d33cd3b74528316cc7cb983753246cedc (patch) | |
| tree | 10e2997efbf065af43389e3c216d107414bafc65 | |
| parent | adfea139b384bba3c1decd7f72725d11f00b9d17 (diff) | |
| download | emacs-ebada62d33cd3b74528316cc7cb983753246cedc.tar.gz emacs-ebada62d33cd3b74528316cc7cb983753246cedc.zip | |
(setup-english-environment): Don't set default-enable-multibyte-characters.
| -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 |