From: Han-Wen Nienhuys Date: Mon, 29 Sep 2003 12:08:09 +0000 (+0000) Subject: (run_dvips): use -Ppdf for preview. X-Git-Tag: branch_2_0 X-Git-Url: https://git.donarmstrong.com/lilypond.git?a=commitdiff_plain;h=1452369a8cf233c8d1954b4b8635fa3a00e4841f;p=lilypond.git (run_dvips): use -Ppdf for preview. --- diff --git a/ChangeLog b/ChangeLog index 46178d02e2..501ca6080d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2003-09-29 Han-Wen Nienhuys + * scripts/lilypond.py (run_dvips): use -Ppdf for preview. + + * VERSION: release 2.0.1 + * lily/bezier.cc (get_other_coordinate): change assert into warning. diff --git a/scripts/lilypond.py b/scripts/lilypond.py index 100036abcd..20270944b1 100644 --- a/scripts/lilypond.py +++ b/scripts/lilypond.py @@ -585,7 +585,7 @@ Using bitmap fonts instead. This will look bad.''')) if preview_p: for score in find_tex_files (files, extra): preview_base = ly.strip_extension (score[0], '.tex') - cmd = 'dvips -E -o%s %s' \ + cmd = 'dvips -E -Ppdf -u+lilypond.map -o%s %s' \ % (preview_base + '.preview.ps', preview_base + '.preview.dvi') ly.system (cmd)