summaryrefslogtreecommitdiff
path: root/src/coding.c
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>1998-06-02 03:54:18 +0000
committerKenichi Handa <handa@m17n.org>1998-06-02 03:54:18 +0000
commit8a8147d64b5c8ad5148ca9952add6a4b18149dad (patch)
tree319491fe86ffbc20cb48db026d615907f3a76449 /src/coding.c
parentb70b2dd2c0fbd821a749740db5b672efa4d91816 (diff)
downloademacs-8a8147d64b5c8ad5148ca9952add6a4b18149dad.tar.gz
(detect_coding_mask): Initilize local variable C.
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c1
1 files changed, 1 insertions, 0 deletions
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)