aboutsummaryrefslogtreecommitdiff
path: root/src/interp/ggreater.lisp
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2010-12-19 16:04:55 +0000
committerdos-reis <gdr@axiomatics.org>2010-12-19 16:04:55 +0000
commit0baf7a71d80fc15fdab5caa551b7e00800dccbef (patch)
tree859d6581ba133d0123a27d7e82f0c64b5aea46bc /src/interp/ggreater.lisp
parentba495f17f8e3a8b780f038fd6f2d5877ccc2476e (diff)
downloadopen-axiom-0baf7a71d80fc15fdab5caa551b7e00800dccbef.tar.gz
* interp/vmlisp.lisp (VECP): Remove.
(REFVECP): Likewise. (CVECP): Likewise. (QMEMQ): Likewise. * interp/bootlex.lisp (TRANSLABEL1): Adjust. * interp/br-search.boot: Likewise. * interp/br-util.boot: Likewise. * interp/c-doc.boot: Likewise. * interp/category.boot: Likewise. * interp/database.boot: Likewise. * interp/debug.lisp: Likewise. * interp/format.boot: Likewise. * interp/functor.boot: Likewise. * interp/g-cndata.boot: Likewise. * interp/g-util.boot: Likewise. * interp/ggreater.lisp: Likewise. * interp/guess.boot: Likewise. * interp/i-coerfn.boot: Likewise. * interp/i-map.boot: Likewise. * interp/i-output.boot: Likewise. * interp/i-resolv.boot: Likewise. * interp/i-spec2.boot: Likewise. * interp/i-syscmd.boot: Likewise. * interp/interop.boot: Likewise. * interp/i-util.boot: Likewise. * interp/union.lisp: Likewise. * interp/trace.boot: Likewise. * interp/pspad2.boot: Likewise. * interp/pathname.boot: Likewise. * interp/nrunopt.boot: Likewise. * interp/nrunfast.boot: Likewise. * interp/nruncomp.boot: Likewise. * interp/newfort.boot: Likewise. * interp/msgdb.boot: Likewise. * interp/msg.boot: Likewise. * interp/match.boot: Likewise. * interp/word.boot: Likewise.
Diffstat (limited to 'src/interp/ggreater.lisp')
-rw-r--r--src/interp/ggreater.lisp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/interp/ggreater.lisp b/src/interp/ggreater.lisp
index 81d7ca60..a6a570f6 100644
--- a/src/interp/ggreater.lisp
+++ b/src/interp/ggreater.lisp
@@ -1,6 +1,6 @@
;; Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd.
;; All rights reserved.
-;; Copyright (C) 2007, Gabriel Dos Reis.
+;; Copyright (C) 2007-2010, Gabriel Dos Reis.
;; All rights reserved.
;;
;; Redistribution and use in source and binary forms, with or without
@@ -50,11 +50,11 @@
((consp COMPERAND-2) NIL)
((NULL COMPERAND-1) 'T )
((NULL COMPERAND-2) NIL)
- ((VECP COMPERAND-1)
+ ((simple-vector-p COMPERAND-1)
(COND
- ((VECP COMPERAND-2) (LEXVGREATERP COMPERAND-1 COMPERAND-2) )
+ ((simple-vector-p COMPERAND-2) (LEXVGREATERP COMPERAND-1 COMPERAND-2) )
('else t)))
- ((VECP COMPERAND-2) NIL)
+ ((simple-vector-p COMPERAND-2) NIL)
((OR (IVECP COMPERAND-1) (RVECP COMPERAND-1))
(COND
( (OR (IVECP COMPERAND-2) (RVECP COMPERAND-2))
@@ -140,11 +140,11 @@
((consp COMPERAND-2) NIL)
((NULL COMPERAND-1) 'T )
((NULL COMPERAND-2) NIL)
- ((VECP COMPERAND-1)
+ ((simple-vector-p COMPERAND-1)
(COND
- ((VECP COMPERAND-2) (VGREATERP COMPERAND-1 COMPERAND-2) )
+ ((simple-vector-p COMPERAND-2) (VGREATERP COMPERAND-1 COMPERAND-2) )
('else t)))
- ((VECP COMPERAND-2) NIL)
+ ((simple-vector-p COMPERAND-2) NIL)
((OR (IVECP COMPERAND-1) (RVECP COMPERAND-1))
(COND
( (OR (IVECP COMPERAND-2) (RVECP COMPERAND-2))