comparison src/os_amiga.c @ 18461:7f16792d15f7 v8.1.2224

patch 8.1.2224: cannot build Amiga version Commit: https://github.com/vim/vim/commit/dfded98f87601b11271ee88392c821ceb6390eda Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 26 21:33:19 2019 +0200 patch 8.1.2224: cannot build Amiga version Problem: Cannot build Amiga version. Solution: Add dummy mch_setmouse(). (Ola S?der, closes https://github.com/vim/vim/issues/5126)
author Bram Moolenaar <Bram@vim.org>
date Sat, 26 Oct 2019 21:45:03 +0200
parents a3ddd35ee6d4
children 44b855153d8e
comparison
equal deleted inserted replaced
18460:14da8a19e87a 18461:7f16792d15f7
656 { 656 {
657 return FALSE; 657 return FALSE;
658 } 658 }
659 #endif 659 #endif
660 660
661 void
662 mch_setmouse(int on UNUSED)
663 {
664 // TODO: implement
665 }
666
661 /* 667 /*
662 * Insert user name in s[len]. 668 * Insert user name in s[len].
663 */ 669 */
664 int 670 int
665 mch_get_user_name(char_u *s, int len) 671 mch_get_user_name(char_u *s, int len)