>>>> "kkm" == Kirill 'Big K' Katsnelson
<kkm(a)dtmx.com> writes:
kkm> Currently, (subsidiary-coding-system) returns its parameter if it
kkm> has not an autodetect property:
kkm> (subsidiary-coding-system (find-coding-system 'undecided) 'crlf)
kkm> =>> #<coding_system undecided-dos>
kkm> (subsidiary-coding-system (find-coding-system 'undecided-unix) 'crlf)
kkm> =>> #<coding_system undecided-unix>
kkm> I might be missing something obvious, but I cannot easily deduce
kkm> a coding system different from a given one only by eol-type.
(subsidiary-coding-system (coding-system-base 'undecided-unix) 'crlf)
#<coding_system undecided-dos>
(subsidiary-coding-system (coding-system-base 'undecided) 'crlf)
#<coding_system undecided-dos>
Martin