From 167b647a10b4af9d040e6d000259629d017cf935 Mon Sep 17 00:00:00 2001 From: Johan Walles Date: Mon, 25 Jun 2012 15:48:21 +0300 Subject: [PATCH] Fix git-commit-mode loading errors. The "loop" construct requires cl. The actual error message I got before this fix was: " Symbol's function definition is void: loop " --- git-commit.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/git-commit.el b/git-commit.el index b1b478b..69a2990 100644 --- a/git-commit.el +++ b/git-commit.el @@ -20,6 +20,8 @@ ;;; Code: +(require 'cl) + (defgroup git-commit '((jit-lock custom-group)) "Mode for editing git commit messages" :group 'faces)