aboutsummaryrefslogtreecommitdiffstats
path: root/string.c
Commit message (Expand)AuthorAgeFilesLines
* * io.c (appendline): forget to terminate with nul.matz2002-09-251-1/+1
* Fix-Addons [ruby-core:483] with corrections from [ruby-core:484]michal2002-09-131-8/+8
* * dir.c (glob_helper): prevent memory leak using rb_protect().matz2002-09-121-62/+72
* * string.c (get_pat): Add an extra argument "quote".knu2002-09-111-17/+19
* * variable.c (rb_copy_generic_ivar): remove old generic instancematz2002-09-031-2/+2
* * array.c (rb_ary_become): should not free ptr if it's shared.matz2002-08-291-7/+21
* Int vs Long cleanup #3 (ruby-core:352)michal2002-08-281-3/+3
* * string.c (rb_str_delete_bang): should check if str->ptr is 0.matz2002-08-281-2/+13
* * string.c (rb_str_rstrip_bang): don't access address -1.eban2002-08-271-3/+1
* * file.c (rb_find_file): $LOAD_PATH must not be empty.matz2002-08-271-46/+6
* *.c: Int vs Long cleanupmichal2002-08-211-18/+15
* * string.c (rb_str_rindex): must return -1 if unmatched.usa2002-08-061-0/+1
* * random.c: replace with Mersenne Twister RNG.matz2002-07-261-70/+74
* * string.c (rb_str_match): fix for string match.nobu2002-07-111-2/+1
* * string.c (rb_str_slice_bang): if there's no correspondingmatz2002-07-111-52/+58
* * parse.y (yylex): obsolete '?<whitespace>'; use '?\s', '?\n',matz2002-06-181-1/+6
* * string.c (rb_str_aset): should raise error if an indexing stringmatz2002-06-041-2/+3
* * 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