diff options
Diffstat (limited to 'inc/geshi/java.php')
-rw-r--r-- | inc/geshi/java.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/geshi/java.php b/inc/geshi/java.php index 252fa9d36..7e5dc08c6 100644 --- a/inc/geshi/java.php +++ b/inc/geshi/java.php @@ -4,7 +4,7 @@ * -------- * Author: Nigel McNie (nigel@geshi.org) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/) - * Release Version: 1\.0\.8 + * Release Version: 1.0.8.3 * Date Started: 2004/07/10 * * Java language file for GeSHi. @@ -59,7 +59,7 @@ $language_data = array ( //Import and Package directives (Basic Support only) 2 => '/(?:(?<=import[\\n\\s])|(?<=package[\\n\\s]))[\\n\\s]*([a-zA-Z0-9_]+\\.)*([a-zA-Z0-9_]+|\*)(?=[\n\s;])/i', // javadoc comments - 3 => '#/\*\*(?!\*).*\*/#sU' + 3 => '#/\*\*(?![\*\/]).*\*/#sU' ), 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE, 'QUOTEMARKS' => array("'", '"'), @@ -934,7 +934,7 @@ $language_data = array ( 1 => 'color: #666666; font-style: italic;', 2 => 'color: #006699;', 3 => 'color: #008000; font-style: italic; font-weight: bold;', - 3 => 'color: #008000; font-style: italic; font-weight: bold;', + 3 => 'color: #008000; font-style: italic; font-weight: bold;', 'MULTI' => 'color: #666666; font-style: italic;' ), 'ESCAPE_CHAR' => array( |