summaryrefslogtreecommitdiffstats
path: root/contrib/nvi/vi/v_left.c
diff options
context:
space:
mode:
authorbapt <bapt@FreeBSD.org>2015-04-10 17:50:28 +0000
committerbapt <bapt@FreeBSD.org>2015-04-10 17:50:28 +0000
commitc7f08411e0a7093fd65b33ad890811466257df99 (patch)
treebb238a04251527b96bb646b776058bba8293a640 /contrib/nvi/vi/v_left.c
parent62376cf1de8b943fb2849e0ee409f0b0d7293e07 (diff)
parentc42d98a117446dd83b8d13800dd2e3726cb0d2d0 (diff)
downloadFreeBSD-src-c7f08411e0a7093fd65b33ad890811466257df99.zip
FreeBSD-src-c7f08411e0a7093fd65b33ad890811466257df99.tar.gz
Update nvi to 2.1.3 which fixes the data corruption when locale conversion
failed
Diffstat (limited to 'contrib/nvi/vi/v_left.c')
-rw-r--r--contrib/nvi/vi/v_left.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/nvi/vi/v_left.c b/contrib/nvi/vi/v_left.c
index 2a8f6e6..dd7ccb8 100644
--- a/contrib/nvi/vi/v_left.c
+++ b/contrib/nvi/vi/v_left.c
@@ -28,7 +28,7 @@ static const char sccsid[] = "$Id: v_left.c,v 10.9 2001/06/25 15:19:32 skimo Exp
* v_left -- [count]^H, [count]h
* Move left by columns.
*
- * PUBLIC: int v_left __P((SCR *, VICMD *));
+ * PUBLIC: int v_left(SCR *, VICMD *);
*/
int
v_left(SCR *sp, VICMD *vp)
@@ -66,7 +66,7 @@ v_left(SCR *sp, VICMD *vp)
* v_cfirst -- [count]_
* Move to the first non-blank character in a line.
*
- * PUBLIC: int v_cfirst __P((SCR *, VICMD *));
+ * PUBLIC: int v_cfirst(SCR *, VICMD *);
*/
int
v_cfirst(SCR *sp, VICMD *vp)
@@ -133,7 +133,7 @@ v_cfirst(SCR *sp, VICMD *vp)
* v_first -- ^
* Move to the first non-blank character in this line.
*
- * PUBLIC: int v_first __P((SCR *, VICMD *));
+ * PUBLIC: int v_first(SCR *, VICMD *);
*/
int
v_first(SCR *sp, VICMD *vp)
@@ -195,7 +195,7 @@ v_first(SCR *sp, VICMD *vp)
* requested column is past EOL, move to EOL. The nasty part is
* that we have to know character column widths to make this work.
*
- * PUBLIC: int v_ncol __P((SCR *, VICMD *));
+ * PUBLIC: int v_ncol(SCR *, VICMD *);
*/
int
v_ncol(SCR *sp, VICMD *vp)
@@ -255,7 +255,7 @@ v_ncol(SCR *sp, VICMD *vp)
* v_zero -- 0
* Move to the first column on this line.
*
- * PUBLIC: int v_zero __P((SCR *, VICMD *));
+ * PUBLIC: int v_zero(SCR *, VICMD *);
*/
int
v_zero(SCR *sp, VICMD *vp)
OpenPOWER on IntegriCloud