diff --git a/src/help/help.cpp b/src/help/help.cpp index f26d92ef74ab..4307ddfccf71 100644 --- a/src/help/help.cpp +++ b/src/help/help.cpp @@ -235,9 +235,12 @@ void show_help(const section &toplevel_sec, } } catch (parse_error& e) { + // Disabled due to issue #2587 +#if 0 std::stringstream msg; msg << _("Parse error when parsing help text: ") << "'" << e.message << "'"; gui2::show_transient_message("", msg.str()); +#endif } }