Ignore:
Timestamp:
Aug 14, 2016, 2:33:39 PM (9 years ago)
Author:
bird
Message:

kdev.e: nits

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SlickEdit/kdev.e

    r2785 r2820  
    191191    {
    192192        /* multiline */
    193 #if __VERSION__>=14.0
    194         _str aComments[];
    195         GetComments(aComments, "mlcomment", sLexer)
     193#if __VERSION__ >= 14.0
     194        _str aComments[] = null;
     195        GetComments(aComments, "mlcomment", sLexer);
    196196        for (i = 0; i < aComments._length(); i++)
    197197            if (!pos("documentation", aComments[i]) > 0)
     
    215215
    216216        /* failed, try single line. */
    217 #if __VERSION__>=14.0
     217#if __VERSION__ >= 14.0
    218218        GetComments(aComments, "linecomment", sLexer)
    219219        for (i = 0; i < aComments._length(); i++)
Note: See TracChangeset for help on using the changeset viewer.