]> git.lyx.org Git - lyx.git/blobdiff - src/Compare.cpp
Fix for bug #7360. Patch from Nemah, posted to bug report.
[lyx.git] / src / Compare.cpp
index 590303e519408a2a9393bad8157d41dba85fc915..f5d1d5476110fd8fe2594b30a793e50528907a88 100644 (file)
@@ -14,6 +14,7 @@
 
 #include "BufferParams.h"
 #include "Changes.h"
+#include "Font.h"
 
 #include "insets/InsetText.h"
 
@@ -691,7 +692,9 @@ bool Compare::Impl::diff(Buffer const * new_buf, Buffer const * old_buf,
        processSnake(snake);
        
        // Start the recursive algorithm
-       diff_i(rp);
+       DocRangePair rp_new(from, rp.to());
+       if (!rp_new.o.empty() || !rp_new.n.empty())
+               diff_i(rp_new);
 
        for (pit_type p = 0; p < (pit_type)dest_pars_->size(); ++p) {
                (*dest_pars_)[p].setBuffer(const_cast<Buffer &>(*dest_buf));