summaryrefslogtreecommitdiff
path: root/regint.h
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-19 16:40:32 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-19 16:40:32 +0000
commit8c43fc0217cc0a2876a4f86d282739c92f80270a (patch)
treede0cc4c01f00902c7da97ecc222df91f6c80da3e /regint.h
parent80002f8e46059a389c99c46d548ab27bf80f7c6d (diff)
merge revision(s) 40276: [Backport #8210]
* Merge Onigmo 5.13.4 f22cf2e566712cace60d17f84d63119d7c5764ee. [bug] fix problem with optimization of \z (Issue #16) [Bug #8210] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@40384 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'regint.h')
-rw-r--r--regint.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/regint.h b/regint.h
index 3b55d8e9f9..c26b2decff 100644
--- a/regint.h
+++ b/regint.h
@@ -805,7 +805,7 @@ typedef struct _OnigStackType {
struct {
int num; /* memory num */
UChar *pstr; /* start/end position */
- /* Following information is setted, if this stack type is MEM-START */
+ /* Following information is set, if this stack type is MEM-START */
OnigStackIndex start; /* prev. info (for backtrack "(...)*" ) */
OnigStackIndex end; /* prev. info (for backtrack "(...)*" ) */
} mem;
@@ -878,6 +878,7 @@ typedef void hash_table_type;
#include "ruby/st.h"
typedef st_data_t hash_data_type;
#else
+#include "st.h"
typedef uintptr_t hash_data_type;
#endif