summaryrefslogtreecommitdiff
path: root/usr.bin/vi
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2006-03-04 16:18:07 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2006-03-04 16:18:07 +0000
commit15aac0ded9c4353cc6a757bb184367d5503f80d8 (patch)
tree93a934f4f86cc2e84a593c196644b79f0d7e5f4a /usr.bin/vi
parent078669f3e390b2e1e5d5218e1025513c605f93a3 (diff)
the the
Diffstat (limited to 'usr.bin/vi')
-rw-r--r--usr.bin/vi/vi/v_scroll.c6
-rw-r--r--usr.bin/vi/vi/vs_refresh.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/vi/vi/v_scroll.c b/usr.bin/vi/vi/v_scroll.c
index b8f2f023ea9..5ca270fbccd 100644
--- a/usr.bin/vi/vi/v_scroll.c
+++ b/usr.bin/vi/vi/v_scroll.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: v_scroll.c,v 1.6 2006/01/08 21:05:40 miod Exp $ */
+/* $OpenBSD: v_scroll.c,v 1.7 2006/03/04 16:18:06 miod Exp $ */
/*-
* Copyright (c) 1992, 1993, 1994
@@ -337,7 +337,7 @@ v_hpagedown(sp, vp)
* !!!
* Historic vi did not move to the EOF if the screen couldn't move, i.e.
* if EOF was already displayed on the screen. This implementation does
- * move to EOF in that case, making ^F more like the the historic ^D.
+ * move to EOF in that case, making ^F more like the historic ^D.
*
* PUBLIC: int v_pagedown(SCR *, VICMD *);
*/
@@ -385,7 +385,7 @@ v_pagedown(sp, vp)
* !!!
* Historic vi did not move to the SOF if the screen couldn't move, i.e.
* if SOF was already displayed on the screen. This implementation does
- * move to SOF in that case, making ^B more like the the historic ^U.
+ * move to SOF in that case, making ^B more like the historic ^U.
*
* PUBLIC: int v_pageup(SCR *, VICMD *);
*/
diff --git a/usr.bin/vi/vi/vs_refresh.c b/usr.bin/vi/vi/vs_refresh.c
index 80464ff9118..b3d557ebb2e 100644
--- a/usr.bin/vi/vi/vs_refresh.c
+++ b/usr.bin/vi/vi/vs_refresh.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vs_refresh.c,v 1.11 2006/01/08 21:05:40 miod Exp $ */
+/* $OpenBSD: vs_refresh.c,v 1.12 2006/03/04 16:18:06 miod Exp $ */
/*-
* Copyright (c) 1992, 1993, 1994
@@ -508,7 +508,7 @@ adjust: if (!O_ISSET(sp, O_LEFTRIGHT) &&
/*
* Count up the widths of the characters. If it's a tab
- * character, go do it the the slow way.
+ * character, go do it the slow way.
*/
for (cwtotal = 0; cnt--; cwtotal += KEY_LEN(sp, ch))
if ((ch = *(u_char *)p--) == '\t')
@@ -546,7 +546,7 @@ adjust: if (!O_ISSET(sp, O_LEFTRIGHT) &&
/*
* Count up the widths of the characters. If it's a tab
- * character, go do it the the slow way. If we cross a
+ * character, go do it the slow way. If we cross a
* screen boundary, we can quit.
*/
for (cwtotal = SCNO; cnt--;) {