diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-08-15 15:27:08 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-09-24 11:36:18 -0600 |
commit | cf78de0bc205ee8b764da82ab0cc9c394067453e (patch) | |
tree | a9680c8e542663ecafc296c2c50e70fb3704093a /embed.fnc | |
parent | 9b1eb0677ed31eb8828470cdf12198cc308a4998 (diff) | |
download | perl-cf78de0bc205ee8b764da82ab0cc9c394067453e.tar.gz |
regcomp.c: Use STR_WITH_LEN to avoid bookkeeping
By changing the order of the parameters to the static function
S_add_data, we can call it with STR_WITH_LEN and avoid a human having to
count characters.
Diffstat (limited to 'embed.fnc')
-rw-r--r-- | embed.fnc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2073,7 +2073,7 @@ Es |SSize_t|study_chunk |NN RExC_state_t *pRExC_state \ |NULLOK regnode_ssc *and_withp \ |U32 flags|U32 depth EsRn |U32 |add_data |NN RExC_state_t* const pRExC_state \ - |const U32 n|NN const char* const s + |NN const char* const s|const U32 n rs |void |re_croak2 |bool utf8|NN const char* pat1|NN const char* pat2|... Ei |I32 |regpposixcc |NN RExC_state_t *pRExC_state \ |I32 value|const bool strict |