summaryrefslogtreecommitdiff
path: root/inc/geshi/haskell.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2012-08-26 17:18:46 +0200
committerAndreas Gohr <andi@splitbrain.org>2012-08-26 17:18:46 +0200
commit15c2c8532309b462a4d0c22e2358e80a1c4b7a20 (patch)
tree0a1c626b821df2a57f666c2d0c99b3d7ede498ff /inc/geshi/haskell.php
parentc3564cf99ca2ff7b35e27d0ab319e17d67b17943 (diff)
downloadrpg-15c2c8532309b462a4d0c22e2358e80a1c4b7a20.tar.gz
rpg-15c2c8532309b462a4d0c22e2358e80a1c4b7a20.tar.bz2
GeSHi upgraded to version 1.0.8.11
Diffstat (limited to 'inc/geshi/haskell.php')
-rw-r--r--inc/geshi/haskell.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/inc/geshi/haskell.php b/inc/geshi/haskell.php
index ce1b3bf69..adae11168 100644
--- a/inc/geshi/haskell.php
+++ b/inc/geshi/haskell.php
@@ -4,7 +4,7 @@
* ----------
* Author: Jason Dagit (dagit@codersbase.com) based on ocaml.php by Flaie (fireflaie@gmail.com)
* Copyright: (c) 2005 Flaie, Nigel McNie (http://qbnz.com/highlighter)
- * Release Version: 1.0.8.10
+ * Release Version: 1.0.8.11
* Date Started: 2005/08/27
*
* Haskell language file for GeSHi.
@@ -46,8 +46,8 @@ $language_data = array (
3 => "/{-(?:(?R)|.)-}/s", //Nested Comments
),
'CASE_KEYWORDS' => 0,
- 'QUOTEMARKS' => array('"'),
- 'ESCAPE_CHAR' => "\\",
+ 'QUOTEMARKS' => array('"',"'"),
+ 'ESCAPE_CHAR' => '\\',
'KEYWORDS' => array(
/* main haskell keywords */
1 => array(
@@ -95,7 +95,7 @@ $language_data = array (
'product', 'concat', 'concatMap', 'maximum',
'minimum', 'scanl', 'scanl1', 'scanr', 'scanr1',
'iterate', 'repeat', 'cycle', 'take', 'drop',
- 'splitAt', 'teakWhile', 'dropWhile', 'span',
+ 'splitAt', 'takeWhile', 'dropWhile', 'span',
'break', 'elem', 'notElem', 'lookup', 'zip',
'zip3', 'zipWith', 'zipWith3', 'unzip', 'unzip3',
'lines', 'words', 'unlines',