diff options
author | David Kastrup <dak@gnu.org> | 2015-09-16 21:43:50 +0200 |
---|---|---|
committer | David Kastrup <dak@gnu.org> | 2015-09-23 14:54:34 +0200 |
commit | 65a11dcd2f9e8d8535afae6a5844599e3a22e2aa (patch) | |
tree | f2abb46c3c69ca10ee00baf13ecc3e1d16e476e6 /input | |
parent | 6ea18ce2f407ee754947a4fa18596bb38c8087f5 (diff) |
Issue 4611: Don't give RepeatTieColumn a `cause' event
Rationale: the cause is used for point-and-click information and for
stuff like \parenthesize, and a RepeatTieColumn does not have metrics
that would be useful for that. In particular, this causes code like
{ c'1-\parenthesize\repeatTie }
to compile without spurious parens and error messages.
Diffstat (limited to 'input')
-rw-r--r-- | input/regression/repeat-tie-parenthesize.ly | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/input/regression/repeat-tie-parenthesize.ly b/input/regression/repeat-tie-parenthesize.ly new file mode 100644 index 0000000000..1d71c47694 --- /dev/null +++ b/input/regression/repeat-tie-parenthesize.ly @@ -0,0 +1,11 @@ +\version "2.19.28" + +\header { + texidoc = "A @code{\\repeatTie} may be parenthesized." +} + +\layout { + ragged-right = ##t +} + +{ c'1-\parenthesize \repeatTie } |