diff options
| author | forsyth <forsyth@vitanuova.com> | 2010-04-06 11:01:04 +0100 |
|---|---|---|
| committer | forsyth <forsyth@vitanuova.com> | 2010-04-06 11:01:04 +0100 |
| commit | 61d0ba9cf1fac12977df33d5fa8509ff13322614 (patch) | |
| tree | 0a4f7031e87857db75fd59dc1a3a77ca36f185ea | |
| parent | f94b359d339cfcefb3725fe7c0e78211443815b4 (diff) | |
20100406-1101
| -rw-r--r-- | include/version.h | 2 | ||||
| -rw-r--r-- | libtk/parse.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/version.h b/include/version.h index c6539f86..dce757a7 100644 --- a/include/version.h +++ b/include/version.h @@ -1 +1 @@ -#define VERSION "Fourth Edition (20100402)" +#define VERSION "Fourth Edition (20100406)" diff --git a/libtk/parse.c b/libtk/parse.c index 57a1a651..9291e899 100644 --- a/libtk/parse.c +++ b/libtk/parse.c @@ -391,7 +391,7 @@ tkgencget(TkOptab *ft, char *arg, char **val, TkTop *t) } c = out; for (s = o->aux; s->val != nil; s++) { - if (con & s->con) + if (s->con == (s->con&-s->con) && (con & s->con) != 0) c = seprint(c, out+Tkmaxitem, " %s", s->val); /* should this be quoted? */ } free(buf); |
