aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Wohler2006-01-07 18:23:44 +0000
committerBill Wohler2006-01-07 18:23:44 +0000
commit98b7b7edd50fd33ee57fe77995b2ea8af5b5594e (patch)
tree9c5d712548a340cea4b5aaa725bce721bc20f318
parentd3a81eee72723a88f741c98fb6c0347b5132bf7a (diff)
downloademacs-98b7b7edd50fd33ee57fe77995b2ea8af5b5594e.tar.gz
emacs-98b7b7edd50fd33ee57fe77995b2ea8af5b5594e.zip
(mh-mml-tag-present-p): Update regexp to handle <mml> tags inserted by
Gnus gnus-summary-mail-forward (closes SF #1399307).
-rw-r--r--lisp/mh-e/ChangeLog6
-rw-r--r--lisp/mh-e/mh-mime.el4
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog
index 1f17d15500e..651757cc378 100644
--- a/lisp/mh-e/ChangeLog
+++ b/lisp/mh-e/ChangeLog
@@ -1,3 +1,9 @@
12006-01-07 Bill Wohler <wohler@newt.com>
2
3 * mh-mime.el (mh-mml-tag-present-p): Update regexp to handle <mml>
4 tags inserted by Gnus gnus-summary-mail-forward (closes SF
5 #1399307).
6
12006-01-03 Mark D. Baushke <mdb@gnu.org> 72006-01-03 Mark D. Baushke <mdb@gnu.org>
2 8
3 * mh-e.el (mh-delete-a-msg): Fix whitespace nit. 9 * mh-e.el (mh-delete-a-msg): Fix whitespace nit.
diff --git a/lisp/mh-e/mh-mime.el b/lisp/mh-e/mh-mime.el
index f7377d80b2d..7336d7034ee 100644
--- a/lisp/mh-e/mh-mime.el
+++ b/lisp/mh-e/mh-mime.el
@@ -693,7 +693,9 @@ the possible security methods (see `mh-mml-method-default')."
693 (save-excursion 693 (save-excursion
694 (goto-char (point-min)) 694 (goto-char (point-min))
695 (re-search-forward 695 (re-search-forward
696 "\\(<#part\\(.\\|\n\\)*>[ \n\t]*<#/part>\\|^<#secure.+>$\\)" 696 (concat
697 "\\(<#\\(mml\\|part\\)\\(.\\|\n\\)*>[ \n\t]*<#/\\(mml\\|part\\)>\\|"
698 "^<#secure.+>$\\)")
697 nil t))) 699 nil t)))
698 700
699 701