summaryrefslogtreecommitdiff
path: root/stc/stc.c
diff options
context:
space:
mode:
Diffstat (limited to 'stc/stc.c')
-rw-r--r--stc/stc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/stc/stc.c b/stc/stc.c
index 4c2ce0d..7d975c4 100644
--- a/stc/stc.c
+++ b/stc/stc.c
@@ -283,7 +283,7 @@ handle_command_list (gint *argc,
StcItem *item = STC_ITEM (l->data);
StcItemType type;
const gchar *id;
- const gchar *nick_name;
+ const gchar *comment;
const gchar *target;
const gchar *const *options;
const gchar *const *deps;
@@ -293,7 +293,7 @@ handle_command_list (gint *argc,
type = stc_item_get_item_type (item);
id = stc_item_get_id (item);
- nick_name = stc_item_get_nick_name (item);
+ comment = stc_item_get_comment (item);
target = stc_item_get_target (item);
g_print ("%s%s%s:%s\n",
@@ -316,13 +316,13 @@ handle_command_list (gint *argc,
target,
_color_get (_COLOR_RESET));
- if (nick_name != NULL)
+ if (comment != NULL)
{
- g_print (" %sNick Name:%s %s%s%s\n",
+ g_print (" %sComment:%s %s%s%s\n",
_color_get (_COLOR_FG_WHITE),
_color_get (_COLOR_RESET),
_color_get (_COLOR_FG_GREEN),
- nick_name,
+ comment,
_color_get (_COLOR_RESET));
}