diff --git a/data/pages/wiki/syntax.txt b/data/pages/wiki/syntax.txt
index 2a1183c40f8baa5d99ebb3eef4c2c97dfe971bf9..7e9ca4110ae562d5c3fbe9a6d7b2feb91ea51761 100644
--- a/data/pages/wiki/syntax.txt
+++ b/data/pages/wiki/syntax.txt
@@ -336,7 +336,7 @@ class HelloWorldApp {
 }
 </code>
 
-The following language strings are currently recognized: //actionscript, actionscript-french, ada, apache, applescript, asm, asp, bash, caddcl, cadlisp, c, c_mac, cpp, csharp, css, delphi, diff, d, div, dos, eiffel, freebasic, gml, html4strict, ini, inno, java, javascript, lisp, lua, matlab, mpasm, nsis, objc, ocaml, ocaml-brief, oobas, oracle8, pascal, perl, php-brief, php, python, qbasic, scheme, sdlbasic, smarty, sql, ruby, vb, vbnet, vhdl, visualfoxpro, xml//
+The following language strings are currently recognized: //actionscript, actionscript-french, ada, apache, applescript, asm, asp, bash, blitzbasic, caddcl, cadlisp, c, c_mac, cpp, csharp, css, delphi, diff, d, div, dos, eiffel, freebasic, gml, html4strict, ini, inno, java, javascript, lisp, lua, matlab, mpasm, mysql, nsis, objc, ocaml, ocaml-brief, oobas, oracle8, pascal, perl, php-brief, php, python, qbasic, scheme, sdlbasic, smarty, sql, ruby, vb, vbnet, vhdl, visualfoxpro, xml//
 
 ===== Embedding HTML and PHP =====
 
diff --git a/inc/geshi.php b/inc/geshi.php
index c3a6cb6434b71115c4efb200e55cfb5355eb4bb0..69846eea48bd54f216931c77180fad57493a630f 100644
--- a/inc/geshi.php
+++ b/inc/geshi.php
@@ -28,7 +28,7 @@
  * @author    Nigel McNie <nigel@geshi.org>
  * @copyright Copyright &copy; 2004, 2005, Nigel McNie
  * @license   http://gnu.org/copyleft/gpl.html GNU GPL
- * @version   $Id: geshi.php,v 1.15 2005/09/22 01:41:46 oracleshinoda Exp $
+ * @version   $Id: geshi.php,v 1.19 2005/10/22 07:52:59 oracleshinoda Exp $
  *
  */
 
@@ -40,7 +40,7 @@
 //
 
 /** The version of this GeSHi file */
-define('GESHI_VERSION', '1.0.7.3');
+define('GESHI_VERSION', '1.0.7.4');
 
 /** For the future (though this may never be realised) */
 define('GESHI_OUTPUT_HTML', 0);
@@ -1687,14 +1687,19 @@ class GeSHi
 											$test_str = @htmlspecialchars($test_str, ENT_COMPAT, $this->encoding);
 										}
 										$close_pos = strpos($part, "\n", $i);
+                                        $oops = false;
 										if ($close_pos === false) {
 											$close_pos = strlen($part);
+                                            $oops = true;
 										}
 										$test_str .= @htmlspecialchars(substr($part, $i + $com_len, $close_pos - $i - $com_len), ENT_COMPAT, $this->encoding);
 										if ($this->lexic_permissions['COMMENTS'][$comment_key]) {
 											$test_str .= "</span>";
 										}
-										$test_str .= "\n";
+                                        // Take into account that the comment might be the last in the source
+                                        if (!$oops) { 
+										  $test_str .= "\n";
+                                        }
 										$i = $close_pos;
 										// parse the rest
 										$result .= $this->parse_non_string_part($stuff_to_parse);
@@ -1735,10 +1740,10 @@ class GeSHi
 					$result .= @htmlspecialchars($part, ENT_COMPAT, $this->encoding);
 				}
 				// Close the <span> that surrounds the block
-                // Removed since the only time this is used is for php and it doesn't need a </span>
-				/*if ($this->strict_mode && $this->lexic_permissions['SCRIPT']) {
+				if ($this->strict_mode && $this->language_data['STYLES']['SCRIPT'][$script_key] != '' &&
+                    $this->lexic_permissions['SCRIPT']) {
 					$result .= '</span>';
-				}*/
+				}
 			} else {
                 // Else not a block to highlight
 				$result .= @htmlspecialchars($part, ENT_COMPAT, $this->encoding);
@@ -2305,7 +2310,10 @@ class GeSHi
 		$header = $this->format_header_content();
 
         if (GESHI_HEADER_NONE == $this->header_type) {
-            return "$header<ol$ol_attributes>";
+            if ($this->line_numbers != GESHI_NO_LINE_NUMBERS) {
+                return "$header<ol$ol_attributes>";
+            }
+            return $header;
         }
         
 		// Work out what to return and do it
@@ -2615,11 +2623,11 @@ if (!function_exists('geshi_highlight')) {
 	function geshi_highlight ($string, $language, $path, $return = false)
 	{
 		$geshi = new GeSHi($string, $language, $path);
-		$geshi->set_header_type(GESHI_HEADER_DIV);
+		$geshi->set_header_type(GESHI_HEADER_NONE);
 		if ($return) {
-			return str_replace('<div>', '<code>', str_replace('</div>', '</code>', $geshi->parse_code()));
+			return '<code>' . $geshi->parse_code() . '</code>';
 		}
-		echo str_replace('<div>', '<code>', str_replace('</div>', '</code>', $geshi->parse_code()));
+		echo '<code>' . $geshi->parse_code() . '</code>';
 		if ($geshi->error()) {
 			return false;
 		}
diff --git a/inc/geshi/actionscript-french.php b/inc/geshi/actionscript-french.php
index 50bfb5a1fd62eb8228e62745b35a7dd03945f75a..6f17b3531da990115d367b3b5900f28d96b3172b 100644
--- a/inc/geshi/actionscript-french.php
+++ b/inc/geshi/actionscript-french.php
@@ -4,10 +4,10 @@
  * ----------------
  * Author: Steffen Krause (Steffen.krause@muse.de)
  * Copyright: (c) 2004 Steffen Krause, Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.3 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.4 $
  * Date Started: 2004/06/20
- * Last Modified: $Date: 2005/09/22 01:30:09 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Actionscript language file for GeSHi.
  *
diff --git a/inc/geshi/actionscript.php b/inc/geshi/actionscript.php
index d34bb5daf8ec9a26f5d66c4f4c984936de640b51..89dbddf9d20f7879f08973f520fab496f7b0ee2a 100644
--- a/inc/geshi/actionscript.php
+++ b/inc/geshi/actionscript.php
@@ -4,10 +4,10 @@
  * ----------------
  * Author: Steffen Krause (Steffen.krause@muse.de)
  * Copyright: (c) 2004 Steffen Krause, Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/06/20
- * Last Modified: $Date: 2005/09/22 01:30:09 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Actionscript language file for GeSHi.
  *
diff --git a/inc/geshi/ada.php b/inc/geshi/ada.php
index 5a2ed40ebd9ed875bc21626361b9fa4d6f6ce368..6b3300c4710152cfb55e830a198e4795943761de 100644
--- a/inc/geshi/ada.php
+++ b/inc/geshi/ada.php
@@ -4,10 +4,10 @@
  * -------
  * Author: Tux (tux@inmail.cz)
  * Copyright: (c) 2004 Tux (http://tux.a4.cz/), Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.5 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.6 $
  * Date Started: 2004/07/29
- * Last Modified: $Date: 2005/09/22 01:30:09 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Ada language file for GeSHi.
  * Words are from SciTe configuration file
diff --git a/inc/geshi/apache.php b/inc/geshi/apache.php
index 2a2cd2a48cc45844915c4f1f761c546441c73275..93428d6d55e8f2ddae8ac9f905826d3b5f7b2be8 100644
--- a/inc/geshi/apache.php
+++ b/inc/geshi/apache.php
@@ -4,10 +4,10 @@
  * ----------
  * Author: Tux (tux@inmail.cz)
  * Copyright: (c) 2004 Tux (http://tux.a4.cz/), Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.5 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.6 $
  * Date Started: 2004/29/07
- * Last Modified: $Date: 2005/09/22 01:30:09 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Apache language file for GeSHi.
  * Words are from SciTe configuration file
diff --git a/inc/geshi/applescript.php b/inc/geshi/applescript.php
index 6e3db71f4697367436fe2ec8d19a291517636afa..1cf07274ee9319423cdb002d1c6803b91dfcef83 100644
--- a/inc/geshi/applescript.php
+++ b/inc/geshi/applescript.php
@@ -4,10 +4,10 @@
  * --------
  * Author: Stephan Klimek (http://www.initware.org)
  * Copyright: Stephan Klimek (http://www.initware.org)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.3 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.4 $
  * Date Started: 2005/07/20
- * Last Modified: $Date: 2005/09/22 01:30:09 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * AppleScript language file for GeSHi.
  *
diff --git a/inc/geshi/asm.php b/inc/geshi/asm.php
index d1ac9f507ba7b127d2ad62cef9abab6dc4b7934e..cad5d06be1eeb39e45e450b2627ebf7617f142ce 100644
--- a/inc/geshi/asm.php
+++ b/inc/geshi/asm.php
@@ -4,10 +4,10 @@
  * -------
  * Author: Tux (tux@inmail.cz)
  * Copyright: (c) 2004 Tux (http://tux.a4.cz/), Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/07/27
- * Last Modified: $Date: 2005/09/22 01:30:09 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * x86 Assembler language file for GeSHi.
  * Words are from SciTe configuration file (based on NASM syntax)
diff --git a/inc/geshi/asp.php b/inc/geshi/asp.php
index d444043bd7cb6957d8fb8a8da79189e73c23b4b0..6b2b4cede6f4d7c7a7c54640eb4cee42ba5e47e2 100644
--- a/inc/geshi/asp.php
+++ b/inc/geshi/asp.php
@@ -4,10 +4,10 @@
  * --------
  * Author: Amit Gupta (http://blog.igeek.info/)
  * Copyright: (c) 2004 Amit Gupta (http://blog.igeek.info/), Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/08/13
- * Last Modified: $Date: 2005/09/22 01:30:09 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * ASP language file for GeSHi.
  *
diff --git a/inc/geshi/bash.php b/inc/geshi/bash.php
index c46e4ee9978d536dbbdb5528c8bc0147e370599a..260d6e589f308c3a6010a4c90e9f41a8873e5b51 100644
--- a/inc/geshi/bash.php
+++ b/inc/geshi/bash.php
@@ -4,10 +4,10 @@
  * --------
  * Author: Andreas Gohr (andi@splitbrain.org)
  * Copyright: (c) 2004 Andreas Gohr, Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/08/20
- * Last Modified: $Date: 2005/09/22 01:30:09 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * BASH language file for GeSHi.
  *
diff --git a/inc/geshi/blitzbasic.php b/inc/geshi/blitzbasic.php
new file mode 100644
index 0000000000000000000000000000000000000000..d8a2ab08f7c05893551c594c011712274bc916b6
--- /dev/null
+++ b/inc/geshi/blitzbasic.php
@@ -0,0 +1,187 @@
+<?php
+/*************************************************************************************
+ * blitzbasic.php
+ * --------------
+ * Author: Pàdraig O`Connel (info@moonsword.info)
+ * Copyright: (c) 2005 Pàdraig O`Connel (http://moonsword.info)
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.2 $
+ * Date Started: 16.10.2005
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
+ *
+ * BlitzBasic language file for GeSHi.
+ *
+ * It is a simple Basic dialect. Released for Games and Network Connections.
+ * In this Language File are all functions included (2D BB and 3D BB)
+ *
+ *
+ * CHANGES
+ * -------
+ * 2005/10/22 (1.0.0)
+ *  -  First Release
+ *
+ * TODO (updated 2005/10/22)
+ * -------------------------
+ * * Sort out the Basic commands for splitting up.
+ * * To set up the right colors.
+ *      (the colors are ok, but not the correct ones)
+ * * Split to BlitzBasic 2D and BlitzBasic 3D.
+ *
+ *************************************************************************************
+ *
+ *     This file is part of GeSHi.
+ *
+ *   GeSHi is free software; you can redistribute it and/or modify
+ *   it under the terms of the GNU General Public License as published by
+ *   the Free Software Foundation; either version 2 of the License, or
+ *   (at your option) any later version.
+ *
+ *   GeSHi is distributed in the hope that it will be useful,
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *   GNU General Public License for more details.
+ *
+ *   You should have received a copy of the GNU General Public License
+ *   along with GeSHi; if not, write to the Free Software
+ *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *
+ ************************************************************************************/
+
+ $language_data = array (
+  'LANG_NAME' => 'BLITZ BASIC',
+  'COMMENT_SINGLE' => array(1 => ';'),
+  'COMMENT_MULTI' => array(),
+  'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
+  'QUOTEMARKS' => array('"'),
+  'ESCAPE_CHAR' => '',
+  'KEYWORDS' => array(
+    1 => array(
+    	'If','EndIf','ElseIf','Else If','Else','While','Wend','Return','Next','Include','End Type','End Select','End If','End Function','End','Select',
+    	'Type','Forever','For','Or','And','AppTitle','Case','Goto','Gosub','Step','Stop','Int','Last','False','Then','To','True','Until','Float',
+    	'String','Before','Not'
+    ),
+    2 => array(
+
+      // All Functions - 2D BB and 3D BB
+ 	  	'Xor','WriteString','WriteShort','WritePixelFast','WritePixel','WriteLine','WriteInt','WriteFloat','WriteFile','WriteBytes',
+		'WriteByte','Write','WaitTimer','WaitMouse','WaitKey','WaitJoy','VWait','Viewport',
+		'Upper','UpdateGamma','UnlockBuffer','UDPTimeouts','UDPStreamPort','UDPStreamIP','UDPMsgPort','UDPMsgIP',
+		'Trim','TotalVidMem','TileImage','TileBlock','TFormImage','TFormFilter','Text',
+		'TCPTimeouts','TCPStreamPort','TCPStreamIP','Tan','SystemProperty','StringWidth','StringHeight','Str','StopNetGame',
+		'StopChannel','StartNetGame','Sqr','SoundVolume','SoundPitch','SoundPan','Sin','Shr',
+		'ShowPointer','Shl','Sgn','SetGfxDriver','SetGamma','SetFont','SetEnv','SetBuffer','SendUDPMsg','SendNetMsg',
+		'SeekFile','SeedRnd','ScanLine','ScaleImage','SaveImage','SaveBuffer','Sar','RuntimeError','RSet',
+		'RotateImage','RndSeed','Rnd','Right','ResumeChannel','Restore','ResizeImage','ResizeBank','Replace',
+		'Repeat','RecvUDPMsg','RecvNetMsg','RectsOverlap','Rect','ReadString','ReadShort','ReadPixelFast','ReadPixel','ReadLine',
+		'ReadInt','ReadFloat','ReadFile','ReadDir','ReadBytes','ReadByte','ReadAvail','Read','Rand','Print',
+		'PokeShort','PokeInt','PokeFloat','PokeByte','Plot','PlaySound','PlayMusic','PlayCDTrack','Pi','PeekShort',
+		'PeekInt','PeekFloat','PeekByte','PauseChannel','Oval','Origin','OpenTCPStream','OpenMovie','OpenFile',
+		'Null','NextFile','New','NetPlayerName','NetPlayerLocal','NetMsgType','NetMsgTo','NetMsgFrom',
+		'NetMsgData','MovieWidth','MoviePlaying','MovieHeight','MoveMouse','MouseZSpeed','MouseZ','MouseYSpeed','MouseY','MouseXSpeed',
+		'MouseX','MouseHit','MouseDown','Mod','Millisecs','MidHandle','Mid','MaskImage','LSet','Lower',
+		'LoopSound','Log10','Log','LockBuffer','Locate','Local','LoadSound','LoadImage','LoadFont','LoadBuffer',
+		'LoadAnimImage','Line','Len','Left','KeyHit','KeyDown','JoyZDir','JoyZ','JoyYDir',
+		'JoyYaw','JoyY','JoyXDir','JoyX','JoyVDir','JoyV','JoyUDir','JoyU','JoyType','JoyRoll',
+		'JoyPitch','JoyHit','JoyHat','JoyDown','JoinNetGame','Instr','Insert','Input',
+		'ImageYHandle','ImageXHandle','ImageWidth','ImagesOverlap','ImagesCollide','ImageRectOverlap','ImageRectCollide','ImageHeight','ImageBuffer','If',
+		'HostNetGame','HostIP','HidePointer','Hex','HandleImage','GraphicsWidth','GraphicsHeight','GraphicsDepth','GraphicsBuffer','Graphics',
+		'GrabImage','Global','GFXModeWidth','GFXModeHeight','GfxModeExists','GFXModeDepth','GfxDriverName','GetMouse',
+		'GetKey','GetJoy','GetEnv','GetColor','GammaRed','GammaGreen','GammaBlue','Function','FrontBuffer','FreeTimer',
+		'FreeSound','FreeImage','FreeFont','FreeBank','FontWidth','FontHeight','FlushMouse','FlushKeys',
+		'FlushJoy','Floor','Flip','First','FileType','FileSize','FilePos','Field',
+		'Exp','Exit','ExecFile','Eof','EndGraphics','Each','DrawMovie','DrawImageRect','DrawImage','DrawBlockRect','DrawBlock',
+		'DottedIP','Dim','DeleteNetPlayer','DeleteFile','DeleteDir','Delete','Delay','Default','DebugLog','Data',
+		'CurrentTime','CurrentDir','CurrentDate','CreateUDPStream','CreateTimer','CreateTCPServer','CreateNetPlayer','CreateImage','CreateDir','CreateBank',
+		'CountHostIPs','CountGFXModes','CountGfxDrivers','Cos','CopyStream','CopyRect','CopyPixelFast','CopyPixel','CopyImage','CopyFile',
+		'CopyBank','Const','CommandLine','ColorRed','ColorGreen','ColorBlue','Color','ClsColor','Cls','CloseUDPStream',
+		'CloseTCPStream','CloseTCPServer','CloseMovie','CloseFile','CloseDir','Chr','ChannelVolume','ChannelPlaying','ChannelPitch','ChannelPan',
+		'ChangeDir','Ceil','CallDLL','Bin','BankSize','BackBuffer','AvailVidMem','AutoMidHandle',
+		'ATan2','ATan','ASin','Asc','After','ACos','AcceptTCPStream','Abs',
+		// 3D Commands
+		'Wireframe','Windowed3D','WBuffer','VertexZ','VertexY',
+		'VertexX','VertexW','VertexV','VertexU','VertexTexCoords','VertexRed','VertexNZ','VertexNY','VertexNX','VertexNormal',
+		'VertexGreen','VertexCoords','VertexColor','VertexBlue','VertexAlpha','VectorYaw','VectorPitch','UpdateWorld','UpdateNormals','TurnEntity',
+		'TrisRendered','TriangleVertex','TranslateEntity','TFormVector','TFormPoint','TFormNormal','TFormedZ','TFormedY','TFormedX','TextureWidth',
+		'TextureName','TextureHeight','TextureFilter','TextureCoords','TextureBuffer','TextureBlend','TerrainZ','TerrainY','TerrainX','TerrainSize',
+		'TerrainShading','TerrainHeight','TerrainDetail','SpriteViewMode','ShowEntity','SetCubeFace','SetAnimTime','SetAnimKey','ScaleTexture','ScaleSprite',
+		'ScaleMesh','ScaleEntity','RotateTexture','RotateSprite','RotateMesh','RotateEntity','ResetEntity','RenderWorld','ProjectedZ','ProjectedY',
+		'ProjectedX','PositionTexture','PositionMesh','PositionEntity','PointEntity','PickedZ','PickedY','PickedX','PickedTriangle','PickedTime',
+		'PickedSurface','PickedNZ','PickedNY','PickedNX','PickedEntity','PaintSurface','PaintMesh','PaintEntity','NameEntity','MoveEntity',
+		'ModifyTerrain','MeshWidth','MeshHeight','MeshesIntersect','MeshDepth','MD2AnimTime','MD2AnimLength','MD2Animating','LoadTexture','LoadTerrain',
+		'LoadSprite','LoadMesh','LoadMD2','LoaderMatrix','LoadBSP','LoadBrush','LoadAnimTexture','LoadAnimSeq','LoadAnimMesh','Load3DSound',
+		'LinePick','LightRange','LightMesh','LightConeAngles','LightColor','HWMultiTex','HideEntity','HandleSprite','Graphics3D','GfxMode3DExists',
+		'GfxMode3D','GfxDriverCaps3D','GfxDriver3D','GetSurfaceBrush','GetSurface','GetParent','GetMatElement','GetEntityType','GetEntityBrush','GetChild',
+		'GetBrushTexture','FreeTexture','FreeEntity','FreeBrush','FlipMesh','FitMesh','FindSurface','FindChild','ExtractAnimSeq','EntityZ',
+		'EntityYaw','EntityY','EntityX','EntityVisible','EntityType','EntityTexture','EntityShininess','EntityRoll','EntityRadius','EntityPitch',
+		'EntityPickMode','EntityPick','EntityParent','EntityOrder','EntityName','EntityInView','EntityFX','EntityDistance','EntityColor','EntityCollided',
+		'EntityBox','EntityBlend','EntityAutoFade','EntityAlpha','EmitSound','Dither','DeltaYaw','DeltaPitch','CreateTexture','CreateTerrain',
+		'CreateSurface','CreateSprite','CreateSphere','CreatePlane','CreatePivot','CreateMirror','CreateMesh','CreateListener','CreateLight','CreateCylinder',
+		'CreateCube','CreateCone','CreateCamera','CreateBrush','CountVertices','CountTriangles','CountSurfaces','CountGfxModes3D','CountCollisions','CountChildren',
+		'CopyMesh','CopyEntity','CollisionZ','CollisionY','CollisionX','CollisionTriangle','CollisionTime','CollisionSurface','Collisions','CollisionNZ',
+		'CollisionNY','CollisionNX','CollisionEntity','ClearWorld','ClearTextureFilters','ClearSurface','ClearCollisions','CaptureWorld','CameraZoom','CameraViewport',
+		'CameraRange','CameraProjMode','CameraProject','CameraPick','CameraFogRange','CameraFogMode','CameraFogColor','CameraClsMode','CameraClsColor','BSPLighting',
+		'BSPAmbientLight','BrushTexture','BrushShininess','BrushFX','BrushColor','BrushBlend','BrushAlpha','AntiAlias','AnimTime','AnimSeq',
+		'AnimLength','Animating','AnimateMD2','Animate','AmbientLight','AlignToVector','AddVertex','AddTriangle','AddMesh','AddAnimSeq',
+      )
+    ),
+  'SYMBOLS' => array(
+  	'(',')'
+  	),
+  'CASE_SENSITIVE' => array(
+    GESHI_COMMENTS => false,
+    1 => false,
+    2 => false,
+    ),
+  'STYLES' => array(
+    'KEYWORDS' => array(
+      1 => 'color: #000066; font-weight: bold;',
+       2 => 'color: #0000ff;'
+      ),
+    'COMMENTS' => array(
+      1 => 'color: #D9D100; font-style: italic;',
+      ),
+    'ESCAPE_CHAR' => array(
+      0 => 'color: #000099; font-weight: bold;'
+      ),
+    'BRACKETS' => array(
+      0 => 'color: #000066;'
+      ),
+    'STRINGS' => array(
+      0 => 'color: #009900;'
+      ),
+    'NUMBERS' => array(
+      0 => 'color: #CC0000;'
+      ),
+    'METHODS' => array(
+      1 => 'color: #006600;'
+      ),
+    'SYMBOLS' => array(
+      0 => 'color: #000066;'
+      ),
+    'REGEXPS' => array(
+      0 => 'font-weight: bold;'
+      ),
+    'SCRIPT' => array(
+      0 => '',
+      1 => '',
+      )
+    ),
+  'URLS' => array(
+		1 => ''
+  	),
+  'OOLANG' => false,
+  'OBJECT_SPLITTERS' => array(
+  	1 => '\\'
+	),
+  'REGEXPS' => array(
+
+  ),
+  'STRICT_MODE_APPLIES' => GESHI_NEVER,
+  'SCRIPT_DELIMITERS' => array(),
+  'HIGHLIGHT_STRICT_BLOCK' => array(
+    0 => false,
+    1 => false
+  )
+);
+
+?>
\ No newline at end of file
diff --git a/inc/geshi/c.php b/inc/geshi/c.php
index 582e0bb9be9cfe38d9987bd620590663131585f3..234e46ec9016abdde9bbff744c443c84ec83dc51 100644
--- a/inc/geshi/c.php
+++ b/inc/geshi/c.php
@@ -6,10 +6,10 @@
  * Contributors:
  *  - Jack Lloyd (lloyd@randombit.net)
  * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/06/04
- * Last Modified: $Date: 2005/09/22 01:30:09 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * C language file for GeSHi.
  *
diff --git a/inc/geshi/c_mac.php b/inc/geshi/c_mac.php
index 787dceedafc14acc95e312976a35e732794205bf..2478946f8c36dd5e498ff60364618fd0d5879452 100644
--- a/inc/geshi/c_mac.php
+++ b/inc/geshi/c_mac.php
@@ -4,10 +4,10 @@
  * ---------
  * Author: M. Uli Kusterer (witness.of.teachtext@gmx.net)
  * Copyright: (c) 2004 M. Uli Kusterer, Nigel McNie (http://qbnz.com/highlighter/)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/06/04
- * Last Modified: $Date: 2005/09/22 01:30:09 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * C for Macs language file for GeSHi.
  *
diff --git a/inc/geshi/caddcl.php b/inc/geshi/caddcl.php
index 455df9ddc697513d4c1c12efa75913d44a2852a0..004443eee249601cbf7929005014c8558d9e2234 100644
--- a/inc/geshi/caddcl.php
+++ b/inc/geshi/caddcl.php
@@ -4,10 +4,10 @@
  * ----------
  * Author: Roberto Rossi (rsoftware@altervista.org)
  * Copyright: (c) 2004 Roberto Rossi (http://rsoftware.altervista.org), Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/08/30
- * Last Modified: $Date: 2005/09/22 01:30:09 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * CAD DCL (Dialog Control Language) file for GeSHi.
  *
diff --git a/inc/geshi/cadlisp.php b/inc/geshi/cadlisp.php
index 5e1cb32defcfe9652cd3b8a4bea30c9fe5933735..91cb0878a70b304bce8beca2f0a50dc573bb6d4a 100644
--- a/inc/geshi/cadlisp.php
+++ b/inc/geshi/cadlisp.php
@@ -4,10 +4,10 @@
  * -----------
  * Author: Roberto Rossi (rsoftware@altervista.org)
  * Copyright: (c) 2004 Roberto Rossi (http://rsoftware.altervista.org), Nigel McNie (http://qbnz.com/blog)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/08/30
- * Last Modified: $Date: 2005/09/22 01:30:09 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * AutoCAD/IntelliCAD Lisp language file for GeSHi.
  *
diff --git a/inc/geshi/cpp.php b/inc/geshi/cpp.php
index 50475e535a4d8cbbadf14a5b918426cd9281a295..a92f5624d8451b0781127deb3ffbfcea69697ffb 100644
--- a/inc/geshi/cpp.php
+++ b/inc/geshi/cpp.php
@@ -7,10 +7,10 @@
  *  - M. Uli Kusterer (witness.of.teachtext@gmx.net)
  *  - Jack Lloyd (lloyd@randombit.net)
  * Copyright: (c) 2004 Dennis Bayer, Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.5 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.7 $
  * Date Started: 2004/09/27
- * Last Modified: $Date: 2005/09/22 01:30:09 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * C++ language file for GeSHi.
  *
@@ -75,7 +75,7 @@ $language_data = array (
 			'EXIT_FAILURE', 'EXIT_SUCCESS', 'RAND_MAX', 'CLOCKS_PER_SEC',
 			'virtual', 'public', 'private', 'protected', 'template', 'using', 'namespace',
 			'try', 'catch', 'inline', 'dynamic_cast', 'const_cast', 'reinterpret_cast',
-			'static_cast', 'explicit', 'friend', 'wchar_t', 'typename', 'typeid'
+			'static_cast', 'explicit', 'friend', 'wchar_t', 'typename', 'typeid', 'class'
 			),
 		3 => array(
 			'cin', 'cerr', 'clog', 'cout', 'delete', 'new', 'this',
diff --git a/inc/geshi/csharp.php b/inc/geshi/csharp.php
index 0b00140ad2f35f096de6a76187460e42b1f0ae9f..8c4112ab384f8052c743e162d9ff56c96a3c34cf 100644
--- a/inc/geshi/csharp.php
+++ b/inc/geshi/csharp.php
@@ -4,10 +4,10 @@
  * ----------
  * Author: Alan Juden (alan@judenware.org)
  * Copyright: (c) 2004 Alan Juden, Nigel McNie (http://qbnz.com/highlighter/)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/06/04
- * Last Modified: $Date: 2005/09/22 01:30:09 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * C# language file for GeSHi.
  *
diff --git a/inc/geshi/css.php b/inc/geshi/css.php
index 433efb794408d6cd314bca7654bc0648b99faaca..807b14bb23a9e032ff1b7d2de8a5c396e00a7adc 100644
--- a/inc/geshi/css.php
+++ b/inc/geshi/css.php
@@ -4,10 +4,10 @@
  * -------
  * Author: Nigel McNie (oracle.shinoda@gmail.com)
  * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.6 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.7 $
  * Date Started: 2004/06/18
- * Last Modified: $Date: 2005/09/22 01:30:09 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * CSS language file for GeSHi.
  *
diff --git a/inc/geshi/d.php b/inc/geshi/d.php
index bb67c28066a11d3e2fc60e11004232dd2080c243..e8f9c6d6ebd242a29141382d1fc957426561485f 100644
--- a/inc/geshi/d.php
+++ b/inc/geshi/d.php
@@ -4,10 +4,10 @@
  * -----
  * Author: Thomas Kuehne (thomas@kuehne.cn)
  * Copyright: (c) 2005 Thomas Kuehne (http://thomas.kuehne.cn/)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2005/04/22
- * Last Modified: $Date: 2005/09/22 01:32:47 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * D language file for GeSHi.
  *
diff --git a/inc/geshi/delphi.php b/inc/geshi/delphi.php
index 71d64c841d2c09aa5bfc44c75c1ee69048e87397..d94a9764783743683e22cd058b56e3a8aad6bbc0 100644
--- a/inc/geshi/delphi.php
+++ b/inc/geshi/delphi.php
@@ -4,10 +4,10 @@
  * ----------
  * Author: Járja Norbert (jnorbi@vipmail.hu)
  * Copyright: (c) 2004 Járja Norbert, Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.6 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.7 $
  * Date Started: 2004/07/26
- * Last Modified: $Date: 2005/09/22 01:32:47 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Delphi (Object Pascal) language file for GeSHi.
  *
diff --git a/inc/geshi/diff.php b/inc/geshi/diff.php
index 475883eb66c4e27c9957fa6db3be24ad263bfe61..ce14c386144e9d9628c81356ad991fb2c5b46af8 100644
--- a/inc/geshi/diff.php
+++ b/inc/geshi/diff.php
@@ -4,10 +4,10 @@
  * --------
  * Author: Conny Brunnkvist (conny@fuchsia.se)
  * Copyright: (c) 2004 Fuchsia Open Source Solutions (http://www.fuchsia.se/)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/12/29
- * Last Modified: $Date: 2005/09/22 01:32:47 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Diff-output language file for GeSHi.
  *
diff --git a/inc/geshi/div.php b/inc/geshi/div.php
index 02d1f3760336dfabb7cae3453f85c44dbac29139..f4859eeee9c2be99a9f2e14b3a203c8f8fb2337a 100644
--- a/inc/geshi/div.php
+++ b/inc/geshi/div.php
@@ -4,10 +4,10 @@
  * ---------------------------------
  * Author: Gabriel Lorenzo (ermakina@gmail.com)
  * Copyright: (c) 2005 Gabriel Lorenzo (http://ermakina.gazpachito.net)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2005/06/19
- * Last Modified: $Date: 2005/09/22 01:32:47 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * DIV language file for GeSHi.
  *
diff --git a/inc/geshi/dos.php b/inc/geshi/dos.php
index 1af1ebcf502fd9b9ecae636047bfc69afec95bcf..4817c395a77e338461048d83668ff3c7c395825f 100644
--- a/inc/geshi/dos.php
+++ b/inc/geshi/dos.php
@@ -4,10 +4,10 @@
  * -------
  * Author: Alessandro Staltari (staltari@geocities.com)
  * Copyright: (c) 2005 Alessandro Staltari (http://www.geocities.com/SiliconValley/Vista/8155/)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2005/07/05
- * Last Modified: $Date: 2005/09/22 01:32:47 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * DOS language file for GeSHi.
  *
diff --git a/inc/geshi/eiffel.php b/inc/geshi/eiffel.php
index 04f553f1826eb7365c80513c0692ac8fc2a6358b..3411d31683577711c6d371b95de825a0bad8f1e5 100644
--- a/inc/geshi/eiffel.php
+++ b/inc/geshi/eiffel.php
@@ -4,10 +4,10 @@
  * ----------
  * Author: Zoran Simic (zsimic@axarosenberg.com)
  * Copyright: (c) 2005 Zoran Simic
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2005/06/30
- * Last Modified: $Date: 2005/09/22 01:32:47 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Eiffel language file for GeSHi.
  *
diff --git a/inc/geshi/freebasic.php b/inc/geshi/freebasic.php
index e9b43a9500d57b1effdefdd98b0cfc3f69a42fb1..9853b76c306e37a4743f80ef46a96823efafaab8 100644
--- a/inc/geshi/freebasic.php
+++ b/inc/geshi/freebasic.php
@@ -4,7 +4,7 @@
  * -------------
  * Author: Roberto Rossi 
  * Copyright: (c) 2005 Roberto Rossi (http://rsoftware.altervista.org)
- * Release Version: 1.0.7.3
+ * Release Version: 1.0.7.4
  * Date Started: 2005/08/19
  *
  * FreeBasic (http://www.freebasic.net/) language file for GeSHi.
diff --git a/inc/geshi/gml.php b/inc/geshi/gml.php
index 367344de78ce1356a987e9898a8a9c6b87336eb5..027cd84da95652a28763f6203263aa48b12d82a8 100644
--- a/inc/geshi/gml.php
+++ b/inc/geshi/gml.php
@@ -4,10 +4,10 @@
  * --------
  * Author: José Jorge Enríquez Rodríguez (aka Geo) (josejorge@gmail.com)
  * Copyright: (c) 2004 José Jorge Enríquez Rodríguez (http://www.zonamakers.com)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2005/06/21
- * Last Modified: $Date: 2005/09/22 01:32:47 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * GML language file for GeSHi.
  *
diff --git a/inc/geshi/html4strict.php b/inc/geshi/html4strict.php
index 15b644afeb60b3a8913415e0705b2e15385c6428..772dba8c8cddfac484d95158ac4e38af983734da 100644
--- a/inc/geshi/html4strict.php
+++ b/inc/geshi/html4strict.php
@@ -4,10 +4,10 @@
  * ---------------
  * Author: Nigel McNie (oracle.shinoda@gmail.com)
  * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/07/10
- * Last Modified: $Date: 2005/09/22 01:32:47 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * HTML 4.01 strict language file for GeSHi.
  *
diff --git a/inc/geshi/ini.php b/inc/geshi/ini.php
index e79603e89ac976fb77deb30a374dc840fc467829..67016436665d70064bc81dedfb6a151c0893480d 100644
--- a/inc/geshi/ini.php
+++ b/inc/geshi/ini.php
@@ -4,10 +4,10 @@
  * --------
  * Author: deguix (cevo_deguix@yahoo.com.br)
  * Copyright: (c) 2005 deguix
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.3 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.4 $
  * Date Started: 2005/03/27
- * Last Modified: $Date: 2005/09/22 01:32:47 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * INI language file for GeSHi.
  *
diff --git a/inc/geshi/inno.php b/inc/geshi/inno.php
index 698ad9fb9150aa4c3af490b7cb5132bfa03efe96..6acc8a9aeac944d5c3125435d358eb8d6f8ac66f 100644
--- a/inc/geshi/inno.php
+++ b/inc/geshi/inno.php
@@ -4,10 +4,10 @@
  * ----------
  * Author: Thomas Klingler (hotline@theratech.de) based on delphi.php from Járja Norbert (jnorbi@vipmail.hu)
  * Copyright: (c) 2004 Járja Norbert, Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.3 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.4 $
  * Date Started: 2005/07/29
- * Last Modified: $Date: 2005/09/22 01:35:22 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Inno Script language inkl. Delphi (Object Pascal) language file for GeSHi.
  *
diff --git a/inc/geshi/java.php b/inc/geshi/java.php
index dc67d62eb129024fe902a2e5ec16dd42ca2aa74a..d059912bc5f0ecac3a072e81a26046196ea532e7 100644
--- a/inc/geshi/java.php
+++ b/inc/geshi/java.php
@@ -4,10 +4,10 @@
  * --------
  * Author: Nigel McNie (oracle.shinoda@gmail.com)
  * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.7 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.8 $
  * Date Started: 2004/07/10
- * Last Modified: $Date: 2005/09/22 01:35:22 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Java language file for GeSHi.
  *
diff --git a/inc/geshi/javascript.php b/inc/geshi/javascript.php
index a5b9a0426a85348d32e4dcd934d248bce42cfabf..722020b351762a6d518f1d3ba4589a4b9177fe77 100644
--- a/inc/geshi/javascript.php
+++ b/inc/geshi/javascript.php
@@ -4,10 +4,10 @@
  * --------------
  * Author: Ben Keen (ben.keen@gmail.com)
  * Copyright: (c) 2004 Ben Keen (ben.keen@gmail.com), Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/06/20
- * Last Modified: $Date: 2005/09/22 01:35:22 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * JavaScript language file for GeSHi.
  *
diff --git a/inc/geshi/lisp.php b/inc/geshi/lisp.php
index 75af7ef541afea2bc844fe43b6f5b8290c9b9dc1..14bf68bb41b97872fcfed73df5600c12630fa0a2 100644
--- a/inc/geshi/lisp.php
+++ b/inc/geshi/lisp.php
@@ -4,10 +4,10 @@
  * --------
  * Author: Roberto Rossi (rsoftware@altervista.org)
  * Copyright: (c) 2004 Roberto Rossi (http://rsoftware.altervista.org), Nigel McNie (http://qbnz.com/highlighter
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/08/30
- * Last Modified: $Date: 2005/09/22 01:35:22 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Generic Lisp language file for GeSHi.
  *
diff --git a/inc/geshi/lua.php b/inc/geshi/lua.php
index 224f81b06a6c50a88267a1f71715a6efbada3658..741641b7b68cbfce73e28385fb80cc4969a7c97c 100644
--- a/inc/geshi/lua.php
+++ b/inc/geshi/lua.php
@@ -4,10 +4,10 @@
  * -------
  * Author: Roberto Rossi (rsoftware@altervista.org)
  * Copyright: (c) 2004 Roberto Rossi (http://rsoftware.altervista.org), Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.5 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.7 $
  * Date Started: 2004/07/10
- * Last Modified: $Date: 2005/09/22 01:35:22 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * LUA language file for GeSHi.
  *
@@ -68,6 +68,18 @@ $language_data = array (
 			'clock','date','difftime','execute','exit','getenv','setlocale','time',
 			'_G','getfenv','getmetatable','ipairs','loadlib','next','pairs','pcall',
 			'rawegal','rawget','rawset','require','setfenv','setmetatable','xpcall',
+            'string.byte','string.char','string.dump','string.find','string.len',
+            'string.lower','string.rep','string.sub','string.upper','string.format','string.gfind','string.gsub',
+            'table.concat','table.foreach','table.foreachi','table.getn','table.sort','table.insert','table.remove','table.setn',
+            'math.abs','math.acos','math.asin','math.atan','math.atan2','math.ceil','math.cos','math.deg','math.exp',
+            'math.floor','math.frexp','math.ldexp','math.log','math.log10','math.max','math.min','math.mod',
+            'math.pi','math.rad','math.random','math.randomseed','math.sin','math.sqrt','math.tan',
+            'coroutine.create','coroutine.resume','coroutine.status',
+            'coroutine.wrap','coroutine.yield',
+            'io.close','io.flush','io.input','io.lines','io.open','io.output','io.read','io.tmpfile','io.type','io.write',
+            'io.stdin','io.stdout','io.stderr',
+            'os.clock','os.date','os.difftime','os.execute','os.exit','os.getenv','os.remove','os.rename',
+            'os.setlocale','os.time','os.tmpname',
 			'string','table','math','coroutine','io','os','debug'
 			)
 		),
@@ -109,8 +121,8 @@ $language_data = array (
 		'SCRIPT' => array(
 			)
 		),
-	'OOLANG' => true,
-	'OBJECT_SPLITTERS' => array('.'
+	'OOLANG' => false,
+	'OBJECT_SPLITTERS' => array(
 		),
 	'REGEXPS' => array(
 		),
diff --git a/inc/geshi/matlab.php b/inc/geshi/matlab.php
index 9ece11cf9537136d49cb4e9714a4befaad16e0c5..b4a71c87b1740827ad069eb941e3b4d7dd72c549 100644
--- a/inc/geshi/matlab.php
+++ b/inc/geshi/matlab.php
@@ -4,10 +4,10 @@
  * -----------
  * Author: Florian Knorn (floz@gmx.de)
  * Copyright: (c) 2004 Florian Knorn (http://www.florian-knorn.com)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2005/02/09
- * Last Modified: $Date: 2005/09/22 01:35:22 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Matlab M-file language file for GeSHi. 
  *
diff --git a/inc/geshi/mpasm.php b/inc/geshi/mpasm.php
index 1ce563f663f559d02ba7477b8ee154a3fbef0518..f43219d2af5697f7722eff1b1ae97e15e8120fb3 100644
--- a/inc/geshi/mpasm.php
+++ b/inc/geshi/mpasm.php
@@ -4,10 +4,10 @@
  * ---------
  * Author: Bakalex (bakalex@gmail.com)
  * Copyright: (c) 2004 Bakalex, Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/12/6
- * Last Modified: $Date: 2005/09/22 01:35:22 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Microchip Assembler language file for GeSHi.
  *
diff --git a/inc/geshi/mysql.php b/inc/geshi/mysql.php
new file mode 100644
index 0000000000000000000000000000000000000000..2baf8ef9062a1e471df2b74cae358c2262a56f42
--- /dev/null
+++ b/inc/geshi/mysql.php
@@ -0,0 +1,175 @@
+ <?php 
+ /************************************************************************************* 
+ * mysql.php 
+ * --------- 
+ * Author: Carl Fürstenberg (azatoth@gmail.com) 
+ * Copyright: (c) 2005 Carl Fürstenberg, Nigel McNie (http://qbnz.com/highlighter) 
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.2 $ 
+ * Date Started: 2004/06/04 
+ * Last Modified: $Date: 2005/10/22 07:52:59 $ 
+ * 
+ * MySQL language file for GeSHi. 
+ * 
+ * 
+ ************************************************************************************* 
+ * 
+ * This file is part of GeSHi. 
+ * 
+ * GeSHi is free software; you can redistribute it and/or modify 
+ * it under the terms of the GNU General Public License as published by 
+ * the Free Software Foundation; either version 2 of the License, or 
+ * (at your option) any later version. 
+ * 
+ * GeSHi is distributed in the hope that it will be useful, 
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of 
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
+ * GNU General Public License for more details. 
+ * 
+ * You should have received a copy of the GNU General Public License 
+ * along with GeSHi; if not, write to the Free Software 
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
+ * 
+ ************************************************************************************/ 
+  
+$language_data = array ( 
+  'LANG_NAME' => 'MySQL', 
+  'COMMENT_SINGLE' => array(1 =>'--', 2 => '#'), 
+  'COMMENT_MULTI' => array('/*' => '*/'), 
+  'CASE_KEYWORDS' => 1, 
+  'QUOTEMARKS' => array("'", '"', ''), 
+  'ESCAPE_CHAR' => '\\', 
+  'KEYWORDS' => array( 
+  1 => array( 
+  /* Mix */ 
+  'ALTER DATABASE', 'ALTER TABLE', 'CREATE DATABASE', 'CREATE INDEX', 'CREATE TABLE', 'DROP DATABASE', 
+  'DROP INDEX', 'DROP TABLE', 'RENAME TABLE', 'DELETE', 'DO', 'HANDLER', 'INSERT', 'LOAD DATA INFILE',  
+  'REPLACE', 'SELECT', 'TRUNCATE', 'UPDATE', 'DESCRIBE', 'USE', 'START TRANSACTION', 'COMMIT', 'ROLLBACK', 
+  'SAVEPOINT', 'ROLLBACK TO SAVEPOINT', 'LOCK TABLES', 'UNLOCK_TABLES', 'SET TRANACTIONS', 'SET', 'SHOW', 
+  'CREATE PROCEDURE', 'CREATE FUNCTION', 'ALTER PROCEDURE', 'ALTER FUNCTION', 'DROP PROCEDURE', 'DROP FUNCTION',  
+  'SHOW CREATE PROCEDURE', 'SHOW CREATE FUNCTION', 'SHOW PROCEDURE STATUS', 'SHOW FUNCTION STATUS',  
+  'CALL', 'BEGIN', 'END', 'DECLARE', 'CREATE ROUTINE', 'ALTER ROUTINE', 'CREATE', 'ALTER', 'DROP', 
+  'PRIMARY KEY', 'VALUES', 'INTO', 'FROM',  
+  'ANALYZE', 'BDB', 'BERKELEYDB', 'BTREE', 'BY', 'CASCADE', 'CHECK', 'COLUMN', 'COLUMNS', 'CONSTRAINT', 
+  'CROSS', 'DATABASES', 'DELAYED', 'DISTINCT', 'DISTINCTROW', 'ENCLOSED', 'ERRORS', 'ESCAPED', 'EXISTS', 
+  'EXPLAIN', 'FALSE', 'FIELDS', 'FORCE', 'FOREIGN', 'FULLTEXT', 'GEOMETRY', 'GRANT', 'GROUP', 'HASH', 
+  'HAVING', 'HELP', 'HIGH_PRIORITY', 'IGNORE', 'INNER', 'INNODB', 'INTERVAL', 'JOIN', 'KEYS', 'KILL', 
+  'LINES', 'LOW_PRIORITY', 'MASTER_SERVER_ID', 'MATCH', 'MIDDLEINT', 'MRG_MYISAM', 'NATURAL', 'OPTIMIZE', 
+  'OPTION', 'OPTIONALLY', 'ORDER', 'OUTER', 'OUTFILE', 'PRIVILEGES', 'PURGE', 'READ', 'REFERENCES', 
+  'REQUIRE', 'RESTRICT', 'RETURNS', 'REVOKE', 'RLIKE', 'RTREE', 'SOME', 'SONAME', 'SPATIAL', 'SQL_BIG_RESULT',  
+  'SQL_CALC_FOUND_ROWS', 'SQL_SMALL_RESULT', 'SSL', 'STARTING', 'STRAIGHT_JOIN', 'STRIPED', 'TERMINATED',  
+  'TRUE', 'TYPES', 'UNION', 'USAGE', 'USER_RESOURCES', 'USING', 'VARCHARACTER', 'WARNINGS', 'WHERE', 'WRITE', 
+  /* Control Flow Functions */ 
+  'CASE', 'WHEN', 'THEN', 'ELSE', 'END', 
+  /* String Functions */ 
+  'BIN', 'BIT_LENGTH', 'CHAR_LENGTH', 'CHARACTER_LENGTH', 'COMPRESS', 'CONCAT', 
+  'CONCAT_WS', 'CONV', 'ELT', 'EXPORT_SET', 'FIELD', 'FIND_IN_SET', 'FORMAT', 'HEX',  
+  'INSERT', 'INSTR', 'LCASE', 'LEFT', 'LENGTH', 'LOAD_FILE', 'LOCATE', 'LOWER', 'LPAD', 
+  'LTRIM', 'MAKE_SET', 'MID', 'OCT', 'OCTET_LENGTH', 'ORD', 'POSITION', 'QUOTE', 'REPEAT', 
+  'REPLACE', 'REVERSE', 'RIGHT', 'RPAD', 'RTRIM', 'SOUNDEX', 'SPACE', 'SUBSTRING',  
+  'SUBSTRING_INDEX', 'TRIM', 'UCASE', 'UPPER', 'UNCOMPRESS', 'UNCOMPRESSD_LENGTH', 'UNHEX',  
+  /* Numeric Functions */ 
+  'ABS', 'ACOS', 'ASIN', 'ATAN', 'ATAN2', 'CEILING', 'CEIL', 'COS', 'COT', 'CRC32', 'DEGREES', 
+  'EXP', 'FLOOR', 'LN', 'LOG', 'LOG2', 'LOG10', 'MOD', 'PI', 'POW', 'POWER', 'RADIANS', 'RAND', 
+  'ROUND', 'SIGN', 'SIN', 'SQRT', 'TAN', 'TRUNCATE', 
+  /* Date and Time Functions */ 
+  'ADDDATE', 'ADDTIME', 'CONVERT_TZ', 'CURDATE', 'CURRENT_DATE', 'CURTIME', 'CURRENT_TIME', 
+  'CURRENT_TIMESTAMP', 'DATEDIFF', 'DATE_ADD', 'DATE_SUB', 'DATE_FORMAT', 'DAY',  
+  'DAYNAME', 'DAYOFMONTH', 'DAYOFWEEK', 'DAYOFYEAR', 'EXTRACT', 'FROM_DAYS', 'FROM_UNIXTIME', 
+  'GET_FORMAT', 'LAST_DAY', 'LOCALTIME', 'LOCALTIMESTAMP', 'MAKEDATE', 'MAKETIME',  
+  'MICROSECOND', 'MONTHNAME', 'NOW', 'PERIOD_ADD', 'PERIOD_DIFF', 'QUARTER', 
+  'SECOND', 'SEC_TO_TIME', 'STR_TO_DATE', 'SUBDATE', 'SUBTIME', 'SYSDATE', 'TIME', 'TIMEDIFF', 
+  'TIMESTAMP', 'TIMESTAMPADD', 'TIMESTAMPDIFF', 'TIME_FORMAT', 'TIME_TO_SEC', 'TO_DAYS',  
+  'UNIX_TIMESTAMP', 'UTC_DATE', 'UTC_TIME', 'UTC_TIMESTAMP', 'WEEKDAY', 'WEEKOFYEAR', 
+  'YEARWEEK', 
+   
+   ), 
+   2 => array( 
+   'INTEGER', 'SMALLINT', 'DECIMAL', 'NUMERIC', 'FLOAT', 'REAL', 'DOUBLE PRECISION', 
+   'DOUBLE', 'INT', 'DEC', 'BIT' ,'TINYINT', 'SMALLINT', 'MEDIUMINT', 'BIGINT',  
+   'DATETIME', 'DATE', 'TIMESTAMP', 'TIME', 'YEAR',  
+   'CHAR', 'VARCHAR', 'BINARY', 'CHARACTER VARYING', 'VARBINARY', 'TINYBLOB', 'TINYTEXT', 
+   'BLOB', 'TEXT','MEDIUMBLOB', 'MEDIUMTEXT', 'LONGBLOB', 'LONGTEXT', 'ENUM', 'SET', 
+   'SERIAL DEFAULT VALUE', 'SERIAL', 'FIXED' 
+   ), 
+   3 => array( 
+   'ZEROFILL', 'NOT NULL', 'UNSIGNED', 'AUTO_INCREMENT', 'UNIQUE', 'NOT', 'NULL', 'CHARACTER SET', 'CHARSET', 
+   'ASCII', 'UNICODE', 'NATIONAL', 'BOTH', 'LEADING', 'TRAILING','DEFAULT' 
+   ), 
+   4 => array( 
+   'MICROSECOND', 'SECOND', 'MINUTE', 'HOUR', 'DAY', 'WEEK', 'MONTH', 'QUARTER', 'YEAR', 'SECOND_MICROSECOND',  
+   'MINUTE_MICROSECOND', 'MINUTE_SECOND', 'HOUR_MICROSECOND', 'HOUR_SECOND', 'HOUR_MINUTE', 'DAY_MICROSECOND', 
+   'DAY_SECOND', 'DAY_MINUTE', 'DAY_HOUR', 'YEAR_MONTH', 
+   ), 
+   ), 
+   'SYMBOLS' => array( 
+   ':=', 
+   '||', 'OR', 'XOR', 
+   '&&', 'AND', 
+   'NOT', 
+   'BETWEEN', 'CASE', 'WHEN', 'THEN', 'ELSE', 
+   '=', '<=>', '>=', '>', '<=', '<', '<>', '!=', 'IS', 'LIKE', 'REGEXP', 'IN', 
+   '|', 
+   '&', 
+   '<<', '>>', 
+   '-', '+', 
+   '*', '/', 'DIV', '%', 'MOD', 
+   '^', 
+   '-', '~', 
+   '!', 
+   'BINARY', 'COLLATE', 
+   '(', ')', 
+   ), 
+   'CASE_SENSITIVE' => array( 
+   GESHI_COMMENTS => false, 
+   1 => false, 
+   2 => false, 
+   3 => false, 
+   4 => false, 
+   ), 
+   'STYLES' => array( 
+   'KEYWORDS' => array( 
+   1 => 'color: #993333; font-weight: bold;', 
+   2 => 'color: #aa9933; font-weight: bold;', 
+   3 => 'color: #aa3399; font-weight: bold;', 
+   4 => 'color: #33aa99; font-weight: bold;', 
+   ), 
+   'COMMENTS' => array( 
+   1 => 'color: #808080; font-style: italic;', 
+   2 => 'color: #808080; font-style: italic;' 
+   ), 
+   'ESCAPE_CHAR' => array( 
+   0 => 'color: #000099; font-weight: bold;' 
+   ), 
+   'BRACKETS' => array( 
+   0 => 'color: #66cc66;' 
+   ), 
+   'STRINGS' => array( 
+   0 => 'color: #ff0000;' 
+   ), 
+   'NUMBERS' => array( 
+   0 => 'color: #cc66cc;' 
+   ), 
+   'METHODS' => array( 
+   ), 
+   'SYMBOLS' => array( 
+   0 => 'color: #66cc66;' 
+   ), 
+   'SCRIPT' => array( 
+   ), 
+   'REGEXPS' => array( 
+   ) 
+   ), 
+   'OOLANG' => false, 
+   'OBJECT_SPLITTERS' => array( 
+   ), 
+   'REGEXPS' => array( 
+   ), 
+   'STRICT_MODE_APPLIES' => GESHI_NEVER, 
+   'SCRIPT_DELIMITERS' => array( 
+   ), 
+   'HIGHLIGHT_STRICT_BLOCK' => array( 
+   ) 
+);
+
+?>
diff --git a/inc/geshi/nsis.php b/inc/geshi/nsis.php
index 1a70278f72851179d68fe6161b50f29823f460eb..2237e3c62ca353a4a6942d5c18ed4dd99ed1fc59 100644
--- a/inc/geshi/nsis.php
+++ b/inc/geshi/nsis.php
@@ -4,10 +4,10 @@
  * --------
  * Author: deguix (cevo_deguix@yahoo.com.br), Tux (http://tux.a4.cz/)
  * Copyright: (c) 2005 deguix, 2004 Tux (http://tux.a4.cz/), Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.5 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.6 $
  * Date Started: 2005/06/17
- * Last Modified: $Date: 2005/09/22 01:35:22 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Nullsoft Scriptable Install System language file for GeSHi.
  *
diff --git a/inc/geshi/objc.php b/inc/geshi/objc.php
index 379de37fe01d3001d34f73d86547de98b01d795d..a36b5f7ac6f0f6d80bb5957e09d07ddf4c15c963 100644
--- a/inc/geshi/objc.php
+++ b/inc/geshi/objc.php
@@ -4,10 +4,10 @@
  * --------
  * Author: M. Uli Kusterer (witness.of.teachtext@gmx.net)
  * Copyright: (c) 2004 M. Uli Kusterer, Nigel McNie (http://qbnz.com/highlighter/)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/06/04
- * Last Modified: $Date: 2005/09/22 01:35:22 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Objective C language file for GeSHi.
  *
diff --git a/inc/geshi/ocaml-brief.php b/inc/geshi/ocaml-brief.php
index 704cca88e925fe5b52788fe34afafec6fce40262..70814ea4b855f545fdd9a51a8053359ad14cfee9 100644
--- a/inc/geshi/ocaml-brief.php
+++ b/inc/geshi/ocaml-brief.php
@@ -4,10 +4,10 @@
  * ----------
  * Author: Flaie (fireflaie@gmail.com)
  * Copyright: (c) 2005 Flaie, Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.2 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.3 $
  * Date Started: 2005/08/27
- * Last Modified: $Date: 2005/09/22 01:35:22 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * OCaml (Objective Caml) language file for GeSHi.
  *
diff --git a/inc/geshi/ocaml.php b/inc/geshi/ocaml.php
index 2f773e4d282acf4b523197ea1b993ce27b4b1895..7be360c82680936b99ae7e5750183cfd4dd678e0 100644
--- a/inc/geshi/ocaml.php
+++ b/inc/geshi/ocaml.php
@@ -4,10 +4,10 @@
  * ----------
  * Author: Flaie (fireflaie@gmail.com)
  * Copyright: (c) 2005 Flaie, Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.2 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.3 $
  * Date Started: 2005/08/27
- * Last Modified: $Date: 2005/09/22 01:35:22 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * OCaml (Objective Caml) language file for GeSHi.
  *
diff --git a/inc/geshi/oobas.php b/inc/geshi/oobas.php
index 3e5959ad41e4baabb1c1638c266c443c8bf501e2..26b79a7756db4fd30ac281c7f759e9dd1f6ffdc0 100644
--- a/inc/geshi/oobas.php
+++ b/inc/geshi/oobas.php
@@ -4,10 +4,10 @@
  * ---------
  * Author: Roberto Rossi (rsoftware@altervista.org)
  * Copyright: (c) 2004 Roberto Rossi (http://rsoftware.altervista.org), Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/08/30
- * Last Modified: $Date: 2005/09/22 01:35:22 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * OpenOffice.org Basic language file for GeSHi.
  *
diff --git a/inc/geshi/oracle8.php b/inc/geshi/oracle8.php
index 897ee52d64e5f78bea844439dd3da85a6670fd19..015bdf323e31d361c8939f2e31adc9657f9a15f8 100644
--- a/inc/geshi/oracle8.php
+++ b/inc/geshi/oracle8.php
@@ -4,10 +4,10 @@
  * -----------
  * Author: Guy Wicks (Guy.Wicks@rbs.co.uk)
  * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/06/04
- * Last Modified: $Date: 2005/09/22 01:35:22 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Oracle 8 language file for GeSHi
  *
diff --git a/inc/geshi/pascal.php b/inc/geshi/pascal.php
index 5640de9c405be2925183e27c4573b491f7da277a..00547f8c8e0f1193e90ea3cd17c067330978a463 100644
--- a/inc/geshi/pascal.php
+++ b/inc/geshi/pascal.php
@@ -4,10 +4,10 @@
  * ----------
  * Author: Tux (tux@inamil.cz)
  * Copyright: (c) 2004 Tux (http://tux.a4.cz/), Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/07/26
- * Last Modified: $Date: 2005/09/22 01:35:22 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Pascal language file for GeSHi.
  *
diff --git a/inc/geshi/perl.php b/inc/geshi/perl.php
index 4c26955f4fc7feedba9ca7adf54786512a5b2584..1367844c5a1c3003f34af47a3187cff505e3d447 100644
--- a/inc/geshi/perl.php
+++ b/inc/geshi/perl.php
@@ -4,10 +4,10 @@
  * --------
  * Author: Andreas Gohr (andi@splitbrain.org), Ben Keen (ben.keen@gmail.com)
  * Copyright: (c) 2004 Andreas Gohr, Ben Keen (http://www.benjaminkeen.org/), Nigel McNie (http://qbnz.com/highlighter/)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/08/20
- * Last Modified: $Date: 2005/09/22 01:35:22 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Perl language file for GeSHi.
  *
diff --git a/inc/geshi/php-brief.php b/inc/geshi/php-brief.php
index f9f02b208f3bef65c83102ad79cd39a6da1154d2..88bb7ef9ebd24127edbf14f1822ef690a8533da1 100644
--- a/inc/geshi/php-brief.php
+++ b/inc/geshi/php-brief.php
@@ -4,10 +4,10 @@
  * -------------
  * Author: Nigel McNie (oracle.shinoda@gmail.com)
  * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/06/02
- * Last Modified: $Date: 2005/09/22 01:41:46 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * PHP language file for GeSHi (brief version).
  *
diff --git a/inc/geshi/php.php b/inc/geshi/php.php
index 4466074f9fd846ff319121986cced063efecc5fe..476a36f2b408d4bc631e5a282e799ff0a1f85b4f 100644
--- a/inc/geshi/php.php
+++ b/inc/geshi/php.php
@@ -4,10 +4,10 @@
  * --------
  * Author: Nigel McNie (oracle.shinoda@gmail.com)
  * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.5 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.6 $
  * Date Started: 2004/06/20
- * Last Modified: $Date: 2005/09/22 01:41:46 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * PHP language file for GeSHi.
  *
diff --git a/inc/geshi/python.php b/inc/geshi/python.php
index 25da8f6311748553457b8217d8b290bc9cb661f9..a24bb7d3ff411e0c9b9f91a22f829ce6adbd5f68 100644
--- a/inc/geshi/python.php
+++ b/inc/geshi/python.php
@@ -4,10 +4,10 @@
  * ----------
  * Author: Roberto Rossi (rsoftware@altervista.org)
  * Copyright: (c) 2004 Roberto Rossi (http://rsoftware.altervista.org), Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.5 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.6 $
  * Date Started: 2004/08/30
- * Last Modified: $Date: 2005/09/22 01:41:46 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Python language file for GeSHi.
  *
diff --git a/inc/geshi/qbasic.php b/inc/geshi/qbasic.php
index 942cf48e468339d01ffa508e7c1afa2f9edb6d86..3435e3624c0feb74f290ebdcd9866e7493241ede 100644
--- a/inc/geshi/qbasic.php
+++ b/inc/geshi/qbasic.php
@@ -4,10 +4,10 @@
  * ----------
  * Author: Nigel McNie (oracle.shinoda@gmail.com)
  * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.5 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.6 $
  * Date Started: 2004/06/20
- * Last Modified: $Date: 2005/09/22 01:41:46 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * QBasic/QuickBASIC language file for GeSHi.
  *
diff --git a/inc/geshi/ruby.php b/inc/geshi/ruby.php
index 7530550ae605ad1e01d036d6167ae4548b9a2c09..cd61330065b0aea3a4110f4eb0bd59c8848e7c1e 100644
--- a/inc/geshi/ruby.php
+++ b/inc/geshi/ruby.php
@@ -4,10 +4,10 @@
  * --------
  * Author: Amit Gupta (http://blog.igeek.info/)
  * Copyright: (c) 2005 Amit Gupta (http://blog.igeek.info/)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.2 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.3 $
  * Date Started: 2005/09/05
- * Last Modified: $Date: 2005/09/22 01:41:46 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Ruby language file for GeSHi
  *
diff --git a/inc/geshi/scheme.php b/inc/geshi/scheme.php
index d62ba4a60d9a2d3497e9701d0aa34f3576d3a79c..d89283c34a4e918d0d2f64e7a3ea77467744b097 100644
--- a/inc/geshi/scheme.php
+++ b/inc/geshi/scheme.php
@@ -4,10 +4,10 @@
  * ----------
  * Author: Jon Raphaelson (jonraphaelson@gmail.com)
  * Copyright: (c) 2005 Jon Raphaelson, Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.2 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.3 $
  * Date Started: 2004/08/30
- * Last Modified: $Date: 2005/09/22 01:41:46 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Scheme language file for GeSHi.
  *
diff --git a/inc/geshi/sdlbasic.php b/inc/geshi/sdlbasic.php
index 6602526413580c65b588a824a298a3b8b8a0d714..357960a8c0cd2926419a6dd4fac9c6de74312661 100644
--- a/inc/geshi/sdlbasic.php
+++ b/inc/geshi/sdlbasic.php
@@ -4,10 +4,10 @@
  * ------------
  * Author: Roberto Rossi 
  * Copyright: (c) 2005 Roberto Rossi (http://rsoftware.altervista.org)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.3 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.4 $
  * Date Started: 2005/08/19
- * Date Modified: $Date: 2005/09/22 01:41:46 $
+ * Date Modified: $Date: 2005/10/22 07:52:59 $
  *
  * sdlBasic (http://sdlbasic.sf.net) language file for GeSHi.
  *
diff --git a/inc/geshi/smarty.php b/inc/geshi/smarty.php
index 7ab510e8515be72ca22206400cb964c2c62e628d..6d47662d3f257dc23384aaceedd6bb2b86ae4d50 100644
--- a/inc/geshi/smarty.php
+++ b/inc/geshi/smarty.php
@@ -4,10 +4,10 @@
  * ----------
  * Author: Alan Juden (alan@judenware.org)
  * Copyright: (c) 2004 Alan Juden, Nigel McNie (http://qbnz.com/highlighter/)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.5 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.6 $
  * Date Started: 2004/07/10
- * Last Modified: $Date: 2005/09/22 01:41:46 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Smarty template language file for GeSHi.
  *
diff --git a/inc/geshi/sql.php b/inc/geshi/sql.php
index 39652ee8ac4f3645d8838b89414224ba63361786..89649622d601cd0121c9347b0726446ed85d2f02 100644
--- a/inc/geshi/sql.php
+++ b/inc/geshi/sql.php
@@ -4,10 +4,10 @@
  * -------
  * Author: Nigel McNie (oracle.shinoda@gmail.com)
  * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.5 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.6 $
  * Date Started: 2004/06/04
- * Last Modified: $Date: 2005/09/22 01:41:46 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * SQL language file for GeSHi.
  *
diff --git a/inc/geshi/vb.php b/inc/geshi/vb.php
index 1dc5ef799ee6d8bd7416382bf76b0e6238595053..83c71341b3c516d3f6605ef2c018b5a2f39ea28f 100644
--- a/inc/geshi/vb.php
+++ b/inc/geshi/vb.php
@@ -4,10 +4,10 @@
  * ------
  * Author: Roberto Rossi (rsoftware@altervista.org)
  * Copyright: (c) 2004 Roberto Rossi (http://rsoftware.altervista.org), Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/08/30
- * Last Modified: $Date: 2005/09/22 01:41:46 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * Visual Basic language file for GeSHi.
  *
diff --git a/inc/geshi/vbnet.php b/inc/geshi/vbnet.php
index 0217ffca214d90c65d53fa68992941514a43605c..05d1d6295f2867753ee271a551eed1f9eda64b78 100644
--- a/inc/geshi/vbnet.php
+++ b/inc/geshi/vbnet.php
@@ -4,10 +4,10 @@
  * ---------
  * Author: Alan Juden (alan@judenware.org)
  * Copyright: (c) 2004 Alan Juden, Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.6 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.7 $
  * Date Started: 2004/06/04
- * Last Modified: $Date: 2005/09/22 01:41:46 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * VB.NET language file for GeSHi.
  *
diff --git a/inc/geshi/vhdl.php b/inc/geshi/vhdl.php
index e41a2cf003a7d9a4e37650aad1ec16cbc6ccbd0d..34e1fb976b80f6c0b7e8e96d65adf7caaf4da6c8 100644
--- a/inc/geshi/vhdl.php
+++ b/inc/geshi/vhdl.php
@@ -4,10 +4,10 @@
  * --------
  * Author: Alexander 'E-Razor' Krause (admin@erazor-zone.de)
  * Copyright: (c) 2005 Alexander Krause
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2005/06/15
- * Last Modified: $Date: 2005/09/22 01:41:46 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  * 
  * VHDL (VHSICADL, very high speed integrated circuit HDL) language file for GeSHi.
  *
diff --git a/inc/geshi/visualfoxpro.php b/inc/geshi/visualfoxpro.php
index bb093e18b95d4e2770edca60a4b90d9a2a0a003a..dd278bc7e9703da8352a720f5a3f186985b48dab 100644
--- a/inc/geshi/visualfoxpro.php
+++ b/inc/geshi/visualfoxpro.php
@@ -4,8 +4,8 @@
  * ----------------
  * Author: Roberto Armellin (r.armellin@tin.it)
  * Copyright: (c) 2004 Roberto Armellin, Nigel McNie (http://qbnz.com/highlighter/)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.4 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.5 $
  * Date Started: 2004/09/17
  * Last Modified: 2004/09/18
  *
diff --git a/inc/geshi/xml.php b/inc/geshi/xml.php
index 70175a99ec8ed4d127e3e6cde409876d71ec03c8..957379bb6a27242f6a4b8e6c6726c0fdb9b63d47 100644
--- a/inc/geshi/xml.php
+++ b/inc/geshi/xml.php
@@ -4,10 +4,10 @@
  * -------
  * Author: Nigel McNie (oracle.shinoda@gmail.com)
  * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/)
- * Release Version: 1.0.7.3
- * CVS Revision Version: $Revision: 1.6 $
+ * Release Version: 1.0.7.4
+ * CVS Revision Version: $Revision: 1.7 $
  * Date Started: 2004/09/01
- * Last Modified: $Date: 2005/09/22 01:41:46 $
+ * Last Modified: $Date: 2005/10/22 07:52:59 $
  *
  * XML language file for GeSHi. Based on the idea/file by Christian Weiske
  *