From 15966ccf340e12eddf9a7a64a07166d9f45e7cae Mon Sep 17 00:00:00 2001 From: Nick Briggs Date: Fri, 17 Nov 2023 09:46:22 -0800 Subject: [PATCH] If SUNDISPLAY is defined REALCURSOR will be defined so remove redundant defined(SUNDISPLAY) --- src/bbtsub.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bbtsub.c b/src/bbtsub.c index e32c901..af07f14 100644 --- a/src/bbtsub.c +++ b/src/bbtsub.c @@ -1799,7 +1799,7 @@ void tedit_bltchar(LispPTR *args) } /* end tedit_bltchar */ -#if defined(REALCURSOR) || defined(SUNDISPLAY) +#if defined(REALCURSOR) #ifndef COLOR /* Lisp addr hi-word, lo-word, ... */ static int old_cursorin(DLword addrhi, DLword addrlo, int x, int w, int h, int y, int backward) @@ -1866,4 +1866,4 @@ static int old_cursorin(DLword addrhi, DLword addrlo, int x, int w, int h, int y } /* COLOR case end */ } #endif /* COLOR */ -#endif /* defined(REALCURSOR) || defined(SUNDISPLAY) */ +#endif /* defined(REALCURSOR) */