From: Han-Wen Nienhuys Date: Sat, 26 Feb 2005 12:29:40 +0000 (+0000) Subject: remove -m, --no-layout X-Git-Tag: release/2.5.14~88 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=3d237c36689f254418cb92351a1976a3fdd300ec;p=lilypond.git remove -m, --no-layout --- diff --git a/ChangeLog b/ChangeLog index c845d100cb..faa69bbab4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2005-02-26 Han-Wen Nienhuys + + * lily/main.cc: remove -m, --no-layout + + * flower/include/libc-extension.hh: add ALIAS_FILE_TO_FILECOOKIE + to define. We don't want to override fprintf everywhere. + 2005-02-26 Jan Nieuwenhuizen * cygwin/lilypond.hint: diff --git a/buildscripts/mf-to-table.py b/buildscripts/mf-to-table.py index c738e3bb3b..df6bca6fc7 100644 --- a/buildscripts/mf-to-table.py +++ b/buildscripts/mf-to-table.py @@ -208,14 +208,10 @@ r"""%% LilyPond file to list all font symbols and the corresponding names ## \musicglyph and \markup require "_" to be escaped ## differently scm_string = re.sub ('_', r'_', m['name']) - tex_string = re.sub ('_', r'\\_' , m['name']) - - ## prevent TeX from interpreting "--" as long dash - tex_string = re.sub ('--','-{}-', tex_string) file.write (''' \\markup { \\raise #0.75 \\vcenter \\musicglyph #"%s" - \\typewriter " %s" } 4\n''' % (scm_string, tex_string)) + \\typewriter " %s" } 4\n''' % (scm_string, scm_string)) if (count % per_line) == 0: file.write (' \\skip 8 \\break\n') diff --git a/lily/include/main.hh b/lily/include/main.hh index dfdd671c4d..f1ac6bc847 100644 --- a/lily/include/main.hh +++ b/lily/include/main.hh @@ -27,7 +27,6 @@ extern String init_name_global; /* options */ extern Array dump_header_fieldnames_global; -extern bool skip_layout_global; extern String output_backend_global; extern String output_name_global; extern bool be_safe_global; diff --git a/lily/main.cc b/lily/main.cc index e5b6ef1f7a..ce313b93d1 100644 --- a/lily/main.cc +++ b/lily/main.cc @@ -40,9 +40,6 @@ Array dump_header_fieldnames_global; /* Name of initialisation file. */ String init_name_global; -/* Do not calculate and write layout output? */ -bool skip_layout_global = false; - /* Selected output format. One of tex, ps, scm, as. */ @@ -131,7 +128,6 @@ static Long_option_init options_static[] = {_i ("FIELD"), "header", 'H', _i ("write header field to BASENAME.FIELD")}, {_i ("DIR"), "include", 'I', _i ("add DIR to search path")}, {_i ("FILE"), "init", 'i', _i ("use FILE as init file")}, - {0, "no-layout", 'm', _i ("produce MIDI output only")}, {_i ("FILE"), "output", 'o', _i ("write output to FILE (suffix will be added)")}, {0, "preview", 'p', _i ("generate a preview")}, {0, "no-pages", 0, _i ("don't generate full pages")}, @@ -412,9 +408,6 @@ parse_argv (int argc, char **argv) case 's': be_safe_global = true; break; - case 'm': - skip_layout_global = true; - break; case 'p': make_preview = true; break;