diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2011-12-21 20:58:49 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2011-12-21 20:58:49 -0800 |
commit | da5597229b29cd5878a192dd2624b8f7b7f5cc68 (patch) | |
tree | 48bc33ecd9a769c780e6753e1a7656e9c628c3d2 | |
parent | 817ce30b100bf7897ca86a8737eb7a12bd558eb4 (diff) | |
download | txr-da5597229b29cd5878a192dd2624b8f7b7f5cc68.tar.gz txr-da5597229b29cd5878a192dd2624b8f7b7f5cc68.tar.bz2 txr-da5597229b29cd5878a192dd2624b8f7b7f5cc68.zip |
* txr.vim: Fixed to char literal syntax.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | txr.vim | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,5 +1,9 @@ 2011-12-21 Kaz Kylheku <kaz@kylheku.com> + * txr.vim: Fixed to char literal syntax. + +2011-12-21 Kaz Kylheku <kaz@kylheku.com> + * arith.c (normalize): Linkage changed to extern. * arith.h (normalize): Declared. @@ -77,6 +77,7 @@ syn match txr_char "@[ \t]*\\[0-9]\+" syn match txr_variable "@[ \t]*[*]\?[A-Za-z_][A-Za-z0-9_]*" syn match txr_chr "#\\x[A-Fa-f0-9]\+" syn match txr_chr "#\\[a-zA-Z_][a-zA-Z0-9_]*" +syn match txr_chr "#\\[^ \t\n]" syn match txr_ncomment ";.*" contained syn match txr_ident "[a-zA-Z0-9!$%&*+\-<=>?\\^_~]\+" contained |