about summary refs log tree commit diff
path: root/Src/zsh.h
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2010-03-11 22:38:58 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2010-03-11 22:38:58 +0000
commit43df0a21c0dfa9536b0c8ce816685a6002451f54 (patch)
treebe233c453735348ed7d30f01823317ab1f03b7a2 /Src/zsh.h
parentff22b24f1b413cb0f17fa49459b65b5539b666cc (diff)
downloadzsh-43df0a21c0dfa9536b0c8ce816685a6002451f54.tar.gz
zsh-43df0a21c0dfa9536b0c8ce816685a6002451f54.tar.xz
zsh-43df0a21c0dfa9536b0c8ce816685a6002451f54.zip
27785: IFS doesn't have a null in it in POSIX
unposted: note & needs quoting in :s in glob qualifier
Diffstat (limited to 'Src/zsh.h')
-rw-r--r--Src/zsh.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Src/zsh.h b/Src/zsh.h
index c918f7863..df7e251b9 100644
--- a/Src/zsh.h
+++ b/Src/zsh.h
@@ -127,6 +127,10 @@ struct mathfunc {
 
 #define DEFAULT_IFS	" \t\n\203 "
 
+/* As specified in the standard (POSIX 2008) */
+
+#define DEFAULT_IFS_SH	" \t\n"
+
 /*
  * Character tokens.
  * These should match the characters in ztokens, defined in lex.c