summaryrefslogtreecommitdiff
path: root/scm
diff options
context:
space:
mode:
authorDavid Kastrup <dak@gnu.org>2013-03-16 15:45:36 +0100
committerDavid Kastrup <dak@gnu.org>2013-03-24 12:06:47 +0100
commitc5029f8fcc32c249d58c724565038003ccf5574e (patch)
treea5d0ef1293c359b14ca97c90c3d335b4892278da /scm
parentc5f7df91574f689166f3cc7f4ca170ef8909826b (diff)
Defuse some open parens starting lines in strings in define-music-types.scm
Those confuse Emacs' heuristics and make it harder to edit subsequent Scheme.
Diffstat (limited to 'scm')
-rw-r--r--scm/define-music-types.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/scm/define-music-types.scm b/scm/define-music-types.scm
index d816b269ce..6d40ce0f56 100644
--- a/scm/define-music-types.scm
+++ b/scm/define-music-types.scm
@@ -72,10 +72,10 @@ Syntax: @w{@var{note}@code{-\\arpeggio}}")
(ArticulationEvent
. ((description . "Add an articulation marking to a note.
-Syntax: @var{note}@code{x}@code{y}, where @code{x} is a direction
-(@code{^} for up or @code{_} for down), or LilyPond's choice
-(no direction specified), and where @code{y} is an articulation
-(such as @w{@code{-.}}, @w{@code{->}}, @code{\\tenuto}, @code{\\downbow}).
+Syntax: @var{note}@code{x}@code{y}, where @code{x} is a direction\
+\n(@code{^} for up or @code{_} for down), or LilyPond's choice\
+\n(no direction specified), and where @code{y} is an articulation\
+\n(such as @w{@code{-.}}, @w{@code{->}}, @code{\\tenuto}, @code{\\downbow}).
See the Notation Reference for details.")
(types . (general-music post-event event articulation-event script-event))
))