commit a27333144dc193e71bcef17944b73492b7bbfa2c
Author: Jean-Marc Lasgouttes <lasgout...@lyx.org>
Date:   Mon Mar 17 11:14:19 2014 +0100

    Also show boundary when displaying Cursor value.

diff --git a/src/Cursor.cpp b/src/Cursor.cpp
index be32a76..89db3a6 100644
--- a/src/Cursor.cpp
+++ b/src/Cursor.cpp
@@ -1324,7 +1324,8 @@ ostream & operator<<(ostream & os, Cursor const & cur)
                os << "------------------------------- | " << cur.anchor_[i] << 
"\n";
        }
        os << " selection: " << cur.selection_
-          << " x_target: " << cur.x_target_ << endl;
+          << " x_target: " << cur.x_target_
+          << " boundary: " << cur.boundary() << endl;
        return os;
 }
 

Reply via email to