commit abfbdbadc76923f49a8da3f5c83fda19a208fe38 tree 296d56c203710e551941eff47ee51270b78f0812 parent 469d4b9389cc2f877f2f17ba248146831d69c66b author Bertram Scharpf 1384035003 +0100 committer Bertram Scharpf 1384042247 +0100 Bugfix: R_MATCH Typo: R_MATCH instead of RMATCH in a macro that appears nowhere else diff --git a/re.h b/re.h index 75087ea..9060c63 100644 --- a/re.h +++ b/re.h @@ -27,7 +27,7 @@ struct RMatch { }; #define RMATCH(obj) (R_CAST(RMatch)(obj)) -#define RMATCH_REGS(obj) (R_MATCH(obj)->regs) +#define RMATCH_REGS(obj) (RMATCH(obj)->regs) VALUE rb_reg_regcomp _((VALUE)); long rb_reg_search _((VALUE, VALUE, long, long));