1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-05-05 15:54:21 +00:00

Fix sunwindow include ifdefery on vmemsave.c. (#236)

The cursor management code is `#ifdef` `SUNDISPLAY` and
`OLD_CURSOR`, not `NOPIXRECT`, so do the same for the
header include.
This commit is contained in:
Bruce Mitchener
2021-01-19 13:11:42 +07:00
committed by GitHub
parent 7549c746eb
commit c4e4c5ec5b

View File

@@ -36,9 +36,9 @@
#define alarm(x) 1 #define alarm(x) 1
#endif /* DOS */ #endif /* DOS */
#ifndef NOPIXRECT #if defined(SUNDISPLAY) && defined(OLD_CURSOR)
#include <sunwindow/win_cursor.h> #include <sunwindow/win_cursor.h>
#endif /* NOPIXRECT */ #endif
#include "hdw_conf.h" #include "hdw_conf.h"
#include "lispemul.h" #include "lispemul.h"