summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-11-25 15:52:31 +0100
committerBram Moolenaar <Bram@vim.org>2020-11-25 15:52:31 +0100
commit3a3b6910421ee1d03c222efc62d61b9fb879d931 (patch)
treee37e02fa89792f410d99ee4815354f58ab3339a5
parent36fe7b287e13a7534c9aa6dcf0c3d7f8363f6060 (diff)
downloadvim-git-8.2.2048.tar.gz
patch 8.2.2048: Amiga: obsolete codev8.2.2048
Problem: Amiga: obsolete code. Solution: Remove the unused lines. (Ola Söder, closes #7373)
-rw-r--r--src/gui.c8
-rw-r--r--src/version.c2
2 files changed, 2 insertions, 8 deletions
diff --git a/src/gui.c b/src/gui.c
index 3f8f5fe3f..0265f7c96 100644
--- a/src/gui.c
+++ b/src/gui.c
@@ -2412,21 +2412,13 @@ gui_outstr_nowrap(
if (highlight_mask & (HL_INVERSE | HL_STANDOUT))
{
-#if defined(AMIGA)
- gui_mch_set_colors(bg_color, fg_color);
-#else
gui_mch_set_fg_color(bg_color);
gui_mch_set_bg_color(fg_color);
-#endif
}
else
{
-#if defined(AMIGA)
- gui_mch_set_colors(fg_color, bg_color);
-#else
gui_mch_set_fg_color(fg_color);
gui_mch_set_bg_color(bg_color);
-#endif
}
gui_mch_set_sp_color(sp_color);
diff --git a/src/version.c b/src/version.c
index e59297f6e..84ea5f1a1 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 */
/**/
+ 2048,
+/**/
2047,
/**/
2046,