gimp/plug-ins/script-fu/tinyscheme
Mukund Sivaraman f67306c1d3 Added missing include.
2007-05-30  Mukund Sivaraman  <muks@mukund.org>

        * app/tools/gimpdrawtool.c: Added missing include.

        * app/tools/gimpbycolorselecttool.c: Removed unused variable.

        * app/plug-in/gimpenvirontable.c: Added cast for callback function.

        * plug-ins/script-fu/tinyscheme/scheme.c: Correctly cast pointer to
        an long integer type.


svn path=/trunk/; revision=22659
2007-05-30 11:49:14 +00:00
..
BUILDING Added extra files temporarily lost during the autoconf process. 2004-10-07 05:45:51 +00:00
CHANGES Minor changes to quiet the compiler. 2006-12-07 18:57:10 +00:00
COPYING Initial revision 2004-10-06 21:47:36 +00:00
dynload.c Added extra files temporarily lost during the autoconf process. 2004-10-07 05:45:51 +00:00
dynload.h Added extra files temporarily lost during the autoconf process. 2004-10-07 05:45:51 +00:00
hack.txt Added extra files temporarily lost during the autoconf process. 2004-10-07 05:45:51 +00:00
init.scm The changes below (except for init.scm) were found during the work of 2006-10-12 20:31:33 +00:00
Makefile.am plug-ins/script-fu/ftx/Makefile.am plug-ins/script-fu/re/Makefile.am 2006-11-23 21:55:35 +00:00
Manual.txt scripts/tiny-fu.init tiny-fu/ts-wrapper.c tinyscheme/Manual.txt Updates to 2006-10-05 17:39:54 +00:00
MiniSCHEMETribute.txt Added extra files temporarily lost during the autoconf process. 2004-10-07 05:45:51 +00:00
opdefines.h Use vectors instead of the non-standard array structure. Also made some 2006-11-09 23:03:55 +00:00
README tinyscheme/README 2005-03-17 20:10:42 +00:00
scheme-private.h Add define for symkey() to quiet the compiler. 2007-02-18 03:46:50 +00:00
scheme.c Added missing include. 2007-05-30 11:49:14 +00:00
scheme.h Missed commit of this file. 2007-05-25 16:26:46 +00:00

This directory contains a version of TinyScheme which has been modified
to support UTF-8 coded strings. The strings stored in a data cell are
expected to be in UTF-8 format. This allows the continued use of gchar
pointers to pass around the strings. Processing the strings will require
conversion to unicode at times depending on the specific operation that
needs to be done on the UTF-8 coded strings.

The string length value stored in a data cell is the length in bytes of that
string including the terminating NUL.

Routines that want a string length for a UTF-8 coded string will be passed
the number of characters and not the number of bytes. If the number of bytes
is needed, the normal call to strlen() will work.