Return a list from cons-array when type is 'string.

2007-11-11  Kevin Cozens  <kcozens@cvs.gnome.org>

	* plug-ins/script-fu/scripts/script-fu-compat.init: Return a list
	from cons-array when type is 'string.

svn path=/trunk/; revision=24126
This commit is contained in:
Kevin Cozens 2007-11-11 21:22:01 +00:00 committed by Kevin Cozens
parent 922f9b4e8a
commit b9c181bf73
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2007-11-11 Kevin Cozens <kcozens@cvs.gnome.org>
* plug-ins/script-fu/scripts/script-fu-compat.init: Return a list
from cons-array when type is 'string.
2007-11-11 Martin Nordholts <martinn@svn.gnome.org>
* app/tools/gimprectangletool.[ch]: Removed

View File

@ -276,7 +276,7 @@
((short) (make-vector count 0))
((byte) (make-vector count 0))
((double) (make-vector count 0.0))
((string) (make-vector count ""))
((string) (vector->list (make-vector count "")))
(else type)
)
)