Changeset 4260
- Timestamp:
- 05/10/08 09:47:44 (5 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
RELEASE_NOTES.txt (modified) (2 diffs)
-
wenv/gtksourceview2/logtalk.lang (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/RELEASE_NOTES.txt
r4259 r4260 55 55 the syntax coloring of arithmetic comparison operators. 56 56 57 Added missing support for the syntax coloring of the built-in control 58 construct call/1 to the GtkSourceView 2.x text widget. 57 Added missing support for the syntax coloring of quoted atom escape 58 sequences and of the built-in control construct call/1 to the 59 GtkSourceView 2.x text widget. 59 60 60 61 Added missing support for the syntax coloring of variables, of quoted … … 62 63 call Logtalk control construct {}/1, and of variables to the Nedit text 63 64 editor. Corrected a bug with 0'Char constants and corrected some typos 64 in the support for the built-in predicates current_event/2,65 implements_protocol/2-3, abolish_category/1.65 in the support for the current_event/2, implements_protocol/2-3, and 66 abolish_category/1 built-in predicates. 66 67 67 68 -
trunk/wenv/gtksourceview2/logtalk.lang
r4239 r4260 41 41 <style id="built-in" _name="Keyword" map-to="def:keyword"/> 42 42 <style id="variable" _name="Variable" map-to="def:identifier"/> 43 <style id="escaped-character" _name="Escaped Character" map-to="def:special-char"/> 43 44 </styles> 44 45 45 46 <definitions> 47 48 <define-regex id="escaped-character" extended="true"> 49 \\([\\abfnrtv"\']|(x[a-fA-F0-9]+|[0-7]+)\\) 50 </define-regex> 46 51 47 52 <context id="string" style-ref="string" end-at-line-end="true"> … … 53 58 <start>'</start> 54 59 <end>'</end> 60 <include> 61 <context id="escaped-character" style-ref="escaped-character"> 62 <match>\%{escaped-character}</match> 63 </context> 64 </include> 55 65 </context> 56 66
