Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 11 May 2020 06:45:49 +0000 (UTC)
From:      =?UTF-8?Q?Fernando_Apestegu=c3=ada?= <fernape@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r534884 - in head/lang/basic256: . files
Message-ID:  <202005110645.04B6jnSh088919@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: fernape
Date: Mon May 11 06:45:49 2020
New Revision: 534884
URL: https://svnweb.freebsd.org/changeset/ports/534884

Log:
  lang/basic256: update to 2.0.0.1
  
  While here:
  
   * Reorder some variables
   * dos2unix only on the necessary files (thanks tcberner@) so resources file
     doesn't break.
   * Add missing USES=gl

Deleted:
  head/lang/basic256/files/patch-Interpreter.cpp
Modified:
  head/lang/basic256/Makefile
  head/lang/basic256/distinfo
  head/lang/basic256/files/patch-BASIC256.pro
  head/lang/basic256/pkg-plist

Modified: head/lang/basic256/Makefile
==============================================================================
--- head/lang/basic256/Makefile	Mon May 11 06:01:44 2020	(r534883)
+++ head/lang/basic256/Makefile	Mon May 11 06:45:49 2020	(r534884)
@@ -1,10 +1,9 @@
 # $FreeBSD$
 
 PORTNAME=	basic256
-PORTVERSION=	1.1.4.0
-PORTREVISION=	3
+PORTVERSION=	2.0.0.1
 CATEGORIES=	lang
-MASTER_SITES=	SF/kidbasic/${PORTNAME}
+MASTER_SITES=	SF/kidbasic/
 DISTNAME=	${PORTNAME}_${PORTVERSION}.orig
 
 MAINTAINER=	fernape@FreeBSD.org
@@ -16,17 +15,16 @@ BUILD_DEPENDS=	espeak:audio/espeak \
 		sqlite3:databases/sqlite3 \
 		flex:textproc/flex
 
-WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
-
-USES=		bison compiler:c++11-lang dos2unix qmake qt:5 sdl
+USES=		bison compiler:c++11-lib dos2unix gl qmake qt:5 sdl
+DOS2UNIX_FILES=	BASIC256.pro Interpreter.cpp
 USE_SDL=	sdl mixer
+USE_GL+=	gl
 USE_QT=		buildtools core gui multimedia network printsupport sql widgets serialport
 QMAKE_ARGS+=	LOCALBASE="${LOCALBASE}"
 QMAKE_SOURCE_PATH=	BASIC256.pro
 
-MAKE_JOBS_UNSAFE=	yes
+WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
 
-post-patch:
-	@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/BASIC256.pro
+MAKE_JOBS_UNSAFE=	yes
 
 .include <bsd.port.mk>

Modified: head/lang/basic256/distinfo
==============================================================================
--- head/lang/basic256/distinfo	Mon May 11 06:01:44 2020	(r534883)
+++ head/lang/basic256/distinfo	Mon May 11 06:45:49 2020	(r534884)
@@ -1,2 +1,3 @@
-SHA256 (basic256_1.1.4.0.orig.tar.gz) = 9df3ac4535448c1bd721364829e1bf4df7087c9b2c8d789e1fb5903e58c043ba
-SIZE (basic256_1.1.4.0.orig.tar.gz) = 2611721
+TIMESTAMP = 1588759626
+SHA256 (basic256_2.0.0.1.orig.tar.gz) = 720e08c9b7a60cbcf6cc342dcf25d8c98e271903e0b1ab96422968fa981d041f
+SIZE (basic256_2.0.0.1.orig.tar.gz) = 1321457

Modified: head/lang/basic256/files/patch-BASIC256.pro
==============================================================================
--- head/lang/basic256/files/patch-BASIC256.pro	Mon May 11 06:01:44 2020	(r534883)
+++ head/lang/basic256/files/patch-BASIC256.pro	Mon May 11 06:45:49 2020	(r534884)
@@ -1,62 +1,65 @@
---- BASIC256.pro.orig	2014-11-05 17:03:39 UTC
+--- BASIC256.pro.orig	2020-05-07 12:32:08 UTC
 +++ BASIC256.pro
-@@ -13,13 +13,6 @@ CONFIG						+=	 qt debug_and_release
- OBJECTS_DIR					=	tmp/obj
- MOC_DIR						=	tmp/moc
+@@ -15,13 +15,6 @@ CONFIG							+=	 console
+ OBJECTS_DIR						=	tmp/obj
+ MOC_DIR							=	tmp/moc
  
--QT						+=	webkit
--QT						+=	gui
--QT						+=	sql
--QT						+=	widgets
--QT						+=	printsupport
--QT						+=	serialport
--
- RESOURCES					+=	resources/resource.qrc
- RC_FILE						=	resources/basic256.rc
- TRANSLATIONS				=	Translations/basic256_en.ts \
-@@ -86,7 +79,7 @@ unix:!macx {
+-#QT								+=	webkitwidgets
+-#QT								+=	webkit
+-QT								+=	gui
+-QT								+=	sql
+-QT								+=	widgets
+-QT								+=	printsupport
+-QT								+=	serialport
  
+ RESOURCES						+=	resources/resource.qrc
+ TRANSLATIONS					=	Translations/basic256_en.ts \
+@@ -90,15 +83,21 @@ unix:!macx {
+ 
  	## TTS Option 2 - use the espeak library
- 	DEFINES					+=	ESPEAK
--	INCLUDEPATH				+=	/usr/include/espeak
-+	INCLUDEPATH				+=	$$LOCALBASE/include/espeak
- 	LIBS					+=	-lespeak
+ 	DEFINES						+=	ESPEAK
+-	INCLUDEPATH					+=	/usr/include/espeak
++	INCLUDEPATH					+=	$$LOCALBASE/include/espeak
+ 	LIBS						+=	-lespeak
+ 	LIBS						+=	-lm
  
- 	LIBS					+=	-lm
-@@ -101,8 +94,10 @@ unix:!macx {
- 
- 	# Sound - QT Mobility Multimedia AudioOut
- 	DEFINES					+=	SOUND_QMOBILITY
--	QT						+=	multimedia
--	INCLUDEPATH				+=	QtMultimediaKit
+ 	########
+ 	# Sound class - How Sound statement works
+ 	########
+-	QT							+=	multimedia
+-	INCLUDEPATH					+=	QtMultimediaKit
 +	INCLUDEPATH                             +=      $$LOCALBASE/include/qt5/QtMultimedia
++	INCLUDEPATH                             +=	$$LOCALBASE/include/qt5/QtNetwork
++	INCLUDEPATH                             +=	$$LOCALBASE/include/qt5/QtPrintSupport
 +	INCLUDEPATH                             +=      $$LOCALBASE/include/qt5/QtSerialPort
-+ 	INCLUDEPATH				+=	QtMobility
++	INCLUDEPATH                             +=	$$LOCALBASE/include/qt5/QtSql
++	INCLUDEPATH                             +=	$$LOCALBASE/include/qt5/QtWidgets
++	INCLUDEPATH				+=	QtMobility
 +	LIBS                                    +=      -L$$LOCALBASE/lib -L$$LOCALBASE/lib/qt5 -lQt5Gui -lQt5Core -lQt5Widgets -lQt5Sql -lQt5Multimedia -lQt5PrintSupport -lQt5SerialPort
- 	INCLUDEPATH				+=	QtMobility
+ 	INCLUDEPATH					+=	QtMobility
  
  
-@@ -110,19 +105,19 @@ unix:!macx {
+@@ -106,19 +105,19 @@ unix:!macx {
  	# rules for make install
  	########
- 	exampleFiles.files		=	./Examples
--	exampleFiles.path		=	/usr/share/basic256
-+	exampleFiles.path		=	$$PREFIX/share/basic256
- 	INSTALLS				+=	exampleFiles
+ 	exampleFiles.files			=	./Examples
+-	exampleFiles.path			=	/usr/share/basic256
++	exampleFiles.path			=	$$PREFIX/share/basic256
+ 	INSTALLS					+=	exampleFiles
  
- 	helpHTMLFiles.files		=	./wikihelp/help
--	helpHTMLFiles.path		=	/usr/share/basic256
-+	helpHTMLFiles.path		=	$$PREFIX/share/basic256
- 	INSTALLS				+=	helpHTMLFiles
+ 	helpHTMLFiles.files			=	./wikihelp/help
+-	helpHTMLFiles.path			=	/usr/share/basic256
++	helpHTMLFiles.path			=	$$PREFIX/share/basic256
+ 	INSTALLS					+=	helpHTMLFiles
  
- 	transFiles.files		=	./Translations/*.qm
--	transFiles.path			=	/usr/share/basic256
-+	transFiles.path			=	$$PREFIX/share/basic256
- 	INSTALLS				+=	transFiles
+ 	transFiles.files			=	./Translations/*.qm
+-	transFiles.path				=	/usr/share/basic256
++	transFiles.path				=	$$PREFIX/share/basic256
+ 	INSTALLS					+=	transFiles
  
  	# main program executable
--	target.path				=	/usr/bin
-+	target.path				=	$$PREFIX/bin
- 	INSTALLS				+=	target
+-	target.path					=	/usr/bin
++	target.path					=	$$PREFIX/bin
+ 	INSTALLS					+=	target
  
  }

Modified: head/lang/basic256/pkg-plist
==============================================================================
--- head/lang/basic256/pkg-plist	Mon May 11 06:01:44 2020	(r534883)
+++ head/lang/basic256/pkg-plist	Mon May 11 06:45:49 2020	(r534884)
@@ -12,7 +12,6 @@ bin/basic256
 %%DATADIR%%/Examples/basic256_icon.png
 %%DATADIR%%/Examples/basic256_icon_V1.kbs
 %%DATADIR%%/Examples/basic256_icon_googlePlay.kbs
-%%DATADIR%%/Examples/basic256_icon_googlePlay.png
 %%DATADIR%%/Examples/card_suites.kbs
 %%DATADIR%%/Examples/cards_deal5.kbs
 %%DATADIR%%/Examples/checkerboard.kbs
@@ -51,12 +50,12 @@ bin/basic256
 %%DATADIR%%/Examples/poly.kbs
 %%DATADIR%%/Examples/polytest.kbs
 %%DATADIR%%/Examples/quotations.kbs
-%%DATADIR%%/Examples/quotations.sqlite3
 %%DATADIR%%/Examples/rainbow.kbs
 %%DATADIR%%/Examples/ring_01.kbs
 %%DATADIR%%/Examples/rotating3dcube.kbs
 %%DATADIR%%/Examples/sliceanimation.kbs
 %%DATADIR%%/Examples/snowflakes.kbs
+%%DATADIR%%/Examples/solar_system.kbs
 %%DATADIR%%/Examples/sound/bounce.mp3
 %%DATADIR%%/Examples/sound/bounce.mp3.README
 %%DATADIR%%/Examples/sound/wavplaystop.kbs
@@ -84,7 +83,6 @@ bin/basic256
 %%DATADIR%%/Examples/subroutine_global.kbs
 %%DATADIR%%/Examples/subroutine_squares.kbs
 %%DATADIR%%/Examples/teamdatabase.kbs
-%%DATADIR%%/Examples/teamdatabase.sqlite3
 %%DATADIR%%/Examples/testing/2darraytest.kbs
 %%DATADIR%%/Examples/testing/2dstrarraytest.kbs
 %%DATADIR%%/Examples/testing/KalRGB.kbs
@@ -116,7 +114,6 @@ bin/basic256
 %%DATADIR%%/Examples/testing/testmodulo.kbs
 %%DATADIR%%/Examples/testing/testplusplus.kbs
 %%DATADIR%%/Examples/testing/testplusplus2.kbs
-%%DATADIR%%/Examples/testing/testsubroutinebyref.kbs
 %%DATADIR%%/Examples/testing/testtextfont.kbs
 %%DATADIR%%/Examples/testing/testtime.kbs
 %%DATADIR%%/Examples/testing/uaarray.kbs
@@ -132,1847 +129,3 @@ bin/basic256
 %%DATADIR%%/basic256_nl.qm
 %%DATADIR%%/basic256_pt.qm
 %%DATADIR%%/basic256_ru.qm
-%%DATADIR%%/help/de_abs.html
-%%DATADIR%%/help/de_acos.html
-%%DATADIR%%/help/de_anonymefelder.html
-%%DATADIR%%/help/de_asc.html
-%%DATADIR%%/help/de_asin.html
-%%DATADIR%%/help/de_atan.html
-%%DATADIR%%/help/de_ceil.html
-%%DATADIR%%/help/de_changedir.html
-%%DATADIR%%/help/de_chr.html
-%%DATADIR%%/help/de_circle.html
-%%DATADIR%%/help/de_clg.html
-%%DATADIR%%/help/de_clickb.html
-%%DATADIR%%/help/de_clickclear.html
-%%DATADIR%%/help/de_clickx.html
-%%DATADIR%%/help/de_clicky.html
-%%DATADIR%%/help/de_close.html
-%%DATADIR%%/help/de_cls.html
-%%DATADIR%%/help/de_color.html
-%%DATADIR%%/help/de_cos.html
-%%DATADIR%%/help/de_currentdir.html
-%%DATADIR%%/help/de_day.html
-%%DATADIR%%/help/de_dbclose.html
-%%DATADIR%%/help/de_dbcloseset.html
-%%DATADIR%%/help/de_dbexecute.html
-%%DATADIR%%/help/de_dbfloat.html
-%%DATADIR%%/help/de_dbint.html
-%%DATADIR%%/help/de_dbopen.html
-%%DATADIR%%/help/de_dbopenset.html
-%%DATADIR%%/help/de_dbrow.html
-%%DATADIR%%/help/de_dbstring.html
-%%DATADIR%%/help/de_decimal.html
-%%DATADIR%%/help/de_degrees.html
-%%DATADIR%%/help/de_dim.html
-%%DATADIR%%/help/de_dountil.html
-%%DATADIR%%/help/de_end.html
-%%DATADIR%%/help/de_eof.html
-%%DATADIR%%/help/de_errorcodes.html
-%%DATADIR%%/help/de_exists.html
-%%DATADIR%%/help/de_fastgraphics.html
-%%DATADIR%%/help/de_felder.html
-%%DATADIR%%/help/de_float.html
-%%DATADIR%%/help/de_floor.html
-%%DATADIR%%/help/de_font.html
-%%DATADIR%%/help/de_fornext.html
-%%DATADIR%%/help/de_getcolor.html
-%%DATADIR%%/help/de_getslice.html
-%%DATADIR%%/help/de_gosubreturn.html
-%%DATADIR%%/help/de_goto.html
-%%DATADIR%%/help/de_graphheight.html
-%%DATADIR%%/help/de_graphsize.html
-%%DATADIR%%/help/de_graphwidth.html
-%%DATADIR%%/help/de_hour.html
-%%DATADIR%%/help/de_ifthen.html
-%%DATADIR%%/help/de_imgload.html
-%%DATADIR%%/help/de_input.html
-%%DATADIR%%/help/de_instr.html
-%%DATADIR%%/help/de_int.html
-%%DATADIR%%/help/de_key.html
-%%DATADIR%%/help/de_lasterror.html
-%%DATADIR%%/help/de_lasterrorextra.html
-%%DATADIR%%/help/de_lasterrorline.html
-%%DATADIR%%/help/de_lasterrormessage.html
-%%DATADIR%%/help/de_left.html
-%%DATADIR%%/help/de_length.html
-%%DATADIR%%/help/de_line.html
-%%DATADIR%%/help/de_log.html
-%%DATADIR%%/help/de_log10.html
-%%DATADIR%%/help/de_lower.html
-%%DATADIR%%/help/de_mid.html
-%%DATADIR%%/help/de_minute.html
-%%DATADIR%%/help/de_month.html
-%%DATADIR%%/help/de_mouseb.html
-%%DATADIR%%/help/de_mousex.html
-%%DATADIR%%/help/de_mousey.html
-%%DATADIR%%/help/de_netclose.html
-%%DATADIR%%/help/de_netconnect.html
-%%DATADIR%%/help/de_netdata.html
-%%DATADIR%%/help/de_netlisten.html
-%%DATADIR%%/help/de_netread.html
-%%DATADIR%%/help/de_netwrite.html
-%%DATADIR%%/help/de_numerischekonstanten.html
-%%DATADIR%%/help/de_offerror.html
-%%DATADIR%%/help/de_onerror.html
-%%DATADIR%%/help/de_open.html
-%%DATADIR%%/help/de_operatoren.html
-%%DATADIR%%/help/de_pause.html
-%%DATADIR%%/help/de_pixel.html
-%%DATADIR%%/help/de_plot.html
-%%DATADIR%%/help/de_poly.html
-%%DATADIR%%/help/de_print.html
-%%DATADIR%%/help/de_programm-syntax.html
-%%DATADIR%%/help/de_putslice.html
-%%DATADIR%%/help/de_radians.html
-%%DATADIR%%/help/de_rand.html
-%%DATADIR%%/help/de_read.html
-%%DATADIR%%/help/de_readline.html
-%%DATADIR%%/help/de_rect.html
-%%DATADIR%%/help/de_redim.html
-%%DATADIR%%/help/de_refresh.html
-%%DATADIR%%/help/de_rem.html
-%%DATADIR%%/help/de_reset.html
-%%DATADIR%%/help/de_rgb.html
-%%DATADIR%%/help/de_right.html
-%%DATADIR%%/help/de_say.html
-%%DATADIR%%/help/de_second.html
-%%DATADIR%%/help/de_seek.html
-%%DATADIR%%/help/de_sin.html
-%%DATADIR%%/help/de_singlepage.html
-%%DATADIR%%/help/de_size.html
-%%DATADIR%%/help/de_sound.html
-%%DATADIR%%/help/de_spritecollide.html
-%%DATADIR%%/help/de_spritedim.html
-%%DATADIR%%/help/de_spriteh.html
-%%DATADIR%%/help/de_spritehide.html
-%%DATADIR%%/help/de_spriteload.html
-%%DATADIR%%/help/de_spritemove.html
-%%DATADIR%%/help/de_spriteplace.html
-%%DATADIR%%/help/de_spriteshow.html
-%%DATADIR%%/help/de_spriteslice.html
-%%DATADIR%%/help/de_spritev.html
-%%DATADIR%%/help/de_spritew.html
-%%DATADIR%%/help/de_spritex.html
-%%DATADIR%%/help/de_spritey.html
-%%DATADIR%%/help/de_stamp.html
-%%DATADIR%%/help/de_start.html
-%%DATADIR%%/help/de_string.html
-%%DATADIR%%/help/de_system.html
-%%DATADIR%%/help/de_systemrequirements.html
-%%DATADIR%%/help/de_tan.html
-%%DATADIR%%/help/de_techinformation.html
-%%DATADIR%%/help/de_text.html
-%%DATADIR%%/help/de_upper.html
-%%DATADIR%%/help/de_variablen.html
-%%DATADIR%%/help/de_volume.html
-%%DATADIR%%/help/de_wavplay.html
-%%DATADIR%%/help/de_wavstop.html
-%%DATADIR%%/help/de_wavwait.html
-%%DATADIR%%/help/de_whileendwhile.html
-%%DATADIR%%/help/de_write.html
-%%DATADIR%%/help/de_writeline.html
-%%DATADIR%%/help/de_year.html
-%%DATADIR%%/help/de_zeichenketten-konstantenauchtext-konstanten.html
-%%DATADIR%%/help/el_abs.html
-%%DATADIR%%/help/el_acos.html
-%%DATADIR%%/help/el_alert.html
-%%DATADIR%%/help/el_anonymousarrays.html
-%%DATADIR%%/help/el_arc.html
-%%DATADIR%%/help/el_arrays.html
-%%DATADIR%%/help/el_asc.html
-%%DATADIR%%/help/el_asin.html
-%%DATADIR%%/help/el_atan.html
-%%DATADIR%%/help/el_call.html
-%%DATADIR%%/help/el_ceil.html
-%%DATADIR%%/help/el_changedir.html
-%%DATADIR%%/help/el_chord.html
-%%DATADIR%%/help/el_chr.html
-%%DATADIR%%/help/el_circle.html
-%%DATADIR%%/help/el_clg.html
-%%DATADIR%%/help/el_clickb.html
-%%DATADIR%%/help/el_clickclear.html
-%%DATADIR%%/help/el_clickx.html
-%%DATADIR%%/help/el_clicky.html
-%%DATADIR%%/help/el_close.html
-%%DATADIR%%/help/el_cls.html
-%%DATADIR%%/help/el_color.html
-%%DATADIR%%/help/el_commandline.html
-%%DATADIR%%/help/el_compileerrorcodes.html
-%%DATADIR%%/help/el_confirm.html
-%%DATADIR%%/help/el_continuedo.html
-%%DATADIR%%/help/el_continuefor.html
-%%DATADIR%%/help/el_continuewhile.html
-%%DATADIR%%/help/el_cos.html
-%%DATADIR%%/help/el_count.html
-%%DATADIR%%/help/el_countx.html
-%%DATADIR%%/help/el_currentdir.html
-%%DATADIR%%/help/el_day.html
-%%DATADIR%%/help/el_dbclose.html
-%%DATADIR%%/help/el_dbcloseset.html
-%%DATADIR%%/help/el_dbexecute.html
-%%DATADIR%%/help/el_dbfloat.html
-%%DATADIR%%/help/el_dbint.html
-%%DATADIR%%/help/el_dbnull.html
-%%DATADIR%%/help/el_dbopen.html
-%%DATADIR%%/help/el_dbopenset.html
-%%DATADIR%%/help/el_dbrow.html
-%%DATADIR%%/help/el_dbstring.html
-%%DATADIR%%/help/el_degrees.html
-%%DATADIR%%/help/el_dim.html
-%%DATADIR%%/help/el_dir.html
-%%DATADIR%%/help/el_do.html
-%%DATADIR%%/help/el_editvisible.html
-%%DATADIR%%/help/el_else.html
-%%DATADIR%%/help/el_end.html
-%%DATADIR%%/help/el_endfunction.html
-%%DATADIR%%/help/el_endif.html
-%%DATADIR%%/help/el_endsubroutine.html
-%%DATADIR%%/help/el_endwhile.html
-%%DATADIR%%/help/el_eof.html
-%%DATADIR%%/help/el_errorcodes.html
-%%DATADIR%%/help/el_exists.html
-%%DATADIR%%/help/el_exitdo.html
-%%DATADIR%%/help/el_exitfor.html
-%%DATADIR%%/help/el_exitwhile.html
-%%DATADIR%%/help/el_exp.html
-%%DATADIR%%/help/el_explode.html
-%%DATADIR%%/help/el_explodex.html
-%%DATADIR%%/help/el_fastgraphics.html
-%%DATADIR%%/help/el_float.html
-%%DATADIR%%/help/el_floor.html
-%%DATADIR%%/help/el_font.html
-%%DATADIR%%/help/el_for.html
-%%DATADIR%%/help/el_freedb.html
-%%DATADIR%%/help/el_freedbset.html
-%%DATADIR%%/help/el_freefile.html
-%%DATADIR%%/help/el_freenet.html
-%%DATADIR%%/help/el_frombinary.html
-%%DATADIR%%/help/el_fromhex.html
-%%DATADIR%%/help/el_fromoctal.html
-%%DATADIR%%/help/el_fromradix.html
-%%DATADIR%%/help/el_function.html
-%%DATADIR%%/help/el_getbrushcolor.html
-%%DATADIR%%/help/el_getcolor.html
-%%DATADIR%%/help/el_getpenwidth.html
-%%DATADIR%%/help/el_getsetting.html
-%%DATADIR%%/help/el_getslice.html
-%%DATADIR%%/help/el_global.html
-%%DATADIR%%/help/el_gosub.html
-%%DATADIR%%/help/el_goto.html
-%%DATADIR%%/help/el_graphheight.html
-%%DATADIR%%/help/el_graphsize.html
-%%DATADIR%%/help/el_graphvisible.html
-%%DATADIR%%/help/el_graphwidth.html
-%%DATADIR%%/help/el_hour.html
-%%DATADIR%%/help/el_if.html
-%%DATADIR%%/help/el_ifthen.html
-%%DATADIR%%/help/el_imgload.html
-%%DATADIR%%/help/el_imgsave.html
-%%DATADIR%%/help/el_implode.html
-%%DATADIR%%/help/el_include.html
-%%DATADIR%%/help/el_input.html
-%%DATADIR%%/help/el_instr.html
-%%DATADIR%%/help/el_instrx.html
-%%DATADIR%%/help/el_int.html
-%%DATADIR%%/help/el_key.html
-%%DATADIR%%/help/el_kill.html
-%%DATADIR%%/help/el_lasterror.html
-%%DATADIR%%/help/el_lasterrorextra.html
-%%DATADIR%%/help/el_lasterrorline.html
-%%DATADIR%%/help/el_lasterrormessage.html
-%%DATADIR%%/help/el_left.html
-%%DATADIR%%/help/el_length.html
-%%DATADIR%%/help/el_line.html
-%%DATADIR%%/help/el_log.html
-%%DATADIR%%/help/el_log10.html
-%%DATADIR%%/help/el_lower.html
-%%DATADIR%%/help/el_md5.html
-%%DATADIR%%/help/el_mid.html
-%%DATADIR%%/help/el_minute.html
-%%DATADIR%%/help/el_month.html
-%%DATADIR%%/help/el_mouseb.html
-%%DATADIR%%/help/el_mousex.html
-%%DATADIR%%/help/el_mousey.html
-%%DATADIR%%/help/el_msec.html
-%%DATADIR%%/help/el_netaddress.html
-%%DATADIR%%/help/el_netclose.html
-%%DATADIR%%/help/el_netconnect.html
-%%DATADIR%%/help/el_netdata.html
-%%DATADIR%%/help/el_netlisten.html
-%%DATADIR%%/help/el_netread.html
-%%DATADIR%%/help/el_netwrite.html
-%%DATADIR%%/help/el_next.html
-%%DATADIR%%/help/el_numericconstants.html
-%%DATADIR%%/help/el_offerror.html
-%%DATADIR%%/help/el_onerror.html
-%%DATADIR%%/help/el_open.html
-%%DATADIR%%/help/el_operators.html
-%%DATADIR%%/help/el_ostype.html
-%%DATADIR%%/help/el_outputvisible.html
-%%DATADIR%%/help/el_pause.html
-%%DATADIR%%/help/el_penwidth.html
-%%DATADIR%%/help/el_pie.html
-%%DATADIR%%/help/el_pixel.html
-%%DATADIR%%/help/el_plot.html
-%%DATADIR%%/help/el_poly.html
-%%DATADIR%%/help/el_portin.html
-%%DATADIR%%/help/el_portout.html
-%%DATADIR%%/help/el_print.html
-%%DATADIR%%/help/el_printercancel.html
-%%DATADIR%%/help/el_printeroff.html
-%%DATADIR%%/help/el_printeron.html
-%%DATADIR%%/help/el_printerpage.html
-%%DATADIR%%/help/el_programsyntax.html
-%%DATADIR%%/help/el_prompt.html
-%%DATADIR%%/help/el_putslice.html
-%%DATADIR%%/help/el_radians.html
-%%DATADIR%%/help/el_rand.html
-%%DATADIR%%/help/el_read.html
-%%DATADIR%%/help/el_readbyte.html
-%%DATADIR%%/help/el_readline.html
-%%DATADIR%%/help/el_rect.html
-%%DATADIR%%/help/el_redim.html
-%%DATADIR%%/help/el_ref.html
-%%DATADIR%%/help/el_refresh.html
-%%DATADIR%%/help/el_rem.html
-%%DATADIR%%/help/el_removedfeatures.html
-%%DATADIR%%/help/el_replace.html
-%%DATADIR%%/help/el_replacex.html
-%%DATADIR%%/help/el_reset.html
-%%DATADIR%%/help/el_return.html
-%%DATADIR%%/help/el_rgb.html
-%%DATADIR%%/help/el_right.html
-%%DATADIR%%/help/el_say.html
-%%DATADIR%%/help/el_second.html
-%%DATADIR%%/help/el_seek.html
-%%DATADIR%%/help/el_setsetting.html
-%%DATADIR%%/help/el_sin.html
-%%DATADIR%%/help/el_size.html
-%%DATADIR%%/help/el_sound.html
-%%DATADIR%%/help/el_spritecollide.html
-%%DATADIR%%/help/el_spritedim.html
-%%DATADIR%%/help/el_spriteh.html
-%%DATADIR%%/help/el_spritehide.html
-%%DATADIR%%/help/el_spriteload.html
-%%DATADIR%%/help/el_spritemove.html
-%%DATADIR%%/help/el_spriteplace.html
-%%DATADIR%%/help/el_spritepoly.html
-%%DATADIR%%/help/el_spriter.html
-%%DATADIR%%/help/el_sprites.html
-%%DATADIR%%/help/el_spriteshow.html
-%%DATADIR%%/help/el_spriteslice.html
-%%DATADIR%%/help/el_spritev.html
-%%DATADIR%%/help/el_spritew.html
-%%DATADIR%%/help/el_spritex.html
-%%DATADIR%%/help/el_spritey.html
-%%DATADIR%%/help/el_sqr.html
-%%DATADIR%%/help/el_stamp.html
-%%DATADIR%%/help/el_start.html
-%%DATADIR%%/help/el_string.html
-%%DATADIR%%/help/el_stringconstants.html
-%%DATADIR%%/help/el_subroutine.html
-%%DATADIR%%/help/el_system.html
-%%DATADIR%%/help/el_systemrequirements.html
-%%DATADIR%%/help/el_tan.html
-%%DATADIR%%/help/el_techinformation.html
-%%DATADIR%%/help/el_text.html
-%%DATADIR%%/help/el_textheight.html
-%%DATADIR%%/help/el_textwidth.html
-%%DATADIR%%/help/el_then.html
-%%DATADIR%%/help/el_throwerror.html
-%%DATADIR%%/help/el_tobinary.html
-%%DATADIR%%/help/el_tohex.html
-%%DATADIR%%/help/el_tooctal.html
-%%DATADIR%%/help/el_toradix.html
-%%DATADIR%%/help/el_try.html
-%%DATADIR%%/help/el_until.html
-%%DATADIR%%/help/el_upper.html
-%%DATADIR%%/help/el_variables.html
-%%DATADIR%%/help/el_version.html
-%%DATADIR%%/help/el_volume.html
-%%DATADIR%%/help/el_wavplay.html
-%%DATADIR%%/help/el_wavstop.html
-%%DATADIR%%/help/el_wavwait.html
-%%DATADIR%%/help/el_while.html
-%%DATADIR%%/help/el_whileendwhile.html
-%%DATADIR%%/help/el_write.html
-%%DATADIR%%/help/el_writebyte.html
-%%DATADIR%%/help/el_writeline.html
-%%DATADIR%%/help/el_year.html
-%%DATADIR%%/help/en_abs.html
-%%DATADIR%%/help/en_acos.html
-%%DATADIR%%/help/en_alert.html
-%%DATADIR%%/help/en_anonymousarrays.html
-%%DATADIR%%/help/en_arc.html
-%%DATADIR%%/help/en_arrays.html
-%%DATADIR%%/help/en_asc.html
-%%DATADIR%%/help/en_asin.html
-%%DATADIR%%/help/en_atan.html
-%%DATADIR%%/help/en_call.html
-%%DATADIR%%/help/en_case.html
-%%DATADIR%%/help/en_ceil.html
-%%DATADIR%%/help/en_changedir.html
-%%DATADIR%%/help/en_chord.html
-%%DATADIR%%/help/en_chr.html
-%%DATADIR%%/help/en_circle.html
-%%DATADIR%%/help/en_clg.html
-%%DATADIR%%/help/en_clickb.html
-%%DATADIR%%/help/en_clickclear.html
-%%DATADIR%%/help/en_clickx.html
-%%DATADIR%%/help/en_clicky.html
-%%DATADIR%%/help/en_close.html
-%%DATADIR%%/help/en_cls.html
-%%DATADIR%%/help/en_color.html
-%%DATADIR%%/help/en_commandline.html
-%%DATADIR%%/help/en_compileerrorcodes.html
-%%DATADIR%%/help/en_confirm.html
-%%DATADIR%%/help/en_continuedo.html
-%%DATADIR%%/help/en_continuefor.html
-%%DATADIR%%/help/en_continuewhile.html
-%%DATADIR%%/help/en_cos.html
-%%DATADIR%%/help/en_count.html
-%%DATADIR%%/help/en_countx.html
-%%DATADIR%%/help/en_currentdir.html
-%%DATADIR%%/help/en_day.html
-%%DATADIR%%/help/en_dbclose.html
-%%DATADIR%%/help/en_dbcloseset.html
-%%DATADIR%%/help/en_dbexecute.html
-%%DATADIR%%/help/en_dbfloat.html
-%%DATADIR%%/help/en_dbint.html
-%%DATADIR%%/help/en_dbnull.html
-%%DATADIR%%/help/en_dbopen.html
-%%DATADIR%%/help/en_dbopenset.html
-%%DATADIR%%/help/en_dbrow.html
-%%DATADIR%%/help/en_dbstring.html
-%%DATADIR%%/help/en_degrees.html
-%%DATADIR%%/help/en_dim.html
-%%DATADIR%%/help/en_dir.html
-%%DATADIR%%/help/en_do.html
-%%DATADIR%%/help/en_editvisible.html
-%%DATADIR%%/help/en_else.html
-%%DATADIR%%/help/en_end.html
-%%DATADIR%%/help/en_endfunction.html
-%%DATADIR%%/help/en_endif.html
-%%DATADIR%%/help/en_endsubroutine.html
-%%DATADIR%%/help/en_endwhile.html
-%%DATADIR%%/help/en_eof.html
-%%DATADIR%%/help/en_errorcodes.html
-%%DATADIR%%/help/en_exists.html
-%%DATADIR%%/help/en_exitdo.html
-%%DATADIR%%/help/en_exitfor.html
-%%DATADIR%%/help/en_exitwhile.html
-%%DATADIR%%/help/en_exp.html
-%%DATADIR%%/help/en_explode.html
-%%DATADIR%%/help/en_explodex.html
-%%DATADIR%%/help/en_expressions.html
-%%DATADIR%%/help/en_fastgraphics.html
-%%DATADIR%%/help/en_float.html
-%%DATADIR%%/help/en_floor.html
-%%DATADIR%%/help/en_font.html
-%%DATADIR%%/help/en_for.html
-%%DATADIR%%/help/en_freedb.html
-%%DATADIR%%/help/en_freedbset.html
-%%DATADIR%%/help/en_freefile.html
-%%DATADIR%%/help/en_freenet.html
-%%DATADIR%%/help/en_frombinary.html
-%%DATADIR%%/help/en_fromhex.html
-%%DATADIR%%/help/en_fromoctal.html
-%%DATADIR%%/help/en_fromradix.html
-%%DATADIR%%/help/en_function.html
-%%DATADIR%%/help/en_getbrushcolor.html
-%%DATADIR%%/help/en_getcolor.html
-%%DATADIR%%/help/en_getpenwidth.html
-%%DATADIR%%/help/en_getsetting.html
-%%DATADIR%%/help/en_getslice.html
-%%DATADIR%%/help/en_global.html
-%%DATADIR%%/help/en_gosub.html
-%%DATADIR%%/help/en_goto.html
-%%DATADIR%%/help/en_graphheight.html
-%%DATADIR%%/help/en_graphsize.html
-%%DATADIR%%/help/en_graphvisible.html
-%%DATADIR%%/help/en_graphwidth.html
-%%DATADIR%%/help/en_hour.html
-%%DATADIR%%/help/en_if.html
-%%DATADIR%%/help/en_ifthen.html
-%%DATADIR%%/help/en_imgload.html
-%%DATADIR%%/help/en_imgsave.html
-%%DATADIR%%/help/en_implode.html
-%%DATADIR%%/help/en_include.html
-%%DATADIR%%/help/en_input.html
-%%DATADIR%%/help/en_instr.html
-%%DATADIR%%/help/en_instrx.html
-%%DATADIR%%/help/en_int.html
-%%DATADIR%%/help/en_key.html
-%%DATADIR%%/help/en_kill.html
-%%DATADIR%%/help/en_lasterror.html
-%%DATADIR%%/help/en_lasterrorextra.html
-%%DATADIR%%/help/en_lasterrorline.html
-%%DATADIR%%/help/en_lasterrormessage.html
-%%DATADIR%%/help/en_left.html
-%%DATADIR%%/help/en_length.html
-%%DATADIR%%/help/en_line.html
-%%DATADIR%%/help/en_log.html
-%%DATADIR%%/help/en_log10.html
-%%DATADIR%%/help/en_lower.html
-%%DATADIR%%/help/en_md5.html
-%%DATADIR%%/help/en_mid.html
-%%DATADIR%%/help/en_midx.html
-%%DATADIR%%/help/en_minute.html
-%%DATADIR%%/help/en_month.html
-%%DATADIR%%/help/en_mouseb.html
-%%DATADIR%%/help/en_mousex.html
-%%DATADIR%%/help/en_mousey.html
-%%DATADIR%%/help/en_msec.html
-%%DATADIR%%/help/en_netaddress.html
-%%DATADIR%%/help/en_netclose.html
-%%DATADIR%%/help/en_netconnect.html
-%%DATADIR%%/help/en_netdata.html
-%%DATADIR%%/help/en_netlisten.html
-%%DATADIR%%/help/en_netread.html
-%%DATADIR%%/help/en_netwrite.html
-%%DATADIR%%/help/en_next.html
-%%DATADIR%%/help/en_numericconstants.html
-%%DATADIR%%/help/en_offerror.html
-%%DATADIR%%/help/en_onerror.html
-%%DATADIR%%/help/en_open.html
-%%DATADIR%%/help/en_operators.html
-%%DATADIR%%/help/en_ostype.html
-%%DATADIR%%/help/en_outputvisible.html
-%%DATADIR%%/help/en_pause.html
-%%DATADIR%%/help/en_penwidth.html
-%%DATADIR%%/help/en_pie.html
-%%DATADIR%%/help/en_pixel.html
-%%DATADIR%%/help/en_plot.html
-%%DATADIR%%/help/en_poly.html
-%%DATADIR%%/help/en_portin.html
-%%DATADIR%%/help/en_portout.html
-%%DATADIR%%/help/en_print.html
-%%DATADIR%%/help/en_printercancel.html
-%%DATADIR%%/help/en_printeroff.html
-%%DATADIR%%/help/en_printeron.html
-%%DATADIR%%/help/en_printerpage.html
-%%DATADIR%%/help/en_programsyntax.html
-%%DATADIR%%/help/en_prompt.html
-%%DATADIR%%/help/en_putslice.html
-%%DATADIR%%/help/en_radians.html
-%%DATADIR%%/help/en_rand.html
-%%DATADIR%%/help/en_read.html
-%%DATADIR%%/help/en_readbyte.html
-%%DATADIR%%/help/en_readline.html
-%%DATADIR%%/help/en_rect.html
-%%DATADIR%%/help/en_redim.html
-%%DATADIR%%/help/en_ref.html
-%%DATADIR%%/help/en_refresh.html
-%%DATADIR%%/help/en_regexminimal.html
-%%DATADIR%%/help/en_rem.html
-%%DATADIR%%/help/en_removedfeatures.html
-%%DATADIR%%/help/en_replace.html
-%%DATADIR%%/help/en_replacex.html
-%%DATADIR%%/help/en_reset.html
-%%DATADIR%%/help/en_return.html
-%%DATADIR%%/help/en_rgb.html
-%%DATADIR%%/help/en_right.html
-%%DATADIR%%/help/en_say.html
-%%DATADIR%%/help/en_second.html
-%%DATADIR%%/help/en_seek.html
-%%DATADIR%%/help/en_setsetting.html
-%%DATADIR%%/help/en_sin.html
-%%DATADIR%%/help/en_size.html
-%%DATADIR%%/help/en_sound.html
-%%DATADIR%%/help/en_spritecollide.html
-%%DATADIR%%/help/en_spritedim.html
-%%DATADIR%%/help/en_spriteh.html
-%%DATADIR%%/help/en_spritehide.html
-%%DATADIR%%/help/en_spriteload.html
-%%DATADIR%%/help/en_spritemove.html
-%%DATADIR%%/help/en_spriteplace.html
-%%DATADIR%%/help/en_spritepoly.html
-%%DATADIR%%/help/en_spriter.html
-%%DATADIR%%/help/en_sprites.html
-%%DATADIR%%/help/en_spriteshow.html
-%%DATADIR%%/help/en_spriteslice.html
-%%DATADIR%%/help/en_spritev.html
-%%DATADIR%%/help/en_spritew.html
-%%DATADIR%%/help/en_spritex.html
-%%DATADIR%%/help/en_spritey.html
-%%DATADIR%%/help/en_sqr.html
-%%DATADIR%%/help/en_stamp.html
-%%DATADIR%%/help/en_start.html
-%%DATADIR%%/help/en_string.html
-%%DATADIR%%/help/en_stringconstants.html
-%%DATADIR%%/help/en_subroutine.html
-%%DATADIR%%/help/en_system.html
-%%DATADIR%%/help/en_systemrequirements.html
-%%DATADIR%%/help/en_tan.html
-%%DATADIR%%/help/en_techinformation.html
-%%DATADIR%%/help/en_text.html
-%%DATADIR%%/help/en_textheight.html
-%%DATADIR%%/help/en_textwidth.html
-%%DATADIR%%/help/en_then.html
-%%DATADIR%%/help/en_throwerror.html
-%%DATADIR%%/help/en_tobinary.html
-%%DATADIR%%/help/en_tohex.html
-%%DATADIR%%/help/en_tooctal.html
-%%DATADIR%%/help/en_toradix.html
-%%DATADIR%%/help/en_try.html
-%%DATADIR%%/help/en_until.html
-%%DATADIR%%/help/en_upper.html
-%%DATADIR%%/help/en_variables.html
-%%DATADIR%%/help/en_version.html
-%%DATADIR%%/help/en_volume.html
-%%DATADIR%%/help/en_wavlength.html
-%%DATADIR%%/help/en_wavpause.html
-%%DATADIR%%/help/en_wavplay.html
-%%DATADIR%%/help/en_wavpos.html
-%%DATADIR%%/help/en_wavseek.html
-%%DATADIR%%/help/en_wavstate.html
-%%DATADIR%%/help/en_wavstop.html
-%%DATADIR%%/help/en_wavwait.html
-%%DATADIR%%/help/en_while.html
-%%DATADIR%%/help/en_write.html
-%%DATADIR%%/help/en_writebyte.html
-%%DATADIR%%/help/en_writeline.html
-%%DATADIR%%/help/en_year.html
-%%DATADIR%%/help/es_abs.html
-%%DATADIR%%/help/es_acos.html
-%%DATADIR%%/help/es_anonymousarrays.html
-%%DATADIR%%/help/es_arrays.html
-%%DATADIR%%/help/es_asc.html
-%%DATADIR%%/help/es_asin.html
-%%DATADIR%%/help/es_atan.html
-%%DATADIR%%/help/es_ceil.html
-%%DATADIR%%/help/es_changedir.html
-%%DATADIR%%/help/es_chr.html
-%%DATADIR%%/help/es_circle.html
-%%DATADIR%%/help/es_clg.html
-%%DATADIR%%/help/es_clickb.html
-%%DATADIR%%/help/es_clickclear.html
-%%DATADIR%%/help/es_clickx.html
-%%DATADIR%%/help/es_clicky.html
-%%DATADIR%%/help/es_close.html
-%%DATADIR%%/help/es_cls.html
-%%DATADIR%%/help/es_color.html
-%%DATADIR%%/help/es_cos.html
-%%DATADIR%%/help/es_count.html
-%%DATADIR%%/help/es_countx.html
-%%DATADIR%%/help/es_currentdir.html
-%%DATADIR%%/help/es_day.html
-%%DATADIR%%/help/es_dbclose.html
-%%DATADIR%%/help/es_dbcloseset.html
-%%DATADIR%%/help/es_dbexecute.html
-%%DATADIR%%/help/es_dbfloat.html
-%%DATADIR%%/help/es_dbint.html
-%%DATADIR%%/help/es_dbopen.html
-%%DATADIR%%/help/es_dbopenset.html
-%%DATADIR%%/help/es_dbrow.html
-%%DATADIR%%/help/es_dbstring.html
-%%DATADIR%%/help/es_degrees.html
-%%DATADIR%%/help/es_dim.html
-%%DATADIR%%/help/es_dir.html
-%%DATADIR%%/help/es_dountil.html
-%%DATADIR%%/help/es_end.html
-%%DATADIR%%/help/es_eof.html
-%%DATADIR%%/help/es_errorcodes.html
-%%DATADIR%%/help/es_exists.html
-%%DATADIR%%/help/es_exp.html
-%%DATADIR%%/help/es_explode.html
-%%DATADIR%%/help/es_explodex.html
-%%DATADIR%%/help/es_fastgraphics.html
-%%DATADIR%%/help/es_float.html
-%%DATADIR%%/help/es_floor.html
-%%DATADIR%%/help/es_font.html
-%%DATADIR%%/help/es_fornext.html
-%%DATADIR%%/help/es_getcolor.html
-%%DATADIR%%/help/es_getsetting.html
-%%DATADIR%%/help/es_getslice.html
-%%DATADIR%%/help/es_gosubreturn.html
-%%DATADIR%%/help/es_goto.html
-%%DATADIR%%/help/es_graphheight.html
-%%DATADIR%%/help/es_graphsize.html
-%%DATADIR%%/help/es_graphwidth.html
-%%DATADIR%%/help/es_hour.html
-%%DATADIR%%/help/es_ifthen.html
-%%DATADIR%%/help/es_imgload.html
-%%DATADIR%%/help/es_imgsave.html
-%%DATADIR%%/help/es_implode.html
-%%DATADIR%%/help/es_input.html
-%%DATADIR%%/help/es_instr.html
-%%DATADIR%%/help/es_instrx.html
-%%DATADIR%%/help/es_int.html
-%%DATADIR%%/help/es_key.html
-%%DATADIR%%/help/es_kill.html
-%%DATADIR%%/help/es_lasterror.html
-%%DATADIR%%/help/es_lasterrorextra.html
-%%DATADIR%%/help/es_lasterrorline.html
-%%DATADIR%%/help/es_lasterrormessage.html
-%%DATADIR%%/help/es_left.html
-%%DATADIR%%/help/es_length.html
-%%DATADIR%%/help/es_line.html
-%%DATADIR%%/help/es_log.html
-%%DATADIR%%/help/es_log10.html
-%%DATADIR%%/help/es_lower.html
-%%DATADIR%%/help/es_md5.html
-%%DATADIR%%/help/es_mid.html
-%%DATADIR%%/help/es_minute.html
-%%DATADIR%%/help/es_month.html
-%%DATADIR%%/help/es_mouseb.html
-%%DATADIR%%/help/es_mousex.html
-%%DATADIR%%/help/es_mousey.html
-%%DATADIR%%/help/es_msec.html
-%%DATADIR%%/help/es_netaddress.html
-%%DATADIR%%/help/es_netclose.html
-%%DATADIR%%/help/es_netconnect.html
-%%DATADIR%%/help/es_netdata.html
-%%DATADIR%%/help/es_netlisten.html
-%%DATADIR%%/help/es_netread.html
-%%DATADIR%%/help/es_netwrite.html
-%%DATADIR%%/help/es_numericconstants.html
-%%DATADIR%%/help/es_offerror.html
-%%DATADIR%%/help/es_onerror.html
-%%DATADIR%%/help/es_open.html
-%%DATADIR%%/help/es_operators.html
-%%DATADIR%%/help/es_ostype.html
-%%DATADIR%%/help/es_pause.html
-%%DATADIR%%/help/es_pixel.html
-%%DATADIR%%/help/es_plot.html
-%%DATADIR%%/help/es_poly.html
-%%DATADIR%%/help/es_portin.html
-%%DATADIR%%/help/es_portout.html
-%%DATADIR%%/help/es_print.html
-%%DATADIR%%/help/es_programsyntax.html
-%%DATADIR%%/help/es_putslice.html
-%%DATADIR%%/help/es_radians.html
-%%DATADIR%%/help/es_rand.html
-%%DATADIR%%/help/es_read.html
-%%DATADIR%%/help/es_readline.html
-%%DATADIR%%/help/es_rect.html
-%%DATADIR%%/help/es_redim.html
-%%DATADIR%%/help/es_refresh.html
-%%DATADIR%%/help/es_rem.html
-%%DATADIR%%/help/es_replace.html
-%%DATADIR%%/help/es_replacex.html
-%%DATADIR%%/help/es_reset.html
-%%DATADIR%%/help/es_rgb.html
-%%DATADIR%%/help/es_right.html
-%%DATADIR%%/help/es_say.html
-%%DATADIR%%/help/es_second.html
-%%DATADIR%%/help/es_seek.html
-%%DATADIR%%/help/es_setsetting.html
-%%DATADIR%%/help/es_sin.html
-%%DATADIR%%/help/es_size.html
-%%DATADIR%%/help/es_sound.html
-%%DATADIR%%/help/es_spritecollide.html
-%%DATADIR%%/help/es_spritedim.html
-%%DATADIR%%/help/es_spriteh.html
-%%DATADIR%%/help/es_spritehide.html
-%%DATADIR%%/help/es_spriteload.html
-%%DATADIR%%/help/es_spritemove.html
-%%DATADIR%%/help/es_spriteplace.html
-%%DATADIR%%/help/es_spriteshow.html
-%%DATADIR%%/help/es_spriteslice.html
-%%DATADIR%%/help/es_spritev.html
-%%DATADIR%%/help/es_spritew.html
-%%DATADIR%%/help/es_spritex.html
-%%DATADIR%%/help/es_spritey.html
-%%DATADIR%%/help/es_sqr.html
-%%DATADIR%%/help/es_stamp.html
-%%DATADIR%%/help/es_start.html
-%%DATADIR%%/help/es_string.html
-%%DATADIR%%/help/es_stringconstants.html
-%%DATADIR%%/help/es_system.html
-%%DATADIR%%/help/es_systemrequirements.html
-%%DATADIR%%/help/es_tan.html
-%%DATADIR%%/help/es_techinformation.html
-%%DATADIR%%/help/es_text.html
-%%DATADIR%%/help/es_upper.html
-%%DATADIR%%/help/es_variables.html
-%%DATADIR%%/help/es_volume.html
-%%DATADIR%%/help/es_wavplay.html
-%%DATADIR%%/help/es_wavstop.html
-%%DATADIR%%/help/es_wavwait.html
-%%DATADIR%%/help/es_whileendwhile.html
-%%DATADIR%%/help/es_write.html
-%%DATADIR%%/help/es_writeline.html
-%%DATADIR%%/help/es_year.html
-%%DATADIR%%/help/fr_abs.html
-%%DATADIR%%/help/fr_acos.html
-%%DATADIR%%/help/fr_alert.html
-%%DATADIR%%/help/fr_anonymousarrays.html
-%%DATADIR%%/help/fr_arc.html
-%%DATADIR%%/help/fr_arrays.html
-%%DATADIR%%/help/fr_asc.html
-%%DATADIR%%/help/fr_asin.html
-%%DATADIR%%/help/fr_atan.html
-%%DATADIR%%/help/fr_call.html
-%%DATADIR%%/help/fr_ceil.html
-%%DATADIR%%/help/fr_changedir.html
-%%DATADIR%%/help/fr_chord.html
-%%DATADIR%%/help/fr_chr.html
-%%DATADIR%%/help/fr_circle.html
-%%DATADIR%%/help/fr_clg.html
-%%DATADIR%%/help/fr_clickb.html
-%%DATADIR%%/help/fr_clickclear.html
-%%DATADIR%%/help/fr_clickx.html
-%%DATADIR%%/help/fr_clicky.html
-%%DATADIR%%/help/fr_close.html
-%%DATADIR%%/help/fr_cls.html
-%%DATADIR%%/help/fr_color.html
-%%DATADIR%%/help/fr_commandline.html
-%%DATADIR%%/help/fr_compileerrorcodes.html
-%%DATADIR%%/help/fr_confirm.html
-%%DATADIR%%/help/fr_cos.html
-%%DATADIR%%/help/fr_count.html
-%%DATADIR%%/help/fr_countx.html
-%%DATADIR%%/help/fr_currentdir.html
-%%DATADIR%%/help/fr_day.html
-%%DATADIR%%/help/fr_dbclose.html
-%%DATADIR%%/help/fr_dbcloseset.html
-%%DATADIR%%/help/fr_dbexecute.html
-%%DATADIR%%/help/fr_dbfloat.html

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005110645.04B6jnSh088919>