Code

command: fix swapped help texts
[ncmpc.git] / src / charset.c
index 909e77656faca5a9b18bf769271f0afa8956da3a..1c1b0465755c645e19416c1423cb5f9ef88e75b7 100644 (file)
@@ -96,7 +96,8 @@ locale_width(const char *p)
 #endif
 }
 
-static inline unsigned
+gcc_unused
+static unsigned
 ascii_cut_width(char *p, unsigned max_width)
 {
        size_t length = strlen(p);
@@ -107,7 +108,8 @@ ascii_cut_width(char *p, unsigned max_width)
        return max_width;
 }
 
-static inline unsigned
+gcc_unused
+static unsigned
 narrow_cut_width(char *p, unsigned max_width)
 {
        size_t length = g_utf8_strlen(p, -1);
@@ -118,15 +120,15 @@ narrow_cut_width(char *p, unsigned max_width)
        return max_width;
 }
 
-static inline unsigned
+gcc_unused
+static unsigned
 wide_cut_width(char *p, unsigned max_width)
 {
        size_t length = g_utf8_strlen(p, -1);
        unsigned width = 0, prev_width;
-       gunichar c;
 
        while (length-- > 0) {
-               c = g_utf8_get_char(p);
+               gunichar c = g_utf8_get_char(p);
                prev_width = width;
                width += g_unichar_iswide(c) ? 2 : 1;
                if (width > max_width) {
@@ -162,16 +164,14 @@ char *
 utf8_to_locale(const char *utf8str)
 {
 #ifdef ENABLE_LOCALE
-       gchar *str;
-
        assert(utf8str != NULL);
 
        if (noconvert)
                return g_strdup(utf8str);
 
-       str = g_convert_with_fallback(utf8str, -1,
-                                     charset, "utf-8",
-                                     NULL, NULL, NULL, NULL);
+       gchar *str = g_convert_with_fallback(utf8str, -1,
+                                            charset, "utf-8",
+                                            NULL, NULL, NULL, NULL);
        if (str == NULL)
                return g_strdup(utf8str);
 
@@ -185,16 +185,14 @@ char *
 locale_to_utf8(const char *localestr)
 {
 #ifdef ENABLE_LOCALE
-       gchar *str;
-
        assert(localestr != NULL);
 
        if (noconvert)
                return g_strdup(localestr);
 
-       str = g_convert_with_fallback(localestr, -1,
-                                     "utf-8", charset,
-                                     NULL, NULL, NULL, NULL);
+       gchar *str = g_convert_with_fallback(localestr, -1,
+                                            "utf-8", charset,
+                                            NULL, NULL, NULL, NULL);
        if (str == NULL)
                return g_strdup(localestr);