From nobody Sat Jan 28 13:24:03 2023 X-Original-To: dev-commits-ports-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4P3wCQ682sz3cH6w; Sat, 28 Jan 2023 13:24:34 +0000 (UTC) (envelope-from nobutaka@nobutaka.org) Received: from ik1-329-24577.vs.sakura.ne.jp (ik1-329-24577.vs.sakura.ne.jp [153.126.186.81]) (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 4P3wCQ38bzz3lBT; Sat, 28 Jan 2023 13:24:34 +0000 (UTC) (envelope-from nobutaka@nobutaka.org) Authentication-Results: mx1.freebsd.org; none Received: from vm-home3.internal.nobutaka.org (softbank060106245245.bbtec.net [60.106.245.245]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ik1-329-24577.vs.sakura.ne.jp (Postfix) with ESMTPSA id 1E9BBC6D941; Sat, 28 Jan 2023 22:24:24 +0900 (JST) DKIM-Filter: OpenDKIM Filter v2.11.0 ik1-329-24577.vs.sakura.ne.jp 1E9BBC6D941 Date: Sat, 28 Jan 2023 22:24:03 +0900 Message-ID: <86k016g5cc.wl-nobutaka@FreeBSD.org> From: MANTANI Nobutaka To: MANTANI Nobutaka Cc: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: Re: git: a2d5d783191e - main - japanese/anthy: Fix runtime error of anthy.el with editors/emacs-devel In-Reply-To: <202301281246.30SCkwr0008386@gitrepo.freebsd.org> References: <202301281246.30SCkwr0008386@gitrepo.freebsd.org> User-Agent: Wanderlust/2.15.9 (=?UTF-8?B?QWxtb3N0IFVucmVhbA==?=) SEMI-EPG/1.14.7 (=?UTF-8?B?SGFydWU=?=) FLIM-LB/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL-LB/10.8 EasyPG/1.0.0 Emacs/28.2 (=?UTF-8?B?YW1kNjQtcG9ydGJsZC1mcmVlYnNkMTMuMQ==?=) MULE/6.0 (=?UTF-8?B?SEFOQUNISVJVU0FUTw==?=) List-Id: Commit messages for all branches of the ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-all@freebsd.org X-BeenThere: dev-commits-ports-all@freebsd.org MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4P3wCQ38bzz3lBT X-Spamd-Bar: ---- X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:7684, ipnet:153.126.128.0/17, country:JP] X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N Oops, I forgot to add these lines. PR: 269161 Reported by: yasu On Sat, 28 Jan 2023 21:46:58 +0900, MANTANI Nobutaka wrote: > > The branch main has been updated by nobutaka: > > URL: https://cgit.FreeBSD.org/ports/commit/?id=a2d5d783191e4cb94f51c3a1ddc996b0da8b16a3 > > commit a2d5d783191e4cb94f51c3a1ddc996b0da8b16a3 > Author: MANTANI Nobutaka > AuthorDate: 2023-01-28 12:37:59 +0000 > Commit: MANTANI Nobutaka > CommitDate: 2023-01-28 12:37:59 +0000 > > japanese/anthy: Fix runtime error of anthy.el with editors/emacs-devel > --- > japanese/anthy/Makefile | 2 +- > japanese/anthy/files/patch-src-util_anthy.el | 9 +++++++++ > 2 files changed, 10 insertions(+), 1 deletion(-) > > diff --git a/japanese/anthy/Makefile b/japanese/anthy/Makefile > index 2cd6d6d44969..f80dd0c3b327 100644 > --- a/japanese/anthy/Makefile > +++ b/japanese/anthy/Makefile > @@ -1,6 +1,6 @@ > PORTNAME= anthy > PORTVERSION= 0.4 > -PORTREVISION= 3 > +PORTREVISION= 4 > PORTEPOCH= 1 > CATEGORIES= japanese > MASTER_SITES= DEBIAN > diff --git a/japanese/anthy/files/patch-src-util_anthy.el b/japanese/anthy/files/patch-src-util_anthy.el > index b2052a38b369..e8b6d1da7a6d 100644 > --- a/japanese/anthy/files/patch-src-util_anthy.el > +++ b/japanese/anthy/files/patch-src-util_anthy.el > @@ -1,5 +1,14 @@ > --- src-util/anthy.el.orig 2019-07-05 02:37:13 UTC > +++ src-util/anthy.el > +@@ -71,7 +71,7 @@ > + (defvar anthy-highlight-face nil) > + (defvar anthy-underline-face nil) > + (copy-face 'highlight 'anthy-highlight-face) > +-(set-face-underline-p 'anthy-highlight-face t) > ++(set-face-underline 'anthy-highlight-face t) > + (copy-face 'underline 'anthy-underline-face) > + > + ;; > @@ -745,7 +745,7 @@ > (if anthy-agent-process > (kill-process anthy-agent-process)) >