aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2016-04-12 15:30:00 +0000
committerIngo Schwarze <schwarze@openbsd.org>2016-04-12 15:30:00 +0000
commit3d44d6fdfb85a4640e85a14ab6192d13c8ab320b (patch)
tree2b74623c04d79cc9a8f2fc84f1a9e9cd3f835f35
parentc862aea6e8fd55abcd9c772a7a4ffc69d18486f3 (diff)
downloadmandoc-3d44d6fdfb85a4640e85a14ab6192d13c8ab320b.tar.gz
mandoc-3d44d6fdfb85a4640e85a14ab6192d13c8ab320b.tar.zst
mandoc-3d44d6fdfb85a4640e85a14ab6192d13c8ab320b.zip
sed 's/the the/the/' in a comment; from krw@
-rw-r--r--term.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/term.c b/term.c
index e9171013..0fd8f7c0 100644
--- a/term.c
+++ b/term.c
@@ -1,4 +1,4 @@
-/* $Id: term.c,v 1.256 2016/01/07 21:03:54 schwarze Exp $ */
+/* $Id: term.c,v 1.257 2016/04/12 15:30:00 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010-2015 Ingo Schwarze <schwarze@openbsd.org>
@@ -160,7 +160,7 @@ term_flushln(struct termp *p)
if (' ' == p->buf[j] || '\t' == p->buf[j])
break;
- /* Back over the the last printed character. */
+ /* Back over the last printed character. */
if (8 == p->buf[j]) {
assert(j);
vend -= (*p->width)(p, p->buf[j - 1]);