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
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
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
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