menu->redraw = REDRAW_INDEX;
}
else
- mutt_error(_("You can't scroll down farther"));
+ mutt_message(_("You can't scroll down farther"));
}
else
mutt_error(_("No entries"));
menu->redraw = REDRAW_INDEX;
}
else
- mutt_error(_("You can't scroll up farther"));
+ mutt_message(_("You can't scroll up farther"));
}
/**
}
else
{
- mutt_error(neg ? _("You are on the first page") : _("You are on the last page"));
+ mutt_message(neg ? _("You are on the first page") : _("You are on the last page"));
}
menu->current = MIN(menu->current, menu->max - 1);
menu->redraw = REDRAW_MOTION;
}
else
- mutt_error(_("You are on the last entry"));
+ mutt_message(_("You are on the last entry"));
}
/**
menu->redraw = REDRAW_MOTION;
}
else
- mutt_error(_("You are on the first entry"));
+ mutt_message(_("You are on the first entry"));
}
/**