mu: tidy up commands
Fix some typos, small errors, debug leftovers. Removed unused mu-cmd-count.cc. Improve test-coverage. Fix manpage. Make the errors for unknown commands a little friendlier.
This commit is contained in:
@ -184,7 +184,8 @@ Mu::mu_cmd_server(const Mu::Options& opts) try {
|
||||
if (line.find_first_not_of(" \t") == std::string::npos)
|
||||
continue; // skip whitespace-only lines
|
||||
|
||||
do_quit = server.invoke(line) ? false : true;
|
||||
if (!server.invoke(line))
|
||||
do_quit = true;
|
||||
save_line(line);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user