Fix a bug that ate each character after a \ except a newline.

Estimated hours taken: 0.1
Branches: main

util/pad_backslash.c:
	Fix a bug that ate each character after a \ except a newline.
This commit is contained in:
Zoltan Somogyi
2006-10-30 07:02:13 +00:00
parent b0c825cd53
commit 0fc57dcea8

View File

@@ -102,6 +102,7 @@ process(FILE *fp)
cur_column = 1;
} else {
putchar(cur_char);
putchar(next_char);
cur_column++;
}
} else if (cur_char == '\t') {