Show
Ignore:
Timestamp:
1999-09-02 04:17:34 (9 years ago)
Author:
Thomas Roessler <roessler@…>
Branch:
HEAD
Message:

A new edit-message feature, giving the raw message in an editor.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • compose.c

    r1206 r1266  
    11821182                             &menu->redraw, 1) != -1 && fname[0]) 
    11831183       { 
    1184          int oldhdrdate; 
    11851184         mutt_message (_("Writing message to %s ..."), fname); 
    11861185         mutt_expand_path (fname, sizeof (fname)); 
     
    11891188           msg->content = mutt_make_multipart (msg->content); 
    11901189 
    1191          oldhdrdate = option(OPTUSEHEADERDATE); 
    1192          set_option(OPTUSEHEADERDATE); 
    11931190         if (mutt_write_fcc (NONULL (fname), msg, NULL, 1, NULL) < 0) 
    11941191           msg->content = mutt_remove_multipart (msg->content); 
    11951192         else 
    11961193           mutt_message _("Message written."); 
    1197          if(!oldhdrdate) unset_option(OPTUSEHEADERDATE); 
    11981194       } 
    11991195       break;