Module Name: src
Committed By: christos
Date: Sat Jan 30 15:05:27 UTC 2016
Modified Files:
src/lib/libedit: hist.h
Log Message:
Whitespace fix (Ingo Schwarze)
To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/lib/libedit/hist.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libedit/hist.h
diff -u src/lib/libedit/hist.h:1.14 src/lib/libedit/hist.h:1.15
--- src/lib/libedit/hist.h:1.14 Sat May 10 21:05:17 2014
+++ src/lib/libedit/hist.h Sat Jan 30 10:05:27 2016
@@ -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(H
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;