diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-07-16 09:03:24 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-07-16 09:03:24 +0000 |
commit | 6c7c9244a9338918ae0a964e067a0e0796fb6ee6 (patch) | |
tree | aee3b27f334f7f28c68fa3012311ebefb6b20577 /src/cm.h | |
parent | aad2a123ca33de4c1acbf8ccc5b351d0484343d9 (diff) | |
download | emacs-6c7c9244a9338918ae0a964e067a0e0796fb6ee6.tar.gz |
Test HAVE_TERMIOS rather than the automatically-generated HAVE_TERMIOS_H,
in case <termios.h> is present but unusable.
Diffstat (limited to 'src/cm.h')
-rw-r--r-- | src/cm.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -100,7 +100,7 @@ struct cm extern struct cm Wcm; /* Terminal capabilities */ extern char PC; /* Pad character */ -#ifdef HAVE_TERMIOS_H +#ifdef HAVE_TERMIOS # include <termios.h> extern speed_t ospeed; #else |