Hello community,

here is the log from the commit of package scdoc for openSUSE:Factory checked 
in at 2019-02-08 12:10:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/scdoc (Old)
 and      /work/SRC/openSUSE:Factory/.scdoc.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "scdoc"

Fri Feb  8 12:10:48 2019 rev:4 rq:672085 version:1.8.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/scdoc/scdoc.changes      2019-02-05 
11:19:18.652877672 +0100
+++ /work/SRC/openSUSE:Factory/.scdoc.new.28833/scdoc.changes   2019-02-08 
12:11:11.261519095 +0100
@@ -1,0 +2,6 @@
+Wed Feb  6 09:50:27 UTC 2019 - mvet...@suse.com
+
+- Update to 1.8.1:
+  * Use !isalnum instead of isspace for this_stuff
+
+-------------------------------------------------------------------

Old:
----
  1.8.0.tar.gz

New:
----
  1.8.1.tar.gz

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

Other differences:
------------------
++++++ scdoc.spec ++++++
--- /var/tmp/diff_new_pack.vtzYM5/_old  2019-02-08 12:11:11.817518887 +0100
+++ /var/tmp/diff_new_pack.vtzYM5/_new  2019-02-08 12:11:11.821518885 +0100
@@ -12,12 +12,12 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via https://bugs.opensuse.org/
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
 
 Name:           scdoc
-Version:        1.8.0
+Version:        1.8.1
 Release:        0
 Summary:        A man page generator written in C99
 License:        MIT

++++++ 1.8.0.tar.gz -> 1.8.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scdoc-1.8.0/Makefile new/scdoc-1.8.1/Makefile
--- old/scdoc-1.8.0/Makefile    2019-01-27 17:09:10.000000000 +0100
+++ new/scdoc-1.8.1/Makefile    2019-01-30 18:13:04.000000000 +0100
@@ -1,4 +1,4 @@
-VERSION=1.8.0
+VERSION=1.8.1
 CFLAGS+=-g -DVERSION='"$(VERSION)"' -Wall -Wextra -Werror -Wno-unused-parameter
 LDFLAGS+=-static
 INCLUDE+=-Iinclude
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scdoc-1.8.0/src/main.c new/scdoc-1.8.1/src/main.c
--- old/scdoc-1.8.0/src/main.c  2019-01-27 17:09:10.000000000 +0100
+++ new/scdoc-1.8.1/src/main.c  2019-01-30 18:13:04.000000000 +0100
@@ -212,9 +212,7 @@
                        parse_format(p, FORMAT_BOLD);
                        break;
                case '_':
-                       if ((p->flags & FORMAT_UNDERLINE)) {
-                               parse_format(p, FORMAT_UNDERLINE);
-                       } else if (!p->flags && isspace(last)) {
+                       if (!isalnum(last) || (p->flags & FORMAT_UNDERLINE)) {
                                parse_format(p, FORMAT_UNDERLINE);
                        } else {
                                utf8_fputch(p->output, ch);

++++++ scdoc-1.6.1-makefile.patch ++++++
--- /var/tmp/diff_new_pack.vtzYM5/_old  2019-02-08 12:11:11.885518861 +0100
+++ /var/tmp/diff_new_pack.vtzYM5/_new  2019-02-08 12:11:11.885518861 +0100
@@ -2,7 +2,7 @@
 --- scdoc-1.8.0/Makefile       2019-01-27 17:09:10.000000000 +0100
 +++ scdoc-1.8.0.new/Makefile   2019-02-04 10:31:38.792833379 +0100
 @@ -1,6 +1,5 @@
- VERSION=1.8.0
+ VERSION=1.8.1
  CFLAGS+=-g -DVERSION='"$(VERSION)"' -Wall -Wextra -Werror 
-Wno-unused-parameter
 -LDFLAGS+=-static
  INCLUDE+=-Iinclude


Reply via email to