[945] in BarnOwl Developers
[D-O-H] r932 - branches/barnowl_unicode/owl
daemon@ATHENA.MIT.EDU (asedeno@MIT.EDU)
Thu Oct 29 18:11:25 2009
Resent-From: nelhage@mit.edu
Resent-To: barnowl-dev-mtg@charon.mit.edu
X-Original-To: nelhage@nelhage.com
To: dirty-owl-hackers@mit.edu
From: asedeno@MIT.EDU
Reply-to: dirty-owl-hackers@MIT.EDU
Date: Thu, 7 Feb 2008 14:01:24 -0500 (EST)
Author: asedeno
Date: 2008-02-07 14:01:23 -0500 (Thu, 07 Feb 2008)
New Revision: 932
Modified:
branches/barnowl_unicode/owl/editwin.c
Log:
unicode/glib branch
Fix a bug in owl_editwin_move_to_previousword() which would skip over
single letter words.
Modified: branches/barnowl_unicode/owl/editwin.c
===================================================================
--- branches/barnowl_unicode/owl/editwin.c 2008-02-05 02:23:16 UTC (rev 931)
+++ branches/barnowl_unicode/owl/editwin.c 2008-02-07 19:01:23 UTC (rev 932)
@@ -892,7 +892,6 @@
}
/* find the last non-space */
- owl_editwin_key_left(e);
ptr1 = e->buff + _owl_editwin_get_index_from_xy(e);
while (ptr1 >= e->buff + e->lock) {
ptr2 = g_utf8_find_prev_char(e->buff, ptr1);