diff options
| author | Jörg Frings-Fürst <debian@jff.email> | 2019-07-12 09:18:14 +0200 | 
|---|---|---|
| committer | Jörg Frings-Fürst <debian@jff.email> | 2019-07-12 09:18:14 +0200 | 
| commit | e25c754918ae26e8b9e68a47bc1af36248e91800 (patch) | |
| tree | d21952fcb2767620c25d4d5b412b8c4829ca96bc /src/regparse.h | |
| parent | 70de057dbb5ea79536834e156f534279347f96f3 (diff) | |
New upstream version 6.9.2upstream/6.9.2
Diffstat (limited to 'src/regparse.h')
| -rw-r--r-- | src/regparse.h | 21 | 
1 files changed, 10 insertions, 11 deletions
| diff --git a/src/regparse.h b/src/regparse.h index ede9bb8..b7a2867 100644 --- a/src/regparse.h +++ b/src/regparse.h @@ -4,7 +4,7 @@    regparse.h -  Oniguruma (regular expression library)  **********************************************************************/  /*- - * Copyright (c) 2002-2018  K.Kosako  <sndgk393 AT ybb DOT ne DOT jp> + * Copyright (c) 2002-2019  K.Kosako  <sndgk393 AT ybb DOT ne DOT jp>   * All rights reserved.   *   * Redistribution and use in source and binary forms, with or without @@ -59,19 +59,18 @@ enum BagType {  enum GimmickType {    GIMMICK_FAIL       = 0, -  GIMMICK_KEEP       = 1, -  GIMMICK_SAVE       = 2, -  GIMMICK_UPDATE_VAR = 3, +  GIMMICK_SAVE       = 1, +  GIMMICK_UPDATE_VAR = 2,  #ifdef USE_CALLOUT -  GIMMICK_CALLOUT    = 4, +  GIMMICK_CALLOUT    = 3,  #endif  }; -enum QuantBodyEmpty { -  QUANT_BODY_IS_NOT_EMPTY = 0, -  QUANT_BODY_IS_EMPTY     = 1, -  QUANT_BODY_IS_EMPTY_MEM = 2, -  QUANT_BODY_IS_EMPTY_REC = 3 +enum BodyEmpty { +  BODY_IS_NOT_EMPTY = 0, +  BODY_IS_EMPTY     = 1, +  BODY_IS_EMPTY_MEM = 2, +  BODY_IS_EMPTY_REC = 3  };  typedef struct { @@ -102,7 +101,7 @@ typedef struct {    int lower;    int upper;    int greedy; -  enum QuantBodyEmpty body_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} */ | 
