aboutsummaryrefslogtreecommitdiff
path: root/builtin.cpp
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2013-08-12 11:10:28 +0800
committerTeddy <ted.sybil@gmail.com>2013-08-12 11:10:28 +0800
commite46af8eff6fcaa1cf06a08dde28ad6ea201657e7 (patch)
treec7b4e06c71c8f1d4e4438364ffb4f0d36d5a8364 /builtin.cpp
parentc5364249b2600f25155f4c7ac206b3d6ca0e5b06 (diff)
ready for alpha release
Diffstat (limited to 'builtin.cpp')
-rw-r--r--builtin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin.cpp b/builtin.cpp
index 859d5e4..1096d7a 100644
--- a/builtin.cpp
+++ b/builtin.cpp
@@ -1355,6 +1355,6 @@ BUILTIN_PROC_DEF(vector_length) {
BUILTIN_PROC_DEF(display) {
ARGS_EXACTLY_ONE;
- printf("%s\n", args->car->ext_repr().c_str());
+ printf("%s", args->car->ext_repr().c_str());
return new UnspecObj();
}