]> git.donarmstrong.com Git - lilypond.git/log
lilypond.git
14 years agoVim syntax: set current_syntax to `lilypond'.
Patrick McCarty [Mon, 31 Aug 2009 04:08:09 +0000 (21:08 -0700)]
Vim syntax: set current_syntax to `lilypond'.

14 years agoDoc: workaround weird bug in macros and/or texi2html.
Graham Percival [Mon, 31 Aug 2009 01:40:59 +0000 (02:40 +0100)]
Doc: workaround weird bug in macros and/or texi2html.

14 years agolily-library.scm: add `interval-intersection' procedure
Patrick McCarty [Mon, 31 Aug 2009 01:34:38 +0000 (18:34 -0700)]
lily-library.scm: add `interval-intersection' procedure

14 years agoDocs: CG: add URL for git man pages
Patrick McCarty [Mon, 31 Aug 2009 01:26:32 +0000 (18:26 -0700)]
Docs: CG: add URL for git man pages

14 years agoDoc: clarify early Learning.
Graham Percival [Mon, 31 Aug 2009 01:18:49 +0000 (02:18 +0100)]
Doc: clarify early Learning.

14 years agoDoc: CG: make central location for other git docs.
Graham Percival [Mon, 31 Aug 2009 01:04:25 +0000 (02:04 +0100)]
Doc: CG: make central location for other git docs.

14 years agoSVG backend: robustify glyph-matching regexp
Patrick McCarty [Sun, 30 Aug 2009 00:37:18 +0000 (17:37 -0700)]
SVG backend: robustify glyph-matching regexp

Use the [:space:] POSIX character class instead of [\r\n\t ]; it is more
legible, and it also accounts for formfeeds and vertical tabs too.

14 years agoClean up indentation.
Patrick McCarty [Sun, 30 Aug 2009 00:12:21 +0000 (17:12 -0700)]
Clean up indentation.

14 years agoUse our own ~s ly:format placeholder, since guile is broken with wide chars
Reinhold Kainhofer [Thu, 20 Aug 2009 09:54:20 +0000 (11:54 +0200)]
Use our own ~s ly:format placeholder, since guile is broken with wide chars

We need our own ~S format placeholder to escape quotes, so use
lilypond's string formating to make wide utf-8 chars work in filenames

Guile seems unable to handle wide characters, so we mustn't use
simple-format or format, because that will break with non-ANSI characters
(char code > 255). Instead, Implement our own ~S placeholder, that
wraps the string in double quotes and escapes backslashes, double
quotes, percent and dollar signs.

Use this format placeholder to generate the proper cmd line args
for our calls to gs.

14 years agoImplement framework for post-fix text (de)cresc spanners (backend only)
Reinhold Kainhofer [Fri, 21 Aug 2009 22:47:41 +0000 (00:47 +0200)]
Implement framework for post-fix text (de)cresc spanners (backend only)

The main problem why \decr or \dim were prefix operators was that the
new dynamic engraver was reading only the properties of the Engraver
itself, so there was no way to create a CrescendoEvent and at the same
time specify the hairpin/text behavior.

This patch makes the New_dynamic_engraver also look at the properties
of the (Dec|C)recendoEvent and prefer a setting from there. If the event
does not have a property (which will be the case most of the time), the
Engraver's settings are used (i.e. same behavior as now).

With this change, e.g. \dim can be defined as
dim = #(make-music 'DecrescendoEvent 'span-direction START
            'span-type text 'span-text "dim.")
and used as postfix like a4\dim without the need of any overrides
before the affected note.

This is just the backend commit, implementing processing of the event's
properties. The definition of \cresc is still unchanged, leaving the old
prefix notation in place, until we find  good upgrade path.

Also add regtests for text cresc spanners and add the regtest to the
snippets.

14 years agoFix to issue 714 and 404 user defined output filenames
Ian Hulin [Sat, 29 Aug 2009 16:30:50 +0000 (10:30 -0600)]
Fix to issue 714 and 404 user defined output filenames

14 years agoFix glyph bounding box for the snappizzicato
Reinhold Kainhofer [Sat, 29 Aug 2009 15:49:26 +0000 (17:49 +0200)]
Fix glyph bounding box for the snappizzicato

14 years agoDoc: misc updates to main doc pages.
Graham Percival [Sat, 29 Aug 2009 07:09:19 +0000 (08:09 +0100)]
Doc: misc updates to main doc pages.

14 years agoFix error message for instrumentSwitch when instrument has not been defined
Reinhold Kainhofer [Fri, 28 Aug 2009 20:11:43 +0000 (22:11 +0200)]
Fix error message for instrumentSwitch when instrument has not been defined

14 years agoWeb: minor small fixes to text.
Graham Percival [Fri, 28 Aug 2009 04:54:02 +0000 (05:54 +0100)]
Web: minor small fixes to text.

14 years agoWeb: use @rchangesnamed on Manual->Changes page.
Graham Percival [Fri, 28 Aug 2009 04:35:18 +0000 (05:35 +0100)]
Web: use @rchangesnamed on Manual->Changes page.

14 years agoDoc: add @rchanges + @rchangesnamed macro for Changes manual.
Graham Percival [Fri, 28 Aug 2009 04:31:38 +0000 (05:31 +0100)]
Doc: add @rchanges + @rchangesnamed macro for Changes manual.

14 years agoWeb: prettify FAQ.
Graham Percival [Fri, 28 Aug 2009 04:28:30 +0000 (05:28 +0100)]
Web: prettify FAQ.

14 years agoWeb: add intros/links for most manuals.
Graham Percival [Fri, 28 Aug 2009 04:15:31 +0000 (05:15 +0100)]
Web: add intros/links for most manuals.

14 years agoconfigure: Match one PFB font if duplicates are found
Patrick McCarty [Fri, 28 Aug 2009 00:21:17 +0000 (17:21 -0700)]
configure: Match one PFB font if duplicates are found

If fc-list finds more than one identical PFB font, we only want to match
one of them.  This case is probably rare, but we should be defensive
anyway.

14 years agoFix `make install', and fix #812
Patrick McCarty [Thu, 27 Aug 2009 21:17:55 +0000 (14:17 -0700)]
Fix `make install', and fix #812

14 years agoWeb: update gradients on second-layer TOC, thanks Patrick Schmidt.
Graham Percival [Thu, 27 Aug 2009 17:32:21 +0000 (18:32 +0100)]
Web: update gradients on second-layer TOC, thanks Patrick Schmidt.

14 years agoFormatting.
Werner Lemberg [Thu, 27 Aug 2009 15:02:27 +0000 (17:02 +0200)]
Formatting.

14 years agoImplement breve with double vertical lines on each side
Reinhold Kainhofer [Mon, 24 Aug 2009 13:58:35 +0000 (15:58 +0200)]
Implement breve with double vertical lines on each side

Also add an 'altdefault note-head style, which differs from default only in
that it uses the double-lined version of the breve.

14 years ago[config] Use fc-list.
Werner Lemberg [Thu, 27 Aug 2009 13:33:19 +0000 (15:33 +0200)]
[config] Use fc-list.

In case there are different Century fonts available on the system (for
example, in both PFB and OTF format), fc-match only lists the first match
which can be the non-PFB one, while fc-list lists them all.

14 years agoShift the BoundingBox to the origin in \epsfile
Reinhold Kainhofer [Tue, 25 Aug 2009 22:13:53 +0000 (00:13 +0200)]
Shift the BoundingBox to the origin in \epsfile

Some files (e.g. the CC licenses have weird bounding boxes, starting
e.g. at 300). So far, lilypond inserted them with a huge offset (exactly
shifted by the coordinates of the bounding box), which is unlike any other
eps-handling application I know.

14 years agoUpdate texinfo.tex.
Werner Lemberg [Thu, 27 Aug 2009 07:24:02 +0000 (09:24 +0200)]
Update texinfo.tex.

14 years agolily-library.scm: Remove duplicate bindings
Patrick McCarty [Thu, 27 Aug 2009 05:31:31 +0000 (22:31 -0700)]
lily-library.scm: Remove duplicate bindings

14 years agoMove ambitus print callback to scheme.
Neil Puttock [Wed, 26 Aug 2009 20:11:36 +0000 (21:11 +0100)]
Move ambitus print callback to scheme.

* implement ambitus::print callback in output-lib.scm

* add interface description to define-grob-interfaces.scm

* allow user override of padding using grob property 'gap

* remove 'join-heads

* remove ambitus.cc/.hh

* tidy ambitus-engraver.cc

* add regression test for 'gap

* add convert rule for ly:ambitus::print

14 years agoMerge branch 'master' of ssh+git://git.sv.gnu.org/srv/git/lilypond
Werner Lemberg [Tue, 25 Aug 2009 23:07:09 +0000 (01:07 +0200)]
Merge branch 'master' of ssh+git://git.sv.gnu.org/srv/git/lilypond

14 years agoDocs: LM 3.1.4 review
Trevor Daniels [Tue, 25 Aug 2009 21:43:18 +0000 (22:43 +0100)]
Docs: LM 3.1.4 review

14 years ago[feta] Fix shape of snappizzicato.
Werner Lemberg [Tue, 25 Aug 2009 20:03:45 +0000 (22:03 +0200)]
[feta] Fix shape of snappizzicato.

14 years agoDocs: NR 5.1.6: add index entries
Trevor Daniels [Tue, 25 Aug 2009 19:28:47 +0000 (20:28 +0100)]
Docs: NR 5.1.6: add index entries

14 years agoMerge branch 'master' of ssh+git://git.sv.gnu.org/srv/git/lilypond
Werner Lemberg [Tue, 25 Aug 2009 06:54:42 +0000 (08:54 +0200)]
Merge branch 'master' of ssh+git://git.sv.gnu.org/srv/git/lilypond

14 years ago[configure]: Reject OTF versions from Century fonts too.
Werner Lemberg [Tue, 25 Aug 2009 06:53:39 +0000 (08:53 +0200)]
[configure]: Reject OTF versions from Century fonts too.

14 years agoWeb: add links to Essay.
Graham Percival [Tue, 25 Aug 2009 06:28:09 +0000 (07:28 +0100)]
Web: add links to Essay.

14 years agoEssay: indent pictures with @quotation.
Graham Percival [Tue, 25 Aug 2009 06:27:52 +0000 (07:27 +0100)]
Essay: indent pictures with @quotation.

14 years agoDoc build: remove some false idiosyncracities.
Graham Percival [Tue, 25 Aug 2009 06:07:28 +0000 (07:07 +0100)]
Doc build: remove some false idiosyncracities.

The essay should be built just like any other documentation, and
we do want general as one-big-page.html.  (the question came up on
-devel in July, and at least two people were horrified at the
notion that we weren't planning on making a big-page version.
*shrug* )

14 years agoEssay: minor build-related fixes.
Graham Percival [Tue, 25 Aug 2009 05:54:44 +0000 (06:54 +0100)]
Essay: minor build-related fixes.

14 years agoDoc build: add new pdf/ dir to tarball.
Graham Percival [Tue, 25 Aug 2009 04:51:26 +0000 (05:51 +0100)]
Doc build: add new pdf/ dir to tarball.

14 years agoEssay: fix menus.
Graham Percival [Tue, 25 Aug 2009 04:24:19 +0000 (05:24 +0100)]
Essay: fix menus.

14 years agoDoc: started work on new essay
Andrew Hawryluk [Tue, 25 Aug 2009 03:58:42 +0000 (21:58 -0600)]
Doc: started work on new essay

14 years agoDoc: added font comparison images of Opus/Feta
Andrew Hawryluk [Tue, 25 Aug 2009 03:22:11 +0000 (21:22 -0600)]
Doc: added font comparison images of Opus/Feta

14 years ago[feta] Formatting, add some labels.
Werner Lemberg [Tue, 25 Aug 2009 06:16:05 +0000 (08:16 +0200)]
[feta] Formatting, add some labels.

14 years agoDoc: slight clarification of accidentals.
Graham Percival [Mon, 24 Aug 2009 23:46:46 +0000 (00:46 +0100)]
Doc: slight clarification of accidentals.

14 years agoWeb: remove unused image.
Graham Percival [Mon, 24 Aug 2009 22:43:13 +0000 (23:43 +0100)]
Web: remove unused image.

14 years agoWeb: add stubs for color gradients, make navbar images into pngs.
Graham Percival [Sun, 23 Aug 2009 22:49:42 +0000 (23:49 +0100)]
Web: add stubs for color gradients, make navbar images into pngs.

14 years agoUse the full pure Y-extent for complete systems.
Joe Neeman [Mon, 24 Aug 2009 21:03:50 +0000 (14:03 -0700)]
Use the full pure Y-extent for complete systems.

For staves within a system, we split up the pure Y-extent into the Y-extent of
the prefatory matter and the Y-extent of the rest (thereby emulating a crude
skyline).  Between systems, we use a single extent box.  Before this commit, we
were ignoring the Y-extent of the prefatory matter altogether; now the extent
box is correct.

14 years agoAdd a regression test for bug 496.
Joe Neeman [Mon, 24 Aug 2009 21:03:21 +0000 (14:03 -0700)]
Add a regression test for bug 496.

14 years agoDocs: CG 1.5 Git on Windows: revise
Trevor Daniels [Mon, 24 Aug 2009 10:33:08 +0000 (11:33 +0100)]
Docs: CG 1.5 Git on Windows: revise

 - set up git to use default 'master' branch
 - use more consistent terminology
 - remove empty section 1.6 (it's in 2.3)

14 years agoRemove two-pass spacing code and documentation.
Neil Puttock [Sun, 23 Aug 2009 22:30:58 +0000 (23:30 +0100)]
Remove two-pass spacing code and documentation.

14 years agoWeb: modified images+css by Patrick Schmidt.
Graham Percival [Sun, 23 Aug 2009 22:19:20 +0000 (23:19 +0100)]
Web: modified images+css by Patrick Schmidt.

14 years agoscript.scm: Use predefined constants for directions.
Neil Puttock [Sun, 23 Aug 2009 20:43:45 +0000 (21:43 +0100)]
script.scm: Use predefined constants for directions.

14 years agoLSR: Update.
Neil Puttock [Sun, 23 Aug 2009 20:16:50 +0000 (21:16 +0100)]
LSR: Update.

14 years agoWeb build: modify convert options for SVG->PNG
Patrick McCarty [Sun, 23 Aug 2009 19:41:59 +0000 (12:41 -0700)]
Web build: modify convert options for SVG->PNG

14 years agoWeb: Typo.
Mark Polesky [Sun, 23 Aug 2009 08:48:22 +0000 (01:48 -0700)]
Web: Typo.

14 years agoWeb and doc build: fix IE rendering
Patrick McCarty [Sun, 23 Aug 2009 07:34:29 +0000 (00:34 -0700)]
Web and doc build: fix IE rendering

If *any* markup is found before the DOCTYPE tag, all versions of IE will
fall into a type of severe "quirks" mode.  It's not pretty.

Thus, we will only add <!-- header_tag --> to pages without DOCTYPE tags
(primarily those not generated by texi2html).

This fixes IE 7 and 8 for the new website and the documentation.

14 years agoWeb build: restore English html names.
Graham Percival [Sun, 23 Aug 2009 06:56:28 +0000 (07:56 +0100)]
Web build: restore English html names.

Spent 2 hours trying to get translations working.  Will continue
to work later.

14 years agoWeb build: sane names for English html.
Graham Percival [Sun, 23 Aug 2009 00:35:43 +0000 (01:35 +0100)]
Web build: sane names for English html.

14 years agoDoc: fix typo "1 pdf per \score" to \book.
Graham Percival [Sat, 22 Aug 2009 23:35:32 +0000 (00:35 +0100)]
Doc: fix typo "1 pdf per \score" to \book.

14 years agoDoc build: put sectioning commands before the texi2html init file.
Graham Percival [Sat, 22 Aug 2009 23:22:01 +0000 (00:22 +0100)]
Doc build: put sectioning commands before the texi2html init file.

14 years agoWeb: Fix HTML validation
Patrick McCarty [Sun, 23 Aug 2009 05:31:43 +0000 (22:31 -0700)]
Web: Fix HTML validation

This fixes rendering for all browsers, but especially IE7 and 8.

14 years agoWeb: more CSS fixes
Patrick McCarty [Sun, 23 Aug 2009 05:21:21 +0000 (22:21 -0700)]
Web: more CSS fixes

14 years agoWeb: CSS fixes
Patrick McCarty [Sun, 23 Aug 2009 04:28:12 +0000 (21:28 -0700)]
Web: CSS fixes

14 years agoDocs: NR 6 Interfaces for programmers: Typos, wording.
Mark Polesky [Sun, 23 Aug 2009 00:30:56 +0000 (17:30 -0700)]
Docs: NR 6 Interfaces for programmers: Typos, wording.

14 years agoAdd regtests for automatic polyphony in DrumStaff and TabStaff contexts
Marc Hohl [Sat, 22 Aug 2009 20:28:58 +0000 (14:28 -0600)]
Add regtests for automatic polyphony in DrumStaff and TabStaff contexts

14 years agoEnhancement: automatic polyphony in different ...Staff contexts
Marc Hohl [Sat, 22 Aug 2009 09:12:58 +0000 (11:12 +0200)]
Enhancement: automatic polyphony in different ...Staff contexts

< ... \\ ... > constructs work now in Staff, TabStaff and DrumStaff
contexts.

The Documentation for percussion instruments is adapted.

14 years agoCOPYING, define-markup-commands.scm: Remove form feed characters.
Mark Polesky [Sat, 22 Aug 2009 05:30:10 +0000 (22:30 -0700)]
COPYING, define-markup-commands.scm: Remove form feed characters.

14 years agoscript-init.ly, script.scm: Organize, cleanup.
Mark Polesky [Sat, 22 Aug 2009 02:50:45 +0000 (19:50 -0700)]
script-init.ly, script.scm: Organize, cleanup.

14 years agoFix #727
Patrick McCarty [Sat, 22 Aug 2009 02:15:40 +0000 (19:15 -0700)]
Fix #727

14 years agoWeb: add squiggle separator, fix images on Alternate input page.
Graham Percival [Fri, 21 Aug 2009 07:09:56 +0000 (08:09 +0100)]
Web: add squiggle separator, fix images on Alternate input page.

14 years agoDocs: NR App A.12 Technical glossary: extend further
Trevor Daniels [Fri, 21 Aug 2009 23:06:06 +0000 (00:06 +0100)]
Docs: NR App A.12 Technical glossary: extend further

 - Add closure, immutable, mutable, prob, simple closure,
   smob, stencil

14 years agoDocs: restore xref-maps, and restore PDF for translations that support it
John Mandereau [Fri, 21 Aug 2009 22:38:07 +0000 (00:38 +0200)]
Docs: restore xref-maps, and restore PDF for translations that support it

14 years agoFix possible endless loop in replace_all
Reinhold Kainhofer [Fri, 21 Aug 2009 22:04:28 +0000 (00:04 +0200)]
Fix possible endless loop in replace_all

Inside replace all, start the search for the next appearance from the
end position of the replacement, not from the end of the occurrence.
Otherwise, replace_all (&str, "\"", "\\\"") will result in an endless
loop.

14 years agoPitchname files: Nitpicks.
Mark Polesky [Fri, 21 Aug 2009 17:51:22 +0000 (10:51 -0700)]
Pitchname files: Nitpicks.

14 years agoDocs: minor node correction in French NR1.2
Valentin Villenave [Fri, 21 Aug 2009 12:29:57 +0000 (14:29 +0200)]
Docs: minor node correction in French NR1.2

14 years agoDocs: Nodes corrections in various languages
Valentin Villenave [Fri, 21 Aug 2009 12:14:58 +0000 (14:14 +0200)]
Docs: Nodes corrections in various languages

14 years agoOrganize pitchname files.
Mark Polesky [Fri, 21 Aug 2009 00:04:38 +0000 (17:04 -0700)]
Organize pitchname files.

14 years agoRemove params-init.ly.
Mark Polesky [Thu, 20 Aug 2009 16:49:37 +0000 (09:49 -0700)]
Remove params-init.ly.

14 years agoproperty-init.ly: Organize, cleanup.
Mark Polesky [Thu, 20 Aug 2009 15:54:53 +0000 (08:54 -0700)]
property-init.ly: Organize, cleanup.

14 years agoDocs: LM 3.1.2 Review by Gerard McConnell
Trevor Daniels [Thu, 20 Aug 2009 15:53:26 +0000 (16:53 +0100)]
Docs: LM 3.1.2 Review by Gerard McConnell

14 years agoMerge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
John Mandereau [Thu, 20 Aug 2009 09:58:51 +0000 (11:58 +0200)]
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond

14 years agoMerge commit 'origin/master'
John Mandereau [Thu, 20 Aug 2009 09:56:59 +0000 (11:56 +0200)]
Merge commit 'origin/master'

Conflicts:
Documentation/ja/learning/introduction.itely

14 years agoDocs: update Japanese LM and AU
sawada User [Tue, 18 Aug 2009 22:01:48 +0000 (07:01 +0900)]
Docs: update Japanese LM and AU

14 years agoDocs: NR 1.2 Rhythms: \cadenzaX affect all staves
Trevor Daniels [Thu, 20 Aug 2009 07:52:58 +0000 (08:52 +0100)]
Docs: NR 1.2 Rhythms: \cadenzaX affect all staves

14 years agoMove translation functions from output-lib.scm -> translation-functions.scm
Neil Puttock [Wed, 19 Aug 2009 23:41:56 +0000 (00:41 +0100)]
Move translation functions from output-lib.scm -> translation-functions.scm

* tablature formatters

* bar number visibility functions

* repeat count visibility functions

14 years agoFix compilation warnings in main.cc.
Neil Puttock [Wed, 19 Aug 2009 23:13:22 +0000 (00:13 +0100)]
Fix compilation warnings in main.cc.

* add format strings to printf () calls.

14 years agomusic-functions-init.ly: Alphabetize music-function list.
Mark Polesky [Wed, 19 Aug 2009 20:55:45 +0000 (13:55 -0700)]
music-functions-init.ly: Alphabetize music-function list.

14 years agoThinko.
Neil Puttock [Wed, 19 Aug 2009 20:05:48 +0000 (21:05 +0100)]
Thinko.

Remove breakableSeparationItem from Multi_measure_rest_engraver docs.

14 years agoDocs: NR: Delete duplicated music functions (bis)
Trevor Daniels [Wed, 19 Aug 2009 19:57:05 +0000 (20:57 +0100)]
Docs: NR: Delete duplicated music functions (bis)

     - identifiers.tely was included twice, in NR 6.1.7
       and A.15, but with different headings.  This
       deletes Section 6.1.7 and renames A.15.

14 years agoRemove obsolete property 'threshold.
Neil Puttock [Wed, 19 Aug 2009 19:51:11 +0000 (20:51 +0100)]
Remove obsolete property 'threshold.

14 years agoUse ly:staff-symbol-staff-space.
Neil Puttock [Wed, 19 Aug 2009 19:42:52 +0000 (20:42 +0100)]
Use ly:staff-symbol-staff-space.

14 years agoFix indentation in tablature.scm.
Neil Puttock [Wed, 19 Aug 2009 19:35:05 +0000 (20:35 +0100)]
Fix indentation in tablature.scm.

14 years agoFix indentation in guile-debugger.ly.
Neil Puttock [Wed, 19 Aug 2009 19:25:16 +0000 (20:25 +0100)]
Fix indentation in guile-debugger.ly.

14 years agoRemove definition of obsolete property breakableSeparationItem.
Neil Puttock [Wed, 19 Aug 2009 19:20:21 +0000 (20:20 +0100)]
Remove definition of obsolete property breakableSeparationItem.

14 years agoDocs: convert inline snippets which use `easy notation' callback.
Neil Puttock [Wed, 19 Aug 2009 18:51:10 +0000 (19:51 +0100)]
Docs: convert inline snippets which use `easy notation' callback.

14 years agoMove `easy notation' print callback to scheme.
Neil Puttock [Wed, 19 Aug 2009 18:50:44 +0000 (19:50 +0100)]
Move `easy notation' print callback to scheme.

* remove easy-notation.cc

* add exported function ly:staff-symbol-staff-space to make accessing
  'staff-space more convenient

* add scheme implementation of ly:note-head::brew-ez-stencil to
  output-lib.scm

* add convert-rule

14 years agoRevert "Docs: NR: Delete duplicated music functions"
Graham Percival [Wed, 19 Aug 2009 11:53:55 +0000 (12:53 +0100)]
Revert "Docs: NR: Delete duplicated music functions"

This reverts commit 4085985d1403e3e57818497c75a7caf372d90657.  For some
reason this commit breaks compiling, although I can't figure out why.
TODO: investigate, re-implement the first commit.

14 years agoclear list of toplevel scores after adding them to the implicitly created book
Reinhold Kainhofer [Tue, 18 Aug 2009 17:39:27 +0000 (19:39 +0200)]
clear list of toplevel scores after adding them to the implicitly created book

14 years agoDoc: improve appearance of @warning.
Graham Percival [Tue, 18 Aug 2009 23:50:31 +0000 (16:50 -0700)]
Doc: improve appearance of @warning.