From 5a1f162168e2228be7976842441080b3fc5d00e0 Mon Sep 17 00:00:00 2001 From: Bibiko Date: Sun, 5 Apr 2009 19:38:19 +0000 Subject: =?UTF-8?q?=E2=80=A2=20tentative=20fix=20to=20suppress=20auto-uppe?= =?UTF-8?q?rcasing/syntax=20highlighting=20of=20table/field=20names=20if?= =?UTF-8?q?=20such=20a=20name=20begins=20with=20a=20SQL=20keyword=20follow?= =?UTF-8?q?ed=20by=20a=20non-ASCII=20letter=20like=20=C3=A4=C3=B6=C3=BC?= =?UTF-8?q?=C3=A9=E3=81=9F=20etc.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Source/SPEditorTokens.l | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source') diff --git a/Source/SPEditorTokens.l b/Source/SPEditorTokens.l index 08e84d7d..89730caf 100644 --- a/Source/SPEditorTokens.l +++ b/Source/SPEditorTokens.l @@ -26,8 +26,8 @@ int yyuoffset, yyuleng; %option noyywrap %option case-insensitive s [ \t\n]+ -word [a-z_0-9] -nonword [^a-z_0-9#\n\t] +word [a-z_0-9À-゚] +nonword [^a-z_0-9À-゚#\n\t] %x comment %% \"([^"\\]|\\(.|\n))*\"? { return SPT_DOUBLE_QUOTED_TEXT; } /* double quoted strings */ -- cgit v1.2.3