diff options
author | stuconnolly <stuart02@gmail.com> | 2009-03-26 23:09:23 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-03-26 23:09:23 +0000 |
commit | 5405d049d611adc0a76ec2f1a1d8960b2fe10def (patch) | |
tree | 4331deb994b1f805e31113e8d68ffb1fa21d9563 /Source/CMTextView.m | |
parent | f40bcfcf86a4739ab0fe1e0fa26668d23dd834f2 (diff) | |
download | sequelpro-5405d049d611adc0a76ec2f1a1d8960b2fe10def.tar.gz sequelpro-5405d049d611adc0a76ec2f1a1d8960b2fe10def.tar.bz2 sequelpro-5405d049d611adc0a76ec2f1a1d8960b2fe10def.zip |
Rename tokens.h to SPEditorTokens.h and tokens.l to SPEditorTokens.l.
Diffstat (limited to 'Source/CMTextView.m')
-rw-r--r-- | Source/CMTextView.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CMTextView.m b/Source/CMTextView.m index cd00cafb..d62783da 100644 --- a/Source/CMTextView.m +++ b/Source/CMTextView.m @@ -27,7 +27,7 @@ /* all the extern variables and prototypes required for flex (used for syntax highlighting) */ -#import "tokens.h" +#import "SPEditorTokens.h" extern int yylex(); extern int yyuoffset, yyuleng; typedef struct yy_buffer_state *YY_BUFFER_STATE; @@ -86,7 +86,7 @@ YY_BUFFER_STATE yy_scan_string (const char *); /* List of keywords for autocompletion. If you add a keyword here, -it should also be added to the flex file tokens.l +it should also be added to the flex file SPEditorTokens.l */ -(NSArray *)keywords { return [NSArray arrayWithObjects: |