diff options
author | rcyeske <rcyeske> | 2003-11-29 19:55:33 +0000 |
---|---|---|
committer | rcyeske <rcyeske> | 2003-11-29 19:55:33 +0000 |
commit | b15e5c88956ccb9c56f2823d12a81de722beaa44 (patch) | |
tree | 2d8d9e3ce563a6dd5a6a2af71a8c1c85d604b1d9 | |
parent | b553b37539fca7d49baf097212e28ed898ffe8c4 (diff) | |
download | ratpoison-b15e5c88956ccb9c56f2823d12a81de722beaa44.zip |
* src/communications.c (receive_command_result): Rename from
recieve_command_result. From paxed.
* src/events.c (handle_signals): s/recieve/receive.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/communications.c | 4 | ||||
-rw-r--r-- | src/events.c | 2 | ||||
-rw-r--r-- | src/main.c | 2 |
4 files changed, 11 insertions, 4 deletions
@@ -1,3 +1,10 @@ +2003-11-29 Ryan Yeske <rcyeske@vcn.bc.ca> + + * 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 <sabetts@vcn.bc.ca> * 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) @@ -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), |