mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* oniguruma.h, regparse.c: imported Oni Guruma 2.2.8.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6234 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
803279135c
commit
ce4078d5bd
3 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Wed Apr 28 01:26:11 2004 Kazuo Saito <ksaito@uranus.dti.ne.jp>
|
||||||
|
|
||||||
|
* oniguruma.h, regparse.c: imported Oni Guruma 2.2.8.
|
||||||
|
|
||||||
Wed Apr 28 01:16:23 2004 Kazuo Saito <ksaito@uranus.dti.ne.jp>
|
Wed Apr 28 01:16:23 2004 Kazuo Saito <ksaito@uranus.dti.ne.jp>
|
||||||
|
|
||||||
* oniguruma.h, regparse.c: imported Oni Guruma 2.2.7.
|
* oniguruma.h, regparse.c: imported Oni Guruma 2.2.7.
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
#define ONIGURUMA
|
#define ONIGURUMA
|
||||||
#define ONIGURUMA_VERSION_MAJOR 2
|
#define ONIGURUMA_VERSION_MAJOR 2
|
||||||
#define ONIGURUMA_VERSION_MINOR 2
|
#define ONIGURUMA_VERSION_MINOR 2
|
||||||
#define ONIGURUMA_VERSION_TEENY 7
|
#define ONIGURUMA_VERSION_TEENY 8
|
||||||
|
|
||||||
#ifndef P_
|
#ifndef P_
|
||||||
#if defined(__STDC__) || defined(_WIN32)
|
#if defined(__STDC__) || defined(_WIN32)
|
||||||
|
@ -716,6 +716,10 @@ void onig_set_syntax_options P_((OnigSyntaxType* syntax, OnigOptionType options)
|
||||||
ONIG_EXTERN
|
ONIG_EXTERN
|
||||||
int onig_set_meta_char P_((unsigned int what, OnigCodePoint code));
|
int onig_set_meta_char P_((unsigned int what, OnigCodePoint code));
|
||||||
ONIG_EXTERN
|
ONIG_EXTERN
|
||||||
|
unsigned int onig_get_match_stack_limit_size P_((void));
|
||||||
|
ONIG_EXTERN
|
||||||
|
int onig_set_match_stack_limit_size P_((unsigned int size));
|
||||||
|
ONIG_EXTERN
|
||||||
int onig_end P_((void));
|
int onig_end P_((void));
|
||||||
ONIG_EXTERN
|
ONIG_EXTERN
|
||||||
const char* onig_version P_((void));
|
const char* onig_version P_((void));
|
||||||
|
|
|
@ -4112,7 +4112,6 @@ set_qualifier(Node* qnode, Node* target, int group, ScanEnv* env)
|
||||||
#ifdef USE_WARNING_REDUNDANT_NESTED_REPEAT_OPERATOR
|
#ifdef USE_WARNING_REDUNDANT_NESTED_REPEAT_OPERATOR
|
||||||
if (qn->by_number == 0 && qnt->by_number == 0 &&
|
if (qn->by_number == 0 && qnt->by_number == 0 &&
|
||||||
IS_SYNTAX_BV(env->syntax, ONIG_SYN_WARN_REDUNDANT_NESTED_REPEAT)) {
|
IS_SYNTAX_BV(env->syntax, ONIG_SYN_WARN_REDUNDANT_NESTED_REPEAT)) {
|
||||||
|
|
||||||
int nestq_num, targetq_num;
|
int nestq_num, targetq_num;
|
||||||
char buf[WARN_BUFSIZE];
|
char buf[WARN_BUFSIZE];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue