From 42cc304e9084843ad6b153afaf4b3f6c6528c364 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Mon, 24 Mar 2008 02:05:58 +0000 Subject: lpr: add more accurate comments *: trailing whitespace removal --- editors/patch.c | 2 +- editors/vi.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'editors') diff --git a/editors/patch.c b/editors/patch.c index a37f4e6..a2d593d 100644 --- a/editors/patch.c +++ b/editors/patch.c @@ -136,7 +136,7 @@ int patch_main(int argc ATTRIBUTE_UNUSED, char **argv) src_stream = NULL; if (backup_filename && !stat(original_filename, &saved_stat)) { - src_stream = xfopen((strcmp(original_filename, new_filename)) ? + src_stream = xfopen((strcmp(original_filename, new_filename)) ? original_filename : backup_filename, "r"); } diff --git a/editors/vi.c b/editors/vi.c index 22bd2ff..65fb026 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -1718,7 +1718,7 @@ static int find_range(char ** start, char ** stop, char c) p = t; } - // backward char movements don't include start position + // backward char movements don't include start position if (q > p && strchr("^0bBh\b\177", c)) q--; multiline = 0; -- cgit v1.1