jdh
2016-08-25 21:27:34 UTC
Here is patch supplied by Sergey of Gnu Mailutils,
which is needed to keep MH-E code compatible with Gnu Mailutils MH, Gnu-MH.
Below the mh-comp.el-unpatched.el is what you now have as the curren
Please see that it gets incorporated into temacs
--- mh-comp.el-unpatched.el 2016-08-24 21:22:56.946522799 -0700
+++ mh-comp.el 2016-08-24 22:46:27.541619842 -0700
@@ -925,8 +925,7 @@
(list "-form" mh-comp-formfile)))
(setq new (mm-make-temp-file "comp."))
(rename-file (concat temp-folder "/" "1") new t)
- (delete-file (concat temp-folder "/" ".mh_sequences"))
- (delete-directory temp-folder)
+ (delete-directory temp-folder t)
new))
------------------------------------------------------------------------------
which is needed to keep MH-E code compatible with Gnu Mailutils MH, Gnu-MH.
Below the mh-comp.el-unpatched.el is what you now have as the curren
Please see that it gets incorporated into temacs
--- mh-comp.el-unpatched.el 2016-08-24 21:22:56.946522799 -0700
+++ mh-comp.el 2016-08-24 22:46:27.541619842 -0700
@@ -925,8 +925,7 @@
(list "-form" mh-comp-formfile)))
(setq new (mm-make-temp-file "comp."))
(rename-file (concat temp-folder "/" "1") new t)
- (delete-file (concat temp-folder "/" ".mh_sequences"))
- (delete-directory temp-folder)
+ (delete-directory temp-folder t)
new))
------------------------------------------------------------------------------