diff options
Diffstat (limited to 'misc/sdcv/patches/04_format.patch')
-rw-r--r-- | misc/sdcv/patches/04_format.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/misc/sdcv/patches/04_format.patch b/misc/sdcv/patches/04_format.patch new file mode 100644 index 0000000000..bbb562363a --- /dev/null +++ b/misc/sdcv/patches/04_format.patch @@ -0,0 +1,21 @@ +From: Michal Čihař <nijel@debian.org> +Subject: Fixes displaying of 'g' (gtk markup) entries. +Bug: http://sourceforge.net/tracker/index.php?func=detail&aid=2125962&group_id=122858&atid=694730 +--- a/src/libwrapper.cpp ++++ b/src/libwrapper.cpp +@@ -118,7 +118,6 @@ + switch (*p++) { + case 'm': + case 'l': //need more work... +- case 'g': + sec_size = strlen(p); + if (sec_size) { + res+="\n"; +@@ -128,6 +127,7 @@ + } + sec_size++; + break; ++ case 'g': + case 'x': + sec_size = strlen(p); + if (sec_size) { |