Changeset 4243

Show
Ignore:
Timestamp:
04/30/08 14:16:02 (3 months ago)
Author:
pmoura
Message:

Added missing support for the syntax coloring of the external call Logtalk control construct, {}/1, to the Highlight package.

Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/RELEASE_NOTES.txt

    r4241 r4243  
    2727 
    2828    Added missing support for the syntax coloring of the external call  
    29     Logtalk control construct, {}/1, to the TextMate text editor. 
     29    Logtalk control construct, {}/1, to the TextMate text editor and to  
     30    the Highlight package. 
    3031 
    3132    Added missing support for the syntax coloring of the built-in predicate  
  • trunk/wenv/highlight/lgt.lang

    r4180 r4243  
    1616 
    1717# variables 
    18 $KEYWORDS(kwb)=regex([A-Z_]\w*) 
     18$KEYWORDS(kwb)=regex((?<!0')[A-Z_]\w*) 
    1919 
    2020# encapsulation directives 
     
    100100# Logtalk message sending operators 
    101101$KEYWORDS(kwd)=regex((::|\^\^|<<|:)) 
     102# Logtalk external-call control construct 
     103$KEYWORDS(kwd)=regex(([{}])) 
    102104# Prolog operators 
    103105$KEYWORDS(kwd)=regex((\\\+|->|=\.\.|;|!|:-|\^))