comparison src/getchar.c @ 27144:54f0a6a9db2d v8.2.4101

patch 8.2.4101: warning for unused argument in tiny version Commit: https://github.com/vim/vim/commit/d4e2f5090124d7753057de82727a99892f0231fe Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 15 18:48:32 2022 +0000 patch 8.2.4101: warning for unused argument in tiny version Problem: Warning for unused argument in tiny version. Solution: Add "UNUSED".
author Bram Moolenaar <Bram@vim.org>
date Sat, 15 Jan 2022 20:00:03 +0100
parents a9eeb18e749c
children 67194006cad8
comparison
equal deleted inserted replaced
27143:fee0ac14727e 27144:54f0a6a9db2d
3809 3809
3810 return (char_u *)line_ga.ga_data; 3810 return (char_u *)line_ga.ga_data;
3811 } 3811 }
3812 3812
3813 int 3813 int
3814 do_cmdkey_command(int key, int flags) 3814 do_cmdkey_command(int key UNUSED, int flags)
3815 { 3815 {
3816 int res; 3816 int res;
3817 #ifdef FEAT_EVAL 3817 #ifdef FEAT_EVAL
3818 sctx_T save_current_sctx = {0, 0, 0, 0}; 3818 sctx_T save_current_sctx = {0, 0, 0, 0};
3819 3819