Commit 9189c1f2 authored by Chris Allegretta's avatar Chris Allegretta
Browse files

Oops, get rid of the stupid debugging code

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1198 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 0 additions and 15 deletions
+0 -15
......@@ -584,21 +584,6 @@ void do_rcfile(void)
parse_rcfile(rcstream);
fclose(rcstream);
{
syntaxtype *s;
exttype *e;
colortype *c;
for (s = syntaxes; s != NULL; s = s->next) {
fprintf(stderr, "Syntax \"%s\"\n", s->desc);
for (e = s->extensions; e != NULL; e = e->next)
fprintf(stderr, " extension \"%s\"\n", e->val);
for (c = s->color; c != NULL; c = c->next)
fprintf(stderr, "Color string regex \"%s\"\n", c->start);
}
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment