From 0cacd12b1d4002916e035852a55b29295409249e Mon Sep 17 00:00:00 2001 From: yamaoka Date: Fri, 4 Jun 1999 08:47:03 +0000 Subject: [PATCH] (mime-edit-user-agent-value): Ignore parenthesis in `emacs-version' for XEmacs 21.2.15. --- mime-edit.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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