mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-03 16:46:18 +00:00 
			
		
		
		
	Clear last attributes after reset in string_cells, from George Nachman.
This commit is contained in:
		
							
								
								
									
										7
									
								
								grid.c
									
									
									
									
									
								
							
							
						
						
									
										7
									
								
								grid.c
									
									
									
									
									
								
							@@ -511,6 +511,7 @@ grid_string_cells_code(const struct grid_cell *lastgc,
 | 
			
		||||
	for (i = 0; i < nitems(attrs); i++) {
 | 
			
		||||
		if (!(attr & attrs[i].mask) && (lastattr & attrs[i].mask)) {
 | 
			
		||||
			s[n++] = 0;
 | 
			
		||||
			lastattr &= GRID_ATTR_CHARSET;
 | 
			
		||||
			break;
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
@@ -523,7 +524,8 @@ grid_string_cells_code(const struct grid_cell *lastgc,
 | 
			
		||||
	/* If the foreground c changed, append its parameters. */
 | 
			
		||||
	nnewc = grid_string_cells_fg(gc, newc);
 | 
			
		||||
	noldc = grid_string_cells_fg(lastgc, oldc);
 | 
			
		||||
	if (nnewc != noldc || memcmp(newc, oldc, nnewc * sizeof newc[0]) != 0) {
 | 
			
		||||
	if (nnewc != noldc ||
 | 
			
		||||
	    memcmp(newc,oldc, nnewc * sizeof newc[0]) != 0) {
 | 
			
		||||
		for (i = 0; i < nnewc; i++)
 | 
			
		||||
			s[n++] = newc[i];
 | 
			
		||||
	}
 | 
			
		||||
@@ -531,7 +533,8 @@ grid_string_cells_code(const struct grid_cell *lastgc,
 | 
			
		||||
	/* If the background c changed, append its parameters. */
 | 
			
		||||
	nnewc = grid_string_cells_bg(gc, newc);
 | 
			
		||||
	noldc = grid_string_cells_bg(lastgc, oldc);
 | 
			
		||||
	if (nnewc != noldc || memcmp(newc, oldc, nnewc * sizeof newc[0]) != 0) {
 | 
			
		||||
	if (nnewc != noldc ||
 | 
			
		||||
	    memcmp(newc, oldc, nnewc * sizeof newc[0]) != 0) {
 | 
			
		||||
		for (i = 0; i < nnewc; i++)
 | 
			
		||||
			s[n++] = newc[i];
 | 
			
		||||
	}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user