diff options
author | John Schmidt <john.schmidt.h@gmail.com> | 2014-03-17 11:20:25 +0100 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-05 10:01:21 -0300 |
commit | 8a0043130fed84f67c83451e675d08617216c6eb (patch) | |
tree | 0a7be28ab310891692feb2eec839a5ee06a0eccf /src/undo.c | |
parent | 2fe018ab888010335ad8fc041522e2aff66c67a1 (diff) | |
download | rneovim-8a0043130fed84f67c83451e675d08617216c6eb.tar.gz rneovim-8a0043130fed84f67c83451e675d08617216c6eb.tar.bz2 rneovim-8a0043130fed84f67c83451e675d08617216c6eb.zip |
Remove Amiga stuff
Diffstat (limited to 'src/undo.c')
-rw-r--r-- | src/undo.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/undo.c b/src/undo.c index 150c31f600..81da6f8bd8 100644 --- a/src/undo.c +++ b/src/undo.c @@ -568,15 +568,6 @@ int u_savecommon(linenr_T top, linenr_T bot, linenr_T newbot, int reload) u_getbot(); } -#if !defined(UNIX) && !defined(DJGPP) && !defined(WIN32) && !defined(__EMX__) - /* - * With Amiga and MSDOS 16 bit we can't handle big undo's, because - * then u_alloc_line would have to allocate a block larger than 32K - */ - if (size >= 8000) - goto nomem; -#endif - /* * add lines in front of entry list */ |