aboutsummaryrefslogtreecommitdiff
path: root/src/boot/strap
diff options
context:
space:
mode:
Diffstat (limited to 'src/boot/strap')
-rw-r--r--src/boot/strap/ast.clisp1
-rw-r--r--src/boot/strap/includer.clisp2
-rw-r--r--src/boot/strap/translator.clisp4
3 files changed, 4 insertions, 3 deletions
diff --git a/src/boot/strap/ast.clisp b/src/boot/strap/ast.clisp
index a022f053..ba658ba5 100644
--- a/src/boot/strap/ast.clisp
+++ b/src/boot/strap/ast.clisp
@@ -1209,6 +1209,7 @@
((NULL |l|) (LIST 'NULL |r|))
((NULL |r|) (LIST 'NULL |l|))
((OR (EQ |l| T) (EQ |r| T)) (LIST 'EQ |l| |r|))
+ ((OR (STRINGP |l|) (STRINGP |r|)) (LIST 'STRING= |l| |r|))
(T (LIST 'EQUAL |l| |r|))))
(DEFUN |bfLessp| (|l| |r|)
diff --git a/src/boot/strap/includer.clisp b/src/boot/strap/includer.clisp
index 4d4cd438..154e1cd4 100644
--- a/src/boot/strap/includer.clisp
+++ b/src/boot/strap/includer.clisp
@@ -92,7 +92,7 @@
(T (SETQ |a| (CAAR |stream|))
(COND
((AND (NOT (< (LENGTH |a|) 8))
- (EQUAL (SUBSTRING |a| 0 8) ")package"))
+ (STRING= (SUBSTRING |a| 0 8) ")package"))
(|shoePackageStartsAt| (CONS (CAAR |stream|) |lines|)
|sz| |name| (CDR |stream|)))
((< (LENGTH |a|) |sz|)
diff --git a/src/boot/strap/translator.clisp b/src/boot/strap/translator.clisp
index 2171c415..c9b972c4 100644
--- a/src/boot/strap/translator.clisp
+++ b/src/boot/strap/translator.clisp
@@ -623,8 +623,8 @@
(LET ((|m| (CADR |b|)))
(PROGN
(COND
- ((NOT (EQUAL (|getOptionValue| '|import|)
- "skip"))
+ ((NOT (STRING= (|getOptionValue| '|import|)
+ "skip"))
(|bootImport| (STRING |m|))))
(LIST (LIST 'IMPORT-MODULE (STRING |m|))))))
(|%ImportSignature|