diff options
Diffstat (limited to 'app-text/sdcv/files/sdcv-0.4.2-g-handling.patch')
-rw-r--r-- | app-text/sdcv/files/sdcv-0.4.2-g-handling.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/app-text/sdcv/files/sdcv-0.4.2-g-handling.patch b/app-text/sdcv/files/sdcv-0.4.2-g-handling.patch new file mode 100644 index 000000000000..72fb690358ed --- /dev/null +++ b/app-text/sdcv/files/sdcv-0.4.2-g-handling.patch @@ -0,0 +1,21 @@ +https://sourceforge.net/tracker/index.php?func=detail&aid=2125962&group_id=122858&atid=694730 + +Fixes displaying of 'g' (gtk markup) entries. +--- 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) { |