Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Aug 2020 12:52:35 +0000 (UTC)
From:      MANTANI Nobutaka <nobutaka@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r546077 - in head/japanese/anthy: . files
Message-ID:  <202008241252.07OCqZKl041055@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: nobutaka
Date: Mon Aug 24 12:52:34 2020
New Revision: 546077
URL: https://svnweb.freebsd.org/changeset/ports/546077

Log:
  Fix breakage of anthy.el with emacs27.
  
  PR:		248876
  Submitted by:	nyan

Added:
  head/japanese/anthy/files/patch-src-util_anthy.el   (contents, props changed)
Modified:
  head/japanese/anthy/Makefile

Modified: head/japanese/anthy/Makefile
==============================================================================
--- head/japanese/anthy/Makefile	Mon Aug 24 12:50:32 2020	(r546076)
+++ head/japanese/anthy/Makefile	Mon Aug 24 12:52:34 2020	(r546077)
@@ -3,7 +3,7 @@
 
 PORTNAME=	anthy
 PORTVERSION=	0.4
-PORTREVISION=	2
+PORTREVISION=	3
 PORTEPOCH=	1
 CATEGORIES=	japanese
 MASTER_SITES=	DEBIAN

Added: head/japanese/anthy/files/patch-src-util_anthy.el
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/japanese/anthy/files/patch-src-util_anthy.el	Mon Aug 24 12:52:34 2020	(r546077)
@@ -0,0 +1,11 @@
+--- src-util/anthy.el.orig	2019-07-05 02:37:13 UTC
++++ src-util/anthy.el
+@@ -745,7 +745,7 @@
+ 	(if anthy-agent-process
+ 	    (kill-process anthy-agent-process))
+ 	(setq anthy-agent-process proc)
+-	(process-kill-without-query proc)
++	(set-process-query-on-exit-flag proc nil)
+ 	(if anthy-xemacs
+ 	    (if (coding-system-p (find-coding-system 'euc-japan))
+ 		(set-process-coding-system proc 'euc-japan 'euc-japan))



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008241252.07OCqZKl041055>