R-beta: R-0.60.1 on hpux10.2
    Peter Dalgaard BSA 
    p.dalgaard at biostat.ku.dk
       
    Fri Dec 12 15:28:24 CET 1997
    
    
  
"Buyukisik, Osman (GEAE)" <Osman.Buyukisik at ae.ge.com> writes:
> 	data()
> 	Error: stack overflow
> 	?data
> 	Error: Stack overflow
> 	data(rivers)
> 	Error: incorrect tag type
Yup. Found and fixed some days ago and the main reason for an upcoming
0.60.2... 
If you're impatient, fix this bit of code in src/main/memory.c (l.348++)
       case LANGSXP:
                s = allocList(length);
                TYPEOF(s) = LANGSXP;
                return s;
by inserting the line
	if (length == 0) return R_NilValue;
right after the case label.
-- 
   O__  ---- Peter Dalgaard             Blegdamsvej 3  
  c/ /'_ --- Dept. of Biostatistics     2200 Cph. N   
 (*) \(*) -- University of Copenhagen   Denmark      Ph: (+45) 35327918
~~~~~~~~~~ - (p.dalgaard at biostat.ku.dk)             FAX: (+45) 35327907
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !)  To: r-help-request at stat.math.ethz.ch
_._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
    
    
More information about the R-help
mailing list