Unbreak LINT.

This commit is contained in:
Kazutaka YOKOTA 2000-04-03 09:24:16 +00:00
parent 6288517674
commit c2c86c2b88
2 changed files with 5 additions and 1 deletions

View File

@ -2764,7 +2764,7 @@ static scr_stat
if (sc_init_emulator(scp, SC_DFLT_TERM))
sc_init_emulator(scp, "*");
#ifndef SC_NO_SYSMOUSE
#ifndef SC_NO_CUTPASTE
if (ISMOUSEAVAIL(sc->adp->va_flags))
sc_alloc_cut_buffer(scp, TRUE);
#endif

View File

@ -549,8 +549,12 @@ void sc_remove_cutmarking(scr_stat *scp);
void sc_remove_all_cutmarkings(sc_softc_t *scp);
void sc_remove_all_mouse(sc_softc_t *scp);
#else
#define sc_draw_mouse_image(scp)
#define sc_remove_mouse_image(scp)
#define sc_inside_cutmark(scp, pos) FALSE
#define sc_remove_cutmarking(scp)
#define sc_remove_all_cutmarkings(scp)
#define sc_remove_all_mouse(scp)
#endif /* SC_NO_CUTPASTE */
#ifndef SC_NO_SYSMOUSE
void sc_mouse_move(scr_stat *scp, int x, int y);