diff options
-rwxr-xr-x | Master/texmf/scripts/texlive/texdoc.tlu | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Master/texmf/scripts/texlive/texdoc.tlu b/Master/texmf/scripts/texlive/texdoc.tlu index 2a4d5ed53cc..e071959d848 100755 --- a/Master/texmf/scripts/texlive/texdoc.tlu +++ b/Master/texmf/scripts/texlive/texdoc.tlu @@ -326,12 +326,12 @@ function setup_config_from_defaults() -- probably Windows (or OS/2) -- which commands should we use for unzipping? set_config_list { - viewer_dvi = '(start /wait %s) &', - viewer_html = '(start /wait %s) &', - viewer_pdf = '(start /wait %s) &', - viewer_ps = '(start /wait %s) &', - viewer_txt = '(start /wait %s) &', - viewer_fallback='(start /wait %s) &' + viewer_dvi = 'start %s', + viewer_html = 'start %s', + viewer_pdf = 'start %s', + viewer_ps = 'start %s', + viewer_txt = 'start %s', + viewer_fallback='start %s' } else -- since we don't support msdos, if os.type is not windows, it's unix if (os.name == 'macosx') then |