diff options
| author | Eli Zaretskii | 2001-01-02 14:22:57 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-01-02 14:22:57 +0000 |
| commit | 8ebae00c644f77779df5278b5a8d9baf70ac033c (patch) | |
| tree | 3c09213c7af42a30449bf766e985554b73d5ae11 /src | |
| parent | a303d6bee9e1c8fcce76cc1cc5ea1f2e8cadb948 (diff) | |
| download | emacs-8ebae00c644f77779df5278b5a8d9baf70ac033c.tar.gz emacs-8ebae00c644f77779df5278b5a8d9baf70ac033c.zip | |
(char_printable_p): Remove unused variable `chars'.
(Fsplit_char, Fchar_bytes): Remove unused variable `val'.
(str_to_multibyte): Remove unused variable `c'.
Diffstat (limited to 'src')
| -rw-r--r-- | src/charset.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/charset.c b/src/charset.c index 21583c8e8c3..38683dc5c0f 100644 --- a/src/charset.c +++ b/src/charset.c | |||
| @@ -316,7 +316,7 @@ int | |||
| 316 | char_printable_p (c) | 316 | char_printable_p (c) |
| 317 | int c; | 317 | int c; |
| 318 | { | 318 | { |
| 319 | int charset, c1, c2, chars; | 319 | int charset, c1, c2; |
| 320 | 320 | ||
| 321 | if (ASCII_BYTE_P (c)) | 321 | if (ASCII_BYTE_P (c)) |
| 322 | return 1; | 322 | return 1; |
| @@ -1004,7 +1004,6 @@ return a list of symbol `unknown' and CHAR.") | |||
| 1004 | (ch) | 1004 | (ch) |
| 1005 | Lisp_Object ch; | 1005 | Lisp_Object ch; |
| 1006 | { | 1006 | { |
| 1007 | Lisp_Object val; | ||
| 1008 | int c, charset, c1, c2; | 1007 | int c, charset, c1, c2; |
| 1009 | 1008 | ||
| 1010 | CHECK_NUMBER (ch, 0); | 1009 | CHECK_NUMBER (ch, 0); |
| @@ -1155,8 +1154,6 @@ This is now an obsolete function. We keep it just for backward compatibility.") | |||
| 1155 | (ch) | 1154 | (ch) |
| 1156 | Lisp_Object ch; | 1155 | Lisp_Object ch; |
| 1157 | { | 1156 | { |
| 1158 | Lisp_Object val; | ||
| 1159 | |||
| 1160 | CHECK_NUMBER (ch, 0); | 1157 | CHECK_NUMBER (ch, 0); |
| 1161 | return make_number (1); | 1158 | return make_number (1); |
| 1162 | } | 1159 | } |
| @@ -1478,7 +1475,6 @@ str_to_multibyte (str, len, bytes) | |||
| 1478 | { | 1475 | { |
| 1479 | unsigned char *p = str, *endp = str + bytes; | 1476 | unsigned char *p = str, *endp = str + bytes; |
| 1480 | unsigned char *to; | 1477 | unsigned char *to; |
| 1481 | int c; | ||
| 1482 | 1478 | ||
| 1483 | while (p < endp && (*p < 0x80 || *p >= 0xA0)) p++; | 1479 | while (p < endp && (*p < 0x80 || *p >= 0xA0)) p++; |
| 1484 | if (p == endp) | 1480 | if (p == endp) |