Hello community,

here is the log from the commit of package anthy for openSUSE:Factory checked 
in at 2020-08-18 15:36:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/anthy (Old)
 and      /work/SRC/openSUSE:Factory/.anthy.new.3399 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "anthy"

Tue Aug 18 15:36:45 2020 rev:35 rq:827585 version:9100h

Changes:
--------
--- /work/SRC/openSUSE:Factory/anthy/anthy.changes      2019-06-13 
09:29:24.848183659 +0200
+++ /work/SRC/openSUSE:Factory/.anthy.new.3399/anthy.changes    2020-08-18 
15:36:47.444680275 +0200
@@ -1,0 +2,7 @@
+Tue Aug 18 11:19:51 UTC 2020 - Dr. Werner Fink <wer...@suse.de>
+
+- 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).
+
+-------------------------------------------------------------------

New:
----
  bugzilla-1175274-emacs-27.1.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ anthy.spec ++++++
--- /var/tmp/diff_new_pack.0JI6YQ/_old  2020-08-18 15:36:48.456680695 +0200
+++ /var/tmp/diff_new_pack.0JI6YQ/_new  2020-08-18 15:36:48.460680696 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package anthy
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -46,6 +46,7 @@
 Patch3:         bugzilla-224463-comparison-with-string-literal.patch
 # PATCH-FIX-OPENSUSE anthy-use-last-command-event.diff bnc#849211 ti...@suse.de
 Patch4:         anthy-use-last-command-event.diff
+Patch5:         bugzilla-1175274-emacs-27.1.patch
 BuildRequires:  fdupes
 BuildRequires:  libtool
 %if %{with emacs}
@@ -86,6 +87,7 @@
 %patch2 -p 1
 %patch3 -p 1
 %patch4 -p 1
+%patch5 -p 0
 
 %build
 autoreconf --force --install

++++++ bugzilla-1175274-emacs-27.1.patch ++++++
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(-)

--- src-util/anthy.el
+++ src-util/anthy.el   2020-08-18 11:58:02.915408190 +0000
@@ -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 "コンテキストのid")
@@ -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))

Reply via email to