comparison src/option.c @ 8140:563c923b1584 v7.4.1364

commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 20 13:55:06 2016 +0100 patch 7.4.1364 Problem: The Win 16 code is not maintained and unused. Solution: Remove the Win 16 support.
author Christian Brabandt <cb@256bit.org>
date Sat, 20 Feb 2016 14:00:06 +0100
parents b6cb94ad97a4
children d8a8e86f39ad
comparison
equal deleted inserted replaced
8139:2b0d471e04f7 8140:563c923b1584
2294 (char_u *)"-", 2294 (char_u *)"-",
2295 #else 2295 #else
2296 # if defined(MSDOS) 2296 # if defined(MSDOS)
2297 (char_u *)"command", 2297 (char_u *)"command",
2298 # else 2298 # else
2299 # if defined(WIN16) 2299 # if defined(WIN3264)
2300 (char_u *)"command.com", 2300 (char_u *)"", /* set in set_init_1() */
2301 # else 2301 # else
2302 # if defined(WIN3264)
2303 (char_u *)"", /* set in set_init_1() */
2304 # else
2305 (char_u *)"sh", 2302 (char_u *)"sh",
2306 # endif
2307 # endif 2303 # endif
2308 # endif 2304 # endif
2309 #endif /* VMS */ 2305 #endif /* VMS */
2310 (char_u *)0L} SCRIPTID_INIT}, 2306 (char_u *)0L} SCRIPTID_INIT},
2311 {"shellcmdflag","shcf", P_STRING|P_VI_DEF|P_SECURE, 2307 {"shellcmdflag","shcf", P_STRING|P_VI_DEF|P_SECURE,
2365 #endif 2361 #endif
2366 (char_u *)0L} SCRIPTID_INIT}, 2362 (char_u *)0L} SCRIPTID_INIT},
2367 {"shellxescape", "sxe", P_STRING|P_VI_DEF|P_SECURE, 2363 {"shellxescape", "sxe", P_STRING|P_VI_DEF|P_SECURE,
2368 (char_u *)&p_sxe, PV_NONE, 2364 (char_u *)&p_sxe, PV_NONE,
2369 { 2365 {
2370 #if defined(MSDOS) || defined(WIN16) || defined(WIN3264) 2366 #if defined(MSDOS) || defined(WIN3264)
2371 (char_u *)"\"&|<>()@^", 2367 (char_u *)"\"&|<>()@^",
2372 #else 2368 #else
2373 (char_u *)"", 2369 (char_u *)"",
2374 #endif 2370 #endif
2375 (char_u *)0L} SCRIPTID_INIT}, 2371 (char_u *)0L} SCRIPTID_INIT},