summaryrefslogtreecommitdiffstats
path: root/re.c
Commit message (Expand)AuthorAgeFilesLines
* * re.c: use strlcpy for error messages.akr2008-12-161-26/+27
* * re.c (reg_enc_error): raise EncodingCompatibilityError formatz2008-12-111-2/+2
* * re.c (rb_reg_initialize): raise RegexpError when encodingnaruse2008-12-101-0/+5
* * re.c (rb_reg_desc): re might be NULL.matz2008-11-181-1/+1
* * re.c (rb_reg_regsub): returns -1 unless ascii as well asnobu2008-11-151-1/+1
* * re.c (unescape_escaped_nonascii): back out the last change onmatz2008-10-221-6/+2
* * re.c (rb_reg_initialize_m): specify ARG_ENCODING_NONE instead ofmatz2008-10-181-1/+1
* * re.c (rb_reg_initialize_m): changed the message to clarify thematz2008-10-161-1/+1
* * .gdbinit (rp): REGEXP handling fixed.matz2008-10-161-2/+6
* rdoc update.akr2008-10-111-2/+9
* * re.c (rb_reg_desc): Regexps of ASCII Compatible encoding maynaruse2008-09-191-2/+6
* * re.c (rb_reg_desc): Regexp#inspect should be US-ASCII.naruse2008-09-161-1/+1
* * re.c (rb_reg_quote): use rb_enc_mbcput to generate ASCIIakr2008-09-151-14/+14
* * include/ruby/oniguruma.h (OnigEncodingTypeST): add end argument forakr2008-09-131-1/+1
* * include/ruby/oniguruma.h (onigenc_get_right_adjust_char_head): addakr2008-09-131-1/+1
* * vm.c (rb_mRubyVMFrozenCore): registered for GC.akr2008-09-081-5/+3
* * re.c (rb_reg_inspect): don't raise for uninitialized Regexp.akr2008-08-181-1/+3
* * object.c (rb_obj_untrusted): new method Object#untrusted?.shugo2008-08-131-1/+1
* * compile.c (insn_data_to_s_detail), file.c (rb_stat_inspect),nobu2008-07-221-3/+1
* * re.c (rb_reg_s_union): useless rb_enc_get call removed to preventakr2008-07-201-1/+1
* * re.c (unescape_nonascii): add has_property argument not toakr2008-07-041-3/+9
* * re.c (unescape_nonascii): make regexp fixed_encoding if \p is used.akr2008-07-041-0/+6
* * include/ruby/ruby.h (struct RRegexp): new field usecnt. replaceakr2008-06-281-39/+35
* * array.c, bignum.c, cont.c, dir.c, dln.c, encoding.c, enumerator.c,ko12008-06-081-1/+1
* * io.c (rb_f_open), re.c (rb_reg_search), transcode.c (str_transcode):nobu2008-06-071-2/+1
* * re.c: fix SEGV by Regexp.allocate.names, Match.allocate.names, etc.mame2008-06-021-11/+38
* * suppress warnings with -Wwrite-string.nobu2008-05-311-1/+1
* * regparse.c (PINC): use optimized enclen() instead ofmatz2008-05-191-15/+26
* * array.c (rb_ary_sort_bang): stop memory leak. [ruby-dev:34726]matz2008-05-161-0/+2
* * re.c (rb_reg_prepare_enc): error condition was updated for nonmatz2008-05-151-19/+28
* * re.c (rb_reg_prepare_re): made non static with small refactoring.matz2008-05-121-3/+4
* * re.c (Init_Regexp): remove MatchData#select. [ruby-dev:34563]matz2008-05-021-2/+0
* * re.c (rb_reg_search): use local variable. a patch from wanabenobu2008-04-301-1/+2
* * enumerator.c (enumerator_each, enumerator_with_index): suppressnobu2008-04-221-5/+3
* * re.c (rb_reg_search): make search reentrant. [ruby-dev:34223]matz2008-04-141-48/+63
* * re.c (rb_reg_quote): should always copy the quoting string.matz2008-04-081-3/+3
* * re.c (rb_memsearch_qs): wrong boundary condition.naruse2008-04-041-4/+4
* * re.c (rb_memsearch_qs): wrong boundary condition. a patch frommatz2008-04-041-1/+1
* * re.c (rb_memsearch_ss): simple shift search.naruse2008-03-171-26/+130
* fix doc.akr2008-03-091-9/+9
* * numeric.c (fix_to_s): avoid rb_scan_args() when no argumentmatz2008-03-051-1/+1
* * re.c (rb_reg_regsub): remove too strict encoding check.matz2008-03-031-1/+0
* * time.c (time_strftime): format should be ascii compatible.matz2008-02-291-0/+1
* add tests for sub/gsub with hash.akr2008-02-181-1/+2
* typo fix.akr2008-02-181-1/+1
* * re.c (re_warn): defined to restore warnings for /[a-c-e]/, etc.akr2008-02-181-0/+6
* * re.c (rb_reg_regsub): don't repeat repl twice withakr2008-02-171-0/+1
* * re.c (rb_reg_prepare_re): add enable_warning parameter.akr2008-02-171-4/+5
* * re.c (rb_reg_quote): return US-ASCII string consistently.akr2008-02-171-2/+5
* * include/ruby/re.h (struct rmatch_offset): new struct for characterakr2008-02-161-45/+157