diff options
author | Vladimir Yatsemirski <7catssmile@gmail.com> | 2012-12-27 18:27:13 +0100 |
---|---|---|
committer | Matteo Bernardini <ponce@slackbuilds.org> | 2012-12-27 18:27:33 +0100 |
commit | 18bc18abd0943f7bac47531e4300c912a8bd769a (patch) | |
tree | e89c0c8fa95101d2034aae924b680ef7874dfd66 /misc/sdcv/patches/04_format.patch | |
parent | 7941012fb8d958417582100e82342eafbdeedca6 (diff) | |
download | slackbuilds-18bc18abd0943f7bac47531e4300c912a8bd769a.tar.gz |
misc/sdcv: Added (console dictionary application).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
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) { |