Fixed cut and paste error in the fix for unbreakupstr.
2006-11-24 Kevin Cozens <kcozens@cvs.gnome.org> * plug-ins/script-fu/scripts/script-fu-compat.init: Fixed cut and paste error in the fix for unbreakupstr.
This commit is contained in:
committed by
Kevin Cozens
parent
2db432ad1f
commit
9ca0f90fe4
@ -207,7 +207,7 @@
|
||||
(define (unbreakupstr stringlist sep)
|
||||
(let ((str (car stringlist)))
|
||||
|
||||
(set! (stringlist (cdr stringlist)))
|
||||
(set! stringlist (cdr stringlist))
|
||||
(while (not (null? stringlist))
|
||||
(set! str (string-append str sep (car stringlist)))
|
||||
(set! stringlist (cdr stringlist))
|
||||
|
||||
Reference in New Issue
Block a user