diff options
Diffstat (limited to 'inc/geshi/gml.php')
-rw-r--r-- | inc/geshi/gml.php | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/inc/geshi/gml.php b/inc/geshi/gml.php index 86156c2e8..77966bc1b 100644 --- a/inc/geshi/gml.php +++ b/inc/geshi/gml.php @@ -4,7 +4,7 @@ * -------- * Author: Jos� Jorge Enr�quez (jenriquez@users.sourceforge.net) * Copyright: (c) 2005 Jos� Jorge Enr�quez Rodr�guez (http://www.zonamakers.com) - * Release Version: 1\.0\.8 + * Release Version: 1.0.8.3 * Date Started: 2005/06/21 * * GML language file for GeSHi. @@ -435,8 +435,13 @@ $language_data = array ( ), ), 'SYMBOLS' => array( - '(', ')', '{', '}', '[', ']', '&&', '||', '^^', '<', '<=', '==', '!=', '>', '>=', - '|', '&', '^', '<<', '>>', '+', '-', '*', '/', '!', '-', '~' + '(', ')', '{', '}', '[', ']', + '&&', '||', '^^', '&', '|', '^', + '<', '<=', '==', '!=', '>', '>=', '=', + '<<', '>>', + '+=', '-=', '*=', '/=', + '+', '-', '*', '/', + '!', '~', ',', ';' ), 'CASE_SENSITIVE' => array( GESHI_COMMENTS => false, |