aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2003-12-03 08:25:05 +0000
committerKenichi Handa2003-12-03 08:25:05 +0000
commit1e056d48706ea8547085d42a0544ce2a475e1ccc (patch)
tree3304923e4a849ceb5b1bad960484248865ab20df
parent6c805023c6310ab97c05478d1e0ad8119e3d9763 (diff)
downloademacs-1e056d48706ea8547085d42a0544ce2a475e1ccc.tar.gz
emacs-1e056d48706ea8547085d42a0544ce2a475e1ccc.zip
(compound-text-with-extensions): Change the type to 2 (iso-2022 base).
-rw-r--r--lisp/international/mule-conf.el8
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/international/mule-conf.el b/lisp/international/mule-conf.el
index 53a02e5caef..d160e4107f0 100644
--- a/lisp/international/mule-conf.el
+++ b/lisp/international/mule-conf.el
@@ -442,12 +442,16 @@ Like `compound-text', but does not produce escape sequences for compositions."
442 '((safe-charsets . t))) 442 '((safe-charsets . t)))
443 443
444(make-coding-system 444(make-coding-system
445 'compound-text-with-extensions 5 ?x 445 'compound-text-with-extensions 2 ?x
446 "Compound text encoding with extended segments. 446 "Compound text encoding with extended segments.
447 447
448See the variable `ctext-non-standard-encodings-alist' for the
449detail about how extended segments are handled.
450
448This coding system should be used only for X selections. It is inappropriate 451This coding system should be used only for X selections. It is inappropriate
449for decoding and encoding files, process I/O, etc." 452for decoding and encoding files, process I/O, etc."
450 nil 453 '((ascii t) (latin-iso8859-1 katakana-jisx0201 t) t t
454 nil ascii-eol ascii-cntl)
451 '((post-read-conversion . ctext-post-read-conversion) 455 '((post-read-conversion . ctext-post-read-conversion)
452 (pre-write-conversion . ctext-pre-write-conversion))) 456 (pre-write-conversion . ctext-pre-write-conversion)))
453 457