diff options
Diffstat (limited to 'src/core/wee-eval.h')
-rw-r--r-- | src/core/wee-eval.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/wee-eval.h b/src/core/wee-eval.h index 98c7957bf..5f0ae7202 100644 --- a/src/core/wee-eval.h +++ b/src/core/wee-eval.h @@ -35,14 +35,14 @@ enum t_eval_logical_op enum t_eval_comparison { - EVAL_COMPARE_EQUAL = 0, + EVAL_COMPARE_REGEX_MATCHING = 0, + EVAL_COMPARE_REGEX_NOT_MATCHING, + EVAL_COMPARE_EQUAL, EVAL_COMPARE_NOT_EQUAL, EVAL_COMPARE_LESS_EQUAL, EVAL_COMPARE_LESS, EVAL_COMPARE_GREATER_EQUAL, EVAL_COMPARE_GREATER, - EVAL_COMPARE_REGEX_MATCHING, - EVAL_COMPARE_REGEX_NOT_MATCHING, /* number of comparison strings */ EVAL_NUM_COMPARISONS, }; |