Date: Sun, 18 Nov 2018 14:54:45 +0000 (UTC) From: Ed Maste <emaste@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org Subject: svn commit: r340582 - stable/12/contrib/nvi/vi Message-ID: <201811181454.wAIEsj5i035932@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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, "^]",
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811181454.wAIEsj5i035932>