Deleted Added
full compact
el.h (148834) el.h (170511)
1/*-
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Christos Zoulas of Cornell University.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 16 unchanged lines hidden (view full) ---

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * @(#)el.h 8.1 (Berkeley) 6/4/93
1/*-
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Christos Zoulas of Cornell University.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 16 unchanged lines hidden (view full) ---

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * @(#)el.h 8.1 (Berkeley) 6/4/93
33 * $NetBSD: el.h,v 1.16 2003/10/18 23:48:42 christos Exp $
34 * $FreeBSD: head/lib/libedit/el.h 148834 2005-08-07 20:55:59Z stefanf $
33 * $NetBSD: el.h,v 1.17 2006/12/15 22:13:33 christos Exp $
34 * $FreeBSD: head/lib/libedit/el.h 170511 2007-06-10 19:06:09Z stefanf $
35 */
36
37/*
38 * el.h: Internal structures.
39 */
40#ifndef _h_el
41#define _h_el
42/*

--- 62 unchanged lines hidden (view full) ---

105#include "map.h"
106#include "parse.h"
107#include "sig.h"
108#include "help.h"
109#include "read.h"
110
111struct editline {
112 char *el_prog; /* the program name */
35 */
36
37/*
38 * el.h: Internal structures.
39 */
40#ifndef _h_el
41#define _h_el
42/*

--- 62 unchanged lines hidden (view full) ---

105#include "map.h"
106#include "parse.h"
107#include "sig.h"
108#include "help.h"
109#include "read.h"
110
111struct editline {
112 char *el_prog; /* the program name */
113 FILE *el_infile; /* Stdio stuff */
113 FILE *el_outfile; /* Stdio stuff */
114 FILE *el_errfile; /* Stdio stuff */
115 int el_infd; /* Input file descriptor */
116 int el_flags; /* Various flags. */
117 coord_t el_cursor; /* Cursor location */
118 char **el_display; /* Real screen image = what is there */
119 char **el_vdisplay; /* Virtual screen image = what we see */
120 void *el_data; /* Client data */

--- 29 unchanged lines hidden ---
114 FILE *el_outfile; /* Stdio stuff */
115 FILE *el_errfile; /* Stdio stuff */
116 int el_infd; /* Input file descriptor */
117 int el_flags; /* Various flags. */
118 coord_t el_cursor; /* Cursor location */
119 char **el_display; /* Real screen image = what is there */
120 char **el_vdisplay; /* Virtual screen image = what we see */
121 void *el_data; /* Client data */

--- 29 unchanged lines hidden ---