From: Andreas Schwab Date: Tue, 25 Nov 1997 14:09:14 +0000 (+0000) Subject: (SPLIT_STRING): Remove extra argument to X-Git-Tag: emacs-20.3~2721 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f6469851ec2a4124a0be61100e7003174149ea7a;p=emacs.git (SPLIT_STRING): Remove extra argument to split_non_ascii_string. --- 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]; #define SPLIT_STRING(str, len, charset, c1, c2) \ ((BYTES_BY_CHAR_HEAD ((unsigned char) *(str)) < 2 \ || BYTES_BY_CHAR_HEAD ((unsigned char) *(str)) > len \ - || split_non_ascii_string (str, len, &charset, &c1, &c2, 0) < 0) \ + || split_non_ascii_string (str, len, &charset, &c1, &c2) < 0) \ ? c1 = *(str), charset = CHARSET_ASCII \ : charset)