From 10c61df3bab405d4554e0c59427fea6243522df0 Mon Sep 17 00:00:00 2001 From: Timo Korvola Date: Sat, 10 Feb 2018 14:23:48 +0200 Subject: [PATCH] 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. --- src/curses/ux_frotz.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 */ -- 2.34.1