chiark / gitweb /
Improve playlists section of disobedience manual
[disorder] / disobedience / help.c
index 94086545af95b829d12ab08e34240a83950fbbdb..5ebe457c464a80cfdac7dc081d85ef24746f490d 100644 (file)
@@ -29,12 +29,12 @@ void popup_help(void) {
   pid_t pid;
   int w;
 
-  byte_xasprintf(&path, "%s/disobedience.html", pkgdatadir);
+  byte_xasprintf(&path, "%s/index.html", dochtmldir);
   if(!(pid = xfork())) {
     exitfn = _exit;
     if(!xfork()) {
       execlp(browser, browser, path, (char *)0);
-      fatal(errno, "error executing %s", browser);
+      disorder_fatal(errno, "error executing %s", browser);
     }
     _exit(0);
   }