Changeset 2820 for trunk/SlickEdit/kdev.e
- Timestamp:
- Aug 14, 2016, 2:33:39 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SlickEdit/kdev.e
r2785 r2820 191 191 { 192 192 /* multiline */ 193 #if __VERSION__ >=14.0194 _str aComments[] ;195 GetComments(aComments, "mlcomment", sLexer) 193 #if __VERSION__ >= 14.0 194 _str aComments[] = null; 195 GetComments(aComments, "mlcomment", sLexer); 196 196 for (i = 0; i < aComments._length(); i++) 197 197 if (!pos("documentation", aComments[i]) > 0) … … 215 215 216 216 /* failed, try single line. */ 217 #if __VERSION__ >=14.0217 #if __VERSION__ >= 14.0 218 218 GetComments(aComments, "linecomment", sLexer) 219 219 for (i = 0; i < aComments._length(); i++)
Note:
See TracChangeset
for help on using the changeset viewer.