blob: fe233c569063478f03a52501723c54bdd958799b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
$NetBSD: patch-ad,v 1.1 2006/06/20 03:37:04 minskim Exp $
--- src/history.c.orig 1999-03-06 14:43:24.000000000 -0800
+++ src/history.c
@@ -38,18 +38,6 @@
#define LOCALSIZE 100 /* local history size */
#define INPUTSIZE 100 /* command history buffer size */
-typedef struct History { /* circular list of Alines, and logfile */
- struct Aline **alines;
- int size; /* actual number of lines currently saved */
- int maxsize; /* maximum number of lines that can be saved */
- int first; /* position of first line in circular array */
- int last; /* position of last line in circular array */
- int index; /* current recall position */
- int total; /* total number of lines ever saved */
- TFILE *logfile;
- CONST char *logname;
-} History;
-
#define empty(hist) (!(hist)->alines || !(hist)->size)
static void FDECL(alloc_history,(History *hist, int maxsize));
|