Skip to content

Commit

Permalink
CLJS-2073: Don't flush for every emitted line
Browse files Browse the repository at this point in the history
  • Loading branch information
mfikes authored and swannodette committed Jun 16, 2017
1 parent 9b4fcfc commit 55f9bcc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/clojure/cljs/compiler.cljc
Expand Up @@ -203,7 +203,8 @@

(defn emitln [& xs]
(apply emits xs)
(println)
(binding [*flush-on-newline* false]
(println))
(when *source-map-data*
(swap! *source-map-data*
(fn [{:keys [gen-line] :as m}]
Expand Down

0 comments on commit 55f9bcc

Please sign in to comment.