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).
This commit is contained in:
Michael Reed
2015-06-27 19:10:16 -04:00
parent 5305338167
commit 36e3f4f4c4
9 changed files with 16 additions and 164 deletions

View File

@@ -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;
}