From 252e766648150e17b7ea1198d6270603e0adfe6e Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Tue, 14 Aug 2012 21:27:24 +0200 Subject: [PATCH] Oops, should have been more careful --- undone/main.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/undone/main.scm b/undone/main.scm index 5bc0fb6..b1f1845 100644 --- a/undone/main.scm +++ b/undone/main.scm @@ -24,8 +24,8 @@ (let* ((xdg (getenv "XDG_CONFIG_HOME")) (home (getenv "HOME")) (rc-file-name "undonerc.scm") - (xdg-rc-file (string-append xdg "/" rc-file-name)) - (home-rc-file (string-append home "/" rc-file-name))) + (xdg-rc-file (string-append xdg "/undone/" rc-file-name)) + (home-rc-file (string-append home "/.undone/" rc-file-name))) (if (and xdg (file-exists? xdg-rc-file)) xdg-rc-file home-rc-file)))