summaryrefslogtreecommitdiff
path: root/usr.bin/vi/common/mark.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/vi/common/mark.c')
-rw-r--r--usr.bin/vi/common/mark.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/vi/common/mark.c b/usr.bin/vi/common/mark.c
index 21bd68067b2..0ac1fc28bf9 100644
--- a/usr.bin/vi/common/mark.c
+++ b/usr.bin/vi/common/mark.c
@@ -10,7 +10,7 @@
#include "config.h"
#ifndef lint
-static const char sccsid[] = "@(#)mark.c 10.12 (Berkeley) 3/30/96";
+static const char sccsid[] = "@(#)mark.c 10.13 (Berkeley) 7/19/96";
#endif /* not lint */
#include <sys/types.h>
@@ -41,7 +41,7 @@ static LMARK *mark_find __P((SCR *, ARG_CHAR_T));
* if we've given the line to v_ntext.c:v_ntext() for editing. Historic vi
* would move to the first non-blank on the line when the mark location was
* past the end of the line. This can be complicated by deleting to a mark
- * that has disappeared using the ` command. Historic vi vi treated this as
+ * that has disappeared using the ` command. Historic vi treated this as
* a line-mode motion and deleted the line. This implementation complains to
* the user.
*