diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-23 03:16:08 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-23 03:16:08 +0200 |
commit | f2cbb03a378aa48f2e08b64877d54da3fab4ea6a (patch) | |
tree | 35ff7449ba394e4e0a84a19a70eafa7b181d8d71 /shell | |
parent | 7b4cd6f7b07b816c4b36d686fe47c5cfec7f5abf (diff) | |
download | busybox-w32-f2cbb03a378aa48f2e08b64877d54da3fab4ea6a.tar.gz busybox-w32-f2cbb03a378aa48f2e08b64877d54da3fab4ea6a.tar.bz2 busybox-w32-f2cbb03a378aa48f2e08b64877d54da3fab4ea6a.zip |
*: optimize most of isXXXXX() macros
text data bss dec hex filename
824164 453 6812 831429 cafc5 busybox_old
823730 453 6812 830995 cae13 busybox_unstripped
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r-- | shell/lash_unused.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/lash_unused.c b/shell/lash_unused.c index f71daf236..107ce88f6 100644 --- a/shell/lash_unused.c +++ b/shell/lash_unused.c | |||
@@ -841,7 +841,7 @@ static int expand_arguments(char *command) | |||
841 | num_skip_chars = 1; | 841 | num_skip_chars = 1; |
842 | } else { | 842 | } else { |
843 | src = dst + 1; | 843 | src = dst + 1; |
844 | while ((isalnum)(*src) || *src == '_') src++; | 844 | while (isalnum(*src) || *src == '_') src++; |
845 | } | 845 | } |
846 | if (src == NULL) { | 846 | if (src == NULL) { |
847 | src = dst+dstlen; | 847 | src = dst+dstlen; |