]> granicus.if.org Git - onig/commitdiff
refactoring
authorK.Kosako <kkosako0@gmail.com>
Thu, 28 Mar 2019 00:43:26 +0000 (09:43 +0900)
committerK.Kosako <kkosako0@gmail.com>
Thu, 28 Mar 2019 00:43:26 +0000 (09:43 +0900)
src/regcomp.c
src/regparse.h

index c0ef71aa8e6f9bb5880ac95e193155d6cf075491..c2c04a4d1880c2aceee76a65b4e668c2511fa115 100644 (file)
@@ -952,7 +952,7 @@ compile_length_quantifier_node(QuantNode* qn, regex_t* reg)
 {
   int len, mod_tlen;
   int infinite = IS_REPEAT_INFINITE(qn->upper);
-  enum QuantBodyEmpty empty_info = qn->empty_info;
+  enum BodyEmpty empty_info = qn->empty_info;
   int tlen = compile_length_tree(NODE_QUANT_BODY(qn), reg);
 
   if (tlen < 0) return tlen;
@@ -1027,7 +1027,7 @@ compile_quantifier_node(QuantNode* qn, regex_t* reg, ScanEnv* env)
 {
   int i, r, mod_tlen;
   int infinite = IS_REPEAT_INFINITE(qn->upper);
-  enum QuantBodyEmpty empty_info = qn->empty_info;
+  enum BodyEmpty empty_info = qn->empty_info;
   int tlen = compile_length_tree(NODE_QUANT_BODY(qn), reg);
 
   if (tlen < 0) return tlen;
@@ -4002,7 +4002,7 @@ expand_case_fold_string(Node* node, regex_t* reg, int state)
 }
 
 #ifdef USE_INSISTENT_CHECK_CAPTURES_IN_EMPTY_REPEAT
-static enum QuantBodyEmpty
+static enum BodyEmpty
 quantifiers_memory_node_info(Node* node)
 {
   int r = BODY_IS_EMPTY;
index f673c1a2a0686f6f24ecf710f1eb87d10b3505dd..b7a28672ed8240f89867a125107d367951244ae3 100644 (file)
@@ -66,7 +66,7 @@ enum GimmickType {
 #endif
 };
 
-enum QuantBodyEmpty {
+enum BodyEmpty {
   BODY_IS_NOT_EMPTY = 0,
   BODY_IS_EMPTY     = 1,
   BODY_IS_EMPTY_MEM = 2,
@@ -101,7 +101,7 @@ typedef struct {
   int lower;
   int upper;
   int greedy;
-  enum QuantBodyEmpty empty_info;
+  enum BodyEmpty empty_info;
   struct _Node* head_exact;
   struct _Node* next_head_exact;
   int is_refered;     /* include called node. don't eliminate even if {0} */