comparison src/normal.c @ 20591:4411c2b96af9 v8.2.0849

patch 8.2.0849: BeOS code is not maintained and probably unused Commit: https://github.com/vim/vim/commit/041c7107f23d3b49ab62c1d7e36af90421db8b63 Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 30 18:14:57 2020 +0200 patch 8.2.0849: BeOS code is not maintained and probably unused Problem: BeOS code is not maintained and probably unused. Solution: Remove the BeOS code. (Emir Sari, closes https://github.com/vim/vim/issues/5817)
author Bram Moolenaar <Bram@vim.org>
date Sat, 30 May 2020 18:30:04 +0200
parents 5995db0fe84a
children d571231175b4
comparison
equal deleted inserted replaced
20590:a76cdc4bf606 20591:4411c2b96af9
3383 static void 3383 static void
3384 nv_clear(cmdarg_T *cap) 3384 nv_clear(cmdarg_T *cap)
3385 { 3385 {
3386 if (!checkclearop(cap->oap)) 3386 if (!checkclearop(cap->oap))
3387 { 3387 {
3388 #if defined(__BEOS__) && !USE_THREAD_FOR_INPUT_WITH_TIMEOUT
3389 /*
3390 * Right now, the BeBox doesn't seem to have an easy way to detect
3391 * window resizing, so we cheat and make the user detect it
3392 * manually with CTRL-L instead
3393 */
3394 ui_get_shellsize();
3395 #endif
3396 #ifdef FEAT_SYN_HL 3388 #ifdef FEAT_SYN_HL
3397 // Clear all syntax states to force resyncing. 3389 // Clear all syntax states to force resyncing.
3398 syn_stack_free_all(curwin->w_s); 3390 syn_stack_free_all(curwin->w_s);
3399 # ifdef FEAT_RELTIME 3391 # ifdef FEAT_RELTIME
3400 { 3392 {