mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 09:26:05 +00:00 
			
		
		
		
	Always move the cursor position on !xenl terminals, since there is no invisible
last cursor position. Also nuke an unused variable.
This commit is contained in:
		@@ -990,7 +990,7 @@ screen_write_cell(
 | 
			
		||||
	struct tty_ctx		 ttyctx;
 | 
			
		||||
	struct grid_utf8	 gu, *tmp_gu;
 | 
			
		||||
	u_int		 	 width, xx, i;
 | 
			
		||||
	struct grid_cell 	 tmp_gc, tmp_gc2, *tmp_gcp;
 | 
			
		||||
	struct grid_cell 	 tmp_gc, *tmp_gcp;
 | 
			
		||||
	int			 insert = 0;
 | 
			
		||||
 | 
			
		||||
	/* Ignore padding. */
 | 
			
		||||
@@ -1101,13 +1101,13 @@ screen_write_cell(
 | 
			
		||||
	}
 | 
			
		||||
	ttyctx.utf8 = &gu;
 | 
			
		||||
	if (screen_check_selection(s, s->cx - width, s->cy)) {
 | 
			
		||||
		memcpy(&tmp_gc2, &s->sel.cell, sizeof tmp_gc2);
 | 
			
		||||
		tmp_gc2.data = gc->data;
 | 
			
		||||
		tmp_gc2.flags = gc->flags &
 | 
			
		||||
		memcpy(&tmp_gc, &s->sel.cell, sizeof tmp_gc);
 | 
			
		||||
		tmp_gc.data = gc->data;
 | 
			
		||||
		tmp_gc.flags = gc->flags &
 | 
			
		||||
		    ~(GRID_FLAG_FG256|GRID_FLAG_BG256);
 | 
			
		||||
		tmp_gc2.flags |= s->sel.cell.flags &
 | 
			
		||||
		tmp_gc.flags |= s->sel.cell.flags &
 | 
			
		||||
		    (GRID_FLAG_FG256|GRID_FLAG_BG256);
 | 
			
		||||
		ttyctx.cell = &tmp_gc2;
 | 
			
		||||
		ttyctx.cell = &tmp_gc;
 | 
			
		||||
		tty_write(tty_cmd_cell, &ttyctx);
 | 
			
		||||
	} else {
 | 
			
		||||
		ttyctx.cell = gc;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user