end key code (fixes BUG #69).
bottombars(), onekey()
- Make bottom list dynamic with screen size (Guus Sliepen & Chris).
+- utils.c:
+ strcasestr()
+ - Renamed to stristr since strcasestr has not been confirmed to
+ be detected properly on various Linux systems.
- THANKS:
- Added missing entry for Eivind Kjørstad.
- po/no.po:
/* Programs we want available */
-char *strcasestr(char *haystack, char *needle);
+char *stristr(char *haystack, char *needle);
char *strstrwrapper(char *haystack, char *needle);
int search_init(int replacing);
int renumber(filestruct * fileptr);
/* This is now mutt's version (called mutt_stristr) because it doesn't
use memory allocation to do a simple search (yuck). */
-char *strcasestr(char *haystack, char *needle)
+char *stristr(char *haystack, char *needle)
{
const char *p, *q;
if (ISSET(CASE_SENSITIVE))
return strstr(haystack, needle);
else
- return strcasestr(haystack, needle);
+ return stristr(haystack, needle);
}
/* Thanks BG, many ppl have been asking for this... */