summaryrefslogtreecommitdiffstats
path: root/lib.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2011-10-07 21:19:04 -0700
committerKaz Kylheku <kaz@kylheku.com>2011-10-07 21:19:04 -0700
commit81c5eee132546c90d878065722f52e70b27c359f (patch)
tree41e8b45cc3e000898b5c532c7a0fd4282159ff46 /lib.h
parentf5af9dd56254dd90f5985eb3e1dcbab042d72431 (diff)
downloadtxr-81c5eee132546c90d878065722f52e70b27c359f.tar.gz
txr-81c5eee132546c90d878065722f52e70b27c359f.tar.bz2
txr-81c5eee132546c90d878065722f52e70b27c359f.zip
* lib.c (eol_s): New symbol variable.
(obj_init): New variable initialized. * lib.h (eol_s): Declared. * match.c (match_line): Implemented horizontal skip as and new eol directive. (match_lines): Vertical skip defers to horizontal skip if there is trailing material. * txr.1: Updated. * lib.c (eol_s): New symbol variable. (obj_init): New variable initialized. * lib.h (eol_s): Declared. * match.c (match_line): Implemented horizontal skip as and new eol directive. (match_lines): Vertical skip defers to horizontal skip if there is trailing material. * txr.1: Updated.
Diffstat (limited to 'lib.h')
-rw-r--r--lib.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib.h b/lib.h
index 38717fe9..dda8dfbd 100644
--- a/lib.h
+++ b/lib.h
@@ -227,7 +227,8 @@ extern val all_s, some_s, none_s, maybe_s, cases_s, collect_s, until_s, coll_s;
extern val define_s, output_s, single_s, first_s, last_s, empty_s;
extern val repeat_s, rep_s, flatten_s, forget_s;
extern val local_s, merge_s, bind_s, cat_s;
-extern val try_s, catch_s, finally_s, throw_s, defex_s, deffilter_s, eof_s;
+extern val try_s, catch_s, finally_s, throw_s, defex_s, deffilter_s;
+extern val eof_s, eol_s;
extern val error_s, type_error_s, internal_error_s;
extern val numeric_error_s, range_error_s;
extern val query_error_s, file_error_s, process_error_s;