View | Details | Raw Unified | Return to bug 249873 | Differences between
and this patch

Collapse All | Expand All

(-)yc.el/Makefile (-3 / +3 lines)
Lines 14-26 Link Here
14
MAINTAINER=	t@nakao.org
14
MAINTAINER=	t@nakao.org
15
COMMENT=	Yet another Canna client for Emacs
15
COMMENT=	Yet another Canna client for Emacs
16
16
17
USES=		emacs
18
EMACS_FLAVORS_EXCLUDE=	devel_full devel_nox # fail to build
19
17
EXTRACT_CMD=	${GZCAT}
20
EXTRACT_CMD=	${GZCAT}
18
EXTRACT_BEFORE_ARGS=	#
21
EXTRACT_BEFORE_ARGS=	#
19
EXTRACT_AFTER_ARGS=	> yc.el
22
EXTRACT_AFTER_ARGS=	> yc.el
20
NO_WRKSUBDIR=	yes
23
NO_WRKSUBDIR=	yes
21
22
USES=		emacs
23
EMACS_FLAVORS_EXCLUDE=	devel_full devel_nox # fail to build
24
24
25
YC_LISPDIR=	${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/yc
25
YC_LISPDIR=	${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/yc
26
26
(-)yc.el/files/patch-yc.el (-4 / +15 lines)
Lines 1-6 Link Here
1
--- yc.el.orig	2018-06-04 13:46:33.083915000 +0900
1
--- yc.el.orig	2020-09-25 04:51:12 UTC
2
+++ yc.el	2018-06-04 14:48:21.116298000 +0900
2
+++ yc.el
3
@@ -1736,6 +1736,7 @@
3
@@ -393,7 +393,9 @@ OBJ $B$rJV5Q$9$k!#(B"
4
 		       (error nil)))))))
5
   (when (processp yc-server)
6
     (put 'yc-server 'init nil)
7
-    (process-kill-without-query yc-server)
8
+    (if (boundp 'process-kill-without-query)
9
+	(process-kill-without-query yc-server)
10
+      (set-process-query-on-exit-flag yc-server nil))
11
     (when yc-debug
12
       (unwind-protect
13
 	  (progn
14
@@ -1736,6 +1738,7 @@ OBJ $B$rJV5Q$9$k!#(B"
4
 				   (error nil))))
15
 				   (error nil))))
5
 	    (yc-eval-sexp (car expr)))))
16
 	    (yc-eval-sexp (car expr)))))
6
       (setq files (cdr files)))
17
       (setq files (cdr files)))
Lines 8-14 Link Here
8
     (if romkana-table
19
     (if romkana-table
9
 	(setq yc-rH-conv-dic (yc-search-file-first-in-path
20
 	(setq yc-rH-conv-dic (yc-search-file-first-in-path
10
 			      romkana-table (list "." (getenv "HOME")
21
 			      romkana-table (list "." (getenv "HOME")
11
@@ -2071,7 +2072,7 @@
22
@@ -2071,7 +2074,7 @@ OBJ $B$rJV5Q$9$k!#(B"
12
 ;; $BJ8@a$r;XDj$7$J$$>l9g!"8=:_$NJ8@a$,BP>]$H$J$k(B
23
 ;; $BJ8@a$r;XDj$7$J$$>l9g!"8=:_$NJ8@a$,BP>]$H$J$k(B
13
 ;; $BFI$_$r<hF@$7$?J8@a$O$=$NFI$_$r%-%c%C%7%e$9$k(B
24
 ;; $BFI$_$r<hF@$7$?J8@a$O$=$NFI$_$r%-%c%C%7%e$9$k(B
14
 ;; cut $B$,(B $BHs(Bnil $B$N>l9g!";XDjJ8@a0J9_$NFI$_$r:o=|$9$k(B
25
 ;; cut $B$,(B $BHs(Bnil $B$N>l9g!";XDjJ8@a0J9_$NFI$_$r:o=|$9$k(B

Return to bug 249873