From 4a67f2479892fda348546404216270aaaff523ea Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Mon, 10 Jul 2006 13:08:22 +0000 Subject: 22544: Improve use of ztype tests for multibyte characters. Add POSIX_IDENTIFIERS option to control allowability of multibyte alphanumeric characters in parameter and module names. --- Src/parse.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'Src/parse.c') diff --git a/Src/parse.c b/Src/parse.c index 61ef9dcdc..17a24f2e9 100644 --- a/Src/parse.c +++ b/Src/parse.c @@ -1603,10 +1603,7 @@ par_simple(int *complex, int nr) if (*ptr == Outbrace && ptr > tokstr + 1) { - while (--ptr > tokstr) - if (!iident(*ptr)) - break; - if (ptr == tokstr) + if (itype_end(tokstr, IIDENT, 0) >= ptr - 1) { char *toksave = tokstr; char *idstring = dupstrpfx(tokstr+1, eptr-tokstr-1); -- cgit v1.2.3