X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=lib-ui%2Fstatus.c;h=3da31d9b0ea359a7f024557abd6c9b4cafe424f4;hb=1eeaaac6bdcad962c41bf975a32078cc4a0e578c;hp=b19bf2435a17a4490552d44f99f6d38df625623e;hpb=8476307969a605bea67f6b702b0c1e7a52038bed;p=apps%2Fmadmutt.git diff --git a/lib-ui/status.c b/lib-ui/status.c index b19bf24..3da31d9 100644 --- a/lib-ui/status.c +++ b/lib-ui/status.c @@ -52,7 +52,7 @@ static const char *status_format_str (char *buf, ssize_t buflen, char op, const char *elsestring, unsigned long data, format_flag flags) { - char fmt[SHORT_STRING], tmp[SHORT_STRING]; + char fmt[STRING], tmp[STRING]; const char *cp, *p; int count, optional = (flags & M_FORMAT_OPTIONAL); MUTTMENU *menu = (MUTTMENU *) data; @@ -293,7 +293,7 @@ void menu_status_line (char* buf, ssize_t len, MUTTMENU* menu, const char* p) { * only to not wrap past end of screen */ int width = COLS - SW; - mutt_FormatString (buf, (width >= len ? len : (width + 1)), + m_strformat (buf, (width >= len ? len : (width + 1)), p, status_format_str, (unsigned long) menu, 0); }