]> git.lyx.org Git - lyx.git/blobdiff - src/buffer_funcs.cpp
* Doxy
[lyx.git] / src / buffer_funcs.cpp
index 1d90fa47775b1633c7202e567678afaa86abe9e5..8ca9ea36b36080db684aa0f273739a06c14009b6 100644 (file)
@@ -188,10 +188,12 @@ int countChars(DocIterator const & from, DocIterator const & to, bool with_blank
        int chars = 0;
        int blanks = 0;
        for (DocIterator dit = from ; dit != to ; dit.forwardPos()) {
+
+               if (!dit.inTexted()) continue;
                Paragraph const & par = dit.paragraph();
                pos_type const pos = dit.pos();
 
-               if (dit.inTexted() && pos != dit.lastpos() && !par.isDeleted(pos)) {
+               if (pos != dit.lastpos() && !par.isDeleted(pos)) {
                        if (par.isInset(pos)) {
                                Inset const * ins = par.getInset(pos);
                                if (ins->isLetter())