diff options
| author | Kenichi Handa | 2001-01-25 11:48:59 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2001-01-25 11:48:59 +0000 |
| commit | 631f62fd3d3b0406fabe47dd7aad987f64694b92 (patch) | |
| tree | c98cf8353e689f8f4dd765df2bb5ee1245947396 | |
| parent | f8499efbd36df8ffcc57daecb47c70abc8fd0fda (diff) | |
| download | emacs-631f62fd3d3b0406fabe47dd7aad987f64694b92.tar.gz emacs-631f62fd3d3b0406fabe47dd7aad987f64694b92.zip | |
(reset-language-environment): Make
the priority of coding-category-utf-8 higher than
coding-category-binary.
| -rw-r--r-- | lisp/international/mule-cmds.el | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el index 0d81e8412fb..469068988f1 100644 --- a/lisp/international/mule-cmds.el +++ b/lisp/international/mule-cmds.el | |||
| @@ -1320,7 +1320,10 @@ The default status is as follows: | |||
| 1320 | coding-category-sjis japanese-shift-jis | 1320 | coding-category-sjis japanese-shift-jis |
| 1321 | coding-category-big5 chinese-big5 | 1321 | coding-category-big5 chinese-big5 |
| 1322 | coding-category-ccl nil | 1322 | coding-category-ccl nil |
| 1323 | coding-category-utf-8 'mule-utf-8 | ||
| 1323 | coding-category-binary no-conversion | 1324 | coding-category-binary no-conversion |
| 1325 | coding-category-utf-16-be nil | ||
| 1326 | coding-category-utf-16-le nil | ||
| 1324 | " | 1327 | " |
| 1325 | (interactive) | 1328 | (interactive) |
| 1326 | ;; This function formerly set default-enable-multibyte-characters to t, | 1329 | ;; This function formerly set default-enable-multibyte-characters to t, |
| @@ -1336,11 +1339,12 @@ The default status is as follows: | |||
| 1336 | coding-category-raw-text 'raw-text | 1339 | coding-category-raw-text 'raw-text |
| 1337 | coding-category-sjis 'japanese-shift-jis | 1340 | coding-category-sjis 'japanese-shift-jis |
| 1338 | coding-category-big5 'chinese-big5 | 1341 | coding-category-big5 'chinese-big5 |
| 1339 | coding-category-utf-8 nil | ||
| 1340 | coding-category-utf-16-be nil | ||
| 1341 | coding-category-utf-16-le nil | ||
| 1342 | coding-category-ccl nil | 1342 | coding-category-ccl nil |
| 1343 | coding-category-binary 'no-conversion) | 1343 | coding-category-utf-8 'mule-utf-8 |
| 1344 | coding-category-binary 'no-conversion | ||
| 1345 | coding-category-utf-16-be nil | ||
| 1346 | coding-category-utf-16-le nil) | ||
| 1347 | |||
| 1344 | 1348 | ||
| 1345 | (set-coding-priority | 1349 | (set-coding-priority |
| 1346 | '(coding-category-iso-8-1 | 1350 | '(coding-category-iso-8-1 |
| @@ -1353,11 +1357,11 @@ The default status is as follows: | |||
| 1353 | coding-category-raw-text | 1357 | coding-category-raw-text |
| 1354 | coding-category-sjis | 1358 | coding-category-sjis |
| 1355 | coding-category-big5 | 1359 | coding-category-big5 |
| 1360 | coding-category-utf-8 | ||
| 1356 | coding-category-ccl | 1361 | coding-category-ccl |
| 1357 | coding-category-binary | 1362 | coding-category-binary |
| 1358 | coding-category-utf-16-be | 1363 | coding-category-utf-16-be |
| 1359 | coding-category-utf-16-le | 1364 | coding-category-utf-16-le)) |
| 1360 | coding-category-utf-8)) | ||
| 1361 | 1365 | ||
| 1362 | (update-coding-systems-internal) | 1366 | (update-coding-systems-internal) |
| 1363 | 1367 | ||