Skip to content

Commit

Permalink
Print string list default values in Sphinx doc
Browse files Browse the repository at this point in the history
  • Loading branch information
sjoelund authored and OpenModelica-Hudson committed Aug 3, 2015
1 parent 16fa184 commit 42f521d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/Util/Flags.mo
Expand Up @@ -2432,7 +2432,7 @@ algorithm
case REAL_FLAG() then System.gettext("Real (default")+" ``" + realString(flag.data) + "``).";
case STRING_FLAG("") then System.gettext("String (default *empty*).");
case STRING_FLAG() then System.gettext("String (default")+" " + flag.data + ").";
case STRING_LIST_FLAG() then System.gettext("String list (default *empty*).");
case STRING_LIST_FLAG(data={}) then System.gettext("String list (default *empty*).");
case STRING_LIST_FLAG() then System.gettext("String list (default")+" " + stringDelimitList(flag.data, ",") + ").";
case ENUM_FLAG()
algorithm
Expand Down

0 comments on commit 42f521d

Please sign in to comment.