Steffen Prohaska <prohaska@xxxxxx> writes: > diff --git a/compat/mingw.c b/compat/mingw.c > index 3a05fe7..0ca73f7 100644 > --- a/compat/mingw.c > +++ b/compat/mingw.c > @@ -1017,3 +1017,24 @@ sig_handler_t mingw_signal(int sig, sig_handler_t handler) > ... > +void mingw_open_html(const char *unixpath) > +{ > + const char *htmlpath = make_backslash_path(unixpath); > + printf("Launching default browser to display HTML ...\n"); > + ShellExecute(NULL, "open", htmlpath, NULL, "\\", 0); > +} Do you mean to have that printf() or is it a leftover debugging statement? -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html