aboutsummaryrefslogtreecommitdiffstats
path: root/src/cm.c
diff options
context:
space:
mode:
authorGerd Moellmann2000-11-21 12:05:08 +0000
committerGerd Moellmann2000-11-21 12:05:08 +0000
commitff23e1dd170acbd8c702c5b81465c8b27d903f1f (patch)
tree72265a568740abd0025e9b95cfbf7a7f1a269301 /src/cm.c
parent64566c039ed52aba60c12f0e3b79fa2b7c1a7d7e (diff)
downloademacs-ff23e1dd170acbd8c702c5b81465c8b27d903f1f.tar.gz
emacs-ff23e1dd170acbd8c702c5b81465c8b27d903f1f.zip
Don't try to include termcap.h; see comment there.
Diffstat (limited to 'src/cm.c')
-rw-r--r--src/cm.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/cm.c b/src/cm.c
index 144baa847b5..56a1160c593 100644
--- a/src/cm.c
+++ b/src/cm.c
@@ -25,7 +25,11 @@ Boston, MA 02111-1307, USA. */
25#include "cm.h" 25#include "cm.h"
26#include "termhooks.h" 26#include "termhooks.h"
27 27
28#ifdef HAVE_TERMCAP_H 28/* For now, don't try to include termcap.h. On some systems,
29 configure finds a non-standard termcap.h that the main build
30 won't find. */
31
32#if defined HAVE_TERMCAP_H && 0
29#include <termcap.h> 33#include <termcap.h>
30#else 34#else
31extern void tputs P_ ((const char *, int, int (*)(int))); 35extern void tputs P_ ((const char *, int, int (*)(int)));