aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/charset.c6
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
316char_printable_p (c) 316char_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)