aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Schweikhardt <schweikh@FreeBSD.org>2001-10-19 19:10:36 +0000
committerJens Schweikhardt <schweikh@FreeBSD.org>2001-10-19 19:10:36 +0000
commitf828df9d17e040c36e1e24914749dca40ac836e3 (patch)
tree4863f33aa823f1879cfcb73e78e60089a6af8560
parente58c2b8381e273f2528cc3a501628079692be3b5 (diff)
Notes
-rw-r--r--usr.bin/indent/lexi.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/usr.bin/indent/lexi.c b/usr.bin/indent/lexi.c
index 7c3892c48bc6..12e51dc90178 100644
--- a/usr.bin/indent/lexi.c
+++ b/usr.bin/indent/lexi.c
@@ -209,8 +209,18 @@ lexi()
}
}
else
- while (chartype[*buf_ptr] == alphanum) { /* copy it over */
+ while (chartype[*buf_ptr] == alphanum || *buf_ptr == BACKSLASH) {
+ /* fill_buffer() terminates buffer with newline */
+ if (*buf_ptr == BACKSLASH) {
+ if (*(buf_ptr + 1) == '\n') {
+ buf_ptr += 2;
+ if (buf_ptr >= buf_end)
+ fill_buffer();
+ } else
+ break;
+ }
CHECK_SIZE_TOKEN;
+ /* copy it over */
*e_token++ = *buf_ptr++;
if (buf_ptr >= buf_end)
fill_buffer();