From 05b800ea33650526928a93100f2b0553981953ff Mon Sep 17 00:00:00 2001
From: fred <fred>
Date: Sun, 24 Mar 2002 20:06:31 +0000
Subject: [PATCH] lilypond-0.1.48

---
 lily/parser.y | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lily/parser.y b/lily/parser.y
index 13cc69a973..545d72c8a6 100644
--- a/lily/parser.y
+++ b/lily/parser.y
@@ -709,7 +709,7 @@ command_req:
 	;
 
 abbrev_command_req:
-	 '|'				{
+	'|'				{
 		$$ = new Barcheck_req;
 	}
 	| COMMAND_IDENTIFIER	{
@@ -729,8 +729,8 @@ verbose_command_req:
 	}
 	| SKIP duration_length {
 		Skip_req * skip_p = new Skip_req;
-		skip_p->duration_.set_plet ($2->numerator ().as_long (),
-			$2->denominator ().as_long ());
+		skip_p->duration_.set_plet ($2->num (),
+			$2->den ());
 
 		delete $2;
 		$$ = skip_p;
-- 
2.39.5