diff options
author | sabetts <sabetts> | 2003-04-08 00:00:47 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2003-04-08 00:00:47 +0000 |
commit | 039f0764fe3c59bc9f7d0f03631ee0063b9dd9cf (patch) | |
tree | 5401a46c4658053c4cde972b1af039ab31c5228f /src/actions.c | |
parent | 3aff4f30deb65c535427bc145c2a11a87d4332ac (diff) | |
download | ratpoison-039f0764fe3c59bc9f7d0f03631ee0063b9dd9cf.zip |
* src/Makefile.am (ratpoison_SOURCES): add linkedlist.h
* src/bar.c (marked_message): pass correct arguments to bar_y.
* src/actions.c (cmd_defwinliststyle): error messages print the
correct command name.
Diffstat (limited to 'src/actions.c')
-rw-r--r-- | src/actions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/actions.c b/src/actions.c index 4007bcc..1bd0930 100644 --- a/src/actions.c +++ b/src/actions.c @@ -3112,7 +3112,7 @@ cmd_defwinliststyle (int interactive, char *data) if (data == NULL) { - message (" defwrapwinlist: One argument required "); + message (" defwinliststyle: One argument required "); return NULL; } @@ -3126,7 +3126,7 @@ cmd_defwinliststyle (int interactive, char *data) } else { - message (" defwrapwinlist: Bad argument "); + message (" defwinliststyle: Bad argument "); } return NULL; |