diff options
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/pmore.c | 4 | ||||
-rw-r--r-- | mbbsd/screen.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/mbbsd/pmore.c b/mbbsd/pmore.c index e95ad341..fe39a389 100644 --- a/mbbsd/pmore.c +++ b/mbbsd/pmore.c @@ -69,10 +69,10 @@ // if you are working with a terminal without ANSI control, // you are using a poor term (define PMORE_USING_POOR_TERM). -#ifndef HAVE_PFTERM // pfterm is a good terminal system. +#ifndef USE_PFTERM // pfterm is a good terminal system. #define PMORE_USING_POOR_TERM #define PMORE_WORKAROUND_CLRTOEOL // try to work with poor terminal sys -#endif // HAVE_PFTERM +#endif // USE_PFTERM // -------------------------------------------------------------- </FEATURES> // ----------------------------------------------------------- <LOCALIZATION> diff --git a/mbbsd/screen.c b/mbbsd/screen.c index 51e8a559..6969d2ab 100644 --- a/mbbsd/screen.c +++ b/mbbsd/screen.c @@ -1,7 +1,7 @@ /* $Id$ */ #include "bbs.h" -#if !defined(EXP_PFTERM) && !defined(HAVE_PFTERM) +#if !defined(EXP_PFTERM) && !defined(USE_PFTERM) #define o_clear() output(clearbuf,clearbuflen) #define o_cleol() output(cleolbuf,cleolbuflen) @@ -701,7 +701,7 @@ void scr_restore(const screen_backup_t *old) redrawwin(); } -#endif // !defined(EXP_PFTERM) && !defined(HAVE_PFTERM) +#endif // !defined(EXP_PFTERM) && !defined(USE_PFTERM) /* vim:sw=4 */ |