Module Name:    src
Committed By:   pgoyette
Date:           Sun Oct 22 06:26:01 UTC 2017

Modified Files:
        src/external/bsd/nvi/dist/vi: v_cmd.c

Log Message:
Remove superfluous space character.

>From rjc via https://github.com/NetBSD/src/pull/1


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/nvi/dist/vi/v_cmd.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/nvi/dist/vi/v_cmd.c
diff -u src/external/bsd/nvi/dist/vi/v_cmd.c:1.3 src/external/bsd/nvi/dist/vi/v_cmd.c:1.4
--- src/external/bsd/nvi/dist/vi/v_cmd.c:1.3	Sun Jan 26 21:43:45 2014
+++ src/external/bsd/nvi/dist/vi/v_cmd.c	Sun Oct 22 06:26:01 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: v_cmd.c,v 1.3 2014/01/26 21:43:45 christos Exp $ */
+/*	$NetBSD: v_cmd.c,v 1.4 2017/10/22 06:26:01 pgoyette Exp $ */
 /*-
  * Copyright (c) 1992, 1993, 1994
  *	The Regents of the University of California.  All rights reserved.
@@ -16,7 +16,7 @@
 static const char sccsid[] = "Id: v_cmd.c,v 10.9 1996/03/28 15:18:39 bostic Exp  (Berkeley) Date: 1996/03/28 15:18:39 ";
 #endif /* not lint */
 #else
-__RCSID("$NetBSD: v_cmd.c,v 1.3 2014/01/26 21:43:45 christos Exp $");
+__RCSID("$NetBSD: v_cmd.c,v 1.4 2017/10/22 06:26:01 pgoyette Exp $");
 #endif
 
 #include <sys/types.h>
@@ -137,7 +137,7 @@ VIKEYS const vikeys [MAXVIKEY + 1] = {
 /* 034  ^\ */
 	{v_exmode,	0,
 	    "^\\",
-	    " ^\\ switch to ex mode"},
+	    "^\\ switch to ex mode"},
 /* 035  ^] */
 	{v_tagpush,	V_ABS|V_KEYW|VM_RCM_SET,
 	    "^]",

Reply via email to