- General
- Type misalignments and mem leaks in renumber_all, do_justify
and do_spell (Rocco & Steven Kneizys).
+- nano.c:
+ main()
+ - Put NANO_SMALL defines around toggle pointer (noticed by Jordi);
+- utils.c:
+ stristr() - Defined regardless of NANO_SMALL (noticed by Jordi).
GNU nano 1.1.7 - 03/05/2002
- General
int modify_control_seq;
char *argv0;
shortcut *s;
+#ifndef NANO_SMALL
toggle *t;
+#endif
#ifdef _POSIX_VDISABLE
struct termios term;
}
return 0;
}
+#endif /* NANO_SMALL */
/* This is now mutt's version (called mutt_stristr) because it doesn't
use memory allocation to do a simple search (yuck). */
}
return NULL;
}
-#endif /* NANO_SMALL */
char *strstrwrapper(char *haystack, char *needle, char *rev_start)
{