Skip to content

Commit

Permalink
Update src/boot/compiled/*.clisp with better prettyprint
Browse files Browse the repository at this point in the history
  • Loading branch information
oldk1331 committed Mar 15, 2021
1 parent 15d6601 commit 89cb542
Show file tree
Hide file tree
Showing 4 changed files with 227 additions and 233 deletions.
26 changes: 13 additions & 13 deletions src/boot/compiled/btscan2.clisp
Original file line number Diff line number Diff line change
Expand Up @@ -479,24 +479,24 @@
; false
; else true

(DEFUN |shoeEsc| #1=()
(DEFUN |shoeEsc| ()
(PROG (|n1|)
(RETURN
(COND
((NOT (< |$n| |$sz|))
(COND
((|shoeNextLine| |$r|)
((LAMBDA #1#
(LOOP (COND (|$n| (RETURN NIL)) (#2='T (|shoeNextLine| |$r|))))))
((LAMBDA ()
(LOOP (COND (|$n| (RETURN NIL)) (#1='T (|shoeNextLine| |$r|))))))
(|shoeEsc|) NIL)
(#2# NIL)))
(#2# (SETQ |n1| (STRPOSL " " |$ln| |$n| T))
(#1# NIL)))
(#1# (SETQ |n1| (STRPOSL " " |$ln| |$n| T))
(COND
((NULL |n1|) (|shoeNextLine| |$r|)
((LAMBDA #1#
(LOOP (COND (|$n| (RETURN NIL)) (#2# (|shoeNextLine| |$r|))))))
((LAMBDA ()
(LOOP (COND (|$n| (RETURN NIL)) (#1# (|shoeNextLine| |$r|))))))
(|shoeEsc|) NIL)
(#2# T)))))))
(#1# T)))))))

; shoeStartsComment()==
; if $n<$sz
Expand Down Expand Up @@ -655,8 +655,8 @@
; $floatok:=false
; shoeLeafString shoeS ()

(DEFUN |shoeString| #1=()
(PROG #1#
(DEFUN |shoeString| ()
(PROG ()
(RETURN
(PROGN
(SETQ |$n| (+ |$n| 1))
Expand Down Expand Up @@ -725,10 +725,10 @@
; n

(DEFUN |shoeIdEnd| (|line| |n|)
(PROG #1=()
(PROG ()
(RETURN
(PROGN
((LAMBDA #1#
((LAMBDA ()
(LOOP
(COND
((NOT (AND (< |n| (LENGTH |line|)) (|shoeIdChar| (ELT |line| |n|))))
Expand Down Expand Up @@ -801,7 +801,7 @@

; shoeInteger()==shoeInteger1(false)

(DEFUN |shoeInteger| #1=() (PROG #1# (RETURN (|shoeInteger1| NIL))))
(DEFUN |shoeInteger| () (PROG () (RETURN (|shoeInteger1| NIL))))

; shoeInteger1(zro) ==
; n:=$n
Expand Down
12 changes: 6 additions & 6 deletions src/boot/compiled/ptyout.clisp
Original file line number Diff line number Diff line change
Expand Up @@ -313,9 +313,9 @@
; s:=cdr s

(DEFUN |shoeCompileTrees| (|s|)
(PROG #1=()
(PROG ()
(RETURN
((LAMBDA #1#
((LAMBDA ()
(LOOP
(COND ((|bStreamNull| |s|) (RETURN NIL))
('T
Expand Down Expand Up @@ -1029,9 +1029,9 @@
; s:=CDR s

(DEFUN |shoeDefUse| (|s|)
(PROG #1=()
(PROG ()
(RETURN
((LAMBDA #1#
((LAMBDA ()
(LOOP
(COND ((|bStreamPackageNull| |s|) (RETURN NIL))
('T (PROGN (|defuse| NIL (CAR |s|)) (SETQ |s| (CDR |s|)))))))))))
Expand Down Expand Up @@ -1558,9 +1558,9 @@
; s:=cdr s

(DEFUN |shoePCompileTrees| (|s|)
(PROG #1=()
(PROG ()
(RETURN
((LAMBDA #1#
((LAMBDA ()
(LOOP
(COND ((|bStreamPackageNull| |s|) (RETURN NIL))
('T
Expand Down
Loading

0 comments on commit 89cb542

Please sign in to comment.