diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-09-21 16:22:29 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-09-21 16:22:29 -0700 |
commit | 7c85f529fd12a8cb12eb85944877d0a52b6380a7 (patch) | |
tree | 03c5c25e70d8de6a2ad4ccfcbb634738fdf6e3a3 /src/indent.h | |
parent | 2972b14b555f5738db202e930e5ecba6497e49e0 (diff) | |
download | emacs-7c85f529fd12a8cb12eb85944877d0a52b6380a7.tar.gz emacs-7c85f529fd12a8cb12eb85944877d0a52b6380a7.tar.bz2 emacs-7c85f529fd12a8cb12eb85944877d0a52b6380a7.zip |
Fix ptrdiff_t/EMACS_INT confusion.
Diffstat (limited to 'src/indent.h')
-rw-r--r-- | src/indent.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/indent.h b/src/indent.h index 4731bf0994b..fe5f60b0df5 100644 --- a/src/indent.h +++ b/src/indent.h @@ -26,13 +26,13 @@ struct position int contin; }; -struct position *compute_motion (ptrdiff_t from, ptrdiff_t fromvpos, - ptrdiff_t fromhpos, int did_motion, - ptrdiff_t to, ptrdiff_t tovpos, - ptrdiff_t tohpos, - ptrdiff_t width, ptrdiff_t hscroll, +struct position *compute_motion (ptrdiff_t from, EMACS_INT fromvpos, + EMACS_INT fromhpos, int did_motion, + ptrdiff_t to, EMACS_INT tovpos, + EMACS_INT tohpos, + EMACS_INT width, ptrdiff_t hscroll, int tab_offset, struct window *); -struct position *vmotion (ptrdiff_t from, ptrdiff_t vtarget, +struct position *vmotion (ptrdiff_t from, EMACS_INT vtarget, struct window *); ptrdiff_t skip_invisible (ptrdiff_t pos, ptrdiff_t *next_boundary_p, ptrdiff_t to, Lisp_Object window); |