diff options
| author | Gerd Moellmann | 1999-07-21 21:43:52 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-07-21 21:43:52 +0000 |
| commit | d3c92eee390fc34b95e9d4e3448f9aa04d114f4d (patch) | |
| tree | 2604f2c229c10d2f1d7007442ae60ec2e4e000c5 /src | |
| parent | 2e9f55fde2d2430d687fc25cae1e0095dde7e4b1 (diff) | |
| download | emacs-d3c92eee390fc34b95e9d4e3448f9aa04d114f4d.tar.gz emacs-d3c92eee390fc34b95e9d4e3448f9aa04d114f4d.zip | |
(toplevel): Add function prototypes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/indent.h | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/src/indent.h b/src/indent.h index 16d068c660a..676f64a8ae8 100644 --- a/src/indent.h +++ b/src/indent.h | |||
| @@ -50,8 +50,10 @@ struct position | |||
| 50 | int tab_offset; | 50 | int tab_offset; |
| 51 | }; | 51 | }; |
| 52 | 52 | ||
| 53 | struct position *compute_motion (); | 53 | struct position *compute_motion P_ ((int, int, int, int, int, int, int, |
| 54 | struct position *vmotion (); | 54 | int, int, int, struct window *)); |
| 55 | struct position *vmotion P_ ((int, int, struct window *)); | ||
| 56 | int skip_invisible P_ ((int, int *, int, Lisp_Object)); | ||
| 55 | 57 | ||
| 56 | /* Value of point when current_column was called */ | 58 | /* Value of point when current_column was called */ |
| 57 | extern int last_known_column_point; | 59 | extern int last_known_column_point; |
| @@ -61,9 +63,11 @@ extern int last_known_column_point; | |||
| 61 | /* Return true iff the display table DISPTAB specifies the same widths | 63 | /* Return true iff the display table DISPTAB specifies the same widths |
| 62 | for characters as WIDTHTAB. We use this to decide when to | 64 | for characters as WIDTHTAB. We use this to decide when to |
| 63 | invalidate the buffer's column_cache. */ | 65 | invalidate the buffer's column_cache. */ |
| 64 | extern int disptab_matches_widthtab ( /* struct Lisp_Vector *disptab, | 66 | int disptab_matches_widthtab P_ ((struct Lisp_Char_Table *disptab, |
| 65 | struct Lisp_Vector *widthtab */ ); | 67 | struct Lisp_Vector *widthtab)); |
| 66 | 68 | ||
| 67 | /* Recompute BUF's width table, using the display table DISPTAB. */ | 69 | /* Recompute BUF's width table, using the display table DISPTAB. */ |
| 68 | extern void recompute_width_table ( /* struct buffer *buf, | 70 | void recompute_width_table P_ ((struct buffer *buf, |
| 69 | struct Lisp_Vector *disptab */ ); | 71 | struct Lisp_Char_Table *disptab)); |
| 72 | |||
| 73 | |||