]> git.donarmstrong.com Git - lilypond.git/commitdiff
Fix #683: printallheaders -> print-all-headers.
authorNeil Puttock <n.puttock@gmail.com>
Mon, 22 Sep 2008 22:17:55 +0000 (23:17 +0100)
committerNeil Puttock <n.puttock@gmail.com>
Mon, 22 Sep 2008 22:17:55 +0000 (23:17 +0100)
Documentation/es/user/input.itely
Documentation/es/user/spacing.itely
Documentation/user/input.itely
Documentation/user/spacing.itely
ly/titling-init.ly
python/convertrules.py

index 5a78a4e9786b7121ffe2c9652894174796769313..406ad57e813305d506df2fc73963cc672d76ad62 100644 (file)
@@ -225,7 +225,7 @@ del @code{\header}.
 }
 @end lilypond
 
-@funindex printallheaders
+@funindex print-all-headers
 @noindent
 Se puede cambiar este comportamiento (e imprimir todas las cabeceras
 cuando la cabecera @code{\header} está definida dentro del bloque
@@ -233,7 +233,7 @@ cuando la cabecera @code{\header} está definida dentro del bloque
 
 @example
 \paper@{
-  printallheaders=##t
+  print-all-headers = ##t
 @}
 @end example
 
index 4ba2717bd8f0a80acf8959a6c65a5958e1c00ac6..13533bafb015d5ef79341b7ad4d44a14d9f75bb3 100644 (file)
@@ -460,8 +460,8 @@ espaciado (horizontal) de las líneas.  Los valores altos hacen que el
 espaciado de la página tenga más importancia.  Predeterminado:
 @code{#10}.
 
-@item printallheaders
-@funindex printallheaders
+@item print-all-headers
+@funindex print-all-headers
 
 Si está establecido a un valor verdadero, imprime todas las cabeceras
 para cada una de las @code{\score} en la salida impresa.  Normalmente
index b747c669cbfedf0c6434b231d4ba3d3dd56eafe0..28224546f7537e1c091ba433a15d1c1edbc6035e 100644 (file)
@@ -498,14 +498,14 @@ Note that the music expression must come before the @code{\header}.
 }
 @end lilypond
 
-@funindex printallheaders
+@funindex print-all-headers
 @noindent
 You may change this behavior (and print all the headers when defining
 @code{\header} inside @code{\score}) by using
 
 @example
 \paper@{
-  printallheaders=##t
+  print-all-headers = ##t
 @}
 @end example
 
index b2d55dada6edc4f4d40db542c7bcc33c134a6278..e2ba3c182036a821e2d6a1a53747e75ec9043344 100644 (file)
@@ -508,8 +508,8 @@ The relative importance of page (vertical) spacing and line
 (horizontal) spacing.  High values will make page spacing more
 important.  Default: @code{#10}.
 
-@item printallheaders
-@funindex printallheaders
+@item print-all-headers
+@funindex print-all-headers
 
 If set to true, this will print all headers for each \score in the
 output.  Normally only the piece and opus header variables are
index 9f5cf98a71f810ba77dbc79891f5680064ca2c6f..17b7789e1800261e7db63fdb405f6cef9d350d75 100644 (file)
@@ -25,7 +25,7 @@ tagline = \markup {
 }
 
 #(define (print-all-headers layout props arg)
-  (if (eq? (ly:output-def-lookup layout 'printallheaders) #t)
+  (if (eq? (ly:output-def-lookup layout 'print-all-headers) #t)
    (interpret-markup layout props arg)
    empty-stencil))
 
index 90bb54ac7f69e655af44bbb7e13b6e974f038c0e..41bfafc958b87d496b3538cfa91abe7b46956d1c 100644 (file)
@@ -2807,6 +2807,11 @@ def conv (str):
     str = re.sub (r"hcenter(\s+)", r"center-align\1", str)
     return str
 
+@rule ((2, 11, 60), "printallheaders -> print-all-headers")
+def conv (str):
+    str = re.sub (r"printallheaders", r"print-all-headers", str)
+    return str
+
 # Guidelines to write rules (please keep this at the end of this file)
 #
 # - keep at most one rule per version; if several conversions should be done,