Date: 07 May 2002 13:42:01 -0400 From: Joe Marcus Clarke <marcus@marcuscom.com> To: Larry Rosenman <ler@lerctr.org> Cc: gnome@FreeBSD.ORG Subject: Re: ports/37785 Message-ID: <1020793321.416.5.camel@gyros.marcuscom.com> In-Reply-To: <1020787193.438.20.camel@lerlaptop> References: <1020784927.438.16.camel@lerlaptop> <1020786937.44643.14.camel@shumai.marcuscom.com> <1020787193.438.20.camel@lerlaptop>
next in thread | previous in thread | raw e-mail | index | archive | help
[-- Attachment #1 --] On Tue, 2002-05-07 at 11:59, Larry Rosenman wrote: > On Tue, 2002-05-07 at 10:55, Joe Marcus Clarke wrote: > > On Tue, 2002-05-07 at 12:22, Larry Rosenman wrote: > > > Can someone look at this PR? > > > > I took a brief look at it yesterday. It looks like more of a glimmer > > problem that a "FreeBSD port of glimmer" problem. However, I'll take a > > more thorough look at it today. > > > I dropped a backtrace in it today. I did try to get a hold of the > author, but the mail just hung in my queue. See if this patch fixes the problem for you. Joe > > LER > > Joe > > > > > > > > I'd love to use glimmer, but it crashes on my source file (it's in the > > > PR). If you need more info, let me know.... > > > > > > Thanks, > > > LER > > > -- > > > Larry Rosenman http://www.lerctr.org/~ler > > > Phone: +1 972-414-9812 E-Mail: ler@lerctr.org > > > US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749 > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-gnome" in the body of the message > > > > > > -- > Larry Rosenman http://www.lerctr.org/~ler > Phone: +1 972-414-9812 E-Mail: ler@lerctr.org > US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749 > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-gnome" in the body of the message > -- PGP Key: http://www.marcuscom.com/pgp.asc [-- Attachment #2 --] --- src/mdi-routines.c.orig Tue May 7 13:35:06 2002 +++ src/mdi-routines.c Tue May 7 13:40:16 2002 @@ -150,7 +150,7 @@ length = text->length; line = text->line_number + 1; lines = GTK_EXTEXT (cur_file->text)->line_count + 1; - if (pos >= 0 && pos <= text->length && text->length > 0) + if (pos >= 0 && pos < text->length && text->length > 0) cur_char = GTK_EXTEXT_INDEX (text, pos); else cur_char = 0; @@ -166,7 +166,10 @@ else gtk_widget_set_sensitive (search_menu_match, TRUE); - cur_char = GTK_EXTEXT_INDEX (text, pos); + if (pos < text->length) + cur_char = GTK_EXTEXT_INDEX (text, pos); + else + cur_char = 0; if (cur_char < 1 || !strchr ("{[()]}", cur_char) || length < 1) gtk_widget_set_sensitive (search_menu_select, FALSE); else
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1020793321.416.5.camel>
