2020-08-18 14:30:19 +02:00
|
|
|
|
There is no (process-kill-without-query) anymore, use
|
|
|
|
|
(set-process-query-on-exit-flag) instead.
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
src-util/anthy.el | 12 ++++++------
|
|
|
|
|
1 file changed, 6 insertions(+), 6 deletions(-)
|
|
|
|
|
|
2021-06-07 16:55:10 +02:00
|
|
|
|
Index: anthy-9100h/src-util/anthy.el
|
|
|
|
|
===================================================================
|
|
|
|
|
--- anthy-9100h.orig/src-util/anthy.el
|
|
|
|
|
+++ anthy-9100h/src-util/anthy.el
|
2020-08-18 14:30:19 +02:00
|
|
|
|
@@ -161,11 +161,11 @@
|
|
|
|
|
|
|
|
|
|
;; 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))
|
|
|
|
|
- )))
|
|
|
|
|
+ `(progn
|
|
|
|
|
+ (defvar ,var ,default-value
|
|
|
|
|
+ ,(format "%s\n\(buffer local\)" documentation))
|
|
|
|
|
+ (make-variable-buffer-local ',var)
|
|
|
|
|
+ ))
|
|
|
|
|
|
|
|
|
|
;; buffer local variables
|
|
|
|
|
(anthy-deflocalvar anthy-context-id nil "$B%3%s%F%-%9%H$N(Bid")
|
|
|
|
|
@@ -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))
|