[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Nmh-workers] PATCH: `repl -annotate` broken in 1.1RC{2,3}
From: |
Gurusamy Sarathy |
Subject: |
[Nmh-workers] PATCH: `repl -annotate` broken in 1.1RC{2,3} |
Date: |
Wed, 06 Oct 2004 16:56:02 -0700 |
After upgrading from 1.0.4 to 1.1-RC3, I've noticed that I don't
get any "Replied" headers in mail that I've responded to, and
hence no corresponding visual hint (the "dash") in the scan output.
This seems to happen because the annotate() function has grown
a couple of new arguments, but these weren't being set correctly
enough to get the old behavior.
That attached patch cured the problem for me.
Sarathy
address@hidden
-----------------------------------8<-----------------------------------
--- nmh-1.1-RC3/uip/sendsbr.c.dist 2003-10-24 13:17:40.000000000 -0700
+++ nmh-1.1-RC3/uip/sendsbr.c 2004-10-06 16:03:54.000000000 -0700
@@ -1020,7 +1020,7 @@
if (is_selected(mp, msgnum)) {
if (debugsw)
advise (NULL, "annotate message %d", msgnum);
- annotate (m_name (msgnum), annotext, cp, inplace, 1, 0, 0);
+ annotate (m_name (msgnum), annotext, cp, inplace, 1, -1, 0);
}
}
End of Patch.
- [Nmh-workers] PATCH: `repl -annotate` broken in 1.1RC{2,3},
Gurusamy Sarathy <=