From: Kenichi Handa Date: Tue, 2 Jun 1998 03:54:18 +0000 (+0000) Subject: (detect_coding_mask): Initilize local variable C. X-Git-Tag: emacs-20.3~748 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8a8147d64b5c8ad5148ca9952add6a4b18149dad;p=emacs.git (detect_coding_mask): Initilize local variable C. --- diff --git a/src/coding.c b/src/coding.c index 1bdac41c786..5e16250ce40 100644 --- a/src/coding.c +++ b/src/coding.c @@ -3206,6 +3206,7 @@ detect_coding_mask (source, src_bytes, priorities, skip) /* We found nothing other than ASCII. There's nothing to do. */ return 0; + c = *src; /* The text seems to be encoded in some multilingual coding system. Now, try to find in which coding system the text is encoded. */ if (c < 0x80)