aboutsummaryrefslogtreecommitdiffstats
path: root/string.c
Commit message (Expand)AuthorAgeFilesLines
* * parse.y: yyparse #defines moved from intern.hmatz2002-05-291-1/+1
* * array.c: fixed format string for 'long' args (%d -> %ld).michal2002-05-281-3/+3
* * io.c (rb_io_mode_flags): both 'r+b' and 'rb+' should be allowed.matz2002-04-241-12/+11
* * re.c (rb_reg_expr_str): should treat backslash specially inmatz2002-04-181-2/+6
* * re.c (rb_reg_search): should clear last_match if pos is out ofmatz2002-03-191-2/+12
* * string.c (rb_str_subpat_set): must make str independent afternobu2002-03-141-0/+1
* * marshal.c (w_object): module inclusion using extend() shouldmatz2002-03-111-3/+3
* * intern.h: prototypes for new functions; rb_cstr_to_inum(),nobu2002-02-011-20/+4
* * eval.c (is_defined): defined?(Foo::Baz) should check constantsmatz2002-01-281-1/+1
* * class.c (rb_include_module): detect cyclic module inclusion.matz2002-01-251-2/+1
* * re.c (match_select): should propagate taintness.matz2002-01-111-4/+19
* * string.c (rb_str_new2): NULL pointer check added.matz2002-01-071-0/+3
* * eval.c (rb_mod_define_method): define_method should followmatz2001-12-191-13/+15
* * string.c (rb_str_replace): swap arguments of OBJ_INFECT.matz2001-12-181-36/+43
* * string.c (rb_str_match_m): should convert an argument intomatz2001-12-111-0/+7
* * array.c (rb_ary_modify): should copy the internal buffer if thematz2001-12-101-104/+121
* * string.c (rb_str_equal): object with to_str must be treated as amatz2001-11-291-2/+4
* * eval.c (rb_mod_modfunc): should follow NODE_ZSUPER link; basedmatz2001-11-191-1/+1
* * parse.y (parse_regx): should raise error on untermitatedmatz2001-11-191-7/+7
* * signal.c (sighandle): should not re-register sighandler ifmatz2001-11-131-6/+6
* * process.c (security): always give warning for insecure PATH.matz2001-11-081-3/+7
* * eval.c (POP_VARS): should not set DVAR_DONT_RECYCLE if _oldmatz2001-10-311-1/+2
* * string.c (rb_str_chomp_bang): do smart chomp if $/ == '\n'.matz2001-10-301-0/+24
* * string.c (rb_str_index): wrong increment for non alphanumericmatz2001-10-161-2/+2
* * marshal.c (r_object): better allocation type check formatz2001-10-031-67/+74
* * ext/socket/socket.c (unix_addr): getsockname(2) may result len = 0.matz2001-10-021-39/+87
* * string.c (rb_str_init): String.new() => ""matz2001-09-191-1/+16
* * eval.c (rb_thread_restore_context): save current value ofmatz2001-09-081-2/+2
* * parse.y (yylex): ternary ? can be followed by newline.matz2001-08-291-0/+1
* * range.c (range_step): 'iter' here should be an array.matz2001-08-201-2/+2
* * range.c (range_step): new method.matz2001-08-141-2/+1
* * string.c (rb_str_cat): fix buffer overflow.nobu2001-08-121-3/+3
* a problem about `associated' String and `str_buf'.nobu2001-08-061-3/+12
* * string.c (rb_str_lstrip_bang): new method.matz2001-08-061-15/+56
* * eval.c (rb_provide_feature): should not tweak extension used formatz2001-07-241-22/+41
* * regex.c (NUM_FAILURE_ITEMS): was confusing NUM_REG_ITEMS andmatz2001-07-181-0/+1
* * regex.c (re_search): should consider reverse search.matz2001-07-141-9/+4
* * ruby.c (proc_options): unexpected SecurityError happens when -T4.matz2001-05-301-29/+157
* * array.c (rb_ary_and): should not push frozen key string.matz2001-05-161-9/+9
* * ruby.h (rb_string_value): add volatile to avoid compiler warning.eban2001-05-111-1/+1
* * bignum.c (bigdivrem): access boundary bug.matz2001-05-111-0/+7
* forgot some checkins.matz2001-05-061-9/+17
* * eval.c (block_pass): should not downgrade safe level.matz2001-05-021-43/+42
* * eval.c: remove TMP_PROTECT_END to prevent C_ALLOCA crash.matz2001-03-261-5/+5
* * string.c (trnext): support backslash escape in String#tr.eban2001-03-041-1/+4
* * string.c (rb_str_delete_bang): delete! should take at least 1matz2001-02-281-0/+3
* * string.c (rb_str_substr): "a"[1,2] should return ""; needmatz2001-02-191-1/+0
* * parse.y (parse_quotedwords): %w should allow parenthesis escape.matz2001-02-081-1/+1
* * array.c (rb_ary_sort_bang): returns self, even if its length ismatz2001-02-021-1/+4
* * string.c (str_independent): should not clear str->orig here.matz2001-01-291-3/+3