Hello community,

here is the log from the commit of package psgml for openSUSE:Factory checked 
in at 2012-07-02 21:33:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/psgml (Old)
 and      /work/SRC/openSUSE:Factory/.psgml.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "psgml", Maintainer is "k...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:Factory/psgml/psgml.changes      2011-09-23 
12:42:01.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.psgml.new/psgml.changes 2012-07-02 
21:33:04.000000000 +0200
@@ -1,0 +2,6 @@
+Mon Jul  2 13:04:56 UTC 2012 - wer...@suse.de
+
+- Add fix for new emacs 24.1, compare with
+  https://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00259.html 
+
+-------------------------------------------------------------------

New:
----
  flavour.patch

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

Other differences:
------------------
++++++ psgml.spec ++++++
--- /var/tmp/diff_new_pack.zuFzBm/_old  2012-07-02 21:33:06.000000000 +0200
+++ /var/tmp/diff_new_pack.zuFzBm/_new  2012-07-02 21:33:06.000000000 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package psgml (Version 1.3.2)
+# spec file for package psgml
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # 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 @@
 Patch5:         psgml-xxml-namespace-face.diff
 Patch6:         tdtd-dtd-patch
 Patch7:         xxml-indentation.diff
+Patch8:         flavour.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildArch:      noarch
 Url:            http://sourceforge.net/projects/psgml/
@@ -97,6 +98,7 @@
 cp -p %{SOURCE8} .
 cp -p %{S:9} .
 %patch -p 1 -P 6
+%patch8
 
 %build
 ./configure --prefix=%{_prefix} --infodir=%{_infodir}

++++++ flavour.patch ++++++
--- psgml-maint.el
+++ psgml-maint.el      2012-07-02 12:28:34.284377856 +0000
@@ -78,7 +78,7 @@
 (defun psgml-compile-files ()
   "Compile the PSGML source files that needs compilation."
   (interactive)
-  (psgml-find-source-dir (interactive-p))
+  (psgml-find-source-dir (called-interactively-p))
   (let ((default-directory psgml-source-dir)
        (load-path (cons psgml-source-dir load-path)))
     (mapcar (function psgml-byte-compile-file)
--- psgml-parse.el
+++ psgml-parse.el      2012-07-02 13:03:42.892010400 +0000
@@ -440,7 +440,7 @@ Applicable to XML.")
 ;; set of moves: list of moves
 
 (defmacro sgml-add-move-to-set (token node set)
-  (`(cons (cons (, token) (, node)) (, set))))
+  `(cons (cons ,token ,node) , set))
 
 (defmacro sgml-moves-lookup (token set)
   (` (assq (, token) (, set))))
@@ -460,7 +460,7 @@ Applicable to XML.")
   (` (cddr (, s))))
 
 (defmacro sgml-state-final-p (s)
-  (`(null (sgml-state-reqs (, s)))))
+  `(null (sgml-state-reqs ,s)))
 
 ;; adding moves
 ;; *** Should these functions check for ambiguity?
@@ -904,8 +904,8 @@ If ATTSPEC is nil, nil is returned."
   (cons
    'progn
    (loop for n in names collect
-        (`(defmacro (, (intern (format "sgml-eltype-%s" n))) (et)
-            (list 'get et ''(, n)))))))
+        `(defmacro ,(intern (format "sgml-eltype-%s" n)) (et)
+            (list 'get et '',n)))))
 
 (sgml-prop-fields
  ;;flags                       ; optional tags and mixed
--- xxml.el
+++ xxml.el     2012-07-02 12:28:42.168509922 +0000
@@ -293,7 +293,7 @@ Use nil to silence all progress.")
 (defun xxml-version ()
   "Identifies the current version of this module."
   (interactive)
-  (if (interactive-p)
+  (if (called-interactively-p)
       (message xxml-version)
     xxml-version))
 
--- xxml/xxml.el
+++ xxml/xxml.el        2012-07-02 12:28:38.396510520 +0000
@@ -293,7 +293,7 @@ Use nil to silence all progress.")
 (defun xxml-version ()
   "Identifies the current version of this module."
   (interactive)
-  (if (interactive-p)
+  (if (called-interactively-p)
       (message xxml-version)
     xxml-version))
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to