diff options
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rwxr-xr-x | contrib/rpws | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -6,6 +6,12 @@ Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. +* Changes since 1.4.2 +** key event handling +top level key bindings are grabbed "asynchronously" instead of +"synchronously." This should eliminate the freezes some people have +experienced in previous versions. + * Changes since 1.4.1 Just bug fixes. diff --git a/configure.in b/configure.in index 1656ac9..0af99b7 100644 --- a/configure.in +++ b/configure.in @@ -20,7 +20,7 @@ dnl dnl $Id: configure.in,v 1.54 2006/12/19 22:13:07 sabetts Exp $ AC_INIT(src/main.c) -AM_INIT_AUTOMAKE(ratpoison, 1.4.3-GIT) +AM_INIT_AUTOMAKE(ratpoison, 1.4.4-GIT) AM_MAINTAINER_MODE diff --git a/contrib/rpws b/contrib/rpws index 361e3d7..089e0a2 100755 --- a/contrib/rpws +++ b/contrib/rpws @@ -60,7 +60,7 @@ sub ws_init rp_call( "only" ); my $i; - for( my $i = 1; $i < $num; $i++ ) + for my $i (1..$num) { ws_init_ws( $i ); } |