From 5a760cb1b2481e8dce7cb31504eb26cd908edfc9 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 19 Sep 2011 20:14:43 -0400 Subject: [PATCH] Command: tags - CmdTags was missing one special tag. --- src/commands/CmdTags.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/commands/CmdTags.cpp b/src/commands/CmdTags.cpp index 1e1208bd6..b8acf9d4b 100644 --- a/src/commands/CmdTags.cpp +++ b/src/commands/CmdTags.cpp @@ -105,6 +105,7 @@ int CmdTags::execute (std::string& output) special = (context.color () && (i->first == "nocolor" || i->first == "nonag" || + i->first == "nocal" || i->first == "next")) ? true : false; int row = view.addRow (); @@ -185,8 +186,6 @@ int CmdCompletionTags::execute (std::string& output) unique["nonag"] = 0; unique["nocal"] = 0; unique["next"] = 0; - unique["stall"] = 0; - unique["someday"] = 0; std::stringstream out; std::map ::iterator it;