From owner-svn-ports-all@freebsd.org Tue Aug 22 14:57:03 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8D444DF0514; Tue, 22 Aug 2017 14:57:03 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5C9D764D6F; Tue, 22 Aug 2017 14:57:03 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7MEv2Kk047831; Tue, 22 Aug 2017 14:57:02 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7MEv2Lw047829; Tue, 22 Aug 2017 14:57:02 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201708221457.v7MEv2Lw047829@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 22 Aug 2017 14:57:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r448538 - in head/editors/nvi-m17n: . files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/editors/nvi-m17n: . files X-SVN-Commit-Revision: 448538 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Aug 2017 14:57:03 -0000 Author: swills Date: Tue Aug 22 14:57:02 2017 New Revision: 448538 URL: https://svnweb.freebsd.org/changeset/ports/448538 Log: editors/nvi-m17n: Fix autodetect of iso-2022-jp2 PR: 215852 Submitted by: Yasuhito FUTATSUKI Added: head/editors/nvi-m17n/files/patch-common-multibyte.c (contents, props changed) Modified: head/editors/nvi-m17n/Makefile Modified: head/editors/nvi-m17n/Makefile ============================================================================== --- head/editors/nvi-m17n/Makefile Tue Aug 22 14:55:12 2017 (r448537) +++ head/editors/nvi-m17n/Makefile Tue Aug 22 14:57:02 2017 (r448538) @@ -3,7 +3,7 @@ PORTNAME= nvi PORTVERSION= 1.79.20040608 -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES?= editors MASTER_SITES= ftp://ftp.mk.bsdclub.org/pub/FreeBSD/distfiles/ \ Added: head/editors/nvi-m17n/files/patch-common-multibyte.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/nvi-m17n/files/patch-common-multibyte.c Tue Aug 22 14:57:02 2017 (r448538) @@ -0,0 +1,11 @@ +--- ../common/multibyte.c.orig 2017-01-07 18:04:20.087312000 +0900 ++++ ../common/multibyte.c 2017-01-07 18:05:53.585988000 +0900 +@@ -1455,7 +1455,7 @@ + return ename; + + for (i = 0; i < maxfunc; i++) { +- if (maybe == (1 << i)) ++ if (maybe & (1 << i)) + return dt->name[i]; + } + }