From ae32855b4fb13c275d60eaaab0ca5eacf8132b1b Mon Sep 17 00:00:00 2001 From: hanwen Date: Mon, 21 Jul 2003 11:08:22 +0000 Subject: [PATCH] use @code tags. --- ChangeLog | 9 +++++++++ Documentation/index.texi | 3 --- make/lilypond.redhat.spec.in | 1 - scm/document-translation.scm | 13 +++++++------ 4 files changed, 16 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6be8c82a40..0c2dc948bf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-07-21 Han-Wen Nienhuys + + * scm/document-translation.scm: use @code tags. + 2003-07-20 Heikki Junes * lilypond-font-lock.el: do not try to match two-char slurs \( \[. @@ -12,6 +16,11 @@ 2003-07-20 Han-Wen Nienhuys + * 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 diff --git a/Documentation/index.texi b/Documentation/index.texi index 37eb3d6992..4b2d4cd971 100644 --- a/Documentation/index.texi +++ b/Documentation/index.texi @@ -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 diff --git a/make/lilypond.redhat.spec.in b/make/lilypond.redhat.spec.in index 91c1b10f70..10c068a0ff 100644 --- a/make/lilypond.redhat.spec.in +++ b/make/lilypond.redhat.spec.in @@ -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} diff --git a/scm/document-translation.scm b/scm/document-translation.scm index 3dbc47da3c..07aa6ea53d 100644 --- a/scm/document-translation.scm +++ b/scm/document-translation.scm @@ -143,11 +143,12 @@ "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" ) @@ -156,11 +157,11 @@ ((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" ) ) ) -- 2.11.4.GIT