diff options
| author | Katsumi Yamaoka | 2013-08-19 05:10:33 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2013-08-19 05:10:33 +0000 |
| commit | dab3a8d5fe0da1fafc0143e2c780e3c6e020b705 (patch) | |
| tree | 6ca125fefdb2a0e561f19e14687afce7c72bc1b3 /doc | |
| parent | deb31e75f8042f6f15d78e6695e849991d2b9e05 (diff) | |
| download | emacs-dab3a8d5fe0da1fafc0143e2c780e3c6e020b705.tar.gz emacs-dab3a8d5fe0da1fafc0143e2c780e3c6e020b705.zip | |
Gnus: Exclude iso-2022-jp-2 and shift_jis from the default value set to mm-coding-system-priorities for Japanese users
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/misc/ChangeLog | 6 | ||||
| -rw-r--r-- | doc/misc/emacs-mime.texi | 20 |
2 files changed, 16 insertions, 10 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index d612c37fcb2..554580c769a 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2013-08-19 Katsumi Yamaoka <yamaoka@jpl.org> | ||
| 2 | |||
| 3 | * emacs-mime.texi (Encoding Customization): Exclude iso-2022-jp-2 and | ||
| 4 | shift_jis from the default value set to mm-coding-system-priorities for | ||
| 5 | Japanese users. | ||
| 6 | |||
| 1 | 2013-08-13 Glenn Morris <rgm@gnu.org> | 7 | 2013-08-13 Glenn Morris <rgm@gnu.org> |
| 2 | 8 | ||
| 3 | * reftex.texi (LaTeX xr Package, Options - Table of Contents) | 9 | * reftex.texi (LaTeX xr Package, Options - Table of Contents) |
diff --git a/doc/misc/emacs-mime.texi b/doc/misc/emacs-mime.texi index cbb78af9d59..2c0e929e532 100644 --- a/doc/misc/emacs-mime.texi +++ b/doc/misc/emacs-mime.texi | |||
| @@ -871,15 +871,15 @@ by using the @code{encoding} @acronym{MML} tag (@pxref{MML Definition}). | |||
| 871 | @vindex mm-coding-system-priorities | 871 | @vindex mm-coding-system-priorities |
| 872 | Prioritize coding systems to use for outgoing messages. The default | 872 | Prioritize coding systems to use for outgoing messages. The default |
| 873 | is @code{nil}, which means to use the defaults in Emacs, but is | 873 | is @code{nil}, which means to use the defaults in Emacs, but is |
| 874 | @code{(iso-8859-1 iso-2022-jp iso-2022-jp-2 shift_jis utf-8)} when | 874 | @code{(iso-8859-1 iso-2022-jp utf-8)} when running Emacs in the Japanese |
| 875 | running Emacs in the Japanese language environment. It is a list of | 875 | language environment. It is a list of coding system symbols (aliases of |
| 876 | coding system symbols (aliases of coding systems are also allowed, use | 876 | coding systems are also allowed, use @kbd{M-x describe-coding-system} to |
| 877 | @kbd{M-x describe-coding-system} to make sure you are specifying correct | 877 | make sure you are specifying correct coding system names). For example, |
| 878 | coding system names). For example, if you have configured Emacs | 878 | if you have configured Emacs to prefer UTF-8, but wish that outgoing |
| 879 | to prefer UTF-8, but wish that outgoing messages should be sent in | 879 | messages should be sent in ISO-8859-1 if possible, you can set this |
| 880 | ISO-8859-1 if possible, you can set this variable to | 880 | variable to @code{(iso-8859-1)}. You can override this setting on a |
| 881 | @code{(iso-8859-1)}. You can override this setting on a per-message | 881 | per-message basis by using the @code{charset} @acronym{MML} tag |
| 882 | basis by using the @code{charset} @acronym{MML} tag (@pxref{MML Definition}). | 882 | (@pxref{MML Definition}). |
| 883 | 883 | ||
| 884 | As different hierarchies prefer different charsets, you may want to set | 884 | As different hierarchies prefer different charsets, you may want to set |
| 885 | @code{mm-coding-system-priorities} according to the hierarchy in Gnus. | 885 | @code{mm-coding-system-priorities} according to the hierarchy in Gnus. |
| @@ -904,7 +904,7 @@ Here's an example: | |||
| 904 | (mm-coding-system-priorities '(iso-8859-15 iso-8859-1 utf-8))) | 904 | (mm-coding-system-priorities '(iso-8859-15 iso-8859-1 utf-8))) |
| 905 | ("^fj\\." ;; Japanese | 905 | ("^fj\\." ;; Japanese |
| 906 | (mm-coding-system-priorities | 906 | (mm-coding-system-priorities |
| 907 | '(iso-8859-1 iso-2022-jp iso-2022-jp-2 shift_jis utf-8))) | 907 | '(iso-8859-1 iso-2022-jp utf-8))) |
| 908 | ("^ru\\." ;; Cyrillic | 908 | ("^ru\\." ;; Cyrillic |
| 909 | (mm-coding-system-priorities | 909 | (mm-coding-system-priorities |
| 910 | '(koi8-r iso-8859-5 iso-8859-1 utf-8)))) | 910 | '(koi8-r iso-8859-5 iso-8859-1 utf-8)))) |