Re: Adds a glyph for tied lyrics. (issue 4808074)

2011-08-14 Thread bordage . bertrand
Pushed as 8d148ea05fa4b34f8cc3407e112363d715b27ad8 Bertrand http://codereview.appspot.com/4808074/ ___ lilypond-devel mailing list lilypond-devel@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-devel

Re: Adds a glyph for tied lyrics. (issue 4808074)

2011-08-14 Thread bordage . bertrand
use separate binding for (/ word-space 2) Done. http://codereview.appspot.com/4808074/ ___ lilypond-devel mailing list lilypond-devel@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-devel

Re: Adds a glyph for tied lyrics. (issue 4808074)

2011-08-13 Thread n . puttock
LGTM. http://codereview.appspot.com/4808074/diff/7001/scm/define-markup-commands.scm File scm/define-markup-commands.scm (right): http://codereview.appspot.com/4808074/diff/7001/scm/define-markup-commands.scm#newcode943 scm/define-markup-commands.scm:943: (tie-str (markup #:hspace (/ word-space

Re: Adds a glyph for tied lyrics. (issue 4808074)

2011-08-13 Thread bordage . bertrand
Here's how a better solution should work: * create a smaller tie in addition to this one * use a scm regexp to find this special case; something like: #(use-modules (ice-9 regex)) #(display (regexp-substitute #f (string-match "([^:])~([^:])~([^:])" "questa~รจ~in") 'pre 1 " " 2 " " 3 'post)) But I