diff options
| author | Kenichi Handa | 2003-04-28 09:16:19 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2003-04-28 09:16:19 +0000 |
| commit | 370bd9cfdbc073ee4806af4da2b76a8cc8d90bfb (patch) | |
| tree | ebdd3cc9f62cb35377a57408e71819aaf4fe8aff | |
| parent | 1b7a835ba34d6afe89f7df2ded6fce3f3d244415 (diff) | |
| download | emacs-370bd9cfdbc073ee4806af4da2b76a8cc8d90bfb.tar.gz emacs-370bd9cfdbc073ee4806af4da2b76a8cc8d90bfb.zip | |
(reset-language-environment): Raise the priority of mule-utf-8,
mule-utf-16-be-with-signature and mule-utf-16-le.-with-signature.
| -rw-r--r-- | lisp/international/mule-cmds.el | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el index f165bf4c236..2261bcb9d56 100644 --- a/lisp/international/mule-cmds.el +++ b/lisp/international/mule-cmds.el | |||
| @@ -1585,8 +1585,11 @@ The default status is as follows: | |||
| 1585 | bound to each category are as follows | 1585 | bound to each category are as follows |
| 1586 | coding category coding system | 1586 | coding category coding system |
| 1587 | -------------------------------------------------- | 1587 | -------------------------------------------------- |
| 1588 | coding-category-iso-8-2 iso-latin-1 | ||
| 1589 | coding-category-iso-8-1 iso-latin-1 | 1588 | coding-category-iso-8-1 iso-latin-1 |
| 1589 | coding-category-iso-8-2 iso-latin-1 | ||
| 1590 | coding-category-utf-8 mule-utf-8 | ||
| 1591 | coding-category-utf-16-be mule-utf-16-be-with-signature | ||
| 1592 | coding-category-utf-16-le mule-utf-16-le-with-signature | ||
| 1590 | coding-category-iso-7-tight iso-2022-jp | 1593 | coding-category-iso-7-tight iso-2022-jp |
| 1591 | coding-category-iso-7 iso-2022-7bit | 1594 | coding-category-iso-7 iso-2022-7bit |
| 1592 | coding-category-iso-7-else iso-2022-7bit-lock | 1595 | coding-category-iso-7-else iso-2022-7bit-lock |
| @@ -1596,10 +1599,7 @@ The default status is as follows: | |||
| 1596 | coding-category-sjis japanese-shift-jis | 1599 | coding-category-sjis japanese-shift-jis |
| 1597 | coding-category-big5 chinese-big5 | 1600 | coding-category-big5 chinese-big5 |
| 1598 | coding-category-ccl nil | 1601 | coding-category-ccl nil |
| 1599 | coding-category-binary no-conversion | 1602 | coding-category-binary no-conversion" |
| 1600 | coding-category-utf-16-be nil | ||
| 1601 | coding-category-utf-16-le nil | ||
| 1602 | coding-category-utf-8 mule-utf-8" | ||
| 1603 | (interactive) | 1603 | (interactive) |
| 1604 | ;; This function formerly set default-enable-multibyte-characters to t, | 1604 | ;; This function formerly set default-enable-multibyte-characters to t, |
| 1605 | ;; but that is incorrect. It should not alter the unibyte/multibyte choice. | 1605 | ;; but that is incorrect. It should not alter the unibyte/multibyte choice. |
| @@ -1614,8 +1614,8 @@ The default status is as follows: | |||
| 1614 | coding-category-raw-text 'raw-text | 1614 | coding-category-raw-text 'raw-text |
| 1615 | coding-category-sjis 'japanese-shift-jis | 1615 | coding-category-sjis 'japanese-shift-jis |
| 1616 | coding-category-big5 'chinese-big5 | 1616 | coding-category-big5 'chinese-big5 |
| 1617 | coding-category-utf-16-be nil | 1617 | coding-category-utf-16-be 'mule-utf-16-be-with-signature |
| 1618 | coding-category-utf-16-le nil | 1618 | coding-category-utf-16-le 'mule-utf-16-le-with-signature |
| 1619 | coding-category-utf-8 'mule-utf-8 | 1619 | coding-category-utf-8 'mule-utf-8 |
| 1620 | coding-category-ccl nil | 1620 | coding-category-ccl nil |
| 1621 | coding-category-binary 'no-conversion) | 1621 | coding-category-binary 'no-conversion) |
| @@ -1623,6 +1623,9 @@ The default status is as follows: | |||
| 1623 | (set-coding-priority | 1623 | (set-coding-priority |
| 1624 | '(coding-category-iso-8-1 | 1624 | '(coding-category-iso-8-1 |
| 1625 | coding-category-iso-8-2 | 1625 | coding-category-iso-8-2 |
| 1626 | coding-category-utf-8 | ||
| 1627 | coding-category-utf-16-be | ||
| 1628 | coding-category-utf-16-le | ||
| 1626 | coding-category-iso-7-tight | 1629 | coding-category-iso-7-tight |
| 1627 | coding-category-iso-7 | 1630 | coding-category-iso-7 |
| 1628 | coding-category-iso-7-else | 1631 | coding-category-iso-7-else |
| @@ -1632,10 +1635,7 @@ The default status is as follows: | |||
| 1632 | coding-category-sjis | 1635 | coding-category-sjis |
| 1633 | coding-category-big5 | 1636 | coding-category-big5 |
| 1634 | coding-category-ccl | 1637 | coding-category-ccl |
| 1635 | coding-category-binary | 1638 | coding-category-binary)) |
| 1636 | coding-category-utf-16-be | ||
| 1637 | coding-category-utf-16-le | ||
| 1638 | coding-category-utf-8)) | ||
| 1639 | 1639 | ||
| 1640 | (update-coding-systems-internal) | 1640 | (update-coding-systems-internal) |
| 1641 | 1641 | ||