diff options
| author | Richard M. Stallman | 1997-09-09 00:46:00 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-09-09 00:46:00 +0000 |
| commit | 35cb86869d5e432f548125202b19691af1e49bda (patch) | |
| tree | 1651c864869f9617caa41720045368d26118ed77 /src/coding.c | |
| parent | 0db1ff2312c3b7cc3e252f1991121aa833d95501 (diff) | |
| download | emacs-35cb86869d5e432f548125202b19691af1e49bda.tar.gz emacs-35cb86869d5e432f548125202b19691af1e49bda.zip | |
(encode_designation_at_bol): Fix type of local vars C1, C2.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c index 378f5d5de0a..e22581b2c03 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -1440,7 +1440,8 @@ encode_designation_at_bol (coding, table, src, src_end, dstp) | |||
| 1440 | charset = CHARSET_AT (src); | 1440 | charset = CHARSET_AT (src); |
| 1441 | else | 1441 | else |
| 1442 | { | 1442 | { |
| 1443 | int c_alt, c1, c2; | 1443 | int c_alt; |
| 1444 | unsigned char c1, c2; | ||
| 1444 | 1445 | ||
| 1445 | SPLIT_STRING(src, bytes, charset, c1, c2); | 1446 | SPLIT_STRING(src, bytes, charset, c1, c2); |
| 1446 | if ((c_alt = unify_char (table, -1, charset, c1, c2)) >= 0) | 1447 | if ((c_alt = unify_char (table, -1, charset, c1, c2)) >= 0) |