svn commit: r340582 - stable/12/contrib/nvi/vi
Ed Maste
emaste at FreeBSD.org
Sun Nov 18 14:54:46 UTC 2018
Author: emaste
Date: Sun Nov 18 14:54:45 2018
New Revision: 340582
URL: https://svnweb.freebsd.org/changeset/base/340582
Log:
MFC r340288: nvi: remove superfluous space before ^\
This fixes alignment in vi's 'viusage' command and has been fixed
upstream and in OpenBSD.
Submitted by: Raf Czlonka (github:rjc)
Modified:
stable/12/contrib/nvi/vi/v_cmd.c
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/contrib/nvi/vi/v_cmd.c
==============================================================================
--- stable/12/contrib/nvi/vi/v_cmd.c Sun Nov 18 14:53:29 2018 (r340581)
+++ stable/12/contrib/nvi/vi/v_cmd.c Sun Nov 18 14:54:45 2018 (r340582)
@@ -130,7 +130,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,
"^]",
More information about the svn-src-all
mailing list