diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2006-07-10 13:08:22 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2006-07-10 13:08:22 +0000 |
commit | 4a67f2479892fda348546404216270aaaff523ea (patch) | |
tree | 3157f967e4324cdf147aa656c021e55e96f29731 /Src/glob.c | |
parent | 272256f5d6f4748aed680256589a67713e517383 (diff) | |
download | zsh-4a67f2479892fda348546404216270aaaff523ea.tar.gz zsh-4a67f2479892fda348546404216270aaaff523ea.tar.xz zsh-4a67f2479892fda348546404216270aaaff523ea.zip |
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.
Diffstat (limited to 'Src/glob.c')
-rw-r--r-- | Src/glob.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Src/glob.c b/Src/glob.c index 3a1b28784..26b288efc 100644 --- a/Src/glob.c +++ b/Src/glob.c @@ -1443,9 +1443,7 @@ zglob(LinkList list, LinkNode np, int nountok) if (s[-1] == '+') { plus = 0; - tt = s; - while (iident(*tt)) - tt++; + tt = itype_end(s, IIDENT, 0); if (tt == s) { zerr("missing identifier after `+'"); |