Takashi Iwai
3319c9c0a4
- Add patch uim-fix-multiple_declaration.diff to avoid multiple declaration of GCROOTS_jmp_buf - Add patch bugzilla-1175274-emacs-27.1.patch There is no (process-kill-without-query) anymore, use (set-process-query-on-exit-flag) instead (boo#1175274). OBS-URL: https://build.opensuse.org/request/show/827590 OBS-URL: https://build.opensuse.org/package/show/M17N/uim?expand=0&rev=57
31 lines
884 B
Diff
31 lines
884 B
Diff
There is no (process-kill-without-query) anymore, use
|
|
(set-process-query-on-exit-flag) instead.
|
|
|
|
---
|
|
emacs/uim-helper.el | 2 +-
|
|
emacs/uim.el | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- emacs/uim-helper.el
|
|
+++ emacs/uim-helper.el 2020-08-18 11:46:01.236192703 +0000
|
|
@@ -106,7 +106,7 @@
|
|
(if (not proc)
|
|
(error "uim.el: Couldn't invoke uim-el-helper-agent."))
|
|
|
|
- (process-kill-without-query proc)
|
|
+ (set-process-query-on-exit-flag proc nil)
|
|
|
|
;; wait "OK"
|
|
(let ((patience uim-startup-timeout) (ok nil))
|
|
--- emacs/uim.el
|
|
+++ emacs/uim.el 2020-08-18 11:45:51.828359337 +0000
|
|
@@ -488,7 +488,7 @@
|
|
(error "uim.el: Couldn't invoke uim-el-agent."))
|
|
|
|
;; don't ask kill
|
|
- (process-kill-without-query proc)
|
|
+ (set-process-query-on-exit-flag proc nil)
|
|
|
|
;; wait "OK"
|
|
(let ((patience uim-startup-timeout) (ok nil))
|