comparison src/main.c @ 24772:9c0a59fcf8b9 v8.2.2924

patch 8.2.2924: superfluous extern declaration Commit: https://github.com/vim/vim/commit/a2e468fcac7523ae6a0ab65db5196684801fa2d1 Author: K.Takata <kentkt@csc.jp> Date: Wed Jun 2 15:08:50 2021 +0200 patch 8.2.2924: superfluous extern declaration Problem: Superfluous extern declaration. Solution: Delete the declaration. (Ken Takata, closes https://github.com/vim/vim/issues/8307)
author Bram Moolenaar <Bram@vim.org>
date Wed, 02 Jun 2021 15:15:03 +0200
parents 7334bf933510
children 078edc1821bf
comparison
equal deleted inserted replaced
24771:77a262c61a3b 24772:9c0a59fcf8b9
258 params.fname = alist_name(&GARGLIST[0]); 258 params.fname = alist_name(&GARGLIST[0]);
259 } 259 }
260 260
261 #ifdef MSWIN 261 #ifdef MSWIN
262 { 262 {
263 extern void set_alist_count(void);
264
265 // Remember the number of entries in the argument list. If it changes 263 // Remember the number of entries in the argument list. If it changes
266 // we don't react on setting 'encoding'. 264 // we don't react on setting 'encoding'.
267 set_alist_count(); 265 set_alist_count();
268 } 266 }
269 #endif 267 #endif