comparison src/coding.c @ 50120:34d5ae26ea24

(Fdetect_coding_string): Fix docstring.
author Kenichi Handa <handa@m17n.org>
date Thu, 13 Mar 2003 11:16:16 +0000
parents 8e17fbb2ac77
children 71039837d881
comparison
equal deleted inserted replaced
50119:f282235432d7 50120:34d5ae26ea24
6356 ->enable_multibyte_characters)); 6356 ->enable_multibyte_characters));
6357 } 6357 }
6358 6358
6359 DEFUN ("detect-coding-string", Fdetect_coding_string, Sdetect_coding_string, 6359 DEFUN ("detect-coding-string", Fdetect_coding_string, Sdetect_coding_string,
6360 1, 2, 0, 6360 1, 2, 0,
6361 doc: /* Detect coding system of the text in STRING. 6361 doc: /* Detect how the byte sequence in STRING is encoded.
6362 Return a list of possible coding systems ordered by priority. 6362 Return a list of possible coding systems used on decoding a byte
6363 sequence containing the bytes in STRING when the coding system
6364 `undecided' is specified. The list is ordered by priority decided in
6365 the current language environment.
6363 6366
6364 If only ASCII characters are found, it returns a list of single element 6367 If only ASCII characters are found, it returns a list of single element
6365 `undecided' or its subsidiary coding system according to a detected 6368 `undecided' or its subsidiary coding system according to a detected
6366 end-of-line format. 6369 end-of-line format.
6367 6370