diff -Nru hexchat-2.9.6/debian/changelog hexchat-2.9.6.1/debian/changelog --- hexchat-2.9.6/debian/changelog 2013-09-15 07:51:28.000000000 +0000 +++ hexchat-2.9.6.1/debian/changelog 2013-09-17 19:50:15.000000000 +0000 @@ -1,3 +1,27 @@ +hexchat (2.9.6.1-0ubuntu1~raring1) raring; urgency=medium + + * New upstream release + + -- Gwendal Le Bihan Tue, 17 Sep 2013 21:50:08 +0200 + +hexchat (2.9.6.1-0ubuntu1~saucy1) saucy; urgency=medium + + * New upstream release + + -- Gwendal Le Bihan Tue, 17 Sep 2013 21:48:53 +0200 + +hexchat (2.9.6-0ubuntu1~precise3) precise; urgency=medium + + * Fix libenchant dependencies + + -- Gwendal Le Bihan Sun, 15 Sep 2013 09:52:33 +0200 + +hexchat (2.9.6-0ubuntu1~quantal3) quantal; urgency=medium + + * Fix libenchant dependencies + + -- Gwendal Le Bihan Sun, 15 Sep 2013 09:52:04 +0200 + hexchat (2.9.6-0ubuntu1~raring3) raring; urgency=medium * Fix libenchant dependencies diff -Nru hexchat-2.9.6/src/fe-gtk/xtext.c hexchat-2.9.6.1/src/fe-gtk/xtext.c --- hexchat-2.9.6/src/fe-gtk/xtext.c 2013-09-11 22:18:19.000000000 +0000 +++ hexchat-2.9.6.1/src/fe-gtk/xtext.c 2013-09-15 15:21:19.000000000 +0000 @@ -1951,7 +1951,7 @@ word = gtk_xtext_strip_color (word, len, xtext->scratch_buffer, NULL, NULL, slp, FALSE); /* avoid turning the cursor into a hand for non-url part of the word */ - if (xtext->urlcheck_function (GTK_WIDGET (xtext), word)) + if (xtext->urlcheck_function && xtext->urlcheck_function (GTK_WIDGET (xtext), word)) { int start, end; url_last (&start, &end);