Skip to content

Commit

Permalink
RML fix
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@20137 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Apr 14, 2014
1 parent c1eae01 commit dd13b0a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Compiler/FrontEnd/DAEDump.mo
Expand Up @@ -721,7 +721,9 @@ algorithm
String cmt;

case SOME(SCode.COMMENT(comment = SOME(cmt)))
then stringAppendList({" \"", System.escapedString(cmt,true), "\""});
equation
cmt = System.escapedString(cmt,true);
then stringAppendList({" \"", cmt, "\""});

else "";

Expand Down

0 comments on commit dd13b0a

Please sign in to comment.