diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2008-07-01 15:42:36 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2008-07-01 15:42:36 +0000 |
commit | 6552be7f745c5a8d506148c8af9d367c9d996d24 (patch) | |
tree | b9d673871a1490b64273a265d4d961316a2174db /Build/source/texk/xdvik/browser.c | |
parent | 48e2b240973977c208bc840b589b75b91a6f4c30 (diff) |
xdvik 22.84.14
git-svn-id: svn://tug.org/texlive/trunk@9142 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/xdvik/browser.c')
-rw-r--r-- | Build/source/texk/xdvik/browser.c | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/Build/source/texk/xdvik/browser.c b/Build/source/texk/xdvik/browser.c index 4fbbe342c1d..59a1d227377 100644 --- a/Build/source/texk/xdvik/browser.c +++ b/Build/source/texk/xdvik/browser.c @@ -19,7 +19,7 @@ * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -*/ + */ #include "xdvi-config.h" #include "xdvi.h" @@ -39,9 +39,14 @@ #include "statusline.h" static const char *const default_browser_cmd = - "netscape -raise -remote \"openURL(%s,new-window)\"" - ":xterm -e lynx %s" - ":xterm -e wget %s"; +"xdg-open %s" +":htmlview %s" +":firefox -remote \"openURL(%s,new-window)\"" +":mozilla -remote \"openURL(%s,new-window)\"" +":netscape -remote \"openURL(%s,new-window)\"" +":xterm -e w3m %s" +":xterm -e lynx %s" +":xterm -e wget %s"; static Boolean do_fork_browser(char *argv[]) @@ -191,7 +196,7 @@ launch_browser(const char *filename) it would be better to have this in one function. */ my_child = xmalloc(sizeof *my_child); my_io = xmalloc(sizeof *my_io); - statusline_print(STATUS_MEDIUM, "Trying to launch browser ..."); + statusline_info(STATUS_MEDIUM, "Trying to launch browser ..."); /* flush output buffers to avoid double buffering (i.e. data waiting in the output buffer being written twice, by the parent and the child) */ @@ -257,6 +262,7 @@ launch_browser(const char *filename) #endif my_io->read_proc = read_child_error; my_io->write_proc = NULL; + my_io->data = NULL; my_child->next = NULL; my_child->pid = pid; @@ -266,7 +272,7 @@ launch_browser(const char *filename) my_child->io = my_io; set_chld(my_child); - statusline_print(STATUS_MEDIUM, "Trying to launch browser ... done."); + statusline_info(STATUS_MEDIUM, "Trying to launch browser ... done."); } } |