From a05315ace4d219f4cbcfc4b162c505f418dc27b8 Mon Sep 17 00:00:00 2001 From: David Vazquez Date: Sun, 27 Jan 2013 18:21:17 +0000 Subject: [PATCH] Fix some newlines --- ecmalisp.lisp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ecmalisp.lisp b/ecmalisp.lisp index 52327d8..ce807d5 100644 --- a/ecmalisp.lisp +++ b/ecmalisp.lisp @@ -1171,12 +1171,12 @@ (if required-arguments (concat "checkArgsAtLeast(" (integer-to-string (1+ n-required-arguments)) - ");") + ");" *newline*) "") (if (not rest-argument) (concat "checkArgsAtLeast(" (integer-to-string (+ 1 n-required-arguments n-optional-arguments)) - ");") + ");" *newline*) "") ;; Optional arguments (if optional-arguments @@ -1213,7 +1213,6 @@ "") ;; Body (let ((*multiple-value-p* t)) (ls-compile-block body t))) - *newline* "})")))) -- 1.7.10.4