From 61fce88ff889dc1b2b58722938979e5e6dca4889 Mon Sep 17 00:00:00 2001 From: bostic Date: Mon, 22 Nov 1993 10:01:40 +0000 Subject: [PATCH] add a replay buffer count, we're pushing it on the stack now --- vi/vi.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vi/vi.h b/vi/vi.h index 1c5f8551..670bc28d 100644 --- a/vi/vi.h +++ b/vi/vi.h @@ -4,7 +4,7 @@ * * %sccs.include.redist.c% * - * $Id: vi.h,v 8.19 1993/11/19 12:43:42 bostic Exp $ (Berkeley) $Date: 1993/11/19 12:43:42 $ + * $Id: vi.h,v 8.20 1993/11/22 10:01:40 bostic Exp $ (Berkeley) $Date: 1993/11/22 10:01:40 $ */ typedef struct _vikeys VIKEYS; @@ -122,6 +122,7 @@ typedef struct _vi_private { char *rep; /* Input replay buffer. */ size_t rep_len; /* Input replay buffer length. */ + size_t rep_cnt; /* Input replay buffer characters. */ CHAR_T inc_lastch; /* Last increment character. */ long inc_lastval; /* Last increment value. */ -- 2.11.4.GIT