<p>In <a href="https://github.com/geany/geany/pull/937#discussion_r55140293">src/win32.c</a>:</p>
<pre style='color:#555'>> @@ -794,7 +795,14 @@ void win32_open_browser(const gchar *uri)
>                            uri++;
>            }
>    }
> -  ShellExecute(NULL, "open", uri, NULL, NULL, SW_SHOWNORMAL);
> +  ret = (gint) ShellExecute(NULL, "open", uri, NULL, NULL, SW_SHOWNORMAL);
> +  if (ret <= 32)
> +  {
> +          gchar *err = g_win32_error_message(GetLastError());
> +          /* TODO add a GUI warning that opening an URI failed */
> +          g_warning("ShellExecute failed opening \"%s\" (code %d): %s", uri, ret, err);
</pre>
<p>I would add it later, we could live without any error message until now, so it's not a blocker or so :). Maybe I'll add some GUI stuff before 1.27 but only if time permits and after all the rest is sorted out.<br>
If not, I'll add it after 1.27 but more than two weeks before 1.28 :).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br>Reply to this email directly or <a href="https://github.com/geany/geany/pull/937/files#r55140293">view it on GitHub</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/ABDrJ2SxrFh0ZdkejAa9QOj2xmbYND2gks5pquS0gaJpZM4HqOSA.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/geany/geany/pull/937/files#r55140293"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>