# HG changeset patch # User Rik # Date 1331056114 28800 # Node ID b06010f12183c95ede145faff32892e8f7cf2e99 # Parent 6a8c3cd326fd07197fcb493d005276884c991f45 __print_parse_opts__.m: Use single quotes to simplify code. * __print_parse_opts__.m: Use single quotes to simplify code. diff --git a/scripts/plot/private/__print_parse_opts__.m b/scripts/plot/private/__print_parse_opts__.m --- a/scripts/plot/private/__print_parse_opts__.m +++ b/scripts/plot/private/__print_parse_opts__.m @@ -431,7 +431,7 @@ cmd = strrep (cmd, "/", "\\"); endif if (any (cmd == " ")) - cmd = strcat ("""", strrep (cmd, """", """"""), """"); + cmd = strcat ('"', strrep (cmd, '"', '""') ,'"'); endif endif endif