From 36e3f4f4c442e2d4678ccf25ef0f04bdb45b4685 Mon Sep 17 00:00:00 2001 From: Michael Reed Date: Sat, 27 Jun 2015 19:10:16 -0400 Subject: doc: Remove refs to dos(16|32), win16, and win95 This is primarily low-hanging fruit; there are still many references to things such as MS-DOS throughout (see os_dos.txt). --- src/nvim/ex_cmds2.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c index e7029b8762..d9a8dc2d69 100644 --- a/src/nvim/ex_cmds2.c +++ b/src/nvim/ex_cmds2.c @@ -2992,12 +2992,8 @@ void ex_checktime(exarg_T *eap) static char *get_locale_val(int what) { - char *loc; - - /* Obtain the locale value from the libraries. For DJGPP this is - * redefined and it doesn't use the arguments. */ - loc = setlocale(what, NULL); - + // Obtain the locale value from the libraries. + char *loc = setlocale(what, NULL); return loc; } -- cgit