From 2451cb118a327946dd8d0df52f45788d2767b456 Mon Sep 17 00:00:00 2001
From: js <js-gajim@webkeks.org>
Date: Sun, 5 Oct 2008 10:21:35 +0000
Subject: [PATCH] Fix #4375.

---
 src/gajim.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gajim.py b/src/gajim.py
index 55ea43b4af..b037c8e7ba 100755
--- a/src/gajim.py
+++ b/src/gajim.py
@@ -2453,7 +2453,7 @@ class Interface:
 			emoticons_pattern = '|' + \
 				'(?:(?<![\w.]' + emoticons_pattern_prematch[:-1]	+ '))' + \
 				'(?:'		 + emoticons_pattern[:-1]				+ ')'  + \
-				'(?:(?![\w.]'  + emoticons_pattern_postmatch[:-1]  + '))'
+				'(?:(?![\w]'  + emoticons_pattern_postmatch[:-1]  + '))'
 
 		# because emoticons match later (in the string) they need to be after
 		# basic matches that may occur earlier
-- 
GitLab