comparison src/indent.h @ 9408:99429d6c8b4e

* indent.h (disptab_matches_widthtab, recompute_width_table): New declarations.
author Jim Blandy <jimb@redhat.com>
date Sat, 08 Oct 1994 22:14:35 +0000
parents 3165b2697c78
children ac7375e60931
comparison
equal deleted inserted replaced
9407:4dcc0221b449 9408:99429d6c8b4e
30 struct position *compute_motion (); 30 struct position *compute_motion ();
31 struct position *vmotion (); 31 struct position *vmotion ();
32 32
33 /* Value of point when current_column was called */ 33 /* Value of point when current_column was called */
34 extern int last_known_column_point; 34 extern int last_known_column_point;
35
36 /* Functions for dealing with the column cache. */
37
38 /* Return true iff the display table DISPTAB specifies the same widths
39 for characters as WIDTHTAB. We use this to decide when to
40 invalidate the buffer's column_cache. */
41 extern int disptab_matches_widthtab ( /* struct Lisp_Vector *disptab,
42 struct Lisp_Vector *widthtab */ );
43
44 /* Recompute BUF's width table, using the display table DISPTAB. */
45 extern void recompute_width_table ( /* struct buffer *buf,
46 struct Lisp_Vector *disptab */ );