svn commit: r501920 - in head/japanese/anthy: . files
MANTANI Nobutaka
nobutaka at FreeBSD.org
Sat May 18 07:51:58 UTC 2019
Author: nobutaka
Date: Sat May 18 07:51:56 2019
New Revision: 501920
URL: https://svnweb.freebsd.org/changeset/ports/501920
Log:
- Fix emacs lisp to work on emacs27.
- Bump PORTREVISION.
Submitted by: YAMAMOTO, Shigeru
Differential Revision: https://reviews.freebsd.org/D19916
Modified:
head/japanese/anthy/Makefile
head/japanese/anthy/files/patch-src-util_anthy.el
Modified: head/japanese/anthy/Makefile
==============================================================================
--- head/japanese/anthy/Makefile Sat May 18 07:48:03 2019 (r501919)
+++ head/japanese/anthy/Makefile Sat May 18 07:51:56 2019 (r501920)
@@ -3,7 +3,7 @@
PORTNAME= anthy
PORTVERSION= 9100h
-PORTREVISION= 4
+PORTREVISION= 5
CATEGORIES= japanese
MASTER_SITES= OSDN/${PORTNAME}/37536
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
Modified: head/japanese/anthy/files/patch-src-util_anthy.el
==============================================================================
--- head/japanese/anthy/files/patch-src-util_anthy.el Sat May 18 07:48:03 2019 (r501919)
+++ head/japanese/anthy/files/patch-src-util_anthy.el Sat May 18 07:51:56 2019 (r501920)
@@ -1,6 +1,30 @@
---- src-util/anthy.el.orig 2013-05-15 01:57:21.000000000 +0900
-+++ src-util/anthy.el 2013-05-15 01:58:25.000000000 +0900
-@@ -892,7 +892,7 @@
+--- src-util/anthy.el.orig 2008-11-29 12:46:00 UTC
++++ src-util/anthy.el
+@@ -161,11 +161,9 @@
+
+ ;; From skk-macs.el From viper-util.el. Welcome!
+ (defmacro anthy-deflocalvar (var default-value &optional documentation)
+- (` (progn
+- (defvar (, var) (, default-value)
+- (, (format "%s\n\(buffer local\)" documentation)))
+- (make-variable-buffer-local '(, var))
+- )))
++ `(defvar ,var ,default-value
++ ,(format "%s\n\(buffer local\)" documentation))
++ )
+
+ ;; buffer local variables
+ (anthy-deflocalvar anthy-context-id nil "コンテキストのid")
+@@ -745,7 +743,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))
+@@ -892,7 +890,7 @@
((event-matches-key-specifier-p event 'backspace) 8)
(t
(char-to-int (event-to-character event)))))
More information about the svn-ports-all
mailing list