Problem is with lines >80 chars long.
authorTim Vaughan <tgvaughan@gmail.com>
Mon, 23 May 2016 01:49:30 +0000 (13:49 +1200)
committerTim Vaughan <tgvaughan@gmail.com>
Mon, 23 May 2016 01:49:30 +0000 (13:49 +1200)
src/forth.jl
src/lib.4th

index a233743..134b651 100644 (file)
@@ -984,7 +984,7 @@ function run(;initialize=true)
     jmp = NEXT
     while jmp != 0
         try
-#           println("Entering prim $(getPrimName(jmp))")
+            #println("Entering prim $(getPrimName(jmp))")
             jmp = callPrim(jmp)
 
         catch ex
index 4e73206..81b1e6f 100644 (file)
 
 : +LOOP IMMEDIATE
 
-        trace
-
         ['] DUP , \ Store copy of increment
 
         ['] R> , ['] SWAP , ['] R> , ['] SWAP , ['] R> , ['] SWAP , ['] + , ['] 2DUP , ['] - ,
         ['] SWAP , ['] >R , ['] SWAP , ['] >R , ['] SWAP , ['] >R ,
 
-        trace
-
         \ Condition differently depending on sign of increment
         ['] SWAP , ['] 0>= , [COMPILE] IF
             ['] 0<= ,
             ['] 0> ,
         [COMPILE] THEN
 
-        trace
-
         \ Branch back to begining of loop kernel
         ['] 0BRANCH , HERE @ - ,
 
         \ Clean up
         ['] RDROP , ['] RDROP , ['] RDROP ,
 
-        trace
-
         \ Record address of loop end for any LEAVEs to use
         HERE @ SWAP !
 
         REPEAT
 ;
 
-xx
 
 \ COMMENTS ----------------------------------------------------------------------