aboutsummaryrefslogtreecommitdiff
path: root/bp.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2021-08-01 13:41:13 -0700
committerBruce Hill <bruce@bruce-hill.com>2021-08-01 13:41:13 -0700
commitd3c1526f71a083b98b7ac8833434cd0347d8fc7f (patch)
tree2dc9df4315e0413ae568a17fb7a106533209b0de /bp.c
parent994c9c973e0fd771699c3a5c76bee11f9b744c84 (diff)
Cleanup of space/line skipping code
Diffstat (limited to 'bp.c')
-rw-r--r--bp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bp.c b/bp.c
index b909c2b..6dec579 100644
--- a/bp.c
+++ b/bp.c
@@ -562,7 +562,7 @@ int main(int argc, char *argv[])
if (!s) {
fprint_line(stdout, arg_file, arg_file->start, arg_file->end,
"Failed to compile the skip argument");
- } else if (after_spaces(s->end) < arg_file->end) {
+ } else if (after_spaces(s->end, true) < arg_file->end) {
fprint_line(stdout, arg_file, s->end, arg_file->end,
"Failed to compile part of the skip argument");
}