diff options
author | Kenichi Handa <handa@m17n.org> | 2000-06-19 05:15:04 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2000-06-19 05:15:04 +0000 |
commit | af873cd1e631f04a3bc6c046cc11c01adb7500b2 (patch) | |
tree | 87695a9d6c6609e35e10d29c2b9478871285e63d /lisp/international | |
parent | 7bd539622d34041288cf73486c48b87dedd91971 (diff) | |
download | emacs-af873cd1e631f04a3bc6c046cc11c01adb7500b2.tar.gz |
(make-coding-system): Generate subsidiary coding systems for EOL
handling variants even for a CCL based coding system.
Diffstat (limited to 'lisp/international')
-rw-r--r-- | lisp/international/mule.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 6bb1bef0b3c..809015c5e23 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el @@ -734,8 +734,7 @@ a value of `safe-charsets' in PLIST." (cons coding-system (get coding-category 'coding-systems)))) ;; Next, set a value of `eol-type' property. - (if (and (not eol-type) - (or (<= type 3) (= type 5))) + (if (not eol-type) ;; If EOL-TYPE is nil, set a vector of subsidiary coding ;; systems, each corresponds to a coding system for the detected ;; EOL format. |