Release calc version 2.11.0t5

This commit is contained in:
Landon Curt Noll
1999-10-04 20:08:04 -07:00
parent 97e9429000
commit f60cbd24b2
38 changed files with 781 additions and 192 deletions

View File

@@ -142,7 +142,6 @@ protectall(VALUE *vp, int sts)
void
copyvalue(VALUE *oldvp, VALUE *newvp)
{
newvp->v_type = oldvp->v_type;
if (oldvp->v_type >= 0) {
switch (oldvp->v_type) {
@@ -205,7 +204,7 @@ copyvalue(VALUE *oldvp, VALUE *newvp)
/*NOTREACHED*/
}
}
newvp->v_subtype |= oldvp->v_subtype;
newvp->v_subtype = oldvp->v_subtype;
}