Changeset 4889:6e189f8d56ca for commands.c
- Timestamp:
- 2006-12-07 03:34:34 (2 years ago)
- Branch:
- HEAD
- Files:
-
- 1 modified
-
commands.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
commands.c
r4667 r4889 238 238 { 239 239 char prompt[SHORT_STRING]; 240 char scratch[SHORT_STRING]; 240 241 char buf[HUGE_STRING] = { 0 }; 241 242 ADDRESS *adr = NULL; … … 279 280 280 281 #define extra_space (15 + 7 + 2) 281 snprintf ( prompt, sizeof (prompt),282 snprintf (scratch, sizeof (scratch), 282 283 (h ? _("Bounce message to %s") : _("Bounce messages to %s")), buf); 283 284 … … 286 287 mutt_format_string (prompt, sizeof (prompt), 287 288 0, COLS-extra_space, 0, 0, 288 prompt, sizeof (prompt), 0);289 scratch, sizeof (scratch), 0); 289 290 safe_strcat (prompt, sizeof (prompt), "...?"); 290 291 } 291 292 else 292 s afe_strcat (prompt, sizeof (prompt), "?");293 snprintf (prompt, sizeof (prompt), "%s?", scratch); 293 294 294 295 if (query_quadoption (OPT_BOUNCE, prompt) != M_YES)
