summaryrefslogtreecommitdiffhomepage
path: root/src/regcomp.c
AgeCommit message (Collapse)Author
2012-06-15use ENABLE/DISABLE instead of INCLUDE for configuration macro namesYukihiro Matsumoto
2012-05-20C++ compilability - avoid 'goto' across a variable initializationMitchell Blank Jr
C++ is pickier about when a 'goto' can cross a variable being delcared. The fix is to just add a set of braces to restrict the variable's scope. Without this, g++ will fail with: regcomp.c:3057: error: jump to label 'set_call_attr' regcomp.c:3087: error: from here regcomp.c:3041: error: skips initialization of 'int gnum'
2012-05-19C++ compilability: "not" is a C++ keyword, avoid itMitchell Blank Jr
see http://en.cppreference.com/w/cpp/language/operator_alternative
2012-04-30rm whitespaceroco
2012-04-20add mruby sourcesmimaki