diff options
| author | Gerd Moellmann | 2000-11-21 12:05:08 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-11-21 12:05:08 +0000 |
| commit | ff23e1dd170acbd8c702c5b81465c8b27d903f1f (patch) | |
| tree | 72265a568740abd0025e9b95cfbf7a7f1a269301 /src/cm.c | |
| parent | 64566c039ed52aba60c12f0e3b79fa2b7c1a7d7e (diff) | |
| download | emacs-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.c | 6 |
1 files changed, 5 insertions, 1 deletions
| @@ -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 |
| 31 | extern void tputs P_ ((const char *, int, int (*)(int))); | 35 | extern void tputs P_ ((const char *, int, int (*)(int))); |