X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=commands.c;h=359059671eeb97e4b0c7244b07c013ae361091ef;hp=82bc24040ec80a8394de43e29aaee70fb6db1e31;hb=07ccefd6c97ddd433d8432f7b4596a5572e09b48;hpb=f2ff91d8b7627e22af9715d384b6f9e9e802a39e diff --git a/commands.c b/commands.c index 82bc240..3590596 100644 --- a/commands.c +++ b/commands.c @@ -207,7 +207,7 @@ int mutt_display_message (HEADER * cur) void ci_bounce_message (HEADER * h, int *redraw) { - char prompt[SHORT_STRING]; + char prompt[STRING]; char buf[HUGE_STRING] = { 0 }; address_t *adr = NULL; char *err = NULL; @@ -251,7 +251,7 @@ void ci_bounce_message (HEADER * h, int *redraw) (h ? _("Bounce message to %s") : _("Bounce messages to %s")), buf); - if (mutt_strwidth (prompt) > COLS - extra_space) { + if (m_strwidth(prompt) > COLS - extra_space) { mutt_format_string(prompt, sizeof(prompt), 0, COLS - extra_space, 0, 0, prompt, sizeof(prompt), 0); m_strcat(prompt, sizeof(prompt), "...?"); @@ -534,7 +534,7 @@ void mutt_shell_escape (void) void mutt_enter_command (void) { BUFFER err, token; - char buffer[LONG_STRING], errbuf[SHORT_STRING]; + char buffer[LONG_STRING], errbuf[STRING]; int r; buffer[0] = 0; @@ -560,7 +560,7 @@ void mutt_enter_command (void) void mutt_display_address (ENVELOPE * env) { const char *pfx = NULL; - char buf[SHORT_STRING]; + char buf[STRING]; address_t *adr = NULL; adr = mutt_get_address(env, &pfx); @@ -641,7 +641,7 @@ int mutt_save_message (HEADER * h, int delete, int decode, int decrypt, int *redraw) { int i, need_buffy_cleanup; int need_passphrase = 0, app = 0; - char prompt[SHORT_STRING], buf[_POSIX_PATH_MAX]; + char prompt[STRING], buf[_POSIX_PATH_MAX]; CONTEXT ctx; struct stat st; struct utimbuf ut;