summaryrefslogtreecommitdiffstatshomepage
path: root/man.3
diff options
context:
space:
mode:
Diffstat (limited to 'man.3')
-rw-r--r--man.36
1 files changed, 3 insertions, 3 deletions
diff --git a/man.3 b/man.3
index 00ec8b28..33f35bed 100644
--- a/man.3
+++ b/man.3
@@ -1,4 +1,4 @@
-.\" $Id: man.3,v 1.10 2009/10/03 16:36:06 kristaps Exp $
+.\" $Id: man.3,v 1.11 2010/01/07 19:10:09 kristaps Exp $
.\"
.\" Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
.\"
@@ -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 MAN 3
.Os
.\" SECTION
@@ -257,7 +257,7 @@ line = 1;
man = man_alloc(NULL, 0, NULL);
while ((buf = fgetln(fp, &len))) {
- buf[len - 1] = '\\0';
+ buf[len - 1] = '\e0';
if ( ! man_parseln(man, line, buf))
errx(1, "man_parseln");
line++;