1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-14 23:46:14 +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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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