diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-11-25 17:00:43 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-11-25 17:00:43 +0100 |
commit | d653293c806c8bea976737b88006264e7a8ea6d6 (patch) | |
tree | 01d56160f6aa8301cf1dafa03a9031c9a70906f9 /src | |
parent | 3a3b6910421ee1d03c222efc62d61b9fb879d931 (diff) | |
download | vim-git-d653293c806c8bea976737b88006264e7a8ea6d6.tar.gz |
patch 8.2.2049: Amiga: obsolete functionv8.2.2049
Problem: Amiga: obsolete function.
Solution: Remove the function. (Ola Söder, closes #7374)
Diffstat (limited to 'src')
-rw-r--r-- | src/memfile.c | 11 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 2 insertions, 11 deletions
diff --git a/src/memfile.c b/src/memfile.c index ec65cebf3..a414d9e5d 100644 --- a/src/memfile.c +++ b/src/memfile.c @@ -507,17 +507,6 @@ mf_free(memfile_T *mfp, bhdr_T *hp) mf_ins_free(mfp, hp); // put *hp in the free list } -#if defined(__MORPHOS__) && defined(__libnix__) -// function is missing in MorphOS libnix version -extern unsigned long *__stdfiledes; - - static unsigned long -fdtofh(int filedescriptor) -{ - return __stdfiledes[filedescriptor]; -} -#endif - /* * Sync the memory file *mfp to disk. * Flags: diff --git a/src/version.c b/src/version.c index 84ea5f1a1..f927ac9c4 100644 --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2049, +/**/ 2048, /**/ 2047, |