Skip to content

Commit

Permalink
webbrowser: fix 'start for pc (no quotes support)
Browse files Browse the repository at this point in the history
  • Loading branch information
farhi committed Oct 23, 2018
1 parent 755ffc4 commit 7550dfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Applications/webbrowser/webbrowser.m
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
elseif isunix, precmd = 'LD_LIBRARY_PATH= ; ';
else precmd=''; end
if ispc
ret=system([ precmd 'start "' url '"']);
ret=system([ precmd 'start ' url ]);
elseif ismac
ret=system([ precmd 'open "' url '"']);
else
Expand Down

0 comments on commit 7550dfa

Please sign in to comment.