From 39cfe41b7cd1180391257e21951d8399b8584ab7 Mon Sep 17 00:00:00 2001 From: Philippe Charnier Date: Sun, 5 Dec 1999 20:01:28 +0000 Subject: [PATCH] Typo. Standard list of flag Add ``c89: '' in front of error messages to be errx()-like. --- usr.bin/c89/c89.1 | 4 ++-- usr.bin/c89/c89.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/usr.bin/c89/c89.1 b/usr.bin/c89/c89.1 index a683df08f43..90144acb239 100644 --- a/usr.bin/c89/c89.1 +++ b/usr.bin/c89/c89.1 @@ -47,13 +47,13 @@ .Ar operand ... .Sh DESCRIPTION This is the name of the C language compiler as required by the -.St -p1003.2 . +.St -p1003.2 standard. .Pp The .Nm compiler accepts the following options: -.Bl -tag -offset indent -width "-D name = value" +.Bl -tag -width indent .It Fl c Suppress the link-edit phase of the compilation, and do not remove any object files that are produced. diff --git a/usr.bin/c89/c89.sh b/usr.bin/c89/c89.sh index 157fbbff884..55efd56c6b9 100755 --- a/usr.bin/c89/c89.sh +++ b/usr.bin/c89/c89.sh @@ -53,7 +53,7 @@ shift $(($OPTIND - 1)) if [ $# = "0" ] then - echo "Missing operand" 1>&2 + echo "c89: missing operand" 1>&2 usage fi @@ -64,7 +64,7 @@ do shift ;; *) - echo "Invalid operand" 1>&2 + echo "c89: invalid operand" 1>&2 usage ;; esac -- 2.45.2