mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-18 16:41:14 +02:00
Update Nyquist to v3.09.
This commit is contained in:
@@ -10,7 +10,7 @@ extern XLCONTEXT *xlcontext,*xltarget;
|
||||
extern LVAL xlvalue,xlenv,xlfenv,xldenv;
|
||||
extern int xlmask;
|
||||
|
||||
LOCAL void findandjump(int mask, char *error);
|
||||
LOCAL void findandjump(int mask, const char *error);
|
||||
|
||||
|
||||
/* xlbegin - beginning of an execution context */
|
||||
@@ -83,7 +83,7 @@ void xlthrow(LVAL tag, LVAL val)
|
||||
}
|
||||
|
||||
/* xlsignal - signal an error */
|
||||
void xlsignal(char *emsg, LVAL arg)
|
||||
void xlsignal(const char *emsg, LVAL arg)
|
||||
{
|
||||
XLCONTEXT *cptr;
|
||||
|
||||
@@ -148,11 +148,11 @@ void xljump(XLCONTEXT *target, int mask, LVAL val)
|
||||
xlvalue = val;
|
||||
|
||||
/* call the handler */
|
||||
longjmp(xlcontext->c_jmpbuf,mask);
|
||||
_longjmp(xlcontext->c_jmpbuf,mask);
|
||||
}
|
||||
|
||||
/* findandjump - find a target context frame and jump to it */
|
||||
LOCAL void findandjump(int mask, char *error)
|
||||
LOCAL void findandjump(int mask, const char *error)
|
||||
{
|
||||
XLCONTEXT *cptr;
|
||||
|
||||
|
Reference in New Issue
Block a user