diff options
Diffstat (limited to 'usr.bin/mg/cmode.c')
-rw-r--r-- | usr.bin/mg/cmode.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/mg/cmode.c b/usr.bin/mg/cmode.c index 674d89d6e77..00a32b9c321 100644 --- a/usr.bin/mg/cmode.c +++ b/usr.bin/mg/cmode.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmode.c,v 1.8 2012/05/18 02:13:44 lum Exp $ */ +/* $OpenBSD: cmode.c,v 1.9 2014/03/31 14:26:03 bcallah Exp $ */ /* * This file is in the public domain. * @@ -463,8 +463,6 @@ findnonblank(struct line *lp) * comments. If one is found, ignore it and * test for nonblankness from where it starts. */ - slashp = FALSE; - /* Scan backwards from end to find C-style comment */ for (lo = llength(lp) - 1; lo >= 0; lo--) { if (!isspace(c = lgetc(lp, lo))) { if (commentp) { /* find comment "open" */ |