Source-Changes-HG archive

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

[src/trunk]: src/usr.bin/msgc turn on automatic text layout for the printf an...



details:   https://anonhg.NetBSD.org/src/rev/bdf8ea70df4b
branches:  trunk
changeset: 474357:bdf8ea70df4b
user:      cgd <cgd%NetBSD.org@localhost>
date:      Sun Jul 04 09:37:18 1999 +0000

description:
turn on automatic text layout for the printf and display fns

diffstat:

 usr.bin/msgc/msg_sys.def |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (45 lines):

diff -r 2cff8c8f947e -r bdf8ea70df4b usr.bin/msgc/msg_sys.def
--- a/usr.bin/msgc/msg_sys.def  Sun Jul 04 08:01:39 1999 +0000
+++ b/usr.bin/msgc/msg_sys.def  Sun Jul 04 09:37:18 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: msg_sys.def,v 1.10 1999/07/04 07:40:51 cgd Exp $       */
+/*     $NetBSD: msg_sys.def,v 1.11 1999/07/04 09:37:18 cgd Exp $       */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -226,7 +226,7 @@
        msg_clear();
 
        va_start(ap, msg_no);
-       (void)msg_vprintf(0/*XXX*/, msg_list[msg_no], ap);
+       (void)msg_vprintf(1, msg_list[msg_no], ap);
        va_end(ap);
 }
 
@@ -235,7 +235,7 @@
        va_list ap;
 
        va_start (ap, msg_no);
-       (void)msg_vprintf(0/*XXX*/, msg_list[msg_no], ap);
+       (void)msg_vprintf(1, msg_list[msg_no], ap);
        va_end (ap);
 }
 
@@ -247,7 +247,7 @@
        msg_clear();
 
        va_start (ap, fmt);
-       res = msg_vprintf (0/*XXX*/, fmt, ap);
+       res = msg_vprintf (1, fmt, ap);
        va_end (ap);
        return res;
 }
@@ -258,7 +258,7 @@
        int  res;
 
        va_start (ap, fmt);
-       res = msg_vprintf (0/*XXX*/, fmt, ap);
+       res = msg_vprintf (1, fmt, ap);
        va_end (ap);
        return res;
 }



Home | Main Index | Thread Index | Old Index