Browse Source

ob-C: lexical-let requires cl at compilation time

* lisp/ob-C.el: Require cl during compilation so that lexical-let is
  known.
Achim Gratz 10 years ago
parent
commit
310b9dd2b6
1 changed files with 2 additions and 0 deletions
  1. 2 0
      lisp/ob-C.el

+ 2 - 0
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)