Show
Ignore:
Timestamp:
12/18/07 05:09:04 (11 months ago)
Author:
nicfit
Message:

Merged revisions 9156-9161,9163-9169 via svnmerge from
svn://88.191.11.156/gajim/trunk

........

r9165 | asterix | 2007-12-17 13:15:06 -0700 (Mon, 17 Dec 2007) | 2 lines


remove 'dh' from version name. Was from pep branch

........

r9166 | jim++ | 2007-12-17 14:54:18 -0700 (Mon, 17 Dec 2007) | 2 lines


Highlight on (nick/muc_highlight_words) that contains a space too. Fixes #3624.

........

Location:
branches/one_window
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/one_window

    • Property svnmerge-integrated changed from /trunk:1-9155,9162 to /trunk:1-9169
  • branches/one_window/src/groupchat_control.py

    r9089 r9170  
    814814                                        else: # Special word == word, no char after in word 
    815815                                                return True  
     816                for special_word in special_words: 
     817                        if special_word.find(' ') > -1:  
     818                                # There is a space in this special word, do a global search 
     819                                # without splitting by words as previously 
     820                                # We don't search this in all cases so we don't loose time 
     821                                if text.find(special_word) > -1: 
     822                                        return True  
    816823                return False 
    817824