plug-ins/script-fu/tinyscheme/scheme.[ch] small changes to tinyscheme -

2007-08-30  Simon Budig  <simon@gimp.org>

	* plug-ins/script-fu/tinyscheme/scheme.[ch]
	* plug-ins/script-fu/tinyscheme/scheme-private.h: small changes
	to tinyscheme - mostly removing workarounds for message output.

	* plug-ins/script-fu/scheme-wrapper.[ch]: try to channel the
	output through a central function, have various output functions
	to handle the messages. Remove some hacks.

	* plug-ins/script-fu/script-fu-text-console.c
	* plug-ins/script-fu/script-fu-scripts.[ch]
	* plug-ins/script-fu/script-fu-interface.c
	* plug-ins/script-fu/script-fu.c
	* plug-ins/script-fu/script-fu-server.c
	* plug-ins/script-fu/script-fu-console.[ch]: use the new
	infrastructure. Remove more hacks.

	* plug-ins/script-fu/servertest.py: small script to test the
	communication with the script-fu-server.


svn path=/trunk/; revision=23400
This commit is contained in:
Simon Budig
2007-08-30 00:21:20 +00:00
committed by Simon Budig
parent 570577089e
commit 0928a32a21
15 changed files with 218 additions and 167 deletions

View File

@ -178,8 +178,6 @@ script_fu_run (const gchar *name,
path = script_fu_search_path ();
ts_set_console_mode (0);
/* Determine before we allow scripts to register themselves
* whether this is the base, automatically installed script-fu extension
*/
@ -230,7 +228,6 @@ script_fu_run (const gchar *name,
* The script-fu text console for interactive Scheme development
*/
ts_output_routine = NULL;
script_fu_text_console_run (name, nparams, param,
nreturn_vals, return_vals);
}