1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 06:01:13 +02:00

Update Nyquist to v3.09.

This commit is contained in:
Leland Lucius
2015-04-07 22:10:17 -05:00
parent f88b27e6d8
commit 9fb0ce5b82
358 changed files with 26327 additions and 7043 deletions

View File

@@ -603,10 +603,7 @@ LVAL xcleanup(void)
{
xllastarg();
xlcleanup();
/* this point will never be reached because xlcleanup() does a
longjmp(). The return is added to avoid false positive
error messages from static analyzers and compilers */
return (NIL);
/* compiler might (wrongly) complain there is no return value */
}
/* xtoplevel - special form 'top-level' */
@@ -615,7 +612,7 @@ LVAL xtoplevel(void)
xllastarg();
xltoplevel();
/* this point will never be reached because xltoplevel() does a
longjmp(). The return is added to avoid false positive
_longjmp(). The return is added to avoid false positive
error messages from static analyzers and compilers */
return (NIL);
}
@@ -625,7 +622,7 @@ LVAL xcontinue(void)
{
xllastarg();
xlcontinue();
return (NIL);
return (NIL);
}
/* xevalhook - eval hook function */