From 2766352e79d087ab9cebab45f5737ede5524331b Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Thu, 7 Jan 2010 19:10:09 +0000 Subject: Fix white-space issues found by mandoc's better white-space finder. Fixed bogus `\\' escapes in some manuals. --- mdoc.3 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mdoc.3') diff --git a/mdoc.3 b/mdoc.3 index 5c6ac4ac..35b13f6e 100644 --- a/mdoc.3 +++ b/mdoc.3 @@ -1,4 +1,4 @@ -.\" $Id: mdoc.3,v 1.35 2009/10/03 16:36:06 kristaps Exp $ +.\" $Id: mdoc.3,v 1.36 2010/01/07 19:10:09 kristaps Exp $ .\" .\" Copyright (c) 2009 Kristaps Dzonsons .\" @@ -14,7 +14,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: October 3 2009 $ +.Dd $Mdocdate: January 7 2010 $ .Dt MDOC 3 .Os .\" SECTION @@ -274,7 +274,7 @@ line = 1; mdoc = mdoc_alloc(NULL, 0, NULL); while ((buf = fgetln(fp, &len))) { - buf[len - 1] = '\\0'; + buf[len - 1] = '\e0'; if ( ! mdoc_parseln(mdoc, line, buf)) errx(1, "mdoc_parseln"); line++; -- cgit v1.2.3