(process_options): Show all register entries, even those with null

value, if -E is used.
This commit is contained in:
John Wiegley 2005-04-15 19:45:44 +00:00
parent c94210f5c5
commit a4d4c1af8b

View file

@ -203,7 +203,7 @@ void config_t::process_options(const std::string& command,
else if (command == "E") {
display_predicate = "t";
}
else if (command == "r") {
else if (command == "r" && ! show_empty) {
display_predicate = "a";
}
}