diff options
author | okan | 2015-08-21 16:05:55 +0000 |
---|---|---|
committer | okan | 2015-08-21 16:05:55 +0000 |
commit | 8f9cade79c80625750ce285f4715c52c9e646f72 (patch) | |
tree | cd019a3ad03f71891c3aa20690fcd92e5e22750a /search.c | |
parent | fc54489831cb2a1eb5b065831e25c6b9eb35fefe (diff) | |
download | cwm-8f9cade79c80625750ce285f4715c52c9e646f72.tar.gz |
Instead of special casing the 'term' and 'lock' commands, go back to
keeping them hidden; showing them has apparently caused confusion/angst.
Diffstat (limited to 'search.c')
-rw-r--r-- | search.c | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: search.c,v 1.49 2015/07/12 14:31:47 okan Exp $ + * $OpenBSD: search.c,v 1.50 2015/08/21 16:05:55 okan Exp $ */ #include <sys/types.h> @@ -127,14 +127,8 @@ void search_print_cmd(struct menu *mi, int i) { struct cmd *cmd = (struct cmd *)mi->ctx; - int special = 0; - if ((strcmp(cmd->name, "lock") == 0) || - (strcmp(cmd->name, "term") == 0)) - special = 1; - - (void)snprintf(mi->print, sizeof(mi->print), - (special) ? "[%s]" : "%s", cmd->name); + (void)snprintf(mi->print, sizeof(mi->print), "%s", cmd->name); } void |