From b15e5c88956ccb9c56f2823d12a81de722beaa44 Mon Sep 17 00:00:00 2001 From: rcyeske Date: Sat, 29 Nov 2003 19:55:33 +0000 Subject: * src/communications.c (receive_command_result): Rename from recieve_command_result. From paxed. * src/events.c (handle_signals): s/recieve/receive. --- ChangeLog | 7 +++++++ src/communications.c | 4 ++-- src/events.c | 2 +- src/main.c | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 353bba7..39387b6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2003-11-29 Ryan Yeske + + * src/communications.c (receive_command_result): Rename from + recieve_command_result. From paxed. + + * src/events.c (handle_signals): s/recieve/receive. + 2003-11-24 Shawn Betts * src/main.c (ratpoison_longopts): add "file" diff --git a/src/communications.c b/src/communications.c index 352a7ef..79af600 100644 --- a/src/communications.c +++ b/src/communications.c @@ -32,7 +32,7 @@ /* Sending commands to ratpoison */ static void -recieve_command_result (Window w) +receive_command_result (Window w) { int status; Atom type_ret; @@ -124,7 +124,7 @@ send_command (unsigned char interactive, unsigned char *cmd, int screen_num) if (ev.xproperty.atom == rp_command_result && ev.xproperty.state == PropertyNewValue) { - recieve_command_result(ev.xproperty.window); + receive_command_result(ev.xproperty.window); done = 1; } } diff --git a/src/events.c b/src/events.c index 7221883..97de6af 100644 --- a/src/events.c +++ b/src/events.c @@ -739,7 +739,7 @@ handle_signals () { int i; - PRINT_DEBUG (("Alarm recieved.\n")); + PRINT_DEBUG (("Alarm received.\n")); /* Only hide the bar if it times out. */ if (defaults.bar_timeout > 0) diff --git a/src/main.c b/src/main.c index bcec4f6..b2daf7a 100644 --- a/src/main.c +++ b/src/main.c @@ -750,7 +750,7 @@ init_screen (rp_screen *s, int screen_num) defaults.bar_border_width, s->fg_color, s->bg_color); - /* Setup the window that will recieve all keystrokes once the prefix + /* Setup the window that will receive all keystrokes once the prefix key has been pressed. */ s->key_window = XCreateSimpleWindow (dpy, s->root, 0, 0, 1, 1, 0, WhitePixel (dpy, s->screen_num), -- cgit v1.2.3