aboutsummaryrefslogtreecommitdiffstats
path: root/string.c
Commit message (Expand)AuthorAgeFilesLines
* * parse.y (dsym): :"symbol string" style should not contain `\0'.matz2003-03-071-7/+2
* * string.c (str_new): need no MEMZERO().matz2003-02-271-3/+0
* * string.c (rb_str_cmp_m): should use LONG2NUM().matz2003-02-211-1/+1
* * string.c (rb_str_cmp_m): two small bugs fixed.matz2003-02-211-2/+3
* * string.c (rb_str_cmp_m): return nil if str2 does not respond tomatz2003-02-201-5/+19
* * array.c (rb_ary_to_a): return value should be an Array if thematz2003-02-101-0/+5
* re-indented.nobu2003-02-071-1/+1
* * intern.h, re.c (rb_memsearch): returns long.nobu2003-02-071-1/+5
* * re.c (rb_reg_initialize_m): 3rd argument was ignored.matz2003-02-061-1/+1
* * array.c (rb_ary_equal): a == b is true when b is non T_ARRAYmatz2003-02-041-1/+6
* * object.c (Init_Object): default Object#=== now calls "=="matz2003-02-031-8/+3
* * re.c (rb_memsearch): algolithm body of String#index.matz2003-02-031-37/+3
* * string.c (rb_str_index): search using Karp-Rabin algolithm.matz2003-01-311-2/+24
* * variable.c (rb_obj_classname): new function.matz2003-01-311-5/+5
* * parse.y (yylex): remove EXPR_CMDARG according to the RHG book.matz2003-01-311-7/+14
* Updated Copyrights of Matz to 2003.michal2003-01-161-1/+1
* * string.c (rb_str_substr): should share the shared string ifnobu2002-12-301-2/+5
* * array.c (ary_alloc), dir.c (dir_s_alloc), eval.c (thgroup_s_alloc),usa2002-12-211-0/+1
* * parse.y (do_block): split "do" block and tLBRACE_ARG block.matz2002-12-201-8/+8
* * numeric.c (num_step): use DBL_EPSILON.matz2002-12-191-3/+13
* * string.c (rb_str_dup_frozen): handle tail shared string.nobu2002-12-181-2/+5
* * string.c (rb_str_new4): handle tail shared string.nobu2002-12-171-9/+24
* * node.h (NODE_ATTRASGN): new node, assignment to attribute.nobu2002-12-171-2/+12
* * sprintf.c (rb_f_sprintf): preceding ".." for negative numbersmatz2002-12-101-1/+1
* * object.c (Init_Object): added Object#object_id, new name formatz2002-11-031-0/+1
* * string.c (rb_str_split_m): RSTRING(str)->ptr might become NULL.aamine2002-10-241-1/+5
* * eval.c (rb_eval): added NODE_DSYM, symbol literal withnobu2002-10-231-2/+2
* * 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