Changes for increased compatability with Script-Fu scripts.

2006-09-29  Kevin Cozens  <kcozens@cvs.gnome.org>

	Changes for increased compatability with Script-Fu scripts.

	* tiny-fu/tiny-fu-scripts.c:
	* tiny-fu/ts-wrapper.c: Changed references of tiny-fu*-register to
	script-fu*-register, tiny-fu-path to script-fu-path, and tiny-fu-quit
	to script-fu-quit.

	* scripts/*.scm: All scripts changed to use script-fu-... instead
	of tiny-fu-... in function names and in the register call.
This commit is contained in:
Kevin Cozens
2006-09-29 06:01:39 +00:00
committed by Kevin Cozens
parent 80cbb2f83e
commit cb4f30cab9
4 changed files with 13 additions and 13 deletions

View File

@ -19,7 +19,7 @@
; The resulting image has the selected layer size.
; Copyright (C) 2002 Chauk-Mean PROUM
;
(define (tiny-fu-set-pt a index x y)
(define (script-fu-set-pt a index x y)
(aset a (* index 2) x)
(aset a (+ (* index 2) 1) y)
)