Eliminate continues from GUI loop
authorH.G.Muller <hgm@hgm-xboard.(none)>
Sat, 8 Dec 2018 09:12:13 +0000 (10:12 +0100)
committerH.G.Muller <hgm@hgm-xboard.(none)>
Sat, 8 Dec 2018 09:15:34 +0000 (10:15 +0100)
commit4aeefd3c3c03994a5b477935cf4d8e6c73062a14
treef8e2a4dff928d23306a50ae5da445c156e64f896
parentb42dab5e4509f49d27d78747e16a151962a237e2
Eliminate continues from GUI loop

The 'continue' statements at the end of the code sections for handling
specific commands, which caused matching for the remaining commands after
it to be skipped, are now deleted, and the code to be skipped is placed
in an 'else' clause. This to make restructuring of the GUI loop easier.
  The 'continue' statements for 'easy' and 'hard' commands were left,
as these were harmless: it doesn't matter whether we call LaunchSearch()
after them or not.
UCI2WB.c