diff options
author | Denis Vlasenko | 2006-09-17 16:28:10 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-09-17 16:28:10 +0000 |
commit | 9213a9e0f2d8fd638ecd02e2628d96dd5c7d233e (patch) | |
tree | 94c3c0678d1349497abe2db6004e9331e50f6d37 /editors | |
parent | a6127aacef047ed7661722705b052811fbe7f467 (diff) | |
download | busybox-9213a9e0f2d8fd638ecd02e2628d96dd5c7d233e.zip busybox-9213a9e0f2d8fd638ecd02e2628d96dd5c7d233e.tar.gz |
whitespace cleanup
Diffstat (limited to 'editors')
-rw-r--r-- | editors/sed.c | 4 | ||||
-rw-r--r-- | editors/vi.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/editors/sed.c b/editors/sed.c index 9f3af33..f8e3720 100644 --- a/editors/sed.c +++ b/editors/sed.c @@ -103,7 +103,7 @@ struct sed_globals regmatch_t regmatch[10]; regex_t *previous_regex_ptr; - + /* linked list of sed commands */ sed_cmd_t sed_cmd_head, *sed_cmd_tail; @@ -780,7 +780,7 @@ restart: || (sed_cmd->beg_line > 0 && (sed_cmd->beg_line == linenum)) /* Or does this line match our begin address regex? */ - || (sed_cmd->beg_match && + || (sed_cmd->beg_match && !regexec(sed_cmd->beg_match, pattern_space, 0, NULL, 0)) /* Or did we match last line of input? */ diff --git a/editors/vi.c b/editors/vi.c index 3cbf693..8ff118f 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -3923,4 +3923,4 @@ static void crash_test() } return; } -#endif /* CONFIG_FEATURE_VI_CRASHME */ +#endif /* CONFIG_FEATURE_VI_CRASHME */ |