diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-02-05 22:28:49 +0100 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-02-05 22:28:49 +0100 |
commit | 9f3aa3c33b18eacd3fc76fd71f1405ca7e7aa682 (patch) | |
tree | 755aae32b9338dc4304ab88fe6da040ac93d85b2 | |
parent | 1426cd943a19e3a71c40364a4c7416a4a7ce29e8 (diff) | |
download | txr-9f3aa3c33b18eacd3fc76fd71f1405ca7e7aa682.tar.gz txr-9f3aa3c33b18eacd3fc76fd71f1405ca7e7aa682.tar.bz2 txr-9f3aa3c33b18eacd3fc76fd71f1405ca7e7aa682.zip |
* genman.txr: Updated.txr-56
* 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.
-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 |