]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove INLINE uses in header files.
authorDan Nicolaescu <dann@ics.uci.edu>
Sun, 21 Nov 2010 05:20:50 +0000 (21:20 -0800)
committerDan Nicolaescu <dann@ics.uci.edu>
Sun, 21 Nov 2010 05:20:50 +0000 (21:20 -0800)
* src/intervals.h (temp_set_point, temp_set_point_both):
* src/buffer.h (offset_intervals, copy_intervals): Remove INLINE.

src/ChangeLog
src/buffer.h
src/intervals.h

index 04a8198cfc2c954eff2c44947f3cfc9a9bdfe907..7cce1f017d79d963adaeb83d2fe012b9c4f5667a 100644 (file)
@@ -1,3 +1,8 @@
+2010-11-21  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * intervals.h (temp_set_point, temp_set_point_both):
+       * buffer.h (offset_intervals, copy_intervals): Remove INLINE.
+
 2010-11-20  Ken Brown  <kbrown@cornell.edu>
 
        * sheap.c (STATIC_HEAP_SIZE): Increase to 13MB.
index 9e3de6f23d590494436050b1525b6b11a6359e86..79acd16b6fdac9736d3063bc09541f637d500c1f 100644 (file)
@@ -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);
 
 \f
index b39fbd6899df73d47d79c93d69c03a897e2b306f..47eb8d4bcb1976aa13eb75a606a8cc4ff8603f48 100644 (file)
@@ -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);