commit bash-20150918 snapshot

This commit is contained in:
Chet Ramey
2015-09-21 17:02:33 -04:00
parent 2b7361d5c1
commit dcb2f4489f
27 changed files with 266 additions and 39 deletions
+2
View File
@@ -75,6 +75,8 @@ extern int sh_syntabsiz;
#define shellblank(c) (sh_syntaxtab[(unsigned char)(c)] & CBLANK)
#define parserblank(c) ((c) == ' ' || (c) == '\t')
#define issyntype(c, t) ((sh_syntaxtab[(unsigned char)(c)] & (t)) != 0)
#define notsyntype(c,t) ((sh_syntaxtab[(unsigned char)(c)] & (t)) == 0)