Accepting request 827578 from home:WernerFink:branches:Publishing

- 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/827578
OBS-URL: https://build.opensuse.org/package/show/Publishing/psgml?expand=0&rev=22
This commit is contained in:
Takashi Iwai 2020-08-18 12:30:49 +00:00 committed by Git OBS Bridge
parent ea5c39be42
commit bfa72cc7ec
3 changed files with 40 additions and 1 deletions

View File

@ -0,0 +1,30 @@
There is no (process-kill-without-query) anymore, use
(set-process-query-on-exit-flag) instead.
---
psgml-edit.el | 2 +-
psgml-jade.el | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
--- psgml-edit.el
+++ psgml-edit.el 2020-08-18 11:37:26.469311227 +0000
@@ -1974,7 +1974,7 @@ characters in the current coding system.
(process (start-process
(format "%s background" handler)
nil handler file)))
- (process-kill-without-query process))))
+ (set-process-query-on-exit-flag process nil))))
(error "Don't know how to handle notation '%s'." notation)))
(text (progn
--- psgml-jade.el
+++ psgml-jade.el 2020-08-18 11:37:36.901126421 +0000
@@ -347,7 +347,7 @@ by EXTENSION, if non-nil."
(erase-buffer)
(let ((process (start-process (concat name " background")
nil "/bin/sh" "-c" command)))
- (process-kill-without-query process))))
+ (set-process-query-on-exit-flag process nil))))
(defun sgml-run-command (name command file error-regexp)
"Hook for `sgml-command-list'."

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Tue Aug 18 11:19:51 UTC 2020 - Dr. Werner Fink <werner@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).
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 25 14:59:06 UTC 2019 - Dominique Leuenberger <dimstar@opensuse.org> Mon Nov 25 14:59:06 UTC 2019 - Dominique Leuenberger <dimstar@opensuse.org>

View File

@ -1,7 +1,7 @@
# #
# spec file for package psgml # spec file for package psgml
# #
# Copyright (c) 2019 SUSE LLC. # Copyright (c) 2020 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -48,6 +48,7 @@ Patch6: tdtd-dtd-patch
Patch7: xxml-indentation.diff Patch7: xxml-indentation.diff
Patch8: flavour.patch Patch8: flavour.patch
Patch9: psgml-texinfo-6.7.patch Patch9: psgml-texinfo-6.7.patch
Patch10: bugzilla-1175274-emacs-27.1.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch BuildArch: noarch
URL: http://sourceforge.net/projects/psgml/ URL: http://sourceforge.net/projects/psgml/
@ -102,6 +103,7 @@ cp -p %{SOURCE8} .
cp -p %{S:9} . cp -p %{S:9} .
%patch -p 1 -P 6 %patch -p 1 -P 6
%patch8 %patch8
%patch10 -p0
%build %build
./configure --prefix=%{_prefix} --infodir=%{_infodir} ./configure --prefix=%{_prefix} --infodir=%{_infodir}