summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c21
1 files changed, 20 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index dc9f28d3..dbeb20a0 100644
--- a/lib.c
+++ b/lib.c
@@ -4731,7 +4731,26 @@ tail:
case NIL:
return str_lt(nil_string, symbol_name(right));
case SYM:
- return str_lt(left->s.name, symbol_name(right));
+ {
+ val cmp = cmp_str(left->s.name, symbol_name(right));
+ if (cmp == negone) {
+ return t;
+ } else if (cmp == one) {
+ return nil;
+ } else {
+ val lpkg = left->s.package;
+ val rpkg = right->s.package;
+
+ if (lpkg == nil && rpkg == nil)
+ return tnil(left < right);
+ if (lpkg == nil)
+ return t;
+ if (rpkg == nil)
+ return nil;
+
+ return str_lt(lpkg->pk.name, rpkg->pk.name);
+ }
+ }
case CONS:
case LCONS:
for (;;) {