summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gui/curses/gui-curses-color.c2
-rw-r--r--src/gui/gui-color.c36
2 files changed, 19 insertions, 19 deletions
diff --git a/src/gui/curses/gui-curses-color.c b/src/gui/curses/gui-curses-color.c
index 0d0474456..e1c214c20 100644
--- a/src/gui/curses/gui-curses-color.c
+++ b/src/gui/curses/gui-curses-color.c
@@ -125,7 +125,7 @@ gui_color_search (const char *color_name)
for (i = 0; gui_weechat_colors[i].string; i++)
{
- if (string_strcasecmp (gui_weechat_colors[i].string, color_name) == 0)
+ if (string_strcmp (gui_weechat_colors[i].string, color_name) == 0)
return i;
}
diff --git a/src/gui/gui-color.c b/src/gui/gui-color.c
index 201171cc1..d27c4403a 100644
--- a/src/gui/gui-color.c
+++ b/src/gui/gui-color.c
@@ -276,111 +276,111 @@ gui_color_get_custom (const char *color_name)
ptr_color_name - color_name);
}
- if (string_strcasecmp (ptr_color_name, "reset") == 0)
+ if (string_strcmp (ptr_color_name, "reset") == 0)
{
snprintf (color[index_color], sizeof (color[index_color]),
"%c",
GUI_COLOR_RESET_CHAR);
}
- else if (string_strcasecmp (ptr_color_name, "resetcolor") == 0)
+ else if (string_strcmp (ptr_color_name, "resetcolor") == 0)
{
snprintf (color[index_color], sizeof (color[index_color]),
"%c%c",
GUI_COLOR_COLOR_CHAR,
GUI_COLOR_RESET_CHAR);
}
- else if (string_strcasecmp (ptr_color_name, "emphasis") == 0)
+ else if (string_strcmp (ptr_color_name, "emphasis") == 0)
{
snprintf (color[index_color], sizeof (color[index_color]),
"%c%c",
GUI_COLOR_COLOR_CHAR,
GUI_COLOR_EMPHASIS_CHAR);
}
- else if (string_strcasecmp (ptr_color_name, "blink") == 0)
+ else if (string_strcmp (ptr_color_name, "blink") == 0)
{
snprintf (color[index_color], sizeof (color[index_color]),
"%c%c",
GUI_COLOR_SET_ATTR_CHAR,
GUI_COLOR_ATTR_BLINK_CHAR);
}
- else if (string_strcasecmp (ptr_color_name, "-blink") == 0)
+ else if (string_strcmp (ptr_color_name, "-blink") == 0)
{
snprintf (color[index_color], sizeof (color[index_color]),
"%c%c",
GUI_COLOR_REMOVE_ATTR_CHAR,
GUI_COLOR_ATTR_BLINK_CHAR);
}
- else if (string_strcasecmp (ptr_color_name, "dim") == 0)
+ else if (string_strcmp (ptr_color_name, "dim") == 0)
{
snprintf (color[index_color], sizeof (color[index_color]),
"%c%c",
GUI_COLOR_SET_ATTR_CHAR,
GUI_COLOR_ATTR_DIM_CHAR);
}
- else if (string_strcasecmp (ptr_color_name, "-dim") == 0)
+ else if (string_strcmp (ptr_color_name, "-dim") == 0)
{
snprintf (color[index_color], sizeof (color[index_color]),
"%c%c",
GUI_COLOR_REMOVE_ATTR_CHAR,
GUI_COLOR_ATTR_DIM_CHAR);
}
- else if (string_strcasecmp (ptr_color_name, "bold") == 0)
+ else if (string_strcmp (ptr_color_name, "bold") == 0)
{
snprintf (color[index_color], sizeof (color[index_color]),
"%c%c",
GUI_COLOR_SET_ATTR_CHAR,
GUI_COLOR_ATTR_BOLD_CHAR);
}
- else if (string_strcasecmp (ptr_color_name, "-bold") == 0)
+ else if (string_strcmp (ptr_color_name, "-bold") == 0)
{
snprintf (color[index_color], sizeof (color[index_color]),
"%c%c",
GUI_COLOR_REMOVE_ATTR_CHAR,
GUI_COLOR_ATTR_BOLD_CHAR);
}
- else if (string_strcasecmp (ptr_color_name, "reverse") == 0)
+ else if (string_strcmp (ptr_color_name, "reverse") == 0)
{
snprintf (color[index_color], sizeof (color[index_color]),
"%c%c",
GUI_COLOR_SET_ATTR_CHAR,
GUI_COLOR_ATTR_REVERSE_CHAR);
}
- else if (string_strcasecmp (ptr_color_name, "-reverse") == 0)
+ else if (string_strcmp (ptr_color_name, "-reverse") == 0)
{
snprintf (color[index_color], sizeof (color[index_color]),
"%c%c",
GUI_COLOR_REMOVE_ATTR_CHAR,
GUI_COLOR_ATTR_REVERSE_CHAR);
}
- else if (string_strcasecmp (ptr_color_name, "italic") == 0)
+ else if (string_strcmp (ptr_color_name, "italic") == 0)
{
snprintf (color[index_color], sizeof (color[index_color]),
"%c%c",
GUI_COLOR_SET_ATTR_CHAR,
GUI_COLOR_ATTR_ITALIC_CHAR);
}
- else if (string_strcasecmp (ptr_color_name, "-italic") == 0)
+ else if (string_strcmp (ptr_color_name, "-italic") == 0)
{
snprintf (color[index_color], sizeof (color[index_color]),
"%c%c",
GUI_COLOR_REMOVE_ATTR_CHAR,
GUI_COLOR_ATTR_ITALIC_CHAR);
}
- else if (string_strcasecmp (ptr_color_name, "underline") == 0)
+ else if (string_strcmp (ptr_color_name, "underline") == 0)
{
snprintf (color[index_color], sizeof (color[index_color]),
"%c%c",
GUI_COLOR_SET_ATTR_CHAR,
GUI_COLOR_ATTR_UNDERLINE_CHAR);
}
- else if (string_strcasecmp (ptr_color_name, "-underline") == 0)
+ else if (string_strcmp (ptr_color_name, "-underline") == 0)
{
snprintf (color[index_color], sizeof (color[index_color]),
"%c%c",
GUI_COLOR_REMOVE_ATTR_CHAR,
GUI_COLOR_ATTR_UNDERLINE_CHAR);
}
- else if (string_strcasecmp (ptr_color_name, "bar_fg") == 0)
+ else if (string_strcmp (ptr_color_name, "bar_fg") == 0)
{
snprintf (color[index_color], sizeof (color[index_color]),
"%c%c%c",
@@ -388,7 +388,7 @@ gui_color_get_custom (const char *color_name)
GUI_COLOR_BAR_CHAR,
GUI_COLOR_BAR_FG_CHAR);
}
- else if (string_strcasecmp (ptr_color_name, "bar_delim") == 0)
+ else if (string_strcmp (ptr_color_name, "bar_delim") == 0)
{
snprintf (color[index_color], sizeof (color[index_color]),
"%c%c%c",
@@ -396,7 +396,7 @@ gui_color_get_custom (const char *color_name)
GUI_COLOR_BAR_CHAR,
GUI_COLOR_BAR_DELIM_CHAR);
}
- else if (string_strcasecmp (ptr_color_name, "bar_bg") == 0)
+ else if (string_strcmp (ptr_color_name, "bar_bg") == 0)
{
snprintf (color[index_color], sizeof (color[index_color]),
"%c%c%c",