Changeset 5137:0c47f7b06158 for recvattach.c
- Timestamp:
- 2007-04-11 22:36:24 (21 months ago)
- Branch:
- HEAD
- Files:
-
- 1 modified
-
recvattach.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
recvattach.c
r5010 r5137 174 174 const char *mutt_attach_fmt (char *dest, 175 175 size_t destlen, 176 size_t col, 176 177 char op, 177 178 const char *src, … … 357 358 358 359 if (optional) 359 mutt_FormatString (dest, destlen, ifstring, mutt_attach_fmt, data, 0);360 mutt_FormatString (dest, destlen, col, ifstring, mutt_attach_fmt, data, 0); 360 361 else if (flags & M_FORMAT_OPTIONAL) 361 mutt_FormatString (dest, destlen, elsestring, mutt_attach_fmt, data, 0);362 mutt_FormatString (dest, destlen, col, elsestring, mutt_attach_fmt, data, 0); 362 363 return (src); 363 364 } … … 365 366 void attach_entry (char *b, size_t blen, MUTTMENU *menu, int num) 366 367 { 367 mutt_FormatString (b, blen, NONULL (AttachFormat), mutt_attach_fmt, (unsigned long) (((ATTACHPTR **)menu->data)[num]), M_FORMAT_ARROWCURSOR);368 mutt_FormatString (b, blen, 0, NONULL (AttachFormat), mutt_attach_fmt, (unsigned long) (((ATTACHPTR **)menu->data)[num]), M_FORMAT_ARROWCURSOR); 368 369 } 369 370
