aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2015-04-15 12:37:22 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2015-04-15 21:22:01 +0200
commitba9e51fb9f95c733037d616656e37518e1f741bd (patch)
treed17ee2dc946928d561d809c030e738d29d07b009
parent92ca2df2858fc852fa13e0463c1593fa8269a037 (diff)
downloadxK-ba9e51fb9f95c733037d616656e37518e1f741bd.tar.gz
xK-ba9e51fb9f95c733037d616656e37518e1f741bd.tar.xz
xK-ba9e51fb9f95c733037d616656e37518e1f741bd.zip
degesch: reorder configuration
-rw-r--r--degesch.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/degesch.c b/degesch.c
index b1662ca..1f21461 100644
--- a/degesch.c
+++ b/degesch.c
@@ -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 }
};