Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/bsd/bc/dist Literal backslashes need to be quoted f...



details:   https://anonhg.NetBSD.org/src/rev/4e4f9d39889d
branches:  trunk
changeset: 366415:4e4f9d39889d
user:      mlelstv <mlelstv%NetBSD.org@localhost>
date:      Thu May 26 08:06:58 2022 +0000

description:
Literal backslashes need to be quoted for roff.

diffstat:

 external/bsd/bc/dist/bc.1 |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r 2c7530f84abe -r 4e4f9d39889d external/bsd/bc/dist/bc.1
--- a/external/bsd/bc/dist/bc.1 Thu May 26 07:03:03 2022 +0000
+++ b/external/bsd/bc/dist/bc.1 Thu May 26 08:06:58 2022 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: bc.1,v 1.10 2021/01/08 01:17:55 uwe Exp $
+.\" $NetBSD: bc.1,v 1.11 2022/05/26 08:06:58 mlelstv Exp $
 .\"
 .\" bc.1 - the bc manual
 .\"
@@ -913,8 +913,8 @@
 and the function name.
 For example, consider the following session.
 .Bd -literal -offset indent
-define py (y) { print "--->", y, "<---", "\n"; }
-define void px (x) { print "--->", x, "<---", "\n"; }
+define py (y) { print "--->", y, "<---", "\en"; }
+define void px (x) { print "--->", x, "<---", "\en"; }
 py(1)
 --->1<---
 0



Home | Main Index | Thread Index | Old Index