aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.h
diff options
context:
space:
mode:
authorDan Nicolaescu2010-11-20 21:20:50 -0800
committerDan Nicolaescu2010-11-20 21:20:50 -0800
commitb7982059664f947cf99a296005adbb596837120a (patch)
tree0f4c95a02fc2e5359bb7ef763a074534ee1a4897 /src/buffer.h
parent33726611e7b43838428dff13752535b85d5bda4f (diff)
downloademacs-b7982059664f947cf99a296005adbb596837120a.tar.gz
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/>. */
227 (temp_set_point ((buffer), (position))) 227 (temp_set_point ((buffer), (position)))
228 228
229extern void set_point (EMACS_INT); 229extern void set_point (EMACS_INT);
230extern INLINE void temp_set_point (struct buffer *, EMACS_INT); 230extern void temp_set_point (struct buffer *, EMACS_INT);
231extern void set_point_both (EMACS_INT, EMACS_INT); 231extern void set_point_both (EMACS_INT, EMACS_INT);
232extern INLINE void temp_set_point_both (struct buffer *, 232extern void temp_set_point_both (struct buffer *,
233 EMACS_INT, EMACS_INT); 233 EMACS_INT, EMACS_INT);
234extern void enlarge_buffer_text (struct buffer *, EMACS_INT); 234extern void enlarge_buffer_text (struct buffer *, EMACS_INT);
235 235
236 236