From b1554bcd808cb80a2308fd28bfc846652f662d9f Mon Sep 17 00:00:00 2001 From: kojima Date: Fri, 17 Sep 1999 02:11:04 +0000 Subject: [PATCH] fixed little bug with new SYSCONFDIR --- src/defaults.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/defaults.c b/src/defaults.c index ccea8732..f4afe0ae 100644 --- a/src/defaults.c +++ b/src/defaults.c @@ -668,10 +668,10 @@ WDefaultEntry optionList[] = { {"VMaximizeKey", "None", (void*)WKBD_VMAXIMIZE, NULL, getKeybind, setKeyGrab }, - {"RaiseKey", "Meta+Up", (void*)WKBD_RAISE, + {"RaiseKey", "\"Meta+Up\"", (void*)WKBD_RAISE, NULL, getKeybind, setKeyGrab }, - {"LowerKey", "Meta+Down", (void*)WKBD_LOWER, + {"LowerKey", "\"Meta+Down\"", (void*)WKBD_LOWER, NULL, getKeybind, setKeyGrab }, {"RaiseLowerKey", "None", (void*)WKBD_RAISELOWER, @@ -994,7 +994,7 @@ wDefaultsCheckDomains(void *foo) WDWindowMaker->timestamp = stbuf.st_mtime; /* global dictionary */ - sprintf(path, "%s/WindowMaker", SYSCONFDIR); + sprintf(path, "%s/WindowMaker/WindowMaker", SYSCONFDIR); if (stat(path, &stbuf)>=0) { shared_dict = ReadProplistFromFile(path); if (shared_dict && !PLIsDictionary(shared_dict)) {