]> git.donarmstrong.com Git - lilypond.git/commitdiff
use @code tags.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Mon, 21 Jul 2003 11:08:22 +0000 (11:08 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Mon, 21 Jul 2003 11:08:22 +0000 (11:08 +0000)
ChangeLog
Documentation/index.texi
make/lilypond.redhat.spec.in
scm/document-translation.scm

index 6be8c82a408c7f55d2583bef1fd73623cd700853..0c2dc948bf4474102143a78d9f099832eb3dfde6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-07-21  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
+
+       * scm/document-translation.scm: use @code tags.
+
 2003-07-20  Heikki Junes  <hjunes@cc.hut.fi>
 
        * lilypond-font-lock.el: do not try to match two-char slurs \( \[.
 
 2003-07-20  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
+       * make/lilypond.redhat.spec.in (Group): don't strip binary.
+
+       * scm/document-translation.scm (document-property-operation): add
+       @code{} tags.
+
        * VERSION (PACKAGE_NAME): release 1.7.27
 
        * config.make.in: add PAPER variable
index 37eb3d6992b76884d42a506816c87307c10e13f9..4b2d4cd971446de9b641d2d45e400c87fcf507be 100644 (file)
@@ -58,9 +58,6 @@ familiar with English terms for notation.
 you want to fine-tune output, you need the information in this
 document.
 
-@item
- @uref{../../input/template/out-www/collated-files.html, Templates}, for
-different music styles.  Add notes, and done!
 
 @item
  @uref{../../input/template/out-www/collated-files.html, Templates}, for
index 91c1b10f709c709a07288963446ad6899295c64f..10c068a0ff74b9c037d1df8300b135af9eb1484e 100644 (file)
@@ -67,7 +67,6 @@ make -C Documentation/user omf
 rm -rf $RPM_BUILD_ROOT
 mkdir -p $RPM_BUILD_ROOT/tmp/lilypond-rpm-doc
 
-strip lily/out/lilypond 
 make prefix="$RPM_BUILD_ROOT%{_prefix}" infodir="$RPM_BUILD_ROOT%{_infodir}" MAKE_PFA_FILES=1 mandir="$RPM_BUILD_ROOT%{_mandir}" install
 
 %if %{info}
index 3dbc47da3ceff2d3b2a963d66abc90cc6f99634a..07aa6ea53d030a6ae8cd668462bea1b634f1ce1d 100644 (file)
         "Revert "
         "Set "
         )
-     "grob-property "
+     "grob-property @code{"
      (symbol->string (cadr body))
-     " in " (symbol->string sym)
+     "} in @ref{" (symbol->string sym)
+     "}"
      (if (not (null? (cddr body)))
-        (string-append " to " (scm->texi (cadr (cdr body))))
+        (string-append " to @code{" (scm->texi (cadr (cdr body))) "}" )
         )
     "\n"
      )
    ((equal? (object-property sym 'is-grob?) #t) "")
    ((equal? (car op) 'assign)
     (string-append
-     "@item Set translator property "
+     "@item Set translator property @code{"
      (symbol->string (car body))
-     " to "
+     "} to @code{"
      (scm->texi (cadr body))
-     "\n"
+     "}\n"
      )
      )
    )