Re: [tablatures] DADGAD tuning: error in 3rd string |
[ Thread Index |
Date Index
| More lilynet.net/tablatures Archives
]
- To: Federico Bruni <brunology@xxxxxxx>
- Subject: Re: [tablatures] DADGAD tuning: error in 3rd string
- From: Marc Hohl <marc@xxxxxxxxxx>
- Date: Mon, 15 Feb 2010 16:41:22 +0100
- Cc: tablatures@xxxxxxxxxxx
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; t=1266248483; l=2375; s=domk; d=hohlart.de; h=Content-Type:In-Reply-To:References:Subject:CC:To:MIME-Version:From: Date:X-RZG-CLASS-ID:X-RZG-AUTH; bh=LCI1ssfkwXWdBZ7wSdYFt9U8hpc=; b=Bv/5bCUGLz5UQoma6aFDdYKnwy3fkD8zUukJDXkT/7OlccyQnI0wo3C9VnRYEk5Kcb0 r3qxJt0kfDTjWpeUnt+9Y1vIYX0JqNz82/Z/ZpIrLRbg+eQyfLIknztkSX9/o3SHCkMll Jypu5ZthPkJohy+SRFWloXUTOlrI+KUDWdk=
Federico Bruni schrieb:
Hi,
today while writing a DADGAD piece I've realized that the definition
of DADGAD tuning in tablature.scm is not correct
Oops, sorry - since I don't use DADGAD, I didn't check this properly.
(and I suspect it's my fault, because I asked Marc to include it and
probably I did not check the definition).
So please change this:
(define-public guitar-dadgad-tuning '(2 -3 -7 -10 -15 -22))
into:
(define-public guitar-dadgad-tuning '(2 -3 -5 -10 -15 -22))
Thanks!
Patch is attached, Carl, could you please apply it?
Marc
Federico
From 66b5dff16efd2617d396fca192451f6d1955454a Mon Sep 17 00:00:00 2001
From: Marc Hohl <marc@xxxxxxxxxx>
Date: Mon, 15 Feb 2010 16:39:02 +0100
Subject: [PATCH] tablature: corrected string tuning for DADGAD
---
scm/tablature.scm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/scm/tablature.scm b/scm/tablature.scm
index a3efa78..71b453c 100644
--- a/scm/tablature.scm
+++ b/scm/tablature.scm
@@ -22,7 +22,7 @@
(define-public guitar-drop-d-tuning '(4 -1 -5 -10 -15 -22))
(define-public guitar-open-g-tuning '(2 -1 -5 -10 -17 -22))
(define-public guitar-open-d-tuning '(2 -3 -6 -10 -15 -22))
-(define-public guitar-dadgad-tuning '(2 -3 -7 -10 -15 -22))
+(define-public guitar-dadgad-tuning '(2 -3 -5 -10 -15 -22))
(define-public guitar-lute-tuning '(4 -1 -6 -10 -15 -20))
(define-public guitar-asus4-tuning '(4 -3 -8 -10 -15 -20))
;; bass tunings
--
1.5.4.3