Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
515b04d0
Commit
515b04d0
authored
Jul 15, 1997
by
Richard M. Stallman
Browse files
Fix previous change.
parent
a2ad45b9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
7 deletions
+4
-7
src/cm.h
src/cm.h
+1
-1
src/sysdep.c
src/sysdep.c
+2
-5
src/terminfo.c
src/terminfo.c
+1
-1
No files found.
src/cm.h
View file @
515b04d0
...
...
@@ -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. */
...
...
src/sysdep.c
View file @
515b04d0
...
...
@@ -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
;
...
...
src/terminfo.c
View file @
515b04d0
...
...
@@ -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. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment