1 /* Definitions for interface to indent.c
2 Copyright (C) 1985-1986, 2001-2012 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
29 struct position
*compute_motion (ptrdiff_t from
, EMACS_INT fromvpos
,
30 EMACS_INT fromhpos
, int did_motion
,
31 ptrdiff_t to
, EMACS_INT tovpos
,
33 EMACS_INT width
, ptrdiff_t hscroll
,
34 int tab_offset
, struct window
*);
35 struct position
*vmotion (ptrdiff_t from
, EMACS_INT vtarget
,
37 ptrdiff_t skip_invisible (ptrdiff_t pos
, ptrdiff_t *next_boundary_p
,
38 ptrdiff_t to
, Lisp_Object window
);
40 /* Value of point when current_column was called */
41 extern ptrdiff_t last_known_column_point
;
43 /* Functions for dealing with the column cache. */
45 /* Return true if the display table DISPTAB specifies the same widths
46 for characters as WIDTHTAB. We use this to decide when to
47 invalidate the buffer's column_cache. */
48 int disptab_matches_widthtab (struct Lisp_Char_Table
*disptab
,
49 struct Lisp_Vector
*widthtab
);
51 /* Recompute BUF's width table, using the display table DISPTAB. */
52 void recompute_width_table (struct buffer
*buf
,
53 struct Lisp_Char_Table
*disptab
);