comparison src/undo.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 985cd5917560
children 17bbbca531be
comparison
equal deleted inserted replaced
8211:6116980b4cfa 8212:05b88224cea1
639 639
640 /* find line number for ue_bot for previous u_save() */ 640 /* find line number for ue_bot for previous u_save() */
641 u_getbot(); 641 u_getbot();
642 } 642 }
643 643
644 #if !defined(UNIX) && !defined(DJGPP) && !defined(WIN32) && !defined(__EMX__) 644 #if !defined(UNIX) && !defined(WIN32) && !defined(__EMX__)
645 /* 645 /*
646 * With Amiga and MSDOS 16 bit we can't handle big undo's, because 646 * With Amiga we can't handle big undo's, because
647 * then u_alloc_line would have to allocate a block larger than 32K 647 * then u_alloc_line would have to allocate a block larger than 32K
648 */ 648 */
649 if (size >= 8000) 649 if (size >= 8000)
650 goto nomem; 650 goto nomem;
651 #endif 651 #endif