st

simple terminal

git clone https://9o.is/git/st.git

commit 20379f31bef95dcfad2e7d3af8ecb1718724f092
parent 6c489814165aaec1abd6628740e9f06ec3fc65d9
Author: Ivan Tham <pickfire@riseup.net>
Date:   Sun,  1 Nov 2015 10:53:56 +0800

Now the mshortcuts are even more consistent.

    Keep everyone happy

Signed-off-by: Christoph Lohmann <20h@r-36.net>

Diffstat:
Mst.c | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/st.c b/st.c @@ -944,17 +944,17 @@ void bpress(XEvent *e) { struct timespec now; - MouseShortcut *mk; + MouseShortcut *ms; if (IS_SET(MODE_MOUSE) && !(e->xbutton.state & forceselmod)) { mousereport(e); return; } - for (mk = mshortcuts; mk < mshortcuts + LEN(mshortcuts); mk++) { - if (e->xbutton.button == mk->b - && match(mk->mask, e->xbutton.state)) { - ttysend(mk->s, strlen(mk->s)); + for (ms = mshortcuts; ms < mshortcuts + LEN(mshortcuts); ms++) { + if (e->xbutton.button == ms->b + && match(ms->mask, e->xbutton.state)) { + ttysend(ms->s, strlen(ms->s)); return; } }