diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | genman.txr | 4 | ||||
-rw-r--r-- | txr.vim | 4 |
3 files changed, 12 insertions, 4 deletions
@@ -1,5 +1,13 @@ 2012-02-05 Kaz Kylheku <kaz@kylheku.com> + * genman.txr: Updated. + + * txr.vim: Fixed mistakes in a few regex character classes, + causing upper case letters not to be recognized as part + of a variable name, and character hex constant. + +2012-02-05 Kaz Kylheku <kaz@kylheku.com> + Version 56 * txr.c (version): Bumped. @@ -13,10 +13,10 @@ Content-type: text/html @(collect) @PREAMBLE @(until) -txr - text extractor @(skip) +txr - text processing language @(skip) @(end) @(all) -txr - text extractor @VERSION +txr - text processing language @VERSION @ (and) @ (collect) @BODY @@ -92,9 +92,9 @@ syn match txr_atat "@[ \t]*@" syn match txr_comment "@[ \t]*[#;].*" syn match txr_contin "@[ \t]*\\$" syn match txr_char "@[ \t]*\\." -syn match txr_char "@[ \t]*\\x[0-9a-fa-f]\+" +syn match txr_char "@[ \t]*\\x[0-9A-Fa-f]\+" syn match txr_char "@[ \t]*\\[0-9]\+" -syn match txr_variable "@[ \t]*[*]\?[ \t]*[A-Za-z_][A-Aa-z0-9_]*" +syn match txr_variable "@[ \t]*[*]\?[ \t]*[A-Za-z_][A-Za-z0-9_]*" syn match txr_regdir "@[ \t]*/\(\\/\|[^/]\)*/" syn match txr_chr "#\\x[A-Fa-f0-9]\+" contained |