diff options
author | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-06-21 18:19:53 +0000 |
---|---|---|
committer | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-06-21 18:19:53 +0000 |
commit | ef21394ae019c8739ec89dd04e978b53d1c24ed8 (patch) | |
tree | 22014b9cc32e5f2d0ed6f873a0c6c8227a17e4a3 /shell | |
parent | a5d6a5a2db9d66f1439343123bdc6b801802483b (diff) | |
download | busybox-w32-ef21394ae019c8739ec89dd04e978b53d1c24ed8.tar.gz busybox-w32-ef21394ae019c8739ec89dd04e978b53d1c24ed8.tar.bz2 busybox-w32-ef21394ae019c8739ec89dd04e978b53d1c24ed8.zip |
- add note about strict ordering
git-svn-id: svn://busybox.net/trunk/busybox@15462 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ash.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c index 1c5742bdc..35d58b5d7 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -1312,6 +1312,7 @@ struct builtincmd { | |||
1312 | #define IS_BUILTIN_REGULAR(builtincmd) ((builtincmd)->name[0] & 2) | 1312 | #define IS_BUILTIN_REGULAR(builtincmd) ((builtincmd)->name[0] & 2) |
1313 | #define IS_BUILTIN_ASSIGN(builtincmd) ((builtincmd)->name[0] & 4) | 1313 | #define IS_BUILTIN_ASSIGN(builtincmd) ((builtincmd)->name[0] & 4) |
1314 | 1314 | ||
1315 | /* make sure to keep these in proper order since it is searched via bsearch() */ | ||
1315 | static const struct builtincmd builtincmd[] = { | 1316 | static const struct builtincmd builtincmd[] = { |
1316 | { BUILTIN_SPEC_REG ".", dotcmd }, | 1317 | { BUILTIN_SPEC_REG ".", dotcmd }, |
1317 | { BUILTIN_SPEC_REG ":", truecmd }, | 1318 | { BUILTIN_SPEC_REG ":", truecmd }, |