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
master
Chris Allegretta 2002-05-04 03:58:44 +00:00
parent b6c5dc29ef
commit 9189c1f258
1 changed files with 0 additions and 15 deletions

View File

@ -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);
}
}
}