mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-24 10:38:38 +00:00
Fix previous change.
This commit is contained in:
parent
a2ad45b9ae
commit
515b04d08c
2
src/cm.h
2
src/cm.h
@ -101,7 +101,7 @@ struct cm
|
||||
extern struct cm Wcm; /* Terminal capabilities */
|
||||
extern char PC; /* Pad character */
|
||||
|
||||
#if defined (HAVE_TERMIOS_H) || defined (LINUX)
|
||||
#if defined (HAVE_TERMIOS_H) && defined (LINUX)
|
||||
#include <termios.h>
|
||||
/* HJL's version of libc is said to need this on the Alpha.
|
||||
On the other hand, DEC OSF1 on the Alpha needs ospeed to be a short. */
|
||||
|
@ -27,10 +27,6 @@ Boston, MA 02111-1307, USA. */
|
||||
#include "blockinput.h"
|
||||
#undef NULL
|
||||
|
||||
#ifdef HAVE_TERMIOS_H
|
||||
#include <termios.h>
|
||||
#endif
|
||||
|
||||
#define min(x,y) ((x) > (y) ? (y) : (x))
|
||||
|
||||
/* In this file, open, read and write refer to the system calls,
|
||||
@ -230,7 +226,8 @@ static int baud_convert[] =
|
||||
};
|
||||
#endif
|
||||
|
||||
#if defined (HAVE_TERMIOS_H) || defined (LINUX)
|
||||
#if defined (HAVE_TERMIOS_H) && defined (LINUX)
|
||||
#include <termios.h>
|
||||
/* HJL's version of libc is said to need this on the Alpha.
|
||||
On the other hand, DEC OSF1 on the Alpha needs ospeed to be a short. */
|
||||
extern speed_t ospeed;
|
||||
|
@ -26,7 +26,7 @@ Boston, MA 02111-1307, USA. */
|
||||
|
||||
char *UP, *BC, PC;
|
||||
|
||||
#if defined (HAVE_TERMIOS_H) || defined (LINUX)
|
||||
#if defined (HAVE_TERMIOS_H) && defined (LINUX)
|
||||
#include <termios.h>
|
||||
/* HJL's version of libc is said to need this on the Alpha.
|
||||
On the other hand, DEC OSF1 on the Alpha needs ospeed to be a short. */
|
||||
|
Loading…
Reference in New Issue
Block a user