aboutsummaryrefslogtreecommitdiffstats
path: root/scrumelo.el
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-06-01 23:49:29 +0200
committerGravatar Tom Willemse2013-06-01 23:49:29 +0200
commit4edb806e091dfa8d709004f927606cd0f6e803ca (patch)
tree437c88738d4c0adf03b11886f97f867b473be9d4 /scrumelo.el
parent2a9822daac3a77551f0bef4f714294eb0d3d5798 (diff)
downloadscrumelo-4edb806e091dfa8d709004f927606cd0f6e803ca.tar.gz
scrumelo-4edb806e091dfa8d709004f927606cd0f6e803ca.zip
Fix scrumelo--base-directory
It was storing the file-name when loaded, not the directory of the file-name.
Diffstat (limited to 'scrumelo.el')
-rw-r--r--scrumelo.el2
1 files changed, 1 insertions, 1 deletions
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.")