about summary refs log tree commit diff
path: root/third_party/lisp/npg/examples/python.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/lisp/npg/examples/python.lisp')
-rw-r--r--third_party/lisp/npg/examples/python.lisp6
1 files changed, 3 insertions, 3 deletions
diff --git a/third_party/lisp/npg/examples/python.lisp b/third_party/lisp/npg/examples/python.lisp
index 68d794ddec..a45ac614f7 100644
--- a/third_party/lisp/npg/examples/python.lisp
+++ b/third_party/lisp/npg/examples/python.lisp
@@ -38,7 +38,7 @@
 
 (deflazy define-grammar
   (let ((*package* #.*package*)
-	(*compile-print* (and parser::*debug* t)))
+        (*compile-print* (and parser::*debug* t)))
     (reset-grammar)
     (format t "~&creating Python grammar...~%")
     (populate-grammar)
@@ -80,8 +80,8 @@
 (defrule statement-list
     := (+ simple-statement ";")
     :reduce (if (cdr $1)
-		(cons :statement-list $1)
-		(car $1)))
+                (cons :statement-list $1)
+                (car $1)))
 
 (defrule statement
     := statement-list eol