Chromium Code Reviews| Index: src/d8.js |
| =================================================================== |
| --- src/d8.js (revision 11151) |
| +++ src/d8.js (working copy) |
| @@ -2174,7 +2174,7 @@ |
| } |
| var current_line = from_line + num; |
| - spacer = maxdigits - (1 + Math.floor(log10(current_line))); |
| + var spacer = maxdigits - (1 + Math.floor(log10(current_line))); |
| if (current_line == Debug.State.currentSourceLine + 1) { |
| for (var i = 0; i < maxdigits; i++) { |
| result += '>'; |