Skip to content

Commit 5db0478

Browse files
committed
Remove debug output
1 parent 37716c7 commit 5db0478

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

elk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ void js_gc(struct js *js) {
420420

421421
// Skip whitespaces and comments
422422
static jsoff_t skiptonext(const char *code, jsoff_t len, jsoff_t n) {
423-
printf("SKIP: [%.*s]\n", len - n, &code[n]);
423+
// printf("SKIP: [%.*s]\n", len - n, &code[n]);
424424
while (n < len) {
425425
if (is_space(code[n])) {
426426
n++;

0 commit comments

Comments
 (0)