X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=xhistory.c;h=7bd3cb7c903e07d02a422ad345693aaf347704d5;hb=4103b43cdbc7412da6a2a95e0e1882a3872a2d12;hp=0d18bf288532ab042e31603d82cf9bd7014b5f61;hpb=c856b0337e03ec6ef848a1eae6f33c2071683133;p=xboard.git diff --git a/xhistory.c b/xhistory.c index 0d18bf2..7bd3cb7 100644 --- a/xhistory.c +++ b/xhistory.c @@ -63,7 +63,6 @@ void RefreshMemoContent P((void)); void MemoContentUpdated P((void)); void FindMoveByCharIndex P(( int char_index )); -void MoveHistorySet P(( char movelist[][2*MOVE_LEN], int first, int last, int current, ChessProgramStats_Move * pvInfo )); // variables in xoptions.c extern Option historyOptions[]; @@ -163,18 +162,3 @@ HistoryShowProc(w, event, prms, nprms) } else PopDown(7); ToNrEvent(currentMove); } - -// duplicate of code in winboard.c, so an move to back-end! -void EvalGraphSet P(( int first, int last, int current, ChessProgramStats_Move * pvInfo )); -void MakeEngineOutputTitle P(()); - -void -HistorySet( char movelist[][2*MOVE_LEN], int first, int last, int current ) -{ - MoveHistorySet( movelist, first, last, current, pvInfoList ); - - EvalGraphSet( first, last, current, pvInfoList ); - - MakeEngineOutputTitle(); -} -