aboutsummaryrefslogtreecommitdiff
path: root/src/boot/strap
diff options
context:
space:
mode:
Diffstat (limited to 'src/boot/strap')
-rw-r--r--src/boot/strap/includer.clisp5
-rw-r--r--src/boot/strap/scanner.clisp11
2 files changed, 6 insertions, 10 deletions
diff --git a/src/boot/strap/includer.clisp b/src/boot/strap/includer.clisp
index 646429c2..f88bfa6f 100644
--- a/src/boot/strap/includer.clisp
+++ b/src/boot/strap/includer.clisp
@@ -121,9 +121,8 @@
((|bStreamNull| |b|)
(|shoeConsole| (CONCAT |name| " not found in " |fn|))
NIL)
- (T (COND
- ((NULL |lines|) (|shoeConsole| ")package not found")))
- (APPEND (REVERSE |lines|) (CAR |b|)))))))))
+ ((NULL |lines|) (|shoeConsole| ")package not found"))
+ (T (APPEND (REVERSE |lines|) (CAR |b|)))))))))
(DEFPARAMETER |$bStreamNil| (LIST '|nullstream|))
diff --git a/src/boot/strap/scanner.clisp b/src/boot/strap/scanner.clisp
index f7d77f67..4c4bda04 100644
--- a/src/boot/strap/scanner.clisp
+++ b/src/boot/strap/scanner.clisp
@@ -238,13 +238,10 @@
(T (SETQ |$n| |n|) (|shoeLeafLispExp| |exp|)))))))))))
(DEFUN |shoeEscape| ()
- (PROG (|a|)
- (DECLARE (SPECIAL |$n|))
- (RETURN
- (PROGN
- (SETQ |$n| (+ |$n| 1))
- (SETQ |a| (|shoeEsc|))
- (COND (|a| (|shoeWord| T)) (T NIL))))))
+ (DECLARE (SPECIAL |$n|))
+ (PROGN
+ (SETQ |$n| (+ |$n| 1))
+ (COND ((|shoeEsc|) (|shoeWord| T)) (T NIL))))
(DEFUN |shoeEsc| ()
(PROG (|n1|)