Avoid a warning about an unused variable.
authorJim Meyering <jim@meyering.net>
Fri, 15 Sep 2006 16:41:43 +0000 (16:41 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 15 Sep 2006 16:41:43 +0000 (16:41 +0000)
* regex_internal.c (re_dfa_add_node): Move declaration of "type"
into the #ifdef block where it's used.

lib/ChangeLog
lib/regex_internal.c

index 9cc7901..8a11306 100644 (file)
@@ -1,5 +1,9 @@
 2006-09-15  Jim Meyering  <jim@meyering.net>
 
+       Avoid a warning about an unused variable.
+       * regex_internal.c (re_dfa_add_node): Move declaration of "type"
+       into the #ifdef block where it's used.
+
        * rename-dest-slash.c: New file.
 
 2006-09-14  Bruno Haible  <bruno@clisp.org>
index 633db7a..fa5bfbb 100644 (file)
@@ -1340,7 +1340,6 @@ static Idx
 internal_function
 re_dfa_add_node (re_dfa_t *dfa, re_token_t token)
 {
-  int type = token.type;
   if (BE (dfa->nodes_len >= dfa->nodes_alloc, 0))
     {
       size_t new_nodes_alloc = dfa->nodes_alloc * 2;
@@ -1376,8 +1375,11 @@ re_dfa_add_node (re_dfa_t *dfa, re_token_t token)
   dfa->nodes[dfa->nodes_len] = token;
   dfa->nodes[dfa->nodes_len].constraint = 0;
 #ifdef RE_ENABLE_I18N
+  {
+  int type = token.type;
   dfa->nodes[dfa->nodes_len].accept_mb =
     (type == OP_PERIOD && dfa->mb_cur_max > 1) || type == COMPLEX_BRACKET;
+  }
 #endif
   dfa->nexts[dfa->nodes_len] = REG_MISSING;
   re_node_set_init_empty (dfa->edests + dfa->nodes_len);