Edwin Leuven wrote:
attached some more unused stuff
one thing: msvc complained about boundary below not being referenced.
removing the false in the if got rid of the warning. am not sure if i
understand what it was doing there (and didn't try to grasp the if
either) ...
I think this is old, disabled, bidi code. Don't touch it if you don't
know what you're doing. Georg, do you know something about this?
Index: text3.C
===================================================================
--- text3.C (revision 16440)
+++ text3.C (working copy)
@@ -207,7 +207,8 @@
int x = cur.x_target();
// FIXME: there would maybe a need for this 'updated' boolean in the future...
- bool updated = setCursorFromCoordinates(cur, x, 0);
+ //bool updated = setCursorFromCoordinates(cur, x, 0);
+ setCursorFromCoordinates(cur, x, 0);
I am sanitizing the DEPM so the returned boolean is going to disappear
soon, don't touch this code please.
int x = cur.x_target();
// FIXME: there would maybe a need for this 'updated' boolean in the
future...
- bool updated = setCursorFromCoordinates(cur, x, cur.bv().workHeight() -
1);
+ //bool updated = setCursorFromCoordinates(cur, x, cur.bv().workHeight()
- 1);
+ setCursorFromCoordinates(cur, x, cur.bv().workHeight() - 1);
Ditto.
The rest is fine.
Abdel.