aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
authorKatsumi Yamaoka2013-08-19 05:10:33 +0000
committerKatsumi Yamaoka2013-08-19 05:10:33 +0000
commitdab3a8d5fe0da1fafc0143e2c780e3c6e020b705 (patch)
tree6ca125fefdb2a0e561f19e14687afce7c72bc1b3 /doc/misc
parentdeb31e75f8042f6f15d78e6695e849991d2b9e05 (diff)
downloademacs-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/misc')
-rw-r--r--doc/misc/ChangeLog6
-rw-r--r--doc/misc/emacs-mime.texi20
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 @@
12013-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
12013-08-13 Glenn Morris <rgm@gnu.org> 72013-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
872Prioritize coding systems to use for outgoing messages. The default 872Prioritize coding systems to use for outgoing messages. The default
873is @code{nil}, which means to use the defaults in Emacs, but is 873is @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
875running Emacs in the Japanese language environment. It is a list of 875language environment. It is a list of coding system symbols (aliases of
876coding system symbols (aliases of coding systems are also allowed, use 876coding 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 877make sure you are specifying correct coding system names). For example,
878coding system names). For example, if you have configured Emacs 878if you have configured Emacs to prefer UTF-8, but wish that outgoing
879to prefer UTF-8, but wish that outgoing messages should be sent in 879messages should be sent in ISO-8859-1 if possible, you can set this
880ISO-8859-1 if possible, you can set this variable to 880variable 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 881per-message basis by using the @code{charset} @acronym{MML} tag
882basis by using the @code{charset} @acronym{MML} tag (@pxref{MML Definition}). 882(@pxref{MML Definition}).
883 883
884As different hierarchies prefer different charsets, you may want to set 884As 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))))