On Thu, Mar 11, 1999 at 20:38:23 -0800, David Ellement wrote:
> On 990310, at 18:38:14, Byrial Jensen wrote:
> > All 3 things should be fixed in the attached patch.
BTW someone told me that all 3 things aren't bugs, but intentional
(and undodumented!) features. It may be so, but then I prefer to
remove these "features".
> After applying this patch, the "Subject:" prompt always begins with "@":
Sorry, I forgot to initialize the variable to hold a new subject.
Correction attached.
- Byrial
--- send.c~ Wed Mar 10 18:14:02 1999
+++ send.c Fri Mar 12 08:38:30 1999
@@ -212,6 +212,8 @@ static int edit_subject (char *subject[]
else
strfcpy (buf, *subject, sizeof (buf));
}
+ else
+ buf[0] = 0;
if (mutt_get_field ("Subject: ", buf, sizeof (buf), 0) != 0 ||
(!buf[0] && query_quadoption (OPT_SUBJECT, _("No subject, abort?")) != 0))