From 409296e22fb1cef515ccfff507c265a5fee0ab28 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Tue, 20 Sep 2005 15:10:26 +0000 Subject: 21736: improve tests for word and identifier characters with multibyte input --- Src/pattern.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Src/pattern.c') diff --git a/Src/pattern.c b/Src/pattern.c index 393d9bf41..36578226c 100644 --- a/Src/pattern.c +++ b/Src/pattern.c @@ -2749,6 +2749,10 @@ patmatchrange(char *range, int ch) return 1; break; case PP_WORD: + /* + * HERE: when we support multibyte characters, + * this test needs to be wcsiword(). + */ if (iword(ch)) return 1; break; -- cgit v1.2.3