summaryrefslogtreecommitdiff
path: root/src/bar.h
diff options
context:
space:
mode:
authorsabetts <sabetts>2003-05-20 07:20:14 +0000
committersabetts <sabetts>2003-05-20 07:20:14 +0000
commit671419ebfb5a6fa0937fd410b0b419f39cf7b25d (patch)
tree4c58fc662167d071ab6da1640a05886d082ebca9 /src/bar.h
parentb8ffe22a70e1285740341e4dc83d003aad86a133 (diff)
downloadratpoison-671419ebfb5a6fa0937fd410b0b419f39cf7b25d.zip
* src/linkedlist.h: Move all C function to linkedlist.c
* src/window.c (find_window): add debugging output describing which window list the window was found in. * src/group.c (group_new): assign the group's number the number passed as an argument. * src/events.c (destroy_window): withdraw iconified and normal windows before unmanaging them. (handle_signals): delete the node from the list before freeing it. * src/bar.h (message): remove define. (marked_wrapped_message): remove prototype (message): new prototype * src/bar.c (message): new function (marked_wrapped_message): renamed to marked_message. remove marked_message.
Diffstat (limited to 'src/bar.h')
-rw-r--r--src/bar.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/bar.h b/src/bar.h
index 324b35a..d5bf4f3 100644
--- a/src/bar.h
+++ b/src/bar.h
@@ -29,9 +29,8 @@ int hide_bar (rp_screen *s);
int bar_y (rp_screen *s, int height);
int bar_x (rp_screen *s, int width);
-#define message(msg) marked_message ((msg), 0, 0)
-void marked_message (char *msg, int hl_start, int hl_end);
-void marked_wrapped_message (char *msg, int hl_start, int hl_end);
+void message (char *s);
+void marked_message (char *s, int mark_start, int mark_end);
void marked_message_printf (int mark_start, int mark_end, char *fmt, ...);
void show_last_message ();
void free_bar ();