aboutsummaryrefslogtreecommitdiff
path: root/src/interp/macros.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/macros.lisp')
-rw-r--r--src/interp/macros.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/macros.lisp b/src/interp/macros.lisp
index a99b3e4e..69bd3b2e 100644
--- a/src/interp/macros.lisp
+++ b/src/interp/macros.lisp
@@ -85,7 +85,7 @@
((IDENTP V) NIL)
((STRINGP U) (AND (STRINGP V) (string> V U)))
((STRINGP V) NIL)
- ((AND (VECP U) (VECP V))
+ ((AND (simple-vector-p U) (simple-vector-p V))
(AND (> (SIZE V) (SIZE U))
(DO ((I 0 (1+ I)))
((GT I (MAXINDEX U)) 'T)