From 310b9dd2b6c8e7103641b9f3e785dedea2a99f99 Mon Sep 17 00:00:00 2001 From: Achim Gratz Date: Wed, 28 May 2014 14:40:52 +0200 Subject: [PATCH] ob-C: lexical-let requires cl at compilation time * lisp/ob-C.el: Require cl during compilation so that lexical-let is known. --- lisp/ob-C.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/ob-C.el b/lisp/ob-C.el index c460be326..2fcec790c 100644 --- a/lisp/ob-C.el +++ b/lisp/ob-C.el @@ -30,6 +30,8 @@ ;; - not much in the way of error feedback ;;; Code: +(eval-when-compile + (require 'cl)) (require 'ob) (require 'cc-mode) -- 2.11.4.GIT