From: reuter <reuter>
Date: Mon, 21 Feb 2005 19:54:32 +0000 (+0000)
Subject: 	* THANKS: added Pal.
X-Git-Tag: release/2.5.23~513
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=a96de7acac5895e9c332389d3e4412dba317db11;p=lilypond.git

	* THANKS: added Pal.

	* Documentation/user/notation.itely: bugfix: unTeXified
	$\\backslash$.  Bugfix: yet another glyph renaming victim:
	"timesig.*x/y" -> "timesig.*xy".
---

diff --git a/ChangeLog b/ChangeLog
index c4ccdbece4..4e195b4035 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -29,6 +29,12 @@
 	* lily/duration-scheme.cc: bugfix: correct parameters to
 	SCM_ASSERT_TYPE.
 
+	* THANKS: added Pal.
+
+	* Documentation/user/notation.itely: bugfix: unTeXified
+	$\\backslash$.  Bugfix: yet another glyph renaming victim:
+	"timesig.*x/y" -> "timesig.*xy".
+
 2005-02-21  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 	
 	* VERSION (PACKAGE_NAME): release 2.5.12
diff --git a/Documentation/user/notation.itely b/Documentation/user/notation.itely
index b9ff2969da..61ea5dc286 100644
--- a/Documentation/user/notation.itely
+++ b/Documentation/user/notation.itely
@@ -6521,35 +6521,35 @@ following table
 } {
   \set Score.timing = ##f
   \set Score.barAlways = ##t
-  s_\markup { "$\\backslash$time 4/4" }
-  ^\markup { "       " \musicglyph #"timesig.neomensural4/4" }
+  s_\markup { "\\time 4/4" }
+  ^\markup { "       " \musicglyph #"timesig.neomensural44" }
   s
-  s_\markup { "$\\backslash$time 2/2" }
-  ^\markup { "       " \musicglyph #"timesig.neomensural2/2" }
+  s_\markup { "\\time 2/2" }
+  ^\markup { "       " \musicglyph #"timesig.neomensural22" }
   s
-  s_\markup { "$\\backslash$time 6/4" }
-  ^\markup { "       " \musicglyph #"timesig.neomensural6/4" }
+  s_\markup { "\\time 6/4" }
+  ^\markup { "       " \musicglyph #"timesig.neomensural64" }
   s
-  s_\markup { "$\\backslash$time 6/8" }
-  ^\markup { "       " \musicglyph #"timesig.neomensural6/8" }
+  s_\markup { "\\time 6/8" }
+  ^\markup { "       " \musicglyph #"timesig.neomensural68" }
   \break
-  s_\markup { "$\\backslash$time 3/2" }
-  ^\markup { "       " \musicglyph #"timesig.neomensural3/2" }
+  s_\markup { "\\time 3/2" }
+  ^\markup { "       " \musicglyph #"timesig.neomensural32" }
   s
-  s_\markup { "$\\backslash$time 3/4" }
-  ^\markup { "       " \musicglyph #"timesig.neomensural3/4" }
+  s_\markup { "\\time 3/4" }
+  ^\markup { "       " \musicglyph #"timesig.neomensural34" }
   s
-  s_\markup { "$\\backslash$time 9/4" }
-  ^\markup { "       " \musicglyph #"timesig.neomensural9/4" }
+  s_\markup { "\\time 9/4" }
+  ^\markup { "       " \musicglyph #"timesig.neomensural94" }
   s
-  s_\markup { "$\\backslash$time 9/8" }
-  ^\markup { "       " \musicglyph #"timesig.neomensural9/8" }
+  s_\markup { "\\time 9/8" }
+  ^\markup { "       " \musicglyph #"timesig.neomensural98" }
   \break
-  s_\markup { "$\\backslash$time 4/8" }
-  ^\markup { "       " \musicglyph #"timesig.neomensural4/8" }
+  s_\markup { "\\time 4/8" }
+  ^\markup { "       " \musicglyph #"timesig.neomensural48" }
   s
-  s_\markup { "$\\backslash$time 2/4" }
-  ^\markup { "       " \musicglyph #"timesig.neomensural2/4" }
+  s_\markup { "\\time 2/4" }
+  ^\markup { "       " \musicglyph #"timesig.neomensural24" }
 }
 @end lilypond
 
diff --git a/THANKS b/THANKS
index 5a1bcb12af..4171c2e4e3 100644
--- a/THANKS
+++ b/THANKS
@@ -22,6 +22,7 @@ Juergen Reuter
 Juliusz Chroboczek
 Mats Bengtsson
 Nicolas Sceaux
+Pal Benko
 Tatsuya Ono
 Werner Lemberg
 
diff --git a/ly/declarations-init.ly b/ly/declarations-init.ly
index 6529bb3312..052bd6edb0 100644
--- a/ly/declarations-init.ly
+++ b/ly/declarations-init.ly
@@ -5,7 +5,7 @@
 
 %% named durations
 breve = #(ly:make-duration -1 0)
-longa = #(ly:make-duration -2 0 )
+longa = #(ly:make-duration -2 0)
 maxima = #(ly:make-duration -3 0)
 
 \include "music-functions-init.ly"