mirror of
				https://github.com/neovim/neovim.git
				synced 2025-10-26 12:27:24 +00:00 
			
		
		
		
	Merge pull request #9039 from blueyed/undercurl
tui: code consistency in update_attrs
This commit is contained in:
		| @@ -483,7 +483,8 @@ static void update_attrs(UI *ui, HlAttrs attrs) | |||||||
|   bool italic = attr & HL_ITALIC; |   bool italic = attr & HL_ITALIC; | ||||||
|   bool reverse = attr & HL_INVERSE; |   bool reverse = attr & HL_INVERSE; | ||||||
|   bool standout = attr & HL_STANDOUT; |   bool standout = attr & HL_STANDOUT; | ||||||
|   bool underline = attr & (HL_UNDERLINE), undercurl = attr & (HL_UNDERCURL); |   bool underline = attr & HL_UNDERLINE; | ||||||
|  |   bool undercurl = attr & HL_UNDERCURL; | ||||||
|  |  | ||||||
|   if (unibi_get_str(data->ut, unibi_set_attributes)) { |   if (unibi_get_str(data->ut, unibi_set_attributes)) { | ||||||
|     if (bold || reverse || underline || undercurl || standout) { |     if (bold || reverse || underline || undercurl || standout) { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Björn Linse
					Björn Linse