From aea37455eaaea3e5e0e407d8315d0df707ec2974 Mon Sep 17 00:00:00 2001 From: tg Date: Wed, 20 Oct 1999 08:52:09 +0000 Subject: Fix termcap % code processing for some terminals. Submitted by: Ross Ridge via buster@lambda.hh.provi.de (Andreas Burmester) --- lib/libmytinfo/tparm.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/libmytinfo/tparm.c b/lib/libmytinfo/tparm.c index 0cc2c89..b15dc57 100644 --- a/lib/libmytinfo/tparm.c +++ b/lib/libmytinfo/tparm.c @@ -5,6 +5,7 @@ * Public Domain * 92/02/01 07:30:36 * + * $FreeBSD$ */ #include "defs.h" @@ -346,8 +347,8 @@ va_dcl { return OOPS; if ((sp[1] == 'p' || sp[1] == 'c') && sp[2] != '\0' && fmt == NULL) { - /* GNU aritmitic parameter, what they - realy need is terminfo. */ + /* GNU arithmetic parameter, what they + really need is terminfo. */ int val, lc; if (sp[1] == 'p' && getarg(termcap - 1 + sp[2] - '@', @@ -475,7 +476,7 @@ va_dcl { sp++; fmt = sbuf; while(*fmt != '\0') { - if (*fmt == '$') + if (*fmt == '$' || *fmt == '^' || *fmt == '\\') *dp++ = '\\'; *dp++ = *fmt++; } -- cgit v1.1