aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
Commit message (Expand)AuthorAgeFilesLines
* * parse.y (tokadd_string): ignore backslashed spaces in %w.matz2002-08-011-0/+3
* * random.c: replace with Mersenne Twister RNG.matz2002-07-261-28/+50
* * parse.y (yylex): modify to accept a code like "m (a){...}".aamine2002-07-261-6/+6
* * parse.y (yylex): fix typo.aamine2002-07-171-1/+1
* * parse.y (heredoc_identifier): modify typo.aamine2002-07-151-3/+3
* * parse.y (literal_concat_string): wrong optimization.nobu2002-07-131-2/+1
* * parse.y: remove useless function str_extend_p().aamine2002-07-041-18/+0
* object.c: rb_Integer reformat, nil#to_f added to rb_define_method.michal2002-07-021-1/+1
* * re.c (rb_reg_expr_str): need to process backslashes properly.matz2002-06-281-12/+9
* missing ;nobu2002-06-271-0/+1
* * parse.y (literal_concat_string): non-string last expression innobu2002-06-261-2/+3
* * parse.y (words, qwords): word list literal rules.nobu2002-06-261-123/+128
* * parse.y (string1, xstring, regexp): moved lex_strnestnobu2002-06-251-10/+12
* * parse.y (string_dvar): allow back references in interpolation.nobu2002-06-241-6/+7
* * parse.y (yylex): __END__ should not be effective withinmatz2002-06-241-6/+8
* * eval.c (rb_eval): NODE_EVSTR is no longer used.nobu2002-06-241-588/+636
* * parse.y (yylex): ? followed by successive word charaters isnobu2002-06-181-0/+4
* * parse.y (yylex): commands after break/next/rescue can takenobu2002-06-181-0/+1
* * parse.y (yylex): obsolete '?<whitespace>'; use '?\s', '?\n',matz2002-06-181-14/+48
* * parse.y (yylex): should pushback proper char after '<<'.nobu2002-06-181-36/+53
* * parse.y (read_escape): deny zero-width hexadecimal character.nobu2002-06-141-0/+8
* * eval.c (svalue_to_avalue): v may be Qundef. This fix wasmatz2002-06-131-4/+9
* * parse.y (yylex): 'do' should return kDO_BLOCK on EXPR_ENDARG.matz2002-06-121-31/+51
* * parse.y (stmt): fix typo.nobu2002-06-111-1/+1
* * parse.y (%%): remove '%%' line on the end of the file(parse error).eban2002-06-111-1/+0
* * eval.c (rb_eval): ruby_frame->last_func may be null, if it'smatz2002-06-111-24/+17
* * numeric.c (fix_lshift): negative shift count means right shift.nobu2002-06-101-0/+4
* Trivial: GCC3.1 fix (not worth to mention in ChangeLog)michal2002-06-051-0/+2
* * string.c (rb_str_aset): should raise error if an indexing stringmatz2002-06-041-2/+8
* * parse.y (here_document): check if identifier is terminated.nobu2002-06-021-3/+11
* * parse.y: yyparse #defines moved from intern.hmatz2002-05-291-0/+9
* * array.c: fixed format string for 'long' args (%d -> %ld).michal2002-05-281-1/+1
* * parse.y (yylex): case '<': here-document label ate '-'.aamine2002-05-221-0/+3
* * parse.y (bodystmt): ensure clause was excuted on else clausenobu2002-05-201-1/+1
* * eval.c (rb_clear_cache_by_class): new function.matz2002-05-141-2/+1
* * parse.y (here_document): preserve line number begins herenobu2002-05-101-1/+5
* * various files: macro fix-up by Michal Rokos.matz2002-04-251-12/+4
* * io.c (rb_io_mode_flags): both 'r+b' and 'rb+' should be allowed.matz2002-04-241-42/+42
* * eval.c (rb_thread_cleanup): current thread may be THREAD_STOPPED,matz2002-04-191-4/+0
* * eval.c (assign): ruby_verbose should be surrounded by RTEST().matz2002-04-111-2/+2
* * parse.y (primary): while/until statement modifiers to "begin"matz2002-03-261-61/+133
* too reverted.nobu2002-03-201-1/+1
* * eval.c (is_defined): should check receiver only once.matz2002-03-201-5/+2
* * re.c (rb_reg_search): should clear last_match if pos is out ofmatz2002-03-191-9/+21
* * parse.y (parse_string): part of multi-byte sequence must notnobu2002-03-181-12/+20
* * regex.c (re_compile_pattern): '\0111' should be '\011' plus '1',matz2002-03-121-12/+3
* * eval.c (cvar_cbase): utility function to find innermost nonmatz2002-03-081-0/+1
* * gc.c (rb_source_filename): added. holds unique strings for filenobu2002-03-071-1/+1
* * hash.c (rb_any_cmp): should handle Qundef in keys.matz2002-02-201-1/+1
* * parse.y (yylex): operators in the "op" rule should makematz2002-02-191-27/+87