X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-ui%2Fstatus.c;h=a6f0211af0887da54d714dc3995d7bfe8e891da7;hp=02d38b2c545f87d58829824aeb1d1343b573576e;hb=142d30ec0fa23abf29a327968f7cfeb1cd27bb3f;hpb=fc7b90fd61ac9efd35a5b506cc10679969d84cba diff --git a/lib-ui/status.c b/lib-ui/status.c index 02d38b2..a6f0211 100644 --- a/lib-ui/status.c +++ b/lib-ui/status.c @@ -7,9 +7,8 @@ * please see the file GPL in the top level source directory. */ -#include +#include -#include #include #include @@ -17,8 +16,6 @@ #include "sort.h" #include "buffy.h" -#define SW (option(OPTMBOXPANE)?SidebarWidth:0) - static char *get_sort_str (char *buf, ssize_t buflen, int method) { snprintf (buf, buflen, "%s%s%s", @@ -98,7 +95,7 @@ status_format_str(char *buf, ssize_t buflen, char op, const char *src, case 'h': snprintf (fmt, sizeof (fmt), "%%%ss", prefix); - snprintf (buf, buflen, fmt, NONULL (Hostname)); + snprintf (buf, buflen, fmt, NONULL (mod_core.shorthost)); break; case 'f': @@ -286,5 +283,5 @@ status_format_str(char *buf, ssize_t buflen, char op, const char *src, void menu_status_line(char* buf, ssize_t len, MUTTMENU* menu, const char* p) { - m_strformat(buf, len, COLS - SW, p, status_format_str, menu, 0); + m_strformat(buf, len, getmaxx(main_w), p, status_format_str, menu, 0); }