diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2018-09-05 22:32:59 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2018-09-05 22:32:59 +0200 |
commit | 6a3c5a588240760f577cf090c5e484b821af1873 (patch) | |
tree | d527e9ced7d531815e9d43bec38e62a6cd53de36 /doc/CALLOUTS.API | |
parent | a38d6e8f8417b777925660269969ce2d353808ef (diff) | |
parent | b0132ba11e2c7609d7b50ffa56532a357efe6e2a (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'doc/CALLOUTS.API')
-rw-r--r-- | doc/CALLOUTS.API | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/CALLOUTS.API b/doc/CALLOUTS.API index 6003532..057a054 100644 --- a/doc/CALLOUTS.API +++ b/doc/CALLOUTS.API @@ -1,4 +1,4 @@ -Callouts API Version 6.8.2 2018/04/14 +Callouts API Version 6.8.2 2018/06/08 #include <oniguruma.h> @@ -24,9 +24,9 @@ Callouts API Version 6.8.2 2018/04/14 * Callout function return value (int) - ONIG_CALLOUT_FAIL(1): fail - ONIG_CALLOUT_SUCCESS(0): success - less than -1: error code (terminate search/match) + ONIG_CALLOUT_FAIL (== 1): fail + ONIG_CALLOUT_SUCCESS (== 0): success + less than -1: error code (terminate search/match) ONIG_CALLOUT_FAIL/SUCCESS values are ignored in retractions, because retraction is a part of recovery process after failure. @@ -196,7 +196,7 @@ Callouts API Version 6.8.2 2018/04/14 # const OnigUChar* onig_get_string_by_callout_args(OnigCalloutArgs* args) - Returns the subject string adress. + Returns the subject string address. This is the second argument(str) of onig_search(). |