diff options
| author | Daniel Tameling <tamelingdaniel@gmail.com> | 2018-03-28 21:27:58 +0200 | 
|---|---|---|
| committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2018-03-29 18:15:29 +0200 | 
| commit | 74cff67bd7746c2636ea7bc78a0b8af2f8c44838 (patch) | |
| tree | d8892dade519b03a724552dc150943bcfaa9501c /st.c | |
| parent | 6f0f2b7ec3713351de274707672fbadb6cc727a2 (diff) | |
| download | st-fork-74cff67bd7746c2636ea7bc78a0b8af2f8c44838.tar.gz | |
set sel.alt in selstart instead of selextend
Diffstat (limited to 'st.c')
| -rw-r--r-- | st.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -446,6 +446,7 @@ selstart(int col, int row, int snap)  	selclear();  	sel.mode = SEL_EMPTY;  	sel.type = SEL_REGULAR; +	sel.alt = IS_SET(MODE_ALTSCREEN);  	sel.snap = snap;  	sel.oe.x = sel.ob.x = col;  	sel.oe.y = sel.ob.y = row; @@ -474,7 +475,6 @@ selextend(int col, int row, int type, int done)  	oldsey = sel.ne.y;  	oldtype = sel.type; -	sel.alt = IS_SET(MODE_ALTSCREEN);  	sel.oe.x = col;  	sel.oe.y = row;  	selnormalize(); | 
