2002-08-18 Jan Nieuwenhuizen <janneke@gnu.org>
+ * lily/parser.yy (assignment, Simple_music): Warning message fix.
+ Junk ARRAY_SIZE definition.
+
* lily/score-engraver.cc: Uniformise error message.
* lily/grob-property.cc (internal_set_grob_property,
((My_lily_parser *) my_lily_parser)
#define yyerror THIS->parser_error
-#define ARRAY_SIZE(a,s) if (a.size () != s) THIS->parser_error (_f ("Expecting %d arguments", s))
%}
if (! regular_identifier_b ($1))
{
- ip.warning (_ ("Identifier should have alphabetic characters only"));
+ ip.warning (_ ("Identifier should have alphabetic characters only"));
}
THIS->lexer_->set_identifier ($1, $4);
{
THIS->parser_error (_ ("Second argument must be a symbol"));
}
- /*hould check # args */
+ /* Should check # args */
if (!gh_procedure_p (pred))
{
- THIS->parser_error (_ ("First argument must be a procedure taking 1 argument"));
+ THIS->parser_error (_ ("First argument must be a procedure taking one argument"));
}
Music *m = new Music (SCM_EOL);
/* We don't care about the extensible table. */
if (header_length < 2)
+ /* Not using ngettext's plural feature here, as this message is
+ more of a programming error. */
error (_f ("TFM header of `%s' has only %u word (s)",
input_.name_string ().to_str0 (), header_length));
tex_extension = '.tex'
pdftex_p = 0
-help_summary = _ ("Generate .dvi with LaTeX for LilyPond")
+help_summary = _ ("Run LilyPond using LaTeX for titling")
option_definitions = [
('', 'd', 'dependencies', _ ("write Makefile dependencies for every input file")),
('', 'm', 'no-paper', _ ("produce MIDI output only")),
(_ ("FILE"), 'o', 'output', _ ("write ouput to FILE")),
(_ ("FILE"), 'f', 'find-pfa', _ ("find pfa fonts used in FILE")),
- # why capital P?
- ('', '', 'preview', _("Make a picture of the first system.")),
- (_ ('RES'), '', 'preview-resolution', _("Set the resolution of the preview to RES.")),
+ # FIXME: preview, picture; to indicate creation of a PNG?
+ ('', '', 'preview', _("make a picture of the first system.")),
+ (_ ('RES'), '', 'preview-resolution', _("set the resolution of the preview to RES.")),
('', 'P', 'postscript', _ ("generate PostScript output")),
('', 'p', 'pdf', _ ("generate PDF output")),
(_ ("KEY=VAL"), 's', 'set', _ ("change global setting KEY to VAL")),