Changeset 3015 in kBuild
- Timestamp:
- Nov 29, 2016 10:14:56 AM (8 years ago)
- Location:
- trunk/SlickEdit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SlickEdit/kdev.e
r2826 r3015 2447 2447 return -1; 2448 2448 //say 'k_style_emacs_var: 'sVar'='sVal; 2449 2450 #if __VERSION__ >= 21.0 2451 /** @todo figure out p_index. */ 2452 return 0; 2453 #else 2449 2454 2450 2455 /* … … 2805 2810 2806 2811 return 0; 2812 #endif 2807 2813 } 2808 2814 … … 3571 3577 3572 3578 /* C/C++ setup, wrap at column 80 not 64. */ 3579 # if __VERSION__ >= 21.0 3580 if (_LangGetPropertyInt32(sLangId, VSLANGPROPNAME_CW_FIXED_RIGHT_COLUMN) < 80) 3581 _LangSetPropertyInt32(sLangId, VSLANGPROPNAME_CW_FIXED_RIGHT_COLUMN, 80); 3582 # else 3573 3583 sTmp = LanguageSettings.getCommentWrapOptions(sLangId); 3574 3584 if (length(sTmp) > 10) … … 3582 3592 //replace_def_data("def-comment-wrap-c",'1 1 0 1 1 80 0 0 80 0 80 0 80 0 0 1 '); - enable block comment wrap. 3583 3593 } 3594 # endif 3584 3595 3585 3596 /* set the encoding to UTF-8 without any friggin useless signatures. */ -
trunk/SlickEdit/kkeys.e
r2558 r3015 300 300 { 301 301 302 # if __VERSION__ < 21.0 /** @todo fix me? */ 302 303 /* HACK ALERT: Make sure gtag_filelist_last_ext has the right value. */ 303 304 _update_tag_filelist_ext(sLangId); … … 310 311 gtag_filelist_ext._makeempty(); 311 312 gtag_filelist_ext[0] = sProjTagFile; 312 saved_gtag_filelist_cache_updated = true; 313 gtag_filelist_cache_updated = true; 314 # endif 313 315 314 316 /* Do the reference searching. */ 315 317 push_ref('-e ' :+ sLangId); 316 318 319 # if __VERSION__ < 21.0 317 320 /* restore*/ 318 321 gtag_filelist_cache_updated = saved_gtag_filelist_cache_updated; 319 322 gtag_filelist_ext = saved_gtag_filelist_ext; 323 # endif 320 324 } 321 325 else
Note:
See TracChangeset
for help on using the changeset viewer.