From cdcfa92a4c3c4a130613eda38e79730f1f874bd5 Mon Sep 17 00:00:00 2001 From: bostic Date: Mon, 29 Nov 1993 20:27:45 +0000 Subject: [PATCH] buffer characters should not be remapped --- ex/ex_at.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ex/ex_at.c b/ex/ex_at.c index 75783da1..fa27e61a 100644 --- a/ex/ex_at.c +++ b/ex/ex_at.c @@ -6,7 +6,7 @@ */ #ifndef lint -static char sccsid[] = "$Id: ex_at.c,v 8.12 1993/11/29 20:01:53 bostic Exp $ (Berkeley) $Date: 1993/11/29 20:01:53 $"; +static char sccsid[] = "$Id: ex_at.c,v 8.13 1993/11/29 20:27:45 bostic Exp $ (Berkeley) $Date: 1993/11/29 20:27:45 $"; #endif /* not lint */ #include @@ -62,8 +62,8 @@ ex_at(sp, ep, cmdp) lmode = F_ISSET(cbp, CB_LMODE) || tp->q.cqe_prev != (void *)&cbp->textq; for (; tp != (void *)&cbp->textq; tp = tp->q.cqe_prev) if ((lmode || tp->q.cqe_prev != (void *)&cbp->textq) && - term_push(sp, "\n", 1, 0, CH_QUOTED) || - term_push(sp, tp->lb, tp->len, 0, CH_QUOTED)) + term_push(sp, "\n", 1, 0, CH_NOMAP | CH_QUOTED) || + term_push(sp, tp->lb, tp->len, 0, CH_NOMAP | CH_QUOTED)) return (1); return (0); } -- 2.11.4.GIT