Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(522)

Delta Between Two Patch Sets: lily/lily-parser-scheme.cc

Issue 5595043: Reimplement ChordRepetition facility. (Closed)
Left Patch Set: Based on staging. Fix docs (not all related), add property doc. Created 13 years, 2 months ago
Right Patch Set: Incorporate DOC improvements from James with amendments. Created 13 years, 2 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « lily/lily-lexer.cc ('k') | lily/music-sequence.cc » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(Both sides are equal)
1 /* 1 /*
2 This file is part of LilyPond, the GNU music typesetter. 2 This file is part of LilyPond, the GNU music typesetter.
3 3
4 Copyright (C) 2005--2012 Han-Wen Nienhuys <hanwen@xs4all.nl> 4 Copyright (C) 2005--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
5 5
6 LilyPond is free software: you can redistribute it and/or modify 6 LilyPond is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by 7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or 8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version. 9 (at your option) any later version.
10 10
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 322
323 LY_DEFINE (ly_parser_has_error_p, "ly:parser-has-error?", 323 LY_DEFINE (ly_parser_has_error_p, "ly:parser-has-error?",
324 1, 0, 0, (SCM parser), 324 1, 0, 0, (SCM parser),
325 "Does @var{parser} have an error flag?") 325 "Does @var{parser} have an error flag?")
326 { 326 {
327 LY_ASSERT_SMOB (Lily_parser, parser, 1); 327 LY_ASSERT_SMOB (Lily_parser, parser, 1);
328 Lily_parser *p = unsmob_lily_parser (parser); 328 Lily_parser *p = unsmob_lily_parser (parser);
329 329
330 return scm_from_bool (p->error_level_ || p->lexer_->error_level_); 330 return scm_from_bool (p->error_level_ || p->lexer_->error_level_);
331 } 331 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b