summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsabetts <sabetts>2006-05-22 22:48:22 +0000
committersabetts <sabetts>2006-05-22 22:48:22 +0000
commit223a2ab205969ea090d5c80bb2a430c0e51b75ae (patch)
treeb8595a9ad3ecf6515c0d1de1f737014a44d21cd4 /src
parent4c5a5fe2c076cfd76cc1aba01ce211544787f1a1 (diff)
downloadratpoison-223a2ab205969ea090d5c80bb2a430c0e51b75ae.zip
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r--src/actions.c5
-rw-r--r--src/conf.h2
2 files changed, 5 insertions, 2 deletions
diff --git a/src/actions.c b/src/actions.c
index 9ee7bd7..9c097db 100644
--- a/src/actions.c
+++ b/src/actions.c
@@ -2322,7 +2322,10 @@ command (int interactive, char *data)
cmd = strtok (input, " ");
if (cmd == NULL)
- goto done;
+ {
+ result = cmdret_new (RET_FAILURE, NULL);
+ goto done;
+ }
rest = strtok (NULL, "\0");
diff --git a/src/conf.h b/src/conf.h
index 91d2c56..2095efd 100644
--- a/src/conf.h
+++ b/src/conf.h
@@ -120,6 +120,6 @@
#define TOP_KEYMAP "top"
/* The default font */
-#define DEFAULT_FONT "9x15bold"
+#define DEFAULT_FONT "-*-fixed-bold-r-normal-*-15-*-*-*-c-*-*-*"
#endif /* !_ _RATPOISON_CONF_H */