diff options
author | rcyeske <rcyeske> | 2001-02-19 20:49:14 +0000 |
---|---|---|
committer | rcyeske <rcyeske> | 2001-02-19 20:49:14 +0000 |
commit | dd5571c433c5cb52d4ade34ee12e75acbc2d04e8 (patch) | |
tree | f6e799d2ad5b0d6faabde56556cde005968382ea /src | |
parent | 241a4ef80ed34d43cad2629fdda8244b2d8d2619 (diff) | |
download | ratpoison-dd5571c433c5cb52d4ade34ee12e75acbc2d04e8.zip |
propogated function renames
Diffstat (limited to 'src')
-rw-r--r-- | src/events.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/events.c b/src/events.c index 4c310a6..6300086 100644 --- a/src/events.c +++ b/src/events.c @@ -86,7 +86,7 @@ unmap_notify (XEvent *ev) if (rp_current_window == win) { - last_window (NULL); + cmd_other (NULL); } update_window_names (s); @@ -167,7 +167,7 @@ destroy_window (XDestroyWindowEvent *ev) /* Switch to last viewed window */ ignore_badwindow = 1; - last_window (NULL); + cmd_other (NULL); ignore_badwindow = 0; } else @@ -231,7 +231,7 @@ configure_request (XConfigureRequestEvent *e) } else if (e->detail == Below && win == rp_current_window) { - last_window (NULL); + cmd_other (NULL); } } @@ -333,7 +333,7 @@ handle_key (screen_info *s) /* No key match, notify user. */ XSetInputFocus (dpy, fwin, revert, CurrentTime); - message (msg, 0, 0); + message (msg); free (msg); } |