From de2b0d1ae8dfedf235b42c50566e15c149f77d31 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Sun, 26 Aug 2018 02:36:28 -0700 Subject: [PATCH] Remove some #if 0 code --- src/highlight.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/highlight.cpp b/src/highlight.cpp index 5bf286422..abbc3df50 100644 --- a/src/highlight.cpp +++ b/src/highlight.cpp @@ -1021,12 +1021,6 @@ const highlighter_t::color_array_t &highlighter_t::highlight() { // Start out at zero. std::fill(this->color_array.begin(), this->color_array.end(), 0); -#if 0 - // Disabled for the 2.2.0 release: https://github.com/fish-shell/fish-shell/issues/1809. - const wcstring dump = parse_dump_tree(parse_tree, buff); - fwprintf(stderr, L"%ls\n", dump.c_str()); -#endif - // Walk the node tree. for (const parse_node_t &node : parse_tree) { switch (node.type) {