diff options
author | pfg <pfg@FreeBSD.org> | 2016-02-07 15:26:21 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2016-02-07 15:26:21 +0000 |
commit | f7a59d1c75b675ed57e2ef99e5cb05151fb5a7db (patch) | |
tree | 6f4bb7f392824a73325b71d7134919a427963b91 /lib/libedit/hist.h | |
parent | 0bd7c2b97b8718b5ed39bda14af532daf342faa4 (diff) | |
download | FreeBSD-src-f7a59d1c75b675ed57e2ef99e5cb05151fb5a7db.zip FreeBSD-src-f7a59d1c75b675ed57e2ef99e5cb05151fb5a7db.tar.gz |
MFV r295360
Sync our libedit with NetBSD's libedit 2016-01-16
Obtained from: NetBSD
Diffstat (limited to 'lib/libedit/hist.h')
-rw-r--r-- | lib/libedit/hist.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libedit/hist.h b/lib/libedit/hist.h index 1cd7d9d..6ca6877 100644 --- a/lib/libedit/hist.h +++ b/lib/libedit/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 @@ -47,10 +47,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; |