mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
updated for version 7.0060
This commit is contained in:
@@ -5870,7 +5870,8 @@ screen_start_highlight(attr)
|
||||
out_str(T_MD);
|
||||
if ((attr & HL_STANDOUT) && T_SO != NULL) /* standout */
|
||||
out_str(T_SO);
|
||||
if ((attr & HL_UNDERLINE) && T_US != NULL) /* underline */
|
||||
if ((attr & (HL_UNDERLINE | HL_UNDERCURL)) && T_US != NULL)
|
||||
/* underline or undercurl */
|
||||
out_str(T_US);
|
||||
if ((attr & HL_ITALIC) && T_CZH != NULL) /* italic */
|
||||
out_str(T_CZH);
|
||||
@@ -5965,7 +5966,7 @@ screen_stop_highlight()
|
||||
else
|
||||
out_str(T_SE);
|
||||
}
|
||||
if (screen_attr & HL_UNDERLINE)
|
||||
if (screen_attr & (HL_UNDERLINE | HL_UNDERCURL))
|
||||
{
|
||||
if (STRCMP(T_UE, T_ME) == 0)
|
||||
do_ME = TRUE;
|
||||
@@ -6856,7 +6857,7 @@ windgoto(row, col)
|
||||
int row;
|
||||
int col;
|
||||
{
|
||||
char_u *p;
|
||||
sattr_T *p;
|
||||
int i;
|
||||
int plan;
|
||||
int cost;
|
||||
|
Reference in New Issue
Block a user