diff options
author | sabetts <sabetts> | 2002-01-24 11:18:12 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2002-01-24 11:18:12 +0000 |
commit | d00e7292850d6b6913251a370801be740adba8e0 (patch) | |
tree | 785022674b2d059a216807d73dfadec08a8eb245 /src | |
parent | cb02a04e74094b5ab59e438145f33b0a61fd5fa4 (diff) | |
download | ratpoison-d00e7292850d6b6913251a370801be740adba8e0.zip |
* src/actions.c (command): Append to the end of alias command the
arguments passed in before evaluating the alias.
Diffstat (limited to 'src')
-rw-r--r-- | src/actions.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/actions.c b/src/actions.c index 2aadf38..c62faef 100644 --- a/src/actions.c +++ b/src/actions.c @@ -885,7 +885,17 @@ command (int interactive, char *data) { if (!strcmp (cmd, alias_list[i].name)) { - result = command (interactive, alias_list[i].alias); + struct sbuf *s; + + /* Append any arguments onto the end of the alias' command. */ + s = sbuf_new (0); + sbuf_concat (s, alias_list[i].alias); + if (rest != NULL) + sbuf_printf_concat (s, " %s", rest); + + result = command (interactive, sbuf_get (s)); + + sbuf_free (s); goto done; } } |