The R Project SVN R

Rev

Show changed files | Details | Compare with Previous | Blame | RSS feed

Filtering Options

Rev Age Author Path Log message Diff
52864 5808 d 2 h urbaneks /branches/R-exp-R5/ Experinental branch implementing "R5" ideas - extending S language to
create a more intuitive object system
 
52104 5907 d 2 h ripley /trunk/src/ have R_ProcessEvents on all platforms  
52035 5914 d 23 h ripley /trunk/ assume C99 headers now we assume C99 compiler  
51838 5936 d 11 h ripley /trunk/ clean up headers  
51758 5945 d 18 h murdoch /trunk/ source(echo=TRUE) now echos comments following the last expression.  
51482 5965 d 0 h falcon /trunk/src/ Add IS_CACHED function for testing write barrier  
51267 5980 d 11 h ripley /trunk/ check arity and args of one-argument primitives  
50912 6046 d 22 h ripley /trunk/src/include/ use size_t for startup measures (needed in Win64)  
50896 6047 d 22 h falcon /trunk/ Allow n-dim arrays to be subsetted by an n-column character matrix

The character matrix is converted to the corresponding integer matrix
by matching against the dimnames of the array. NA values in any row
of the character matrix are propagated to the result. Unmatched
values result in a subscript out of bounds error. Empty string "" is
not allowed to match and therefore always results in an error.
 
50768 6067 d 7 h ripley /trunk/ warning -> error for embedded nuls and unrecognized escapes  
50690 6075 d 11 h ripley /trunk/src/ improve error messages from evalList  
50609 6084 d 17 h jmc /trunk/ Changes to fix efficiency in dispatch, potential recursive loops, and
incorrect signatures, all for S4 methods for primitive functions.

1. A bug in get_primitive_methods prevented all quick dispatch of primitives from
working. Fixing this exposed a problem in quickDispatch in methods
that prevented matching methods with traiiling "missing" in the
signature.

2. A mechanism was added to temporarily turn off all dispatch of methods for
primitives. The code for findInheritedMethods activates the
mechanism. At the moment, this is just for efficiency, but in
principle it could be needed to avoid recursive calls to
findInheritedMethods.

3. The signatures for "$" and "$<-" were modified to remove "name",
since the grammar prevents general objects for this argument.

Some additional changes were tested but not installed to allow a
general signature in methods for "[", "[[" and their replacement
versions. Problems found with the Matrix package for this change. See
the commented calls to DiispatchAnyOrEval in src/main.
 
50297 6111 d 7 h ripley /trunk/src/ put wtransChar in a public header  
50286 6112 d 5 h ripley /trunk/ add more validity checking of MBCS strings  
49886 6145 d 21 h luke /trunk/src/include/ Modified implementation of HASHASH and SET_HASHASH macros cor CHARSXP
objects used as symbol names to use only one bit in the gp field to
avoid conflicts with encoding and CHARSXP caching that also use bits
in gp.
 
49747 6157 d 0 h murdoch /trunk/src/ Allow parsing in the middle of a REPL on a file, without messing up the source record for the file.  
49686 6161 d 6 h murdoch /trunk/ Some cleanup of the parser
Include srcrefs in base packages if R_KEEP_PKG_SOURCE=yes
Give filename/line number error messages when building packages even without srcrefs (though
not for base packages, which don't get the #line directives by default)
During package installation, parse the concatenated source file, rather than the individual files, to report syntax errors.
 
49592 6169 d 1 h murdoch /trunk/ Indexing with a vector index to [[]] extended to all recursive types, minor changes to trace() to print messages that recognize this.  
49591 6169 d 4 h ripley /trunk/ remove --disable-mbcs
use perl regexps in UTF-8 in a non-UTF-8 MBCS locale
 
48623 6271 d 21 h murdoch /trunk/ Add experimental code to display srcref locations when debugging.  
48598 6274 d 23 h rgentlem /trunk/src/ updating the debugger - trying to remove the R_BrowseLevel global
variable
 
48524 6287 d 6 h ripley /trunk/ xgettext was missing P_() macro, so need to rework  
48372 6306 d 4 h maechler /trunk/src/ provide R_compute_identical() as public (not yet "API") entry point  
48346 6310 d 3 h maechler /trunk/src/ rationalization in install("<sym>") definitions  
48326 6312 d 1 h maechler /trunk/ new anyDuplicated() {incl C API}  
47481 6412 d 21 h murdoch /trunk/src/ Fix off-by-one problem in syntax error reporting
Report the column of the bad token
checkRd gives full filename
Make first_column value consistent in gram.y and gramRd.y
 
46470 6540 d 1 h ripley /trunk/ add xtfrm, use it in order() etc
make is.unsorted work on classed objects
 
46438 6545 d 20 h ripley /trunk/src/include/ revert for now  
46436 6545 d 23 h ripley /trunk/src/include/ random deletion?  
46422 6546 d 10 h ripley /trunk/src/ better error message, document that MAXIDSIZE is in bytes (not chars)  
45684 6649 d 10 h ripley /trunk/ increase console line limit to 4095 bytes  
45510 6667 d 4 h ripley /trunk/ compare CHARSXPs in the cache by address  
45435 6671 d 7 h ripley /trunk/ remove code for non-cached CHARSXPs
disallow nuls in CHARSXPs and document
 
45409 6672 d 7 h ripley /trunk/ remove allocString.
start towards taking allocVector(CHARSXP) private.
 
45074 6689 d 6 h ripley /trunk/ add set[Session]TimeLimit  
44967 6696 d 2 h ripley /trunk/src/ tidy up encoding auxilliaries  
44841 6701 d 3 h ripley /trunk/src/ put R_atof in public R_exts/Utils.h  
44828 6703 d 9 h ripley /trunk/ use our own strtod/atof to mitigate effects of setting LC_NUMERIC  
44637 6724 d 12 h ripley /trunk/src/ tidy up deparse changes  
44488 6738 d 0 h urbaneks /trunk/src/ adjust charset detection to work better on Darwin