Changeset 3252 for trunk/essentials
- Timestamp:
- Apr 30, 2007, 1:17:24 AM (19 years ago)
- Location:
- trunk/essentials/app-shells/bash
- Files:
-
- 4 edited
-
arrayfunc.c (modified) (1 diff)
-
patchlevel.h (modified) (1 diff)
-
subst.c (modified) (5 diffs)
-
subst.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/essentials/app-shells/bash/arrayfunc.c
r3231 r3252 593 593 strncpy (exp, s, len - 1); 594 594 exp[len - 1] = '\0'; 595 #if 0 596 t = expand_string_to_string (exp, 0); 597 #else 598 t = expand_string_to_string (exp, Q_DOUBLE_QUOTES); 599 #endif 595 t = expand_arith_string (exp, 0); 600 596 this_command_name = (char *)NULL; 601 597 val = evalexp (t, &expok); -
trunk/essentials/app-shells/bash/patchlevel.h
r3251 r3252 26 26 looks for to find the patch level (for the sccs version string). */ 27 27 28 #define PATCHLEVEL 1 628 #define PATCHLEVEL 1 29 29 30 30 #endif /* _PATCHLEVEL_H_ */ -
trunk/essentials/app-shells/bash/subst.c
r3240 r3252 2576 2576 } 2577 2577 2578 2579 2580 2581
