nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 9189c1f25825f56a13ed4f4359115e15fccb9bbb
parent b6c5dc29efde88f9d79b61d709595bfbb4ac09ae
Author: Chris Allegretta <chrisa@asty.org>
Date:   Sat,  4 May 2002 03:58:44 +0000

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

Diffstat:
Mrcfile.c | 15---------------
1 file changed, 0 insertions(+), 15 deletions(-)

diff --git a/rcfile.c b/rcfile.c @@ -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); - - } - } - }