FIX: missing paren
[sxemacs] / lib-src / etags.c
index 9b5756e..e7f3c20 100644 (file)
@@ -1606,13 +1606,14 @@ bool case_sensitive;
                return NULL;
        suffix += 1;
        for (lang = lang_names; lang->name != NULL; lang++)
-               if (lang->suffixes != NULL)
+               if (lang->suffixes != NULL) {
                        for (ext = lang->suffixes; *ext != NULL; ext++)
                                if (case_sensitive) {
                                        if (streq (*ext, suffix))
                                                return lang;
                                } else if (strcaseeq (*ext, suffix))
                                        return lang;
+               }
        return NULL;
 }
 
@@ -4368,6 +4369,7 @@ FILE *inf;
 
        LOOP_ON_INPUT_LINES (inf, lb, dummy)
                continue;
+       (void)dummy; // Silence set-not-read warning.
 }
 
 \f