Skip to content

Commit

Permalink
Fix print regex.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kami committed Jun 14, 2011
1 parent 0e8f60c commit 13c7a4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/extern/_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 13c7a4d

Please sign in to comment.