svn commit: r546077 - in head/japanese/anthy: . files

MANTANI Nobutaka nobutaka at FreeBSD.org
Mon Aug 24 12:52:35 UTC 2020


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))


More information about the svn-ports-head mailing list