summaryrefslogtreecommitdiffstats
path: root/lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib.h')
-rw-r--r--lib.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib.h b/lib.h
index 7b2a4f0f..93ab96bb 100644
--- a/lib.h
+++ b/lib.h
@@ -201,11 +201,17 @@ struct lazy_cons {
* Lazy string: virtual string which dynamically grows as a catentation
* of a list of strings.
*/
+
+struct lazy_string_props {
+ val term;
+ val limit;
+};
+
struct lazy_string {
obj_common;
val prefix; /* actual string part */
val list; /* remaining list */
- val opts; /* ( separator . limit ) */
+ struct lazy_string_props *props;
};
struct cobj {