diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-20 18:45:35 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-20 18:45:35 +0000 |
commit | 3128de3f19e18c67626ba34523f6696b584c3f9e (patch) | |
tree | a00d8f203122e22528fb8c6f2291a6c32d0ea974 /tmux.h | |
parent | ef1c1d57531bbfd762434524fd8e774cf5b9a140 (diff) | |
download | rtmux-3128de3f19e18c67626ba34523f6696b584c3f9e.tar.gz rtmux-3128de3f19e18c67626ba34523f6696b584c3f9e.tar.bz2 rtmux-3128de3f19e18c67626ba34523f6696b584c3f9e.zip |
buffer-limit option.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 */ |