From 2c70b5944fa79b4b57a77d71c467816333f2dd3a Mon Sep 17 00:00:00 2001 From: yamaoka Date: Fri, 4 Jun 1999 08:49:34 +0000 Subject: [PATCH] Sync up with the latest semi-1_13. --- ChangeLog | 5 +++++ mime-edit.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 185d327..1b42ca9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-06-04 Katsumi Yamaoka + + * mime-edit.el (mime-edit-user-agent-value): Ignore parenthesis in + `emacs-version' for XEmacs 21.2.15. + 1999-05-31 Keiichi Suzuki * mime-play.el (mime-show-echo-buffer): Bind `buffer-read-only' to diff --git a/mime-edit.el b/mime-edit.el index 2d5a52b..26eb543 100644 --- a/mime-edit.el +++ b/mime-edit.el @@ -634,7 +634,7 @@ If it is not specified for a major-mode, (if (featurep 'xemacs) (concat (if (featurep 'mule) "MULE") " XEmacs" - (if (string-match "\\s +\\\"" emacs-version) + (if (string-match "\\s +\\((\\|\\\"\\)" emacs-version) (concat "/" (substring emacs-version 0 (match-beginning 0)) -- 1.7.10.4