The R Project SVN R

Rev

Rev 76585 | Rev 77888 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 76585 Rev 77496
Line 1692... Line 1692...
1692
 
1692
 
1693
    checkArity(op, args);
1693
    checkArity(op, args);
1694
 
1694
 
1695
    a = CAR(args);
1695
    a = CAR(args);
1696
    if (!isArray(a))
1696
    if (!isArray(a))
1697
	error(_("invalid first argument, must be an array"));
1697
	error(_("invalid first argument, must be %s"), "an array");
1698
 
1698
 
1699
    PROTECT(dimsa = getAttrib(a, R_DimSymbol));
1699
    PROTECT(dimsa = getAttrib(a, R_DimSymbol));
1700
    n = LENGTH(dimsa);
1700
    n = LENGTH(dimsa);
1701
    int *isa = INTEGER(dimsa);
1701
    int *isa = INTEGER(dimsa);
1702
 
1702