Remove local patch that was (supposedly) a work-around for
libedit-emulating-readline problems, which appear fixed; at least texinfo compiles just as well without the patch.
This commit is contained in:
parent
b12e18c6e7
commit
18f0270abb
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: terminal.c,v 1.6 2003/01/17 15:25:50 wiz Exp $ */
|
||||
/* $NetBSD: terminal.c,v 1.7 2003/07/03 12:50:09 wiz Exp $ */
|
||||
|
||||
/* terminal.c -- how to handle the physical terminal for Info.
|
||||
Id: terminal.c,v 1.1 2002/08/25 23:38:38 karl Exp
|
||||
|
@ -33,7 +33,7 @@
|
|||
#ifdef HAVE_NCURSES_TERMCAP_H
|
||||
#include <ncurses/termcap.h>
|
||||
#else
|
||||
#if defined(HAVE_TERMCAP_H) && !defined(__NetBSD__)
|
||||
#if defined(HAVE_TERMCAP_H)
|
||||
#include <termcap.h>
|
||||
#else
|
||||
/* On Solaris2, sys/types.h #includes sys/reg.h, which #defines PC.
|
||||
|
@ -117,18 +117,12 @@ static char *term_invend;
|
|||
/* Although I can't find any documentation that says this is supposed to
|
||||
return its argument, all the code I've looked at (termutils, less)
|
||||
does so, so fine. */
|
||||
#ifdef __NetBSD__
|
||||
void
|
||||
#else
|
||||
static int
|
||||
#endif
|
||||
output_character_function (c)
|
||||
int c;
|
||||
{
|
||||
putc (c, stdout);
|
||||
#ifndef __NetBSD__
|
||||
return c;
|
||||
#endif
|
||||
}
|
||||
|
||||
/* Macro to send STRING to the terminal. */
|
||||
|
|
Loading…
Reference in New Issue