[59] in bug-owl
fix for stupid scrolling bug
daemon@ATHENA.MIT.EDU (Erik Nygren)
Tue Jul 16 20:54:16 2002
To: kretch@mit.edu, bug-owl@mit.edu
Date: Tue, 16 Jul 2002 20:54:13 -0400
From: Erik Nygren <nygren@MIT.EDU>
Message-Id: <E17Ud53-0006oV-00@gaia.bay13.org>
It might be worth releasing 1.1.4 with this fix, which
actually does seem to solve the problem. This is probably
the most annoying bug in 1.1.3, I'm guessing:
diff -u dist/owl-1.1.3/ChangeLog owl-1.1.4-pre/ChangeLog
--- dist/owl-1.1.3/ChangeLog Tue Jun 25 15:51:50 2002
+++ owl-1.1.4-pre/ChangeLog Tue Jul 16 20:41:30 2002
@@ -1,3 +1,8 @@
+1.1.4
+ Fix the scrolling bug where we would sometimes fail to scroll
+ the screen down, leaving the current message off
+ the bottom of the screen.
+
1.1.3
'show subs' and 'show subscriptions' are now the same as 'getsubs'
zlocate now takes an optional -d argument
diff -u dist/owl-1.1.3/functions.c owl-1.1.4-pre/functions.c
--- dist/owl-1.1.3/functions.c Tue Jun 25 15:51:50 2002
+++ owl-1.1.4-pre/functions.c Tue Jul 16 20:35:27 2002
@@ -597,6 +597,9 @@
return;
}
}
+
+ owl_global_set_topmsg(&g, topmsg);
+ return;
}
diff -u dist/owl-1.1.3/owl.h owl-1.1.4-pre/owl.h
--- dist/owl-1.1.3/owl.h Tue Jun 25 15:51:50 2002
+++ owl-1.1.4-pre/owl.h Tue Jul 16 20:33:56 2002
@@ -9,8 +9,8 @@
#include <regex.h>
#include "config.h"
-#define OWL_VERSION 1.1.3
-#define OWL_VERSION_STRING "1.1.3"
+#define OWL_VERSION 1.1.4
+#define OWL_VERSION_STRING "1.1.4"
#define OWL_DEBUG 0
#define OWL_DEBUG_FILE "/var/tmp/owldebug"