| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 |
|
|---|
| 35 |
|
|---|
| 36 |
|
|---|
| 37 |
|
|---|
| 38 |
|
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 |
|
|---|
| 43 |
|
|---|
| 44 |
$language_data = array ( |
|---|
| 45 |
'LANG_NAME' => 'LISP', |
|---|
| 46 |
'COMMENT_SINGLE' => array(1 => ';'), |
|---|
| 47 |
'COMMENT_MULTI' => array(';|' => '|;'), |
|---|
| 48 |
'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE, |
|---|
| 49 |
'QUOTEMARKS' => array('"'), |
|---|
| 50 |
'ESCAPE_CHAR' => '\\', |
|---|
| 51 |
'KEYWORDS' => array( |
|---|
| 52 |
1 => array( |
|---|
| 53 |
'not','defun','princ', |
|---|
| 54 |
'eval','apply','funcall','quote','identity','function', |
|---|
| 55 |
'complement','backquote','lambda','set','setq','setf', |
|---|
| 56 |
'defun','defmacro','gensym','make','symbol','intern', |
|---|
| 57 |
'symbol','name','symbol','value','symbol','plist','get', |
|---|
| 58 |
'getf','putprop','remprop','hash','make','array','aref', |
|---|
| 59 |
'car','cdr','caar','cadr','cdar','cddr','caaar','caadr','cadar', |
|---|
| 60 |
'caddr','cdaar','cdadr','cddar','cdddr','caaaar','caaadr', |
|---|
| 61 |
'caadar','caaddr','cadaar','cadadr','caddar','cadddr', |
|---|
| 62 |
'cdaaar','cdaadr','cdadar','cdaddr','cddaar','cddadr', |
|---|
| 63 |
'cdddar','cddddr','cons','list','append','reverse','last','nth', |
|---|
| 64 |
'nthcdr','member','assoc','subst','sublis','nsubst', |
|---|
| 65 |
'nsublis','remove','length','list','length', |
|---|
| 66 |
'mapc','mapcar','mapl','maplist','mapcan','mapcon','rplaca', |
|---|
| 67 |
'rplacd','nconc','delete','atom','symbolp','numberp', |
|---|
| 68 |
'boundp','null','listp','consp','minusp','zerop','plusp', |
|---|
| 69 |
'evenp','oddp','eq','eql','equal','cond','case','and','or', |
|---|
| 70 |
'let','l','if','prog','prog1','prog2','progn','go','return', |
|---|
| 71 |
'do','dolist','dotimes','catch','throw','error','cerror','break', |
|---|
| 72 |
'continue','errset','baktrace','evalhook','truncate','float', |
|---|
| 73 |
'rem','min','max','abs','sin','cos','tan','expt','exp','sqrt', |
|---|
| 74 |
'random','logand','logior','logxor','lognot','bignums','logeqv', |
|---|
| 75 |
'lognand','lognor','logorc2','logtest','logbitp','logcount', |
|---|
| 76 |
'integer','length','nil' |
|---|
| 77 |
) |
|---|
| 78 |
), |
|---|
| 79 |
'SYMBOLS' => array( |
|---|
| 80 |
'(', ')', '{', '}', '[', ']', '!', '%', '^', '&', '/','+','-','*','=','<','>',';','|' |
|---|
| 81 |
), |
|---|
| 82 |
'CASE_SENSITIVE' => array( |
|---|
| 83 |
GESHI_COMMENTS => true, |
|---|
| 84 |
1 => false |
|---|
| 85 |
), |
|---|
| 86 |
'STYLES' => array( |
|---|
| 87 |
'KEYWORDS' => array( |
|---|
| 88 |
1 => 'color: #b1b100;' |
|---|
| 89 |
), |
|---|
| 90 |
'COMMENTS' => array( |
|---|
| 91 |
1 => 'color: #808080; font-style: italic;', |
|---|
| 92 |
'MULTI' => 'color: #808080; font-style: italic;' |
|---|
| 93 |
), |
|---|
| 94 |
'ESCAPE_CHAR' => array( |
|---|
| 95 |
0 => 'color: #000099; font-weight: bold;' |
|---|
| 96 |
), |
|---|
| 97 |
'BRACKETS' => array( |
|---|
| 98 |
0 => 'color: #66cc66;' |
|---|
| 99 |
), |
|---|
| 100 |
'STRINGS' => array( |
|---|
| 101 |
0 => 'color: #ff0000;' |
|---|
| 102 |
), |
|---|
| 103 |
'NUMBERS' => array( |
|---|
| 104 |
0 => 'color: #cc66cc;' |
|---|
| 105 |
), |
|---|
| 106 |
'METHODS' => array( |
|---|
| 107 |
0 => 'color: #202020;' |
|---|
| 108 |
), |
|---|
| 109 |
'SYMBOLS' => array( |
|---|
| 110 |
0 => 'color: #66cc66;' |
|---|
| 111 |
), |
|---|
| 112 |
'REGEXPS' => array( |
|---|
| 113 |
), |
|---|
| 114 |
'SCRIPT' => array( |
|---|
| 115 |
) |
|---|
| 116 |
), |
|---|
| 117 |
'URLS' => array( |
|---|
| 118 |
), |
|---|
| 119 |
'OOLANG' => false, |
|---|
| 120 |
'OBJECT_SPLITTERS' => array( |
|---|
| 121 |
), |
|---|
| 122 |
'REGEXPS' => array( |
|---|
| 123 |
), |
|---|
| 124 |
'STRICT_MODE_APPLIES' => GESHI_NEVER, |
|---|
| 125 |
'SCRIPT_DELIMITERS' => array( |
|---|
| 126 |
), |
|---|
| 127 |
'HIGHLIGHT_STRICT_BLOCK' => array( |
|---|
| 128 |
) |
|---|
| 129 |
); |
|---|
| 130 |
|
|---|
| 131 |
?> |
|---|