<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
I have two text modifiers in there now...  :nopos gives lilypond a "-"
followed by the markup command and :detach gives lilypond a " " (which
only works if you override the lilypond's text-outs...  like
*lilypond-texttempo-markup*)  I'll give it another test and send it to
svn in a little bit<br>
<br>
-David<br>
<br>
<a class="moz-txt-link-abbreviated" href="mailto:andersvi@extern.uio.no">andersvi@extern.uio.no</a> wrote:
<blockquote cite="mid:copejfrblig.fsf@extern.uio.no" type="cite">
  <blockquote type="cite">
    <blockquote type="cite">
      <blockquote type="cite">
        <blockquote type="cite">
          <blockquote type="cite">
            <pre wrap="">"p" == padovani  <a class="moz-txt-link-rfc2396E" href="mailto:josepadovani@yahoo.com.br"><josepadovani@yahoo.com.br></a> writes:
            </pre>
          </blockquote>
        </blockquote>
      </blockquote>
    </blockquote>
  </blockquote>
  <pre wrap=""><!---->
    p> I have two questions...
    p> 1. What  is - or where is defined - the function "xxx" - from (xxx di
    p> str) ... it should get the values ":up" or ":down", right?

The (xxx di str) inside the loop clause is a "destructuring pattern" -
meaning here that the 3 variables xxx, di & str will get their values
from the subsequent expression.

(loop repeat 1 for (a b c) = '(1 2 3)
      collect (+ a b c))

=> 6     


    p> 2. I tried to create a third - empty - direction, ":justplace", to
    p> place whatever texts I wanted...
    p> (ecase di (:up "^") (:down "_") (:justplace nil)) ....
    p> Then I have recompiled fomus but it doesn't work... Why? Should I
    p> define it in other places? Where?

What do you want to do?  Putting nil in there does nothing.  Ie:

(conc-strings "hi" "ho")
=> "hiho"
(conc-strings nil "ho")    
=> "ho"

You'll also have to add your mark to various places to make fomus
beleive you're not mistyping, ie in +notemark-type+ and possibly other
places.
_______________________________________________
fomus-devel mailing list
<a class="moz-txt-link-abbreviated" href="mailto:fomus-devel@common-lisp.net">fomus-devel@common-lisp.net</a>
<a class="moz-txt-link-freetext" href="http://common-lisp.net/cgi-bin/mailman/listinfo/fomus-devel">http://common-lisp.net/cgi-bin/mailman/listinfo/fomus-devel</a>

  </pre>
</blockquote>
</body>
</html>