set sel.alt in selstart instead of selextend

master
Daniel Tameling 2018-03-28 21:27:58 +02:00 committed by Hiltjo Posthuma
parent 6f0f2b7ec3
commit 74cff67bd7
1 changed files with 1 additions and 1 deletions

2
st.c
View File

@ -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();