- Better partial word checking code. New function
search.c:is_whole_word(), changes to findnextstr(),
and nano.c:do_int_spell_fix() (Rocco Corsi).
+- color.c:
+ do_colorinit()
+ - Moved some comments and braces around so color can work
+ w/slang (DLR).
- nano.c:
usage()
- Remove extra \n in --keypad description (Jordi).
/* Add in colors, if available */
#ifdef HAVE_USE_DEFAULT_COLORS
- if (use_default_colors() != ERR) {
+ if (use_default_colors() != ERR)
defok = 1;
#endif
colorinit_one(COLOR_STATUSBAR, COLOR_BLACK, COLOR_CYAN, 0);
colorinit_one(COLOR_TEXT, COLOR_WHITE, COLOR_BLACK, 0);
colorinit_one(COLOR_MARKER, COLOR_BLACK, COLOR_CYAN, 0);
- */
}
-
+*/
return 0;
}