Jindrich Makovicka wrote:
+ if ((c = get_byte (view, p)) == -1) {
+ if (upto)
+ return line;
+ else
+ return p;
+ }
+

Thanks for reporting this. I have fixed the bug in current CVS (view.c, revision 1.230). Instead of the if ... then ... else I simply wrote:


        if ((c = get_byte (view, p)) == -1)
            break;

which has the same effect.

Roland
_______________________________________________
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel

Reply via email to