diff options
author | sabetts <sabetts> | 2005-02-26 02:25:46 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2005-02-26 02:25:46 +0000 |
commit | 72cbc37bf8e9adc368b57e4b1dbf58cd8218eb0f (patch) | |
tree | fba39af9755b29f006c3862ce5440682770c628b | |
parent | 1bed5ddd3e05299ab30efc48995d7a3cd5471ad3 (diff) | |
download | ratpoison-72cbc37bf8e9adc368b57e4b1dbf58cd8218eb0f.zip |
(parse_args): properly check if we've hit the arg
limit.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/actions.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2005-02-26 <sabetts@localhost> + + * src/actions.c (parse_args): properly check if we've hit the arg + limit. + 2005-02-22 sabetts <sabetts@apeguts> * src/main.c (read_startup_files): use xsprintf when generating diff --git a/src/actions.c b/src/actions.c index 0687d5b..67d1289 100644 --- a/src/actions.c +++ b/src/actions.c @@ -2101,7 +2101,7 @@ parse_args (char *str, struct list_head *list, int nargs, int raw) for (i=str; *i; i++) { /* Have we hit the arg limit? */ - if (nargs >= 0 && parsed_args >= nargs) + if (raw && parsed_args >= nargs) { struct sbuf *s = sbuf_new(0); if (!raw) |