Fix some newlines
authorDavid Vazquez <davazp@gmail.com>
Sun, 27 Jan 2013 18:21:17 +0000 (18:21 +0000)
committerDavid Vazquez <davazp@gmail.com>
Sun, 27 Jan 2013 18:21:17 +0000 (18:21 +0000)
ecmalisp.lisp

index 52327d8..ce807d5 100644 (file)
         (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
             "")
         ;; Body
         (let ((*multiple-value-p* t)) (ls-compile-block body t)))
-       *newline*
        "})"))))