aboutsummaryrefslogtreecommitdiff
path: root/hist.h
diff options
context:
space:
mode:
authorPedro F. Giffuni <pfg@FreeBSD.org>2016-02-07 01:38:50 +0000
committerPedro F. Giffuni <pfg@FreeBSD.org>2016-02-07 01:38:50 +0000
commitc729c39672cd6bc2e7f57dccc8aab4eb761f0ba6 (patch)
treea142d083d50d23398f35db049fff87cb80bef6d5 /hist.h
parent5b6fd65dbfcb7ec622b234a3a55d028c0028f24f (diff)
downloadsrc-c729c39672cd6bc2e7f57dccc8aab4eb761f0ba6.tar.gz
src-c729c39672cd6bc2e7f57dccc8aab4eb761f0ba6.zip
Import libedit 2016-01-16vendor/NetBSD/libedit/2016-01-30
Obtained from: NetBSD
Notes
Notes: svn path=/vendor/NetBSD/libedit/dist/; revision=295360 svn path=/vendor/NetBSD/libedit/2016-01-16/; revision=295361; tag=vendor/NetBSD/libedit/2016-01-30
Diffstat (limited to 'hist.h')
-rw-r--r--hist.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/hist.h b/hist.h
index 58e5876c9189..36c1c10f42cb 100644
--- a/hist.h
+++ b/hist.h
@@ -1,4 +1,4 @@
-/* $NetBSD: hist.h,v 1.14 2014/05/11 01:05:17 christos Exp $ */
+/* $NetBSD: hist.h,v 1.15 2016/01/30 15:05:27 christos Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -46,10 +46,10 @@ typedef int (*hist_fun_t)(void *, TYPE(HistEvent) *, int, ...);
typedef struct el_history_t {
Char *buf; /* The history buffer */
- size_t sz; /* Size of history buffer */
+ size_t sz; /* Size of history buffer */
Char *last; /* The last character */
int eventno; /* Event we are looking for */
- void * ref; /* Argument for history fcns */
+ void *ref; /* Argument for history fcns */
hist_fun_t fun; /* Event access */
TYPE(HistEvent) ev; /* Event cookie */
} el_history_t;