diff options
| author | Jim Blandy | 1994-10-08 22:14:35 +0000 |
|---|---|---|
| committer | Jim Blandy | 1994-10-08 22:14:35 +0000 |
| commit | 63dec5bd9d19a7ddd89c8c7db17284cc7f4afce0 (patch) | |
| tree | 936d7fc62d36b60a3864b056a917e36c7b3db6c3 /src | |
| parent | 0aa01123caabb74724a77580e388586808a77767 (diff) | |
| download | emacs-63dec5bd9d19a7ddd89c8c7db17284cc7f4afce0.tar.gz emacs-63dec5bd9d19a7ddd89c8c7db17284cc7f4afce0.zip | |
* indent.h (disptab_matches_widthtab, recompute_width_table): New
declarations.
Diffstat (limited to 'src')
| -rw-r--r-- | src/indent.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/indent.h b/src/indent.h index ec6dcaeadf0..9f0c7613ec4 100644 --- a/src/indent.h +++ b/src/indent.h | |||
| @@ -32,3 +32,15 @@ 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 */ ); | ||