diff options
author | Marco Peereboom <marco@conformal.com> | 2011-04-17 08:54:45 +0000 |
---|---|---|
committer | Marco Peereboom <marco@conformal.com> | 2011-04-17 08:54:45 +0000 |
commit | cba8cc5ba81112c6da4e1a6250ff40c4b140316f (patch) | |
tree | 27c03711e61fa4ff7be2297fed99afa77d221b53 | |
parent | bbe9c96a826cd775c2c7f92e8f0ec0a3d6153fe3 (diff) | |
download | xombrero-cba8cc5ba81112c6da4e1a6250ff40c4b140316f.tar.gz |
move cookiejar below cookie command so that autocompletion works as
expected. Noticed by jy-p
-rw-r--r-- | xxxterm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xxxterm.c b/xxxterm.c index 2429ea7..8e08220 100644 --- a/xxxterm.c +++ b/xxxterm.c @@ -4985,7 +4985,6 @@ struct cmd { { "about", 0, about, {0}, FALSE }, { "stats", 0, stats, {0}, FALSE }, { "version", 0, about, {0}, FALSE }, - { "cookiejar", 0, xtp_page_cl, {0}, FALSE }, /* js command */ { "js", 0, js_cmd, {.i = XT_SHOW | XT_WL_PERSISTENT | XT_WL_SESSION}, FALSE }, @@ -5013,6 +5012,9 @@ struct cmd { { "domain", 2, cookie_cmd, {.i = XT_WL_TOGGLE | XT_WL_TOPLEVEL}, FALSE }, { "fqdn", 2, cookie_cmd, {.i = XT_WL_TOGGLE | XT_WL_FQDN}, FALSE }, + /* cookie jar */ + { "cookiejar", 0, xtp_page_cl, {0}, FALSE }, + /* cert command */ { "cert", 0, cert_cmd, {.i = XT_SHOW}, FALSE }, { "save", 1, cert_cmd, {.i = XT_SAVE}, FALSE }, |