summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-20 18:45:35 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-20 18:45:35 +0000
commit3128de3f19e18c67626ba34523f6696b584c3f9e (patch)
treea00d8f203122e22528fb8c6f2291a6c32d0ea974 /tmux.h
parentef1c1d57531bbfd762434524fd8e774cf5b9a140 (diff)
buffer-limit option.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index d61d1e60..6b72d2b9 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.158 2008-06-20 17:31:48 nicm Exp $ */
+/* $Id: tmux.h,v 1.159 2008-06-20 18:45:35 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -875,7 +875,7 @@ struct paste_buffer *paste_get_top(struct paste_stack *);
struct paste_buffer *paste_get_index(struct paste_stack *, u_int);
int paste_free_top(struct paste_stack *);
int paste_free_index(struct paste_stack *, u_int);
-void paste_add(struct paste_stack *, const char *);
+void paste_add(struct paste_stack *, const char *, u_int);
int paste_replace(struct paste_stack *, u_int, const char *);
/* arg.c */