summaryrefslogtreecommitdiff
path: root/src/communications.c
diff options
context:
space:
mode:
authorrcyeske <rcyeske>2003-11-29 19:55:33 +0000
committerrcyeske <rcyeske>2003-11-29 19:55:33 +0000
commitb15e5c88956ccb9c56f2823d12a81de722beaa44 (patch)
tree2d8d9e3ce563a6dd5a6a2af71a8c1c85d604b1d9 /src/communications.c
parentb553b37539fca7d49baf097212e28ed898ffe8c4 (diff)
downloadratpoison-b15e5c88956ccb9c56f2823d12a81de722beaa44.zip
* src/communications.c (receive_command_result): Rename from
recieve_command_result. From paxed. * src/events.c (handle_signals): s/recieve/receive.
Diffstat (limited to 'src/communications.c')
-rw-r--r--src/communications.c4
1 files changed, 2 insertions, 2 deletions
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;
}
}