aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Schwab1997-11-25 14:09:14 +0000
committerAndreas Schwab1997-11-25 14:09:14 +0000
commitf6469851ec2a4124a0be61100e7003174149ea7a (patch)
treed6ce2ab122f679a8c64651a3cd8af8a10d57f81d /src
parent5e14b1fc0386d052454772454999b65f73af23a0 (diff)
downloademacs-f6469851ec2a4124a0be61100e7003174149ea7a.tar.gz
emacs-f6469851ec2a4124a0be61100e7003174149ea7a.zip
(SPLIT_STRING): Remove extra argument to
split_non_ascii_string.
Diffstat (limited to 'src')
-rw-r--r--src/charset.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charset.h b/src/charset.h
index cf6dd8f36db..2286e67e351 100644
--- a/src/charset.h
+++ b/src/charset.h
@@ -510,7 +510,7 @@ extern int width_by_char_head[256];
510#define SPLIT_STRING(str, len, charset, c1, c2) \ 510#define SPLIT_STRING(str, len, charset, c1, c2) \
511 ((BYTES_BY_CHAR_HEAD ((unsigned char) *(str)) < 2 \ 511 ((BYTES_BY_CHAR_HEAD ((unsigned char) *(str)) < 2 \
512 || BYTES_BY_CHAR_HEAD ((unsigned char) *(str)) > len \ 512 || BYTES_BY_CHAR_HEAD ((unsigned char) *(str)) > len \
513 || split_non_ascii_string (str, len, &charset, &c1, &c2, 0) < 0) \ 513 || split_non_ascii_string (str, len, &charset, &c1, &c2) < 0) \
514 ? c1 = *(str), charset = CHARSET_ASCII \ 514 ? c1 = *(str), charset = CHARSET_ASCII \
515 : charset) 515 : charset)
516 516