# HG changeset patch # User Kenichi Handa <handa@m17n.org> # Date 897702083 0 # Node ID 7ca9194760422fbbb633ced2916fdd1038df3ede # Parent bc88a299d2fc1abbf0ae114ceca83b813eee1929 (detect_coding_system): Always return a list of HIGHEST is zero. (Fdetect_coding_region): Doc-string adjusted for the above change. (Fdetect_coding_string): Likewise. diff -r bc88a299d2fc -r 7ca919476042 src/coding.c --- a/src/coding.c Sat Jun 13 01:38:33 1998 +0000 +++ b/src/coding.c Sat Jun 13 01:41:23 1998 +0000 @@ -4528,7 +4528,7 @@ if (VECTORP (val2)) val = XVECTOR (val2)->contents[eol_type]; } - return val; + return (highest ? val : Fcons (val, Qnil)); } /* At first, gather possible coding systems in VAL. */ @@ -4567,8 +4567,9 @@ "Detect coding system of the text in the region between START and END.\n\ Return a list of possible coding systems ordered by priority.\n\ \n\ -If only ASCII characters are found, it returns `undecided'\n\ -or its subsidiary coding system according to a detected end-of-line format.\n\ +If only ASCII characters are found, it returns a list of single element\n\ +`undecided' or its subsidiary coding system according to a detected\n\ +end-of-line format.\n\ \n\ If optional argument HIGHEST is non-nil, return the coding system of\n\ highest priority.") @@ -4599,8 +4600,9 @@ "Detect coding system of the text in STRING.\n\ Return a list of possible coding systems ordered by priority.\n\ \n\ -If only ASCII characters are found, it returns `undecided'\n\ -or its subsidiary coding system according to a detected end-of-line format.\n\ +If only ASCII characters are found, it returns a list of single element\n\ +`undecided' or its subsidiary coding system according to a detected\n\ +end-of-line format.\n\ \n\ If optional argument HIGHEST is non-nil, return the coding system of\n\ highest priority.")