projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
69e2c35
)
Fix some newlines
author
David Vazquez
<davazp@gmail.com>
Sun, 27 Jan 2013 18:21:17 +0000
(18:21 +0000)
committer
David Vazquez
<davazp@gmail.com>
Sun, 27 Jan 2013 18:21:17 +0000
(18:21 +0000)
ecmalisp.lisp
patch
|
blob
|
history
diff --git
a/ecmalisp.lisp
b/ecmalisp.lisp
index
52327d8
..
ce807d5
100644
(file)
--- 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*
"})"))))