- Timestamp:
- Dec 14, 2007, 4:17:54 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/job.c
r1373 r1374 2541 2541 #endif 2542 2542 #ifdef KMK 2543 static char sh_chars_kash[] = "#;*?[]&|<>(){}$`^~!"; /* note: no \" */2543 static char sh_chars_kash[] = "#;*?[]&|<>(){}$`^~!"; /* note: no \" - good idea? */ 2544 2544 static char *sh_cmds_kash[] = { 2545 2545 ".", ":", "break", "case", "cd", "continue", … … 2814 2814 && !isspace ((unsigned char)p[1]) 2815 2815 # ifdef KMK 2816 && strchr (sh_chars, p[1]) == 0) 2816 && strchr (sh_chars, p[1]) == 0 2817 && (p[1] != '"' || !unixy_shell)) 2817 2818 # else 2818 2819 && strchr (sh_chars_sh, p[1]) == 0)
Note:
See TracChangeset
for help on using the changeset viewer.