summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2004-10-13 14:33:37 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2004-10-13 14:33:37 (GMT)
commita03854f45e76fa41f007536b8c858e2d0aa93f2d (patch)
tree6a32802e19e44c875f3221d98465a64cfacaaec7 /Tools
parente9590feac8c97cc5eecc99a1c746850d2cea3236 (diff)
downloadTASS-a03854f45e76fa41f007536b8c858e2d0aa93f2d.zip
TASS-a03854f45e76fa41f007536b8c858e2d0aa93f2d.tar.gz
TASS-a03854f45e76fa41f007536b8c858e2d0aa93f2d.tar.bz2
added TRUE FALSE next to true false as stdlib.hch supports those
Diffstat (limited to 'Tools')
-rw-r--r--Tools/vim/Syntax/hcc.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/vim/Syntax/hcc.vim b/Tools/vim/Syntax/hcc.vim
index f8adef4..2d200a7 100644
--- a/Tools/vim/Syntax/hcc.vim
+++ b/Tools/vim/Syntax/hcc.vim
@@ -244,7 +244,7 @@ if !exists("c_no_ansi") || exists("c_ansi_constants") || exists("c_gnu")
syn keyword cConstant M_1_PI M_2_PI M_2_SQRTPI M_SQRT2 M_SQRT1_2
endif
if !exists("c_no_c99") " ISO C99
- syn keyword cConstant true false
+ syn keyword cConstant true false TRUE FALSE
endif
" Accept %: for # (C99)