diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/mh-e/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/mh-e/mh-mime.el | 4 |
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 @@ | |||
| 1 | 2006-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 | |||
| 1 | 2006-01-03 Mark D. Baushke <mdb@gnu.org> | 7 | 2006-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 | ||