From 4edb806e091dfa8d709004f927606cd0f6e803ca Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sat, 1 Jun 2013 23:49:29 +0200 Subject: [PATCH] Fix scrumelo--base-directory It was storing the file-name when loaded, not the directory of the file-name. --- scrumelo.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrumelo.el b/scrumelo.el index 78aa058..ffad6c1 100644 --- a/scrumelo.el +++ b/scrumelo.el @@ -20,7 +20,7 @@ (defvar scrumelo--base-dir (if load-file-name - (directory-file-name load-file-name) + (file-name-directory load-file-name) default-directory) "The current directory.")