Lines Matching refs:path
123 static void exec_woman_emacs(const char *path, const char *page)
129 if (!path)
130 path = "emacsclient";
132 execlp(path, "emacsclient", "-e", man_page, NULL);
135 exec_failed(path);
139 static void exec_man_konqueror(const char *path, const char *page)
148 if (path) {
149 const char *file = strrchr(path, '/');
151 char *new = strdup(path);
156 path = new;
161 path = "kfmclient";
163 execlp(path, filename, "newTab", man_page, NULL);
166 exec_failed(path);
170 static void exec_man_man(const char *path, const char *page)
172 if (!path)
173 path = "man";
174 execlp(path, "man", page, NULL);
175 exec_failed(path);
221 pr_warning("'%s': path for unsupported man viewer.\n"
242 unsupported_man_viewer(name, "path");
259 if (!strcmp(subkey, ".path")) {
333 /* We should always put ':' after our path. If there is no
341 pr_err("Unable to setup man path");
408 static void open_html(const char *path)
410 execl_cmd("web--browse", "-c", "help.browser", path, NULL);