summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS6
-rw-r--r--configure.in2
-rwxr-xr-xcontrib/rpws2
3 files changed, 8 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 0175d0b..1e0f4ea 100644
--- a/NEWS
+++ b/NEWS
@@ -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 );
}