branch: elpa/nix-mode
commit 68793d91c50920ac687392806023e34411a59daf
Author: Matthew Bauer <[email protected]>
Commit: Matthew Bauer <[email protected]>
Add require 'cl for case statements.
---
nix-company.el | 1 +
nix-mode.el | 2 ++
2 files changed, 3 insertions(+)
diff --git a/nix-company.el b/nix-company.el
index 3cc436be2e..faddd7c15f 100644
--- a/nix-company.el
+++ b/nix-company.el
@@ -8,6 +8,7 @@
;;; Code:
(require 'nix-repl)
+(require 'cl)
(defun company-nix (command &optional arg &rest ignored)
(interactive '(interactive))
diff --git a/nix-mode.el b/nix-mode.el
index 04af745bda..8f5a53db29 100644
--- a/nix-mode.el
+++ b/nix-mode.el
@@ -16,6 +16,8 @@
;;; Code:
+(require 'cl)
+
;; Emacs 24.2 compatability
(unless (fboundp 'setq-local)
(defmacro setq-local (var val)