aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/shell.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shell.js b/src/shell.js
index 3fb6cdbb..d6dc0fb5 100644
--- a/src/shell.js
+++ b/src/shell.js
@@ -102,7 +102,7 @@ if (ENVIRONMENT_IS_WORKER) {
Module['print'] = (TRY_USE_DUMP && (typeof(dump) !== "undefined") ? (function(x) {
dump(x);
}) : (function(x) {
- self.postMessage(x);
+ // self.postMessage(x); // enable this if you want stdout to be sent as messages
}));
}