comparison src/coding.c @ 32745:70dcd0333504

Fix a typo in a comment.
author Eli Zaretskii <eliz@gnu.org>
date Sun, 22 Oct 2000 14:00:19 +0000
parents 05513a882886
children 9502d0a5b2ad
comparison
equal deleted inserted replaced
32744:bd300e542dbc 32745:70dcd0333504
4800 { 4800 {
4801 detect_coding (coding, BYTE_POS_ADDR (from_byte), len_byte); 4801 detect_coding (coding, BYTE_POS_ADDR (from_byte), len_byte);
4802 if (coding->type == coding_type_undecided) 4802 if (coding->type == coding_type_undecided)
4803 { 4803 {
4804 /* It seems that the text contains only ASCII, but we 4804 /* It seems that the text contains only ASCII, but we
4805 should not left it undecided because the deeper 4805 should not leave it undecided because the deeper
4806 decoding routine (decode_coding) tries to detect the 4806 decoding routine (decode_coding) tries to detect the
4807 encodings again in vain. */ 4807 encodings again in vain. */
4808 coding->type = coding_type_emacs_mule; 4808 coding->type = coding_type_emacs_mule;
4809 coding->category_idx = CODING_CATEGORY_IDX_EMACS_MULE; 4809 coding->category_idx = CODING_CATEGORY_IDX_EMACS_MULE;
4810 } 4810 }