commit bash-20040408 snapshot

This commit is contained in:
Chet Ramey
2011-12-03 12:56:32 -05:00
parent 2b289f4a0a
commit 1d7ecd770c
28 changed files with 15744 additions and 78 deletions
+2
View File
@@ -71,6 +71,8 @@ extern int sh_syntabsiz;
#define shellbreak(c) (sh_syntaxtab[(unsigned char)(c)] & CSHBRK)
#define shellquote(c) (sh_syntaxtab[(unsigned char)(c)] & CQUOTE)
#define shellxquote(c) (sh_syntaxtab[(unsigned char)(c)] & CXQUOTE)
#define issyntype(c, t) ((sh_syntaxtab[(unsigned char)(c)] & (t)) != 0)
#define notsyntype(c,t) ((sh_syntaxtab[(unsigned char)(c)] & (t)) == 0)