[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RP] One little patch and two questions
From: |
Bernhard R. Link |
Subject: |
[RP] One little patch and two questions |
Date: |
Sun, 30 Jan 2005 17:22:50 +0100 |
User-agent: |
Mutt/1.3.28i |
1) cmd_escape sets other and meta to the same key when the escape key
contains no modifiers:
diff -u -r1.239 actions.c
--- actions.c 22 Jan 2005 19:29:36 -0000 1.239
+++ actions.c 30 Jan 2005 12:28:13 -0000
@@ -2578,5 +2578,8 @@
if (action != NULL && !strcmp (action->data, "meta"))
{
action->key = key->sym;
- action->state = 0;
+ if (key->state != 0)
+ action->state = 0;
+ else
+ action->state = RP_CONTROL_MASK;
}
2) Why does cmd_definekey have a XSync anc cmd_undefinkey not?
Is there some assymmetry in the X protocoll or is this simply
a left-over?
3) Is there a reason msgwait is it's own command instead of beeing
set by "set"? (Apart from "noone has sent a patch yet?)
Hochachtungsvoll,
Bernhard R. Link
- [RP] One little patch and two questions,
Bernhard R. Link <=