diff options
author | sabetts <sabetts> | 2005-01-30 17:12:55 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2005-01-30 17:12:55 +0000 |
commit | 756a2c5e7ece7a8deb19fd680172f6a842e1f165 (patch) | |
tree | 35c33af078adce659092d6f11ef34bccb5edbcb7 /src/actions.c | |
parent | fee7a3ae27a66f2cbaca17944978bbff30e60089 (diff) | |
download | ratpoison-756a2c5e7ece7a8deb19fd680172f6a842e1f165.zip |
(cmd_escape): when the escape key doesn't have a
modifier give the meta key a modifier.
Diffstat (limited to 'src/actions.c')
-rw-r--r-- | src/actions.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/actions.c b/src/actions.c index 387865e..df8a4b5 100644 --- a/src/actions.c +++ b/src/actions.c @@ -2578,7 +2578,10 @@ cmd_escape (int interactive, struct cmdarg **args) 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; } /* Remove the grab on the current prefix key */ |