Module Name: src
Committed By: wiz
Date: Thu Apr 22 06:57:13 UTC 2010
Modified Files:
src/games/factor: factor.6
Log Message:
Add backslash before a dash to get a minus.
To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/games/factor/factor.6
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/games/factor/factor.6
diff -u src/games/factor/factor.6:1.10 src/games/factor/factor.6:1.11
--- src/games/factor/factor.6:1.10 Thu Apr 22 04:42:21 2010
+++ src/games/factor/factor.6 Thu Apr 22 06:57:13 2010
@@ -1,4 +1,4 @@
-.\" $NetBSD: factor.6,v 1.10 2010/04/22 04:42:21 dholland Exp $
+.\" $NetBSD: factor.6,v 1.11 2010/04/22 06:57:13 wiz Exp $
.\"
.\" Copyright (c) 1989, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -68,12 +68,12 @@
.Nm
reads numbers, one per line, from standard input, until end of file or error.
Leading white-space and empty lines are ignored.
-Numbers may be preceded by a single - or +, although negative numbers
+Numbers may be preceded by a single \- or +, although negative numbers
are rejected.
Numbers are terminated by a non-digit character (such as a newline).
After a number is read, it is factored.
Input lines must not be longer than
-.Dv LINE_MAX - 1
+.Dv LINE_MAX \- 1
(currently 2047) characters.
.Pp
By default,