From: Thomas Morgan Date: Fri, 15 Jan 2010 21:54:14 +0000 (+0000) Subject: Remove vertical extent from \hspace. X-Git-Tag: release/2.13.11-1~3 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=740705b836c49d61fe8dc8759192f66746a1c46b;p=lilypond.git Remove vertical extent from \hspace. --- diff --git a/scm/define-markup-commands.scm b/scm/define-markup-commands.scm index 789ae29f71..4a57944464 100644 --- a/scm/define-markup-commands.scm +++ b/scm/define-markup-commands.scm @@ -492,8 +492,8 @@ Create an invisible object taking up horizontal space @var{amount}. } @end lilypond" (if (> amount 0) - (ly:make-stencil "" (cons 0 amount) '(-1 . 1)) - (ly:make-stencil "" (cons amount amount) '(-1 . 1)))) + (ly:make-stencil "" (cons 0 amount) '(0 . 0)) + (ly:make-stencil "" (cons amount amount) '(0 . 0)))) ;; todo: fix negative space (define-markup-command (vspace layout props amount)