(mime-parse-Content-Disposition): Use `eval-when-compile'.
authormorioka <morioka>
Fri, 15 Jan 1999 11:58:30 +0000 (11:58 +0000)
committermorioka <morioka>
Fri, 15 Jan 1999 11:58:30 +0000 (11:58 +0000)
mime-parse.el

index 70ec263..b6a2f36 100644 (file)
@@ -102,7 +102,8 @@ and return parsed it.  Format of return value is as same as
 (defun mime-parse-Content-Disposition (string)
   "Parse STRING as field-body of Content-Disposition field."
   (setq string (std11-unfold-string string))
-  (if (string-match `,(concat "^" mime-disposition-type-regexp) string)
+  (if (string-match (eval-when-compile
+                     (concat "^" mime-disposition-type-regexp)) string)
       (let* ((e (match-end 0))
             (type (downcase (substring string 0 e)))
             ret dest)