Fix bug #8342: Endless undo group messages

Fix thinko in Undo::endUndoGroup.
Do not reset undo groups in Undo::clean

The underlying problem remains: the various VC functions should not
always reload the buffer or at least should use the parameter
clearUndo=false.
This commit is contained in:
Jean-Marc Lasgouttes 2012-09-17 11:24:39 +02:00
parent ca3cf1f222
commit f8a46c4874
2 changed files with 10 additions and 3 deletions

View File

@ -249,8 +249,10 @@ void Undo::clear()
d->undostack_.clear();
d->redostack_.clear();
d->undo_finished_ = true;
d->group_id = 0;
d->group_level = 0;
// We used to do that, but I believe it is better to keep
// groups (only used in Buffer::reload for now (JMarc)
//d->group_id = 0;
//d->group_level = 0;
}
@ -511,8 +513,10 @@ void Undo::beginUndoGroup()
void Undo::endUndoGroup()
{
if (d->group_level == 0)
if (d->group_level == 0) {
LYXERR0("There is no undo group to end here");
return;
}
--d->group_level;
if (d->group_level == 0) {
// real end of the group

View File

@ -130,6 +130,9 @@ What's new
- Make sure that undo restores paragraph longest label width correctly
(bug 8242).
- Fix undo machinery confusion after checking in a document under version
control (bug 8342).
- Do not forget the undo information when doing a Save As...
- Replace current selection when pasting (bug 8027).