From c34a4d8f69a46e4ee413667353947050daa2e161 Mon Sep 17 00:00:00 2001 From: fred Date: Tue, 26 Mar 2002 22:46:51 +0000 Subject: [PATCH] lilypond-1.3.33 --- Documentation/user/properties.itely | 8 ++++---- ly/property.ly | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Documentation/user/properties.itely b/Documentation/user/properties.itely index ebf2c901b4..101274a2b8 100644 --- a/Documentation/user/properties.itely +++ b/Documentation/user/properties.itely @@ -467,16 +467,16 @@ no clef is printed upon creation. is used to determine the instrument for MIDI output. @item @code{keyOctaviation}@indexcode{keyOctaviation} @propertytype{boolean} - If set to TRUE, then keys are the same in all octaves. If set - to FALSE then the key signature for different octaves can be + If set to false, then keys are the same in all octaves. If set + to true then the key signature for different octaves can be different and is specified independently: @example \keysignature bes fis' @end example - The default value is 1. Can be set to zero with - @code{\specialkey} or reset to 1 with @code{\normalkey}. + The default value is @code{#f}. Can be set to @code{#t} with + @code{\specialkey} or reset with @code{\normalkey}. @item @code{timeSignatureStyle}@indexcode{timeSignatureStyle} @propertytype{string} Changes the default two-digit layout for time signatures. The diff --git a/ly/property.ly b/ly/property.ly index 8fe96e79a8..a45c4702c2 100644 --- a/ly/property.ly +++ b/ly/property.ly @@ -103,11 +103,11 @@ normalsize = { } normalkey = { - \property Staff.keyOctaviation = 1 + \property Staff.keyOctaviation = ##f } specialkey = { - \property Staff.keyOctaviation = 0 + \property Staff.keyOctaviation = ##t } % End the incipit and print a ``normal line start''. -- 2.39.5