1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-30 19:53:09 +00:00

* indent.h (disptab_matches_widthtab, recompute_width_table): New

declarations.
This commit is contained in:
Jim Blandy 1994-10-08 22:14:35 +00:00
parent 0aa01123ca
commit 63dec5bd9d

View File

@ -32,3 +32,15 @@ struct position *vmotion ();
/* Value of point when current_column was called */
extern int last_known_column_point;
/* Functions for dealing with the column cache. */
/* Return true iff the display table DISPTAB specifies the same widths
for characters as WIDTHTAB. We use this to decide when to
invalidate the buffer's column_cache. */
extern int disptab_matches_widthtab ( /* struct Lisp_Vector *disptab,
struct Lisp_Vector *widthtab */ );
/* Recompute BUF's width table, using the display table DISPTAB. */
extern void recompute_width_table ( /* struct buffer *buf,
struct Lisp_Vector *disptab */ );