X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Flisp%2Flisp.cpp;h=39313d21f43e3012f814427bd978e4df348959f3;hb=bb1e51d77df632eca2c4977429e831ae44e0dc98;hp=fcf5cee276f9d41d6008690ef53f090858330575;hpb=07ddaed2a657e4d2a3d038fed223fc5827159caf;p=supertux.git diff --git a/src/lisp/lisp.cpp b/src/lisp/lisp.cpp index fcf5cee27..39313d21f 100644 --- a/src/lisp/lisp.cpp +++ b/src/lisp/lisp.cpp @@ -23,7 +23,7 @@ namespace lisp { - + Lisp::Lisp(LispType newtype) : type(newtype) { @@ -65,7 +65,7 @@ Lisp::print(int indent) const { for(int i = 0; i < indent; ++i) printf(" "); - + if(type == TYPE_CONS) { printf("(\n"); const Lisp* lisp = this;