gimp r25706 - in trunk: . plug-ins/script-fu/tinyscheme
- From: kcozens svn gnome org
- To: svn-commits-list gnome org
- Subject: gimp r25706 - in trunk: . plug-ins/script-fu/tinyscheme
- Date: Sun, 18 May 2008 21:20:13 +0000 (UTC)
Author: kcozens
Date: Sun May 18 21:20:12 2008
New Revision: 25706
URL: http://svn.gnome.org/viewvc/gimp?rev=25706&view=rev
Log:
2008-05-18 Kevin Cozens <kcozens cvs gnome org>
* plug-ins/script-fu/tinyscheme/scheme.c: Reverting previous change.
I figured it would break something. It breaks the 'while' macro by
preventing use of a named let.
Modified:
trunk/ChangeLog
trunk/plug-ins/script-fu/tinyscheme/scheme.c
Modified: trunk/plug-ins/script-fu/tinyscheme/scheme.c
==============================================================================
--- trunk/plug-ins/script-fu/tinyscheme/scheme.c (original)
+++ trunk/plug-ins/script-fu/tinyscheme/scheme.c Sun May 18 21:20:12 2008
@@ -2780,8 +2780,6 @@
new_slot_in_env(sc, caar(x), car(y));
}
if (is_symbol(car(sc->code))) { /* named let */
- if (!is_pair(cadr(sc->code)))
- Error_1(sc, "Bad syntax of binding spec in let :", car(sc->code));
for (x = cadr(sc->code), sc->args = sc->NIL; x != sc->NIL; x = cdr(x)) {
sc->args = cons(sc, caar(x), sc->args);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]