Skip to content

Commit

Permalink
Fix 'print' command in built-in debugger.
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed Jun 29, 2011
1 parent dd175a4 commit d042da0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/_debugger.js
Expand Up @@ -952,7 +952,7 @@ Interface.prototype.handleCommand = function(cmd) {
// Wait for break point. (disable raw mode?) // Wait for break point. (disable raw mode?)
}); });


} else if (/^p(rint)?$/.test(cmd)) { } else if (/^p(rint)?/.test(cmd)) {
if (!client) { if (!client) {
self.printNotConnected(); self.printNotConnected();
return; return;
Expand Down

0 comments on commit d042da0

Please sign in to comment.