From 1b2af4b0badae7bad8130d27b22a325c6a58d50b Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 4 Sep 1997 03:31:10 +0000 Subject: [PATCH] (detect_coding_mask): Re-work previous change. (detect_eol): Fix use of == instead of -. --- src/coding.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/coding.c b/src/coding.c index fd092886fbc..e91b763897e 100644 --- a/src/coding.c +++ b/src/coding.c @@ -2690,7 +2690,7 @@ detect_coding_mask (src, src_bytes) /* C is an ISO2022 specific control code of C0. */ mask = detect_coding_iso2022 (src, src_end); src++; - if (mask == CODING_CATEGORY_MASK_ANY) + if (mask == 0) /* No valid ISO2022 code follows C. Try again. */ goto label_loop_detect_coding; mask |= CODING_CATEGORY_MASK_RAW_TEXT; @@ -2851,7 +2851,7 @@ detect_eol (coding, src, src_bytes) } /* Else, let's decode only text code anyway. */ #endif /* 0 */ - eol_type == CODING_EOL_LF; + eol_type = CODING_EOL_LF; } coding_system = coding->symbol; -- 2.39.2