fix a non-curses build issue

This commit is contained in:
Bill Currie 2003-06-04 18:07:12 +00:00
parent 5e6ae08337
commit 4cabc2db82
1 changed files with 8 additions and 8 deletions

View File

@ -118,14 +118,6 @@ static const byte attr_map[256] = {
};
static void
C_ExecLine (const char *line)
{
if (line[0] == '/')
line++;
Cbuf_AddText (con_data.cbuf, line);
}
static inline void
draw_fun_char (WINDOW *win, byte c)
{
@ -227,6 +219,14 @@ sigwinch (int sig)
}
#endif
static void
C_ExecLine (const char *line)
{
if (line[0] == '/')
line++;
Cbuf_AddText (con_data.cbuf, line);
}
static void
sv_logfile_f (cvar_t *var)
{