Deleted Added
full compact
el.h (238173) el.h (238378)
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

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

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.17 2006/12/15 22:13:33 christos Exp $
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

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

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.17 2006/12/15 22:13:33 christos Exp $
34 * $FreeBSD: head/lib/libedit/el.h 238173 2012-07-06 16:43:56Z pfg $
34 * $FreeBSD: head/lib/libedit/el.h 238378 2012-07-11 22:20:19Z pfg $
35 */
36
37/*
38 * el.h: Internal structures.
39 */
40#ifndef _h_el
41#define _h_el
42/*

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

110
111struct editline {
112 char *el_prog; /* the program name */
113 FILE *el_infile; /* Stdio stuff */
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. */
35 */
36
37/*
38 * el.h: Internal structures.
39 */
40#ifndef _h_el
41#define _h_el
42/*

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

110
111struct editline {
112 char *el_prog; /* the program name */
113 FILE *el_infile; /* Stdio stuff */
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 int el_errno; /* Local copy of errno */
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 */
122 el_line_t el_line; /* The current line information */
123 el_state_t el_state; /* Current editor state */
124 el_term_t el_term; /* Terminal dependent stuff */
125 el_tty_t el_tty; /* Tty dependent stuff */

--- 25 unchanged lines hidden ---
119 coord_t el_cursor; /* Cursor location */
120 char **el_display; /* Real screen image = what is there */
121 char **el_vdisplay; /* Virtual screen image = what we see */
122 void *el_data; /* Client data */
123 el_line_t el_line; /* The current line information */
124 el_state_t el_state; /* Current editor state */
125 el_term_t el_term; /* Terminal dependent stuff */
126 el_tty_t el_tty; /* Tty dependent stuff */

--- 25 unchanged lines hidden ---