Merged in CVS

This commit is contained in:
Juan Jose Garcia Ripoll 2008-06-26 22:59:39 +02:00
commit 472a221691
2 changed files with 2 additions and 1 deletions

View file

@ -1979,7 +1979,7 @@ compile_form(cl_object stmt, int flags) {
cl_fixnum n;
if (stmt == Cnil) {
asm_op(push? OP_PUSHNIL : OP_NIL);
} else if (FIXNUMP(stmt) && (n = fix(stmt), abs(n)) <= MAX_OPARG) {
} else if (FIXNUMP(stmt) && (n = fix(stmt)) <= MAX_OPARG && n >= -MAX_OPARG) {
asm_op2(push? OP_PINT : OP_INT, n);
} else {
asm_op2c(push? OP_PUSHQ : OP_QUOTE, stmt);

View file

@ -47,6 +47,7 @@ Returns, as a string, the location of the machine on which ECL runs."
"Args:()
Returns the version of your ECL as a string."
"@PACKAGE_VERSION@ (CVS 2008-06-04 23:07)")
"@PACKAGE_VERSION@ (CVS 2008-06-19 17:09)")
(defun machine-type ()
"Args: ()