X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FUndo.cpp;h=c7684bb1fcf2bb65dee1d97e1a58fcfde82a7132;hb=00cca0544384c7235a6785a47fdcb17357245dd5;hp=3b4bdf2f8872f076ae0f54d9cc6f69df6dfc2be9;hpb=a20a4f2ca0fb2147f6fd5c00b373ebbde8e9118a;p=features.git diff --git a/src/Undo.cpp b/src/Undo.cpp index 3b4bdf2f88..c7684bb1fc 100644 --- a/src/Undo.cpp +++ b/src/Undo.cpp @@ -285,7 +285,10 @@ void Undo::Private::doRecordUndo(UndoKind kind, && stack.top().end == end) return; - LYXERR(Debug::UNDO, "Create undo element of group " << group_id); + if (isFullBuffer) + LYXERR(Debug::UNDO, "Create full buffer undo element of group " << group_id); + else + LYXERR(Debug::UNDO, "Create undo element of group " << group_id); // create the position information of the Undo entry UndoElement undo(kind, cur, cell, from, end, 0, 0, buffer_.params(), isFullBuffer, group_id);