Home | History | Annotate | Download | only in contrib

Lines Matching full:escape_char

291             if(!isset($language_data['ESCAPE_CHAR'])) {
292 report_error(TYPE_ERROR, 'Language file contains no $language_data[\'ESCAPE_CHAR\'] specification to check!');
293 } else if (!is_string($language_data['ESCAPE_CHAR'])) {
294 report_error(TYPE_ERROR, 'Language file contains a $language_data[\'ESCAPE_CHAR\'] specification which is not a string!');
295 } else if (1 < strlen($language_data['ESCAPE_CHAR'])) {
296 report_error(TYPE_ERROR, 'Language file contains a $language_data[\'ESCAPE_CHAR\'] specification is not empty or exactly one char!');
422 $style_arrays = array('KEYWORDS', 'COMMENTS', 'ESCAPE_CHAR',
433 && !(('STRINGS' == $style_kind || 'ESCAPE_CHAR' == $style_kind) && 'HARD' == $sk_key)) {