diff options
author | Andreas Gohr <andi@splitbrain.org> | 2008-03-26 22:17:55 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2008-03-26 22:17:55 +0100 |
commit | d09ae2055575141a00e67faeadb9bcb3d8285f3f (patch) | |
tree | 5f8f372f379b77f8f36805468d4e60fdb8ebc1b5 /inc/geshi/delphi.php | |
parent | 3d1f9ec3674462e63f4195dd834603148a7c7b42 (diff) | |
download | rpg-d09ae2055575141a00e67faeadb9bcb3d8285f3f.tar.gz rpg-d09ae2055575141a00e67faeadb9bcb3d8285f3f.tar.bz2 |
GeSHi update to 1.0.7.21
darcs-hash:20080326211755-7ad00-98c89cb8da99fab17b88222d33a312a020527cdb.gz
Diffstat (limited to 'inc/geshi/delphi.php')
-rw-r--r-- | inc/geshi/delphi.php | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/inc/geshi/delphi.php b/inc/geshi/delphi.php index f8bf378e4..7f9585988 100644 --- a/inc/geshi/delphi.php +++ b/inc/geshi/delphi.php @@ -2,9 +2,9 @@ /************************************************************************************* * delphi.php * ---------- - * Author: Járja Norbert (jnorbi@vipmail.hu) - * Copyright: (c) 2004 Járja Norbert, Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1.0.7.20 + * Author: Járja Norbert (jnorbi@vipmail.hu), Benny Baumann (BenBE@omorphia.de) + * Copyright: (c) 2004 Járja Norbert, Benny Baumann (BenBE@omorphia.de), Nigel McNie (http://qbnz.com/highlighter) + * Release Version: 1.0.7.21 * Date Started: 2004/07/26 * * Delphi (Object Pascal) language file for GeSHi. @@ -211,6 +211,12 @@ $language_data = array ( 3 => false, 4 => false, ), + 'SYMBOLS' => array( + 0 => array('(', ')', '[', ']'), + 1 => array('.', ',', ':', ';'), + 2 => array('@', '^'), + 3 => array('=', '+', '-', '*', '/') + ), 'STYLES' => array( 'KEYWORDS' => array( 1 => 'color: #000000; font-weight: bold;', @@ -241,7 +247,10 @@ $language_data = array ( 1 => 'color: #ff0000;' ), 'SYMBOLS' => array( - 0 => 'color: #66cc66;' + 0 => 'color: #66cc66;', + 1 => 'color: #66cc66;', + 2 => 'color: #66cc66;', + 3 => 'color: #66cc66;' ), 'SCRIPT' => array( ) |