diff options
author | sabetts <sabetts> | 2002-02-03 06:18:14 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2002-02-03 06:18:14 +0000 |
commit | c7f67d38459b0951e7124238053e4724146e7e74 (patch) | |
tree | 7ceba5af9a933e0488cf4b46ef1a26da0af3ebb2 | |
parent | ce521bc96af08394599348b568c3dea623fd0400 (diff) | |
download | ratpoison-c7f67d38459b0951e7124238053e4724146e7e74.zip |
(cmd_defbarpadding): print an error message if
defbarpadding is called interactively without arguments.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/actions.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2002-02-02 Shawn Betts <sabetts@vcn.bc.ca> + * src/actions.c (cmd_defbarpadding): print an error message if + defbarpadding is called interactively without arguments. + * src/events.c (handle_signals): only hide the bar if it times out. diff --git a/src/actions.c b/src/actions.c index bbb50b9..d2e45a5 100644 --- a/src/actions.c +++ b/src/actions.c @@ -2342,7 +2342,7 @@ cmd_defbarpadding (int interactive, void *data) { int x, y; - if (data == NULL) + if (data == NULL && !interactive) return xsprintf ("%d %d", defaults.bar_x_padding, defaults.bar_y_padding); if (data == NULL |