diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2015-04-15 12:37:22 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2015-04-15 21:22:01 +0200 |
commit | ba9e51fb9f95c733037d616656e37518e1f741bd (patch) | |
tree | d17ee2dc946928d561d809c030e738d29d07b009 /degesch.c | |
parent | 92ca2df2858fc852fa13e0463c1593fa8269a037 (diff) | |
download | xK-ba9e51fb9f95c733037d616656e37518e1f741bd.tar.gz xK-ba9e51fb9f95c733037d616656e37518e1f741bd.tar.xz xK-ba9e51fb9f95c733037d616656e37518e1f741bd.zip |
degesch: reorder configuration
Diffstat (limited to 'degesch.c')
-rw-r--r-- | degesch.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -58,11 +58,6 @@ static struct config_item g_config_table[] = { - { ATTR_PROMPT, NULL, "Terminal attributes for the prompt" }, - { ATTR_RESET, NULL, "String to reset terminal attributes" }, - { ATTR_WARNING, NULL, "Terminal attributes for warnings" }, - { ATTR_ERROR, NULL, "Terminal attributes for errors" }, - { "nickname", NULL, "IRC nickname" }, { "username", NULL, "IRC user name" }, { "realname", NULL, "IRC real name/e-mail" }, @@ -83,6 +78,11 @@ static struct config_item g_config_table[] = { "socks_username", NULL, "SOCKS auth. username" }, { "socks_password", NULL, "SOCKS auth. password" }, + { ATTR_PROMPT, NULL, "Terminal attributes for the prompt" }, + { ATTR_RESET, NULL, "String to reset terminal attributes" }, + { ATTR_WARNING, NULL, "Terminal attributes for warnings" }, + { ATTR_ERROR, NULL, "Terminal attributes for errors" }, + { NULL, NULL, NULL } }; |