diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-10-20 07:35:05 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-10-20 07:35:05 -0700 |
commit | c8b05c1e80d9b17a4fb002ee2cd8683632e6184d (patch) | |
tree | fd5a3b21943c1e635776b2d2681cc57f1d8cb71b /txr.vim | |
parent | b50d160363fd8f2c84b23b03a5f5e9d22911693e (diff) | |
download | txr-c8b05c1e80d9b17a4fb002ee2cd8683632e6184d.tar.gz txr-c8b05c1e80d9b17a4fb002ee2cd8683632e6184d.tar.bz2 txr-c8b05c1e80d9b17a4fb002ee2cd8683632e6184d.zip |
Source file inclusion implemented: needed for macros.
* match.c (include_s): New symbol variable.
(v_load): Function extended to handle include semantics.
(include): External wrapper function for doing inclusion
via v_load.
(syms_init): include_s initialized.
* match.h (include_s): Declared.
(include): Declared.
* parser.y (check_for_include): New static function.
(clauses_rev): Use check_for_include to replace @(include ..)
directive.
* txr.1: Documented include.
* genvim.txr: Added include symbol.
* txr.vim: Regenerated.
Diffstat (limited to 'txr.vim')
-rw-r--r-- | txr.vim | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -27,12 +27,12 @@ syn keyword txr_keyword contained define do elif else syn keyword txr_keyword contained end eof eol fail syn keyword txr_keyword contained filter finally flatten forget syn keyword txr_keyword contained freeform fuzz gather if -syn keyword txr_keyword contained last line load local -syn keyword txr_keyword contained maybe merge next none -syn keyword txr_keyword contained or output rebind rep -syn keyword txr_keyword contained repeat require set skip -syn keyword txr_keyword contained some text throw trailer -syn keyword txr_keyword contained try until var +syn keyword txr_keyword contained include last line load +syn keyword txr_keyword contained local maybe merge next +syn keyword txr_keyword contained none or output rebind +syn keyword txr_keyword contained rep repeat require set +syn keyword txr_keyword contained skip some text throw +syn keyword txr_keyword contained trailer try until var syn keyword txl_keyword contained * *args* *e* *flo-dig* syn keyword txl_keyword contained *flo-epsilon* *flo-max* *flo-min* *full-args* |