mirror of
https://github.com/vim/vim.git
synced 2025-09-06 21:53:38 -04:00
patch 8.2.2048: Amiga: obsolete code
Problem: Amiga: obsolete code. Solution: Remove the unused lines. (Ola Söder, closes #7373)
This commit is contained in:
parent
36fe7b287e
commit
3a3b691042
@ -2412,21 +2412,13 @@ gui_outstr_nowrap(
|
|||||||
|
|
||||||
if (highlight_mask & (HL_INVERSE | HL_STANDOUT))
|
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_fg_color(bg_color);
|
||||||
gui_mch_set_bg_color(fg_color);
|
gui_mch_set_bg_color(fg_color);
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
#if defined(AMIGA)
|
|
||||||
gui_mch_set_colors(fg_color, bg_color);
|
|
||||||
#else
|
|
||||||
gui_mch_set_fg_color(fg_color);
|
gui_mch_set_fg_color(fg_color);
|
||||||
gui_mch_set_bg_color(bg_color);
|
gui_mch_set_bg_color(bg_color);
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
gui_mch_set_sp_color(sp_color);
|
gui_mch_set_sp_color(sp_color);
|
||||||
|
|
||||||
|
@ -750,6 +750,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
2048,
|
||||||
/**/
|
/**/
|
||||||
2047,
|
2047,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user