{ "iso_8859-16", "iso-8859-16" },
{ "latin10", "iso-8859-16" }, /* this is not a bug */
- /*
- * David Champion <dgc@uchicago.edu> has observed this with
- * nl_langinfo under SunOS 5.8.
- */
-
{ "646", "us-ascii" },
/*
None. Mutts have fleas, not bugs.
.SH FLEAS
.PP
-Suspend/resume while editing a file with an external editor does not work
-under SunOS 4.x if you use the curses lib in /usr/5lib. It \fIdoes\fP work
-with the S-Lang library, however.
-.PP
Resizing the screen while using an external pager causes Mutt to go haywire
on some systems.
.PP
return;
}
- if (*p)
- r = realloc(*p, siz);
- else
- {
- /* realloc(NULL, nbytes) doesn't seem to work under SunOS 4.1.x */
- r = malloc(siz);
- }
-
+ r = realloc(*p, siz);
if (!r)
{
mutt_error(_("Out of memory!"));