nano

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

commit 81cbfad086d801ebfd420832e1926db17e34faba
parent 2084acc37d10f64fed4ced592234da5148a13c88
Author: Chris Allegretta <chrisa@asty.org>
Date:   Thu, 29 Nov 2001 03:49:09 +0000

Comment out more debugging code


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@913 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

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

diff --git a/rcfile.c b/rcfile.c @@ -237,14 +237,18 @@ void parse_colors(FILE *rcstream, char *filename, int *lineno, char *buf, char * tmpstr = tmpstr->next) ; +#ifdef DEBUG fprintf(stderr, "Adding to existing entry for fg %d bg %d\n", fg, bg); +#endif tmpstr->next = nmalloc (sizeof(colorstr)); tmpstr->next->val = tmp; tmpstr->next->next = NULL; } else { +#ifdef DEBUG fprintf(stderr, "Adding new entry for fg %d bg %d\n", fg, bg); +#endif tmpcolor->next = nmalloc(sizeof(colortype)); tmpcolor->next->fg = fg;