Introduction
Introduction Statistics Contact Development Disclaimer Help
tRemove first argument of selsnap. - st - [fork] customized build of st, the si…
git clone git://src.adamsgaard.dk/st
Log
Files
Refs
README
LICENSE
---
commit 765bb0fd1420e36b04ecc03c18f01f5bda96c563
parent 07ce96a3a0f4a650933f5f586082cbf2064ea2c1
Author: noname <[email protected]>
Date: Thu, 30 Apr 2015 20:51:35 +0000
Remove first argument of selsnap.
Diffstat:
M st.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/st.c b/st.c
t@@ -453,7 +453,7 @@ static inline bool selected(int, int);
static char *getsel(void);
static void selcopy(Time);
static void selscroll(int, int);
-static void selsnap(int, int *, int *, int);
+static void selsnap(int *, int *, int);
static int x2col(int);
static int y2row(int);
static void getbuttoninfo(XEvent *);
t@@ -695,8 +695,8 @@ selnormalize(void) {
sel.nb.y = MIN(sel.ob.y, sel.oe.y);
sel.ne.y = MAX(sel.ob.y, sel.oe.y);
- selsnap(sel.snap, &sel.nb.x, &sel.nb.y, -1);
- selsnap(sel.snap, &sel.ne.x, &sel.ne.y, +1);
+ selsnap(&sel.nb.x, &sel.nb.y, -1);
+ selsnap(&sel.ne.x, &sel.ne.y, +1);
/* expand selection over line breaks */
if (sel.type == SEL_RECTANGULAR)
t@@ -720,12 +720,12 @@ selected(int x, int y) {
}
void
-selsnap(int mode, int *x, int *y, int direction) {
+selsnap(int *x, int *y, int direction) {
int newx, newy, xt, yt;
bool delim, prevdelim;
Glyph *gp, *prevgp;
- switch(mode) {
+ switch(sel.snap) {
case SNAP_WORD:
/*
* Snap around if the word wraps around at the end or
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.