comparison src/ex_cmds2.c @ 8212:05b88224cea1 v7.4.1399

commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce Author: Bram Moolenaar <Bram@vim.org> Date: Tue Feb 23 14:53:34 2016 +0100 patch 7.4.1399 Problem: The MS-DOS code does not build. Solution: Remove the old MS-DOS code.
author Christian Brabandt <cb@256bit.org>
date Tue, 23 Feb 2016 15:00:08 +0100
parents 78f2e8c07973
children ad9edad64d22
comparison
equal deleted inserted replaced
8211:6116980b4cfa 8212:05b88224cea1
4254 static char_u * 4254 static char_u *
4255 get_locale_val(int what) 4255 get_locale_val(int what)
4256 { 4256 {
4257 char_u *loc; 4257 char_u *loc;
4258 4258
4259 /* Obtain the locale value from the libraries. For DJGPP this is 4259 /* Obtain the locale value from the libraries. */
4260 * redefined and it doesn't use the arguments. */
4261 loc = (char_u *)setlocale(what, NULL); 4260 loc = (char_u *)setlocale(what, NULL);
4262 4261
4263 # ifdef WIN32 4262 # ifdef WIN32
4264 if (loc != NULL) 4263 if (loc != NULL)
4265 { 4264 {