From 4d405feb6f8c720cd004dbba9d9a857bd1a4d95f Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Sun, 16 May 2010 01:35:37 +0000 Subject: sync to OpenBSD: introduce a #define to get rid of the magic number describing the ASCII character used to represent non-breaking space; ok kristaps --- term.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'term.c') diff --git a/term.c b/term.c index e43d9692..1641df3d 100644 --- a/term.c +++ b/term.c @@ -1,4 +1,4 @@ -/* $Id: term.c,v 1.134 2010/05/15 16:18:23 joerg Exp $ */ +/* $Id: term.c,v 1.135 2010/05/16 01:35:37 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -233,7 +233,7 @@ term_flushln(struct termp *p) for ( ; i < (int)p->col; i++) if (' ' == p->buf[i]) break; - else if (31 == p->buf[i]) + else if (ASCII_NBRSP == p->buf[i]) putchar(' '); else putchar(p->buf[i]); -- cgit v1.2.3