about summary refs log tree commit diff
path: root/Src/parse.c
diff options
context:
space:
mode:
authorBart Schaefer <schaefer@zsh.org>2024-02-03 19:52:39 -0800
committerBart Schaefer <schaefer@zsh.org>2024-02-03 19:52:39 -0800
commitce8909b49428e260c15dce22d764f2831295645a (patch)
tree78bd5aa466f2a2ba400e0e456cd3bd154164efcc /Src/parse.c
parent8801665e5b241c3adac9c36b6135d057c5ab2a59 (diff)
downloadzsh-ce8909b49428e260c15dce22d764f2831295645a.tar.gz
zsh-ce8909b49428e260c15dce22d764f2831295645a.tar.xz
zsh-ce8909b49428e260c15dce22d764f2831295645a.zip
unposted: Record as comments some notes about namespace usage exceptions.
Diffstat (limited to 'Src/parse.c')
-rw-r--r--Src/parse.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Src/parse.c b/Src/parse.c
index 859f4d0fc..2b7e003fc 100644
--- a/Src/parse.c
+++ b/Src/parse.c
@@ -1935,6 +1935,8 @@ par_simple(int *cmplx, int nr)
 
 		if (*ptr == Outbrace && ptr > tokstr + 1)
 		{
+		    /* Should we allow namespace FDs, {.foo.bar}>&file ? *
+		     * If so, change IIDENT to INAMESPACE here           */
 		    if (itype_end(tokstr+1, IIDENT, 0) >= ptr)
 		    {
 			char *toksave = tokstr;