Changeset 3136 in kBuild for trunk/SlickEdit/kdev.e
- Timestamp:
- Mar 6, 2018 8:24:16 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SlickEdit/kdev.e
r3132 r3136 196 196 GetComments(aComments, "M", sLexer); 197 197 for (i = 0; i < aComments._length(); i++) 198 # if __VERSION__ >= 22.0 199 if (aComments[i].type != 'doc_comment') 200 # else 198 201 if (!aComments[i].isDocumentation) 202 # endif 199 203 { 200 204 sLeft = aComments[i].delim1; … … 233 237 GetComments(aComments, "L", sLexer); 234 238 for (i = 0; i < aComments._length(); i++) 239 # if __VERSION__ >= 22.0 240 if (aComments[i].type != 'doc_comment') 241 # else 235 242 if (!aComments[i].isDocumentation) 243 # endif 236 244 { 237 245 sLeft = aComments[i].delim1; … … 3533 3541 #endif 3534 3542 3543 #if __VERSION__ >= 21.0 3544 int def_gui_find_default; 3545 #endif 3546 3547 3535 3548 /** 3536 3549 * Loads the standard bird settings. … … 3721 3734 * Change the codehelp default. 3722 3735 */ 3723 int fOldCodeHelp = def_codehelp_flags; 3724 int fNewCodeHelp = fOldCodeHelp \ 3736 # if __VERSION__ >= 22.0 3737 VSCodeHelpFlags fOldCodeHelp, fNewCodeHelp; 3738 # else 3739 int fOldCodeHelp, fNewCodeHelp; 3740 # endif 3741 fOldCodeHelp = def_codehelp_flags; 3742 fNewCodeHelp = fOldCodeHelp \ 3725 3743 | VSCODEHELPFLAG_AUTO_FUNCTION_HELP \ 3726 3744 | VSCODEHELPFLAG_AUTO_LIST_MEMBERS \ … … 3760 3778 #endif 3761 3779 3780 # if __VERSION__ >= 21.0 3781 /* Old style search dialog, not mini. */ 3782 def_gui_find_default = 1; 3783 # endif 3784 3785 _fso_strip_spaces(STSO_STRIP_MODIFIED); 3786 3762 3787 /** @todo 3763 * - def_save_options3764 3788 * - Auto restore clipboards 3765 3789 * */
Note:
See TracChangeset
for help on using the changeset viewer.