projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f55a47
)
Remove , in compile commands
author
David Vazquez
<davazp@gmail.com>
Sat, 22 Dec 2012 20:05:01 +0000
(20:05 +0000)
committer
David Vazquez
<davazp@gmail.com>
Sat, 22 Dec 2012 20:05:01 +0000
(20:05 +0000)
test.html
patch
|
blob
|
history
diff --git
a/test.html
b/test.html
index
c8cb256
..
ec43a81
100644
(file)
--- a/
test.html
+++ b/
test.html
@@
-63,7
+63,7
@@
if (input[0] != ','){
jqconsole.Write(JSON.stringify(lisp.evalString(input)) + '\n', 'jqconsole-output');
} else {
- jqconsole.Write(JSON.stringify(lisp.compileString(input.slice(0))) + '\n', 'jqconsole-output');
+ jqconsole.Write(JSON.stringify(lisp.compileString(input.slice(1))) + '\n', 'jqconsole-output');
}
// Restart the prompt.
startPrompt();