summaryrefslogtreecommitdiff
path: root/app/cwm/xevents.c
diff options
context:
space:
mode:
authorOkan Demirmen <okan@cvs.openbsd.org>2012-12-18 17:37:40 +0000
committerOkan Demirmen <okan@cvs.openbsd.org>2012-12-18 17:37:40 +0000
commit933ed133cd6f1aaa8f05a94789e1593dd136d3f7 (patch)
tree49d2420999ceda7b33387d49335583a82c51d4c9 /app/cwm/xevents.c
parentaffa3b7dcb8d6dd879ecdd48683265cb68e77ffc (diff)
define LockMask|Mod2Mask; no functional change
Diffstat (limited to 'app/cwm/xevents.c')
-rw-r--r--app/cwm/xevents.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/app/cwm/xevents.c b/app/cwm/xevents.c
index a1571439d..df4f51c3f 100644
--- a/app/cwm/xevents.c
+++ b/app/cwm/xevents.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: xevents.c,v 1.69 2012/11/09 03:52:02 okan Exp $
+ * $OpenBSD: xevents.c,v 1.70 2012/12/18 17:37:39 okan Exp $
*/
/*
@@ -241,8 +241,7 @@ xev_handle_buttonpress(XEvent *ee)
sc = screen_fromroot(e->root);
cc = client_find(e->window);
- /* Ignore caps lock and numlock */
- e->state &= ~(Mod2Mask | LockMask);
+ e->state &= ~IGNOREMODMASK;
TAILQ_FOREACH(mb, &Conf.mousebindingq, entry) {
if (e->button == mb->button && e->state == mb->modmask)
@@ -283,8 +282,7 @@ xev_handle_keypress(XEvent *ee)
keysym = XkbKeycodeToKeysym(X_Dpy, e->keycode, 0, 0);
skeysym = XkbKeycodeToKeysym(X_Dpy, e->keycode, 0, 1);
- /* we don't care about caps lock and numlock here */
- e->state &= ~(LockMask | Mod2Mask);
+ e->state &= ~IGNOREMODMASK;
TAILQ_FOREACH(kb, &Conf.keybindingq, entry) {
if (keysym != kb->keysym && skeysym == kb->keysym)