From: Timo Korvola Date: Sat, 10 Feb 2018 12:23:48 +0000 (+0200) Subject: Use // for commenting away. X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=10c61df3bab405d4554e0c59427fea6243522df0;p=liskon_frotz.git Use // for commenting away. Stops warnings about nested comments. Eventually the commented away declarations should be either implemented or dropped, but let's keep them in limbo for now. --- diff --git a/src/curses/ux_frotz.h b/src/curses/ux_frotz.h index a4a90e3..9834928 100644 --- a/src/curses/ux_frotz.h +++ b/src/curses/ux_frotz.h @@ -88,9 +88,9 @@ extern volatile sig_atomic_t terminal_resized; /*** Functions specific to the Unix port of Frotz ***/ bool unix_init_pictures(void); /* ux_pic.c */ -/* void unix_init_scrollback(void); /* ux_screen.c */ -/* void unix_save_screen(int); /* ux_screen.c */ -/* void unix_do_scrollback(void); /* ux_screen.c */ +// void unix_init_scrollback(void); /* ux_screen.c */ +// void unix_save_screen(int); /* ux_screen.c */ +// void unix_do_scrollback(void); /* ux_screen.c */ void unix_resize_display(void); /* ux_screen.c */ void unix_get_terminal_size(void); /* ux_init.c */