talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 980b322a50d24f1c08d6e0bd38a41ffbfe434fbb
parent 7052a385e02d782badbd571c3919316a502ec699
Author: Paul Mangan <paul@claws-mail.org>
Date:   Tue,  9 Aug 2011 11:11:10 +0000

2011-08-09 [paul]	3.7.9cvs43

	* src/mimeview.c
		fix bug 2420, 'Invalid markup in icon tooltip text after signature check'

Diffstat:
MChangeLog | 5+++++
MPATCHSETS | 1+
Mconfigure.ac | 2+-
Msrc/mimeview.c | 2+-
4 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,3 +1,8 @@ +2011-08-09 [paul] 3.7.9cvs43 + + * src/mimeview.c + fix bug 2420, 'Invalid markup in icon tooltip text after signature check' + 2011-08-06 [paul] 3.7.9cvs42 * src/compose.c diff --git a/PATCHSETS b/PATCHSETS @@ -4194,3 +4194,4 @@ ( cvs diff -u -r 1.1.2.5 -r 1.1.2.6 claws-mail.desktop; ) > 3.7.9cvs40.patchset ( cvs diff -u -r 1.5.2.30 -r 1.5.2.31 src/gtk/description_window.c; ) > 3.7.9cvs41.patchset ( cvs diff -u -r 1.382.2.577 -r 1.382.2.578 src/compose.c; ) > 3.7.9cvs42.patchset +( cvs diff -u -r 1.83.2.168 -r 1.83.2.169 src/mimeview.c; ) > 3.7.9cvs43.patchset diff --git a/configure.ac b/configure.ac @@ -12,7 +12,7 @@ MINOR_VERSION=7 MICRO_VERSION=9 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=42 +EXTRA_VERSION=43 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/mimeview.c b/src/mimeview.c @@ -2404,7 +2404,7 @@ static void icon_list_append_icon (MimeView *mimeview, MimeInfo *mimeinfo) g_free(tmp); } if (sigshort && *sigshort) { - tiptmp = g_strjoin("\n", tip, sigshort, NULL); + tiptmp = g_markup_escape_text(sigshort, -1); g_free(tip); tip = tiptmp; }