diff options
author | Bruce A. Mah <bmah@FreeBSD.org> | 2003-06-08 01:18:50 +0000 |
---|---|---|
committer | Bruce A. Mah <bmah@FreeBSD.org> | 2003-06-08 01:18:50 +0000 |
commit | 38d5c464efdfb905fce644557de1136ec3493d4e (patch) | |
tree | 0d2fa47e24edf9d50e3dc911e81e0ccbfc36a76b /mail/exmh2/files/patch-thread.tcl | |
parent | Remove chuckr as maintainer of his ports. He has not committed since (diff) |
Fix a couple of problems in the exmh port.
The port bogusly relied on build-time detection of PGP-type programs.
This was unneeded since exmh is smart enough to do run-time detection of
various PGP versions. Fix this so PGP-type programs installed after exmh
will be recognized correctly. [1]
Add patch to fix a bug in exmh where threading cleared the unseen
sequence. [2]
PORTREVISION bump to mark these changes.
Reviewed by: Dave Tweten <tweten@nas.nasa.gov> [1]
Obtained from: exmh CVS [2]
Notes
Notes:
svn path=/head/; revision=82488
Diffstat (limited to 'mail/exmh2/files/patch-thread.tcl')
-rw-r--r-- | mail/exmh2/files/patch-thread.tcl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/mail/exmh2/files/patch-thread.tcl b/mail/exmh2/files/patch-thread.tcl new file mode 100644 index 000000000000..06c25b7e2b32 --- /dev/null +++ b/mail/exmh2/files/patch-thread.tcl @@ -0,0 +1,20 @@ +Index: lib/thread.tcl +=================================================================== +RCS file: /cvsroot/exmh/exmh/lib/thread.tcl,v +retrieving revision 1.8 +retrieving revision 1.9 +diff -u -r1.8 -r1.9 +--- lib/thread.tcl 18 Feb 2003 06:50:43 -0000 1.8 ++++ lib/thread.tcl 8 Apr 2003 17:44:37 -0000 1.9 +@@ -251,8 +251,9 @@ + Exmh_Status "folder incorrectly threaded. line number mismatch" warn + } + +- Seq_Forget $folder $mhProfile(unseen-sequence) +- Ftoc_ShowSequence $mhProfile(unseen-sequence) ++# Seq_Forget $folder $mhProfile(unseen-sequence) ++# Ftoc_ShowSequence $mhProfile(unseen-sequence) ++ Ftoc_ShowSequences + + if {$curmsg != {}} { + set msg(id) $curmsg |