comparison src/netbeans.c @ 15510:41fbbcea0f1b v8.1.0763

patch 8.1.0763: nobody is using the Sun Workshop support commit https://github.com/vim/vim/commit/bb1969b6ab28120c93b77817e7b6075e1aecf663 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 17 15:45:25 2019 +0100 patch 8.1.0763: nobody is using the Sun Workshop support Problem: Nobody is using the Sun Workshop support. Solution: Remove the Workshop support.
author Bram Moolenaar <Bram@vim.org>
date Thu, 17 Jan 2019 16:00:08 +0100
parents 98c35d312987
children dd725a8ab112
comparison
equal deleted inserted replaced
15509:2650d9461407 15510:41fbbcea0f1b
2271 vim_vsnprintf(buf, sizeof(buf), cmd, ap); 2271 vim_vsnprintf(buf, sizeof(buf), cmd, ap);
2272 va_end(ap); 2272 va_end(ap);
2273 2273
2274 nbdebug((" COLONCMD %s\n", buf)); 2274 nbdebug((" COLONCMD %s\n", buf));
2275 2275
2276 /* ALT_INPUT_LOCK_ON; */
2277 do_cmdline((char_u *)buf, NULL, NULL, DOCMD_NOWAIT | DOCMD_KEYTYPED); 2276 do_cmdline((char_u *)buf, NULL, NULL, DOCMD_NOWAIT | DOCMD_KEYTYPED);
2278 /* ALT_INPUT_LOCK_OFF; */
2279 2277
2280 setcursor(); /* restore the cursor position */ 2278 setcursor(); /* restore the cursor position */
2281 out_flush_cursor(TRUE, FALSE); 2279 out_flush_cursor(TRUE, FALSE);
2282 } 2280 }
2283 2281