Re: error: Unbound variable: \version

2022-09-20 Thread David Wright
cm:462:5 <0>: > > > In procedure primitive-load-path in expression (primitive-load-path > > > file-name): > > > > > > C:/LilyPond_2-18-2/usr/share/lilypond/current/scm/lily.scm:462:5 <1>: > > > Unbound variable: \version > > > > > > Exi

Re: error: Unbound variable: \version

2022-09-20 Thread Jean Abou Samra
Le 20/09/2022 à 11:49, ming tsang a écrit : Hi Jean, The following code is in v2.23.11 and it run OK. \version "2.23.11" \markup "test" And the log file is : Starting lilypond.exe 2.23.11 [Untitled (11)]... Processing `C:/Users/YMINGT~1/AppData/Local/Temp/frescobaldi-7krgt6o3/tmprbzc8juy/docum

Re: error: Unbound variable: \version

2022-09-20 Thread Andrew Bernard
I am curious as to why you are still using 2.18.2. Is it really necessary for you? Why? Stable release is now 22.22.2. That's a _long_ way further on. I'm not sure people want to spend time helping debug 2.18.2 issues. Just asking. Andrew

Re: error: Unbound variable: \version

2022-09-20 Thread ming tsang
> Starting lilypond-windows.exe 2.18.2 [Untitled (9)]... > > > > C:/LilyPond_2-18-2/usr/share/lilypond/current/scm/lily.scm:462:5 <0>: > > In procedure primitive-load-path in expression (primitive-load-path > > file-name): > > > > C:/LilyPond_2-18-2/u

Re: error: Unbound variable: \version

2022-09-20 Thread Jean Abou Samra
current/scm/lily.scm:462:5 <0>: In procedure primitive-load-path in expression (primitive-load-path file-name): C:/LilyPond_2-18-2/usr/share/lilypond/current/scm/lily.scm:462:5 <1>: Unbound variable: \version Exited with return code 1. QUESTION: I have version in my computer. I

error: Unbound variable: \version

2022-09-20 Thread ming tsang
ure primitive-load-path in expression (primitive-load-path file-name): C:/LilyPond_2-18-2/usr/share/lilypond/current/scm/lily.scm:462:5 <1>: Unbound variable: \version Exited with return code 1. QUESTION: I have version in my computer. I have window 10, lilypond v2.18.2 and v2.23.10, freco

Re: Unbound variable: \markup

2020-05-04 Thread David Kastrup
Lukas-Fabian Moser writes: > Hi Freeman, > > Am 04.05.20 um 16:02 schrieb Freeman Gilmore: >> The first one below works fine but the second does not work when the >> dollar is replaced with \markup \vcenter \huge \bold "$". Please >> explain why?Why is \markup bound in the first and not in

Re: Unbound variable: \markup

2020-05-04 Thread Freeman Gilmore
Lukas and Kevin: Thank you, this should do it. Looks like it answers many question I have been having. ƒg On Mon, May 4, 2020 at 10:51 AM Kevin Barry wrote: > Hi Freeman, > > > The first one below works fine but the second does not work when the > > dollar is replaced with \markup \vcenter \

Re: Unbound variable: \markup

2020-05-04 Thread Kevin Barry
Hi Freeman, > The first one below works fine but the second does not work when the > dollar is replaced with \markup \vcenter \huge \bold "$". Please > explain why?Why is \markup bound in the first and not in the > second.I see \markup used in many places like to the second > example tha

Re: Unbound variable: \markup

2020-05-04 Thread Lukas-Fabian Moser
Hi Freeman, Am 04.05.20 um 16:02 schrieb Freeman Gilmore: The first one below works fine but the second does not work when the dollar is replaced with \markup \vcenter \huge \bold "$". Please explain why?Why is \markup bound in the first and not in the second.I see \markup used in many

Unbound variable: \markup

2020-05-04 Thread Freeman Gilmore
The first one below works fine but the second does not work when the dollar is replaced with \markup \vcenter \huge \bold "$". Please explain why?Why is \markup bound in the first and not in the second.I see \markup used in many places like to the second example that works, what is the di

Re: ly:version? unbound variable

2019-05-01 Thread Stefano Troncaro
gt; > > > > Hi everyone! According to this page in the manual > > > < > http://lilypond.org/doc/v2.19/Documentation/usage/writing-code-to-support-multiple-versions > > > > > the function ly:version? should be implemented, but the example given > fails > >

Re: ly:version? unbound variable

2019-05-01 Thread Thomas Morley
rsion? should be implemented, but the example given fails > > with the error 'unbound variable: ly:version?' which suggests it's not. I'm > > running it in 2.19.83, was this function deleted and the documentation not > > updated? > > > > Copying the e

Re: ly:version? unbound variable

2019-05-01 Thread David Kastrup
Stefano Troncaro writes: > Hi everyone! According to this page in the manual > <http://lilypond.org/doc/v2.19/Documentation/usage/writing-code-to-support-multiple-versions> > the function ly:version? should be implemented, but the example given fails > with the error

ly:version? unbound variable

2019-05-01 Thread Stefano Troncaro
Hi everyone! According to this page in the manual <http://lilypond.org/doc/v2.19/Documentation/usage/writing-code-to-support-multiple-versions> the function ly:version? should be implemented, but the example given fails with the error 'unbound variable: ly:version?' which sugges

Re: lilypond 2.21 & scheme unbound variable

2019-04-01 Thread David Kastrup
er = >> #(define-event-function (arg) (number-or-markup?) >> #{ -\markup \underline \finger >> #(if (number? arg) (number->string arg) arg) >> #}) >> >> >> The error I get is the following: >> >> error: GUILE signaled an error for the expression be

Re: lilypond 2.21 & scheme unbound variable

2019-04-01 Thread Aaron Hill
On 2019-04-01 2:39 pm, Valentin Villenave wrote: On 4/1/19, Valentin Villenave wrote: You just need to first define the number-or-markup? function, which isn’t included in Scheme or in LilyPond out-of-the-box … Actually, you’d better use integer-or-markup? which _is_ provided, and which would

Re: lilypond 2.21 & scheme unbound variable

2019-04-01 Thread Valentin Villenave
On 4/1/19, Valentin Villenave wrote: > You just need to first define the number-or-markup? function, which > isn’t included in Scheme or in LilyPond out-of-the-box … Actually, you’d better use integer-or-markup? which _is_ provided, and which would be more appropriate for fingerings anyway. Just

Re: lilypond 2.21 & scheme unbound variable

2019-04-01 Thread Thomas Morley
arkup?) > #{ -\markup \underline \finger > #(if (number? arg) (number->string arg) arg) > #}) > > > The error I get is the following: > > error: GUILE signaled an error for the expression beginning here > > # > > (define-event-function (arg) (number-o

Re: lilypond 2.21 & scheme unbound variable

2019-04-01 Thread David Kastrup
e \finger > #(if (number? arg) (number->string arg) arg) > #}) > > > The error I get is the following: > > error: GUILE signaled an error for the expression beginning here > > # > > (define-event-function (arg) (number-or-markup?) > > > Unbound variable

Re: lilypond 2.21 & scheme unbound variable

2019-04-01 Thread Valentin Villenave
On 4/1/19, Gianmaria Lari wrote: > How can I fix it? You just need to first define the number-or-markup? function, which isn’t included in Scheme or in LilyPond out-of-the-box: #(define (number-or-markup? x) (or (number? x) (markup? x))) Cheers, V. __

Re: lilypond 2.21 & scheme unbound variable

2019-04-01 Thread Aaron Hill
umber? arg) (number->string arg) arg) #}) The error I get is the following: error: GUILE signaled an error for the expression beginning here # (define-event-function (arg) (number-or-markup?) Unbound variable: number-or-markup? Unbound variable: number-or-markup? How can I fix it?

lilypond 2.21 & scheme unbound variable

2019-04-01 Thread Gianmaria Lari
The error I get is the following: error: GUILE signaled an error for the expression beginning here # (define-event-function (arg) (number-or-markup?) Unbound variable: number-or-markup? Unbound variable: number-or-markup? How can I fix it?

Re: Unbound variable: define-public-toplevel

2014-10-19 Thread David Kastrup
MarcM writes: > in 2.19, I am getting an error "Unbound variable: define-public-toplevel" > when i run the file ""includeIfAbsent.ly" in the enhancement request [*] > that seemed to work in 2.12. > > includeIfAbsent.ly:26:2: error: GUILE signaled an e

Unbound variable: define-public-toplevel

2014-10-18 Thread MarcM
in 2.19, I am getting an error "Unbound variable: define-public-toplevel" when i run the file ""includeIfAbsent.ly" in the enhancement request [*] that seemed to work in 2.12. includeIfAbsent.ly:26:2: error: GUILE signaled an error for the expression beginning

Re: "Unbound variable" error in Scheme code after switch to 2.17

2013-08-30 Thread Robert Schmaus
http://lilypond.1069038.n5.nabble.com/Pseudo-handwritten-font-tt142117.html#a147230 Does it help? -Harm Hi Harm, it does indeed! Thanks a lot! I should have searched the archives more thoroughly, I guess. Best, Robert ___ lilypond-user mail

Re: "Unbound variable" error in Scheme code after switch to 2.17

2013-08-29 Thread Thomas Morley
ure-interface::alteration-position (car alt) (cdr > alt) ...): > LilyJAZZ.ily:184:16: Unbound variable: > key-signature-interface::alteration-position > > This refers the following code, more precisely, the 4th last line of that > macro. Unfortunately, I don't speak Scheme - c

"Unbound variable" error in Scheme code after switch to 2.17

2013-08-29 Thread Robert Schmaus
the music as well as the LilyJAZZ.ily file. Compiling now gives me the following error: Parsing... Interpreting music...[8][16] Preprocessing graphical objects ... LilyJAZZ.ily:184:16: In expression (key-signature-interface::alteration-position (car alt) (cdr alt) ...): LilyJAZZ.ily:184:1

Re: ERROR: Unbound variable: remove ??

2013-05-08 Thread Thomas Morley
Hi David, 2013/5/9 David Nalesnik : > It seems that the functions in the module SRFI-1 weren't available within > music functions in 2.14. (I remember running into this problem when I tried > to use selectors like "first".) You can add this line within the #{ #} and > you'll have access to rem

Re: ERROR: Unbound variable: remove ??

2013-05-08 Thread David Nalesnik
> Fitting music on 1 page... > Drawing systems...ERROR: Unbound variable: remove > > ?? > remove is not a LilyPond-procedure, it's guile _and_ it's used > elsewhere in the 2.14.2-source. > > What am I missing? > It seems that the functions in the module SRFI-1 wer

ERROR: Unbound variable: remove ??

2013-05-08 Thread Thomas Morley
yPond 2.14.2 Processing `shape-double-slurs.ly' Parsing... Interpreting music... [8] Preprocessing graphical objects... Finding the ideal number of pages... Fitting music on 1 page... Drawing systems...ERROR: Unbound variable: remove ?? remove is not a LilyPond-procedure, it's guile

Unbound variable pages with the TeX back-end on Mac OS X

2006-07-13 Thread Édouard Gilbert
culating line breaks... [3][4] Calculating page breaks... Layout output to `test.tex'...ERROR: Unbound variable: pages Same troubles with 2.9.11. What am I doing wrong ? I'm on Mac OS X 10.4.7 (Darwin 8.7.1) intel version. Any clue

ERROR: Unbound variable: primitive-fork

2006-05-03 Thread Jahwe2000
Hi, I get this error from lilypond when trying to convert any file (even empty ones) with the tex backend: ERROR: Unbound variable: primitive-fork I have just installed lilypond for windows and have also tried version 2.8.1 and 2.9.3 with the same result. Creating PS, PDF etc works fine. Does

Re: : Unbound variable:

2005-11-15 Thread Mats Bengtsson
Nabble.com) wrote: Hi, What does this error mean? Parsing...: In expression ?bar-size: : Unbound variable: ?bar-size I get it when I try to compile the following \new ChordNames \with { \override BarLine #?bar-size = #4 voltaOnThisStaff = ##t \consists Bar_engraver \consists "Volta_engraver&quo

Re: : Unbound variable:

2005-11-14 Thread joeyc (sent by Nabble.com)
I found it was a bad apostrophe ...  fixed now Sent from the Gnu - Lilypond - User forum at Nabble.com. ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

: Unbound variable:

2005-11-14 Thread joeyc (sent by Nabble.com)
Hi, What does this error mean? Parsing...: In _expression_ ?bar-size: : Unbound variable: ?bar-size I get it when I try to compile the following \new ChordNames \with { \override BarLine #?bar-size = #4 voltaOnThisStaff = ##t \consists Bar_engraver \consists "Volta_engraver"

Re: 1.5.73, Unbound variable: generic-staff-properties

2002-08-27 Thread Mats Bengtsson
> "Carlos" <[EMAIL PROTECTED]> writes: > > > What is CVS repository? How do you get there? via setup ? I'm not sure if you ever got a reasonable answer. The CVS repository is just a storage place for the source code that makes it possible for a group of programmers to work on the same program i

Re: 1.5.73, Unbound variable: generic-staff-properties

2002-08-17 Thread Norbert Koch
"Carlos" <[EMAIL PROTECTED]> writes: > What is CVS repository? How do you get there? via setup ? No, via client. Have a look at http://savannah.gnu.org/cvs/?group=lilypond norbert. ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.o

Re: 1.5.73, Unbound variable: generic-staff-properties

2002-08-17 Thread Norbert Koch
Mats Bengtsson <[EMAIL PROTECTED]> writes: > This bug has been reported several times in the > bug-lilypond mailing list and has been solved > in the CVS repository. Upgrade to the latest > version from CVS, wait for 1.5.74 or downgrade > to 1.5.72 for the moment. Thanks for the answer. Hmm,

Re: 1.5.73, Unbound variable: generic-staff-properties

2002-08-17 Thread Mats Bengtsson
In expression generic-staff-properties: > | ERROR: Unbound variable: generic-staff-properties > | error: > | > | LilyPond failed on the input file. (exit status 2) > | > | Traceback (most recent call last): > | File "/usr/users/nk/local/bin/ly2dvi", line 984, in ? >

1.5.73, Unbound variable: generic-staff-properties

2002-08-17 Thread Norbert Koch
ERROR: In expression generic-staff-properties: | ERROR: Unbound variable: generic-staff-properties | error: | | LilyPond failed on the input file. (exit status 2) | | Traceback (most recent call last): | File "/usr/users/nk/local/bin/ly2dvi", line 984, in ? | run_lilypond (files,