From 6a32afa64d0ac730ecfac082689ae976f37c4b46 Mon Sep 17 00:00:00 2001
From: Ivica Ico Bukvic <ico@monsoon.(none)>
Date: Thu, 4 Oct 2012 14:36:47 -0400
Subject: [PATCH] improved behavior of paste/duplicate within the infinite undo
 in respect to intelligent offset

---
 src/g_canvas.h | 2 +-
 src/g_undo.h   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/g_canvas.h b/src/g_canvas.h
index e62578a9b..82473da72 100644
--- a/src/g_canvas.h
+++ b/src/g_canvas.h
@@ -705,7 +705,7 @@ EXTERN void canvas_undo_move(t_canvas *x, void *z, int action);
 
 /* --------- 5. paste ------------ */
 
-EXTERN void *canvas_undo_set_paste(t_canvas *x, int offset);
+EXTERN void *canvas_undo_set_paste(t_canvas *x, int offset, int duplicate, int d_offset);
 EXTERN void canvas_undo_paste(t_canvas *x, void *z, int action);
 
 /* --------- 6. apply ------------ */
diff --git a/src/g_undo.h b/src/g_undo.h
index 414388e86..f6cfd4bcf 100644
--- a/src/g_undo.h
+++ b/src/g_undo.h
@@ -87,7 +87,7 @@ EXTERN void canvas_undo_move(t_canvas *x, void *z, int action);
 
 /* --------- 5. paste ------------ */
 
-EXTERN void *canvas_undo_set_paste(t_canvas *x, int offset);
+EXTERN void *canvas_undo_set_paste(t_canvas *x, int offset, int duplicate, int d_offset);
 EXTERN void canvas_undo_paste(t_canvas *x, void *z, int action);
 
 /* --------- 6. apply ------------ */
-- 
GitLab