summaryrefslogtreecommitdiff
path: root/src/indent.h
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>1999-07-21 21:43:52 +0000
committerGerd Moellmann <gerd@gnu.org>1999-07-21 21:43:52 +0000
commitd3c92eee390fc34b95e9d4e3448f9aa04d114f4d (patch)
tree2604f2c229c10d2f1d7007442ae60ec2e4e000c5 /src/indent.h
parent2e9f55fde2d2430d687fc25cae1e0095dde7e4b1 (diff)
downloademacs-d3c92eee390fc34b95e9d4e3448f9aa04d114f4d.tar.gz
(toplevel): Add function prototypes.
Diffstat (limited to 'src/indent.h')
-rw-r--r--src/indent.h16
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
int tab_offset;
};
-struct position *compute_motion ();
-struct position *vmotion ();
+struct position *compute_motion P_ ((int, int, int, int, int, int, int,
+ int, int, int, struct window *));
+struct position *vmotion P_ ((int, int, struct window *));
+int skip_invisible P_ ((int, int *, int, Lisp_Object));
/* Value of point when current_column was called */
extern int last_known_column_point;
@@ -61,9 +63,11 @@ extern int last_known_column_point;
/* 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 */ );
+int disptab_matches_widthtab P_ ((struct Lisp_Char_Table *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 */ );
+void recompute_width_table P_ ((struct buffer *buf,
+ struct Lisp_Char_Table *disptab));
+
+