diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2010-11-20 21:20:50 -0800 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2010-11-20 21:20:50 -0800 |
commit | b7982059664f947cf99a296005adbb596837120a (patch) | |
tree | 0f4c95a02fc2e5359bb7ef763a074534ee1a4897 /src/intervals.h | |
parent | 33726611e7b43838428dff13752535b85d5bda4f (diff) | |
download | emacs-b7982059664f947cf99a296005adbb596837120a.tar.gz |
Remove INLINE uses in header files.
* src/intervals.h (temp_set_point, temp_set_point_both):
* src/buffer.h (offset_intervals, copy_intervals): Remove INLINE.
Diffstat (limited to 'src/intervals.h')
-rw-r--r-- | src/intervals.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intervals.h b/src/intervals.h index b39fbd6899d..47eb8d4bcb1 100644 --- a/src/intervals.h +++ b/src/intervals.h @@ -264,12 +264,12 @@ extern INTERVAL previous_interval (INTERVAL); extern INTERVAL merge_interval_left (INTERVAL); extern INTERVAL merge_interval_right (INTERVAL); extern void delete_interval (INTERVAL); -extern INLINE void offset_intervals (struct buffer *, EMACS_INT, EMACS_INT); +extern void offset_intervals (struct buffer *, EMACS_INT, EMACS_INT); extern void graft_intervals_into_buffer (INTERVAL, EMACS_INT, EMACS_INT, struct buffer *, int); extern void verify_interval_modification (struct buffer *, int, int); extern INTERVAL balance_intervals (INTERVAL); -extern INLINE void copy_intervals_to_string (Lisp_Object, struct buffer *, +extern void copy_intervals_to_string (Lisp_Object, struct buffer *, EMACS_INT, EMACS_INT); extern INTERVAL copy_intervals (INTERVAL, EMACS_INT, EMACS_INT); extern int compare_string_intervals (Lisp_Object, Lisp_Object); |