summaryrefslogtreecommitdiff
path: root/source/luametatex/source/tex/texadjust.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/luametatex/source/tex/texadjust.h')
-rw-r--r--source/luametatex/source/tex/texadjust.h49
1 files changed, 27 insertions, 22 deletions
diff --git a/source/luametatex/source/tex/texadjust.h b/source/luametatex/source/tex/texadjust.h
index 19c116f26..ea1c88f43 100644
--- a/source/luametatex/source/tex/texadjust.h
+++ b/source/luametatex/source/tex/texadjust.h
@@ -8,29 +8,34 @@
# define LMT_ADJUST_H
typedef enum saved_adjust_items {
- saved_adjust_item_location = 0,
- saved_adjust_item_options = 1,
- saved_adjust_item_index = 2,
- saved_adjust_item_attr_list = 3,
- saved_adjust_item_depth_before = 4,
- saved_adjust_item_depth_after = 5,
- saved_adjust_n_of_items = 6,
+ saved_adjust_item_location,
+ saved_adjust_item_options,
+ saved_adjust_item_index,
+ saved_adjust_item_attr_list,
+ saved_adjust_item_depth_before,
+ saved_adjust_item_depth_after,
+ saved_adjust_item_target,
+ saved_adjust_n_of_items,
} saved_adjust_items;
-extern void tex_initialize_adjust (void);
-extern void tex_cleanup_adjust (void);
-
-extern void tex_run_vadjust (void);
-extern void tex_finish_vadjust_group (void);
-
-extern int tex_valid_adjust_index (halfword n);
-
-extern void tex_inject_adjust_list (halfword list, int obeyoptions, halfword nextnode, const line_break_properties *properties);
-
-extern void tex_adjust_passon (halfword box, halfword adjust);
-extern void tex_adjust_attach (halfword box, halfword adjust);
-
-extern halfword tex_prepend_adjust_list (halfword head, halfword tail, halfword adjust);
-extern halfword tex_append_adjust_list (halfword head, halfword tail, halfword adjust);
+extern void tex_initialize_adjust (void);
+extern void tex_cleanup_adjust (void);
+
+extern void tex_run_vadjust (void);
+extern void tex_set_vadjust (halfword target);
+extern void tex_finish_vadjust_group (void);
+
+extern int tex_valid_adjust_index (halfword n);
+
+extern void tex_inject_adjust_list (halfword list, int obeyoptions, halfword nextnode, const line_break_properties *properties);
+
+extern void tex_adjust_passon (halfword box, halfword adjust);
+extern void tex_adjust_attach (halfword box, halfword adjust);
+
+extern halfword tex_prepend_adjust_list (halfword head, halfword tail, halfword adjust, const char *detail);
+extern halfword tex_append_adjust_list (halfword head, halfword tail, halfword adjust, const char *detail);
+
+extern halfword tex_flush_adjust_append (halfword adjust, halfword tail);
+extern halfword tex_flush_adjust_prepend (halfword adjust, halfword tail);
# endif \ No newline at end of file