As part of the fix to truncate the command in non-8bit, watch had
the function for output_header changed (much for scope cleanliness
and cohesiveness than anything; so I'm going to blame Meyer)...
Anyhow the 8bit enabled version did not have that update which
meant watch failed to compile. Thanks to @asavah for issue #37
and the patch.
References:
commit
5a40c7970d8185fcf322575de9fed69d4cdedd93
if (show_title)
#ifdef WITH_WATCH8BIT
- output_header(wcommand, wcommand_columns, wcommand_characters, interval);
+ output_header(wcommand, wcommand_characters, interval);
#else
output_header(command, interval);
#endif /* WITH_WATCH8BIT */