summaryrefslogtreecommitdiff
path: root/src/buffer.h
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2010-11-20 21:20:50 -0800
committerDan Nicolaescu <dann@ics.uci.edu>2010-11-20 21:20:50 -0800
commitb7982059664f947cf99a296005adbb596837120a (patch)
tree0f4c95a02fc2e5359bb7ef763a074534ee1a4897 /src/buffer.h
parent33726611e7b43838428dff13752535b85d5bda4f (diff)
downloademacs-b7982059664f947cf99a296005adbb596837120a.tar.gz
emacs-b7982059664f947cf99a296005adbb596837120a.tar.bz2
emacs-b7982059664f947cf99a296005adbb596837120a.zip
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/buffer.h')
-rw-r--r--src/buffer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 9e3de6f23d5..79acd16b6fd 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -227,10 +227,10 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
(temp_set_point ((buffer), (position)))
extern void set_point (EMACS_INT);
-extern INLINE void temp_set_point (struct buffer *, EMACS_INT);
+extern void temp_set_point (struct buffer *, EMACS_INT);
extern void set_point_both (EMACS_INT, EMACS_INT);
-extern INLINE void temp_set_point_both (struct buffer *,
- EMACS_INT, EMACS_INT);
+extern void temp_set_point_both (struct buffer *,
+ EMACS_INT, EMACS_INT);
extern void enlarge_buffer_text (struct buffer *, EMACS_INT);