484
+ ��膩��� 1 /* Definitions for interface to indent.c
+ ��膩��� 2 Copyright (C) 1985, 1986 Free Software Foundation, Inc.
+ ��膩��� 3
+ ��膩��� 4 This file is part of GNU Emacs.
+ ��膩��� 5
+ ��膩��� 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 1, or (at your option)
+ ��膩��� 9 any later version.
+ ��膩��� 10
+ ��膩��� 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.
+ ��膩��� 15
+ ��膩��� 16 You should have received a copy of the GNU General Public License
+ ��膩��� 17 along with GNU Emacs; see the file COPYING. If not, write to
+ ��膩��� 18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+ ��膩��� 19
+ ��膩��� 20
+ ��膩��� 21 struct position
+ ��膩��� 22 {
+ ��膩��� 23 int bufpos;
+ ��膩��� 24 int hpos;
+ ��膩��� 25 int vpos;
+ ��膩��� 26 int prevhpos;
+ ��膩��� 27 int contin;
+ ��膩��� 28 };
+ ��膩��� 29
+ ��膩��� 30 struct position *compute_motion ();
+ ��膩��� 31 struct position *vmotion ();
+ ��膩��� 32
+ ��膩��� 33 /* Value of point when current_column was called */
+ ��膩��� 34 extern int last_known_column_point;