| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Editra
Revision: 56131
Author: CJP
Date: 06 Oct 2008 15:31:31
Changes:Fix bug related to '?' being in the strings for some keyword helper lists.
Files:| ... | ...@@ -23,6 +23,7 @@ | |
| 23 | 23 | +Fix some issues with switching search direction |
| 24 | 24 | +F3 causing search to skip every other match when search bar has focus |
| 25 | 25 | +Fix bug in updating status after a conrol object was already deleted |
| 26 | +Fix bug related to ? being in keyword helper lists for some languages | |
| 26 | 27 | |
| 27 | 28 | #-----------------------------------------------------------------------------# |
| 28 | 29 |
| ... | ...@@ -1991,6 +1991,9 @@ | |
| 1991 | 1991 | kwlist = self._code['keywords'].split() # Split into a list of words |
| 1992 | 1992 | kwlist = list(set(kwlist)) # Uniqueify the list |
| 1993 | 1993 | kwlist.sort() # Sort into alphbetical order |
| 1994 | # Can't have ? in scintilla autocomp list unless specifying an image | |
| 1995 | if '?' in kwlist: | |
| 1996 | kwlist.remove('?') | |
| 1994 | 1997 | self._code['keywords'] = " ".join(kwlist) # Put back into a string |
| 1995 | 1998 | return True |
| 1996 | 1999 |