[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [RP] One little patch and two questions
From: |
Shawn Betts |
Subject: |
Re: [RP] One little patch and two questions |
Date: |
30 Jan 2005 12:21:16 -0800 |
User-agent: |
Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 |
"Bernhard R. Link" <address@hidden> writes:
> 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;
> }
Thanks. that's in CVS.
> 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?
I Just forgot to copy that part over. It's possibly useless. But its
there now.
> 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?)
Its for screen compatibility. It could be argued that msgwait should
be an alias to 'set msgwait' (which doesn't exist).
-Shawn