diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-11-21 12:44:56 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-11-21 12:44:56 +0100 |
commit | 2d718267f4b7dcd65261c9f2acd59a6f6bdc8641 (patch) | |
tree | 3c6ddc1ca3ae0da51e1553983721ee30d1dbf043 /src/term.c | |
parent | d91467f830236ae35eb4108d329a1e26a3f1ebc6 (diff) | |
download | vim-git-2d718267f4b7dcd65261c9f2acd59a6f6bdc8641.tar.gz |
patch 8.2.2025: Amiga: Not all colors are used on OS4v8.2.2025
Problem: Amiga: Not all colors are used on OS4.
Solution: Adjust the #ifdef to include __amigaos4__. (Ola Söder,
closes #7328)
Diffstat (limited to 'src/term.c')
-rw-r--r-- | src/term.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c index 56f6e0a93..77675b2e3 100644 --- a/src/term.c +++ b/src/term.c @@ -297,7 +297,7 @@ static struct builtin_term builtin_termcaps[] = {(int)KS_UE, "\033[0m"}, {(int)KS_CZH, "\033[3m"}, {(int)KS_CZR, "\033[0m"}, -#if defined(__MORPHOS__) || defined(__AROS__) +#if defined(__amigaos4__) || defined(__MORPHOS__) || defined(__AROS__) {(int)KS_CCO, "8"}, // allow 8 colors # ifdef TERMINFO {(int)KS_CAB, "\033[4%p1%dm"},// set background color |