]> git.lyx.org Git - lyx.git/blobdiff - src/undostack.C
Sigh. Why is debugging iterative?
[lyx.git] / src / undostack.C
index 5b7ec58569ed3b8ed5b3d6a3f33bfbf986a5d86c..33d07cca34271811f02ba44c27fe92caa0eee0dd 100644 (file)
@@ -1,8 +1,8 @@
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
- *      
+ *
  *           Copyright 1995 Matthias Ettrich
  *           Copyright 1995-2001 The LyX Team.
  *
@@ -65,7 +65,7 @@ void UndoStack::push(Undo * undo_arg)
 {
        if (!undo_arg)
                return;
-       
+
        stakk.push_front(undo_arg);
        if (stakk.size() > limit) {
                Undo * tmp = stakk.back();