diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2021-08-01 13:41:13 -0700 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2021-08-01 13:41:13 -0700 |
| commit | d3c1526f71a083b98b7ac8833434cd0347d8fc7f (patch) | |
| tree | 2dc9df4315e0413ae568a17fb7a106533209b0de /bp.c | |
| parent | 994c9c973e0fd771699c3a5c76bee11f9b744c84 (diff) | |
Cleanup of space/line skipping code
Diffstat (limited to 'bp.c')
| -rw-r--r-- | bp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); } |
