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:
Kevin Cozens 2006-11-24 18:48:07 +00:00 committed by Kevin Cozens
parent 2db432ad1f
commit 9ca0f90fe4
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
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.
2006-11-24 Simon Budig <simon@gimp.org>
* modules/cdisplay_colorblind.c

View file

@ -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))