From d9778532d7fc46ee0ace241131012276d6e28cf2 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Fri, 14 May 2010 13:54:15 +0000 Subject: Fix for Joerg's patch stripping of pre-comment whitespace (by Joerg). --- main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'main.c') diff --git a/main.c b/main.c index 9eee9aea..94c635f8 100644 --- a/main.c +++ b/main.c @@ -1,4 +1,4 @@ -/* $Id: main.c,v 1.62 2010/05/09 21:19:42 kristaps Exp $ */ +/* $Id: main.c,v 1.63 2010/05/14 13:54:15 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -375,9 +375,9 @@ fdesc(struct buf *blk, struct buf *ln, struct curparse *curp) comment = 1; pos -= 2; for (; pos > 0; --pos) { - if (ln->buf[pos] != ' ') + if (ln->buf[pos - 1] != ' ') break; - if (ln->buf[pos - 1] == '\\') + if (pos > 2 && ln->buf[pos - 2] == '\\') break; } continue; -- cgit v1.2.3-56-ge451