From f57e5118d6bf9c0842b354d4563aef1e155350c9 Mon Sep 17 00:00:00 2001 From: shuhei-k Date: Fri, 19 Jun 1998 14:13:14 +0000 Subject: [PATCH] Require 'cl when it is compiled. --- mime-def.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mime-def.el b/mime-def.el index 6bab5a4..f5d3624 100644 --- a/mime-def.el +++ b/mime-def.el @@ -32,6 +32,8 @@ (require 'custom) +(eval-when-compile (require 'cl)) + (defgroup mime nil "Emacs MIME Interfaces" :group 'news @@ -93,8 +95,7 @@ (defconst std11-quoted-string-regexp (concat "\"" (regexp-* - (regexp-or std11-qtext-regexp std11-quoted-pair-regexp) - ) + (regexp-or std11-qtext-regexp std11-quoted-pair-regexp)) "\"")) -- 1.7.10.4