Now that multibyte padding works, we may too soon run into too short
buffers for common terminal widths in graphical terminals.
+2007-09-19 11:53 +0200 Rocco Rutte <pdmef@gmx.net> (5bc3cb8c8b68)
+
+ * compose.c: Use mutt_paddstr() to print compose menu's status line
+ rather than printw(). All other menus use mutt_paddstr(): printw()
+ prints only N bytes, not N columns.
+
+2007-09-18 11:37 +0200 Rocco Rutte <pdmef@gmx.net> (5827331565a2)
+
+ * ChangeLog, init.h: Document that $charset is a fallback for
+ $send_charset
+
2007-09-17 17:32 +0200 Rocco Rutte <pdmef@gmx.net> (ae47263fc1b0)
* main.c: Backoug changeset 6f06b7f1f76f
void menu_redraw_index (MUTTMENU *menu)
{
- char buf[STRING];
+ char buf[LONG_STRING];
int i;
for (i = menu->top; i < menu->top + menu->pagelen; i++)
void menu_redraw_motion (MUTTMENU *menu)
{
- char buf[STRING];
+ char buf[LONG_STRING];
if (menu->dialog)
{
void menu_redraw_current (MUTTMENU *menu)
{
- char buf[STRING];
+ char buf[LONG_STRING];
move (menu->current + menu->offset - menu->top, 0);
menu_make_entry (buf, sizeof (buf), menu, menu->current);