* khtml/editing/htmlediting.cpp:
(khtml::ReplacementFragment::mergeEndNode): Fixed one-line coding mistake that created an endless loop.
Seemed simple enough to land without review.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@8088
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2004-11-30 Ken Kocienda <kocienda@apple.com>
+
+ Reviewed by me
+
+ * khtml/editing/htmlediting.cpp:
+ (khtml::ReplacementFragment::mergeEndNode): Fixed one-line coding mistake that created an endless loop.
+ Seemed simple enough to land without review.
+
2004-11-29 Ken Kocienda <kocienda@apple.com>
Reviewed by Chris
if (!previousSibling || isProbablyBlock(previousSibling))
return node;
node = previousSibling;
+ previousSibling = node->previousSibling();
}
}
node = prev;