]> git.eshelyaron.com Git - emacs.git/commitdiff
* intervals.c (offset_intervals): Remove obsolete comment.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 14 Aug 2012 08:30:52 +0000 (01:30 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 14 Aug 2012 08:30:52 +0000 (01:30 -0700)
src/ChangeLog
src/intervals.c

index eef02da44e3783396ed95eeefd6b8a641d41b584..b752db53eee8795ee48b4d1521eeb72c7c5203ec 100644 (file)
@@ -1,3 +1,7 @@
+2012-08-14  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * intervals.c (offset_intervals): Remove obsolete comment.
+
 2012-08-14  Andreas Schwab  <schwab@linux-m68k.org>
 
        * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
index 145882f6146499a0b1929ae6e1d3fd914520f93c..09949bbbd45dd904262cad2b4945254c2f398860 100644 (file)
@@ -1366,11 +1366,7 @@ adjust_intervals_for_deletion (struct buffer *buffer,
 /* Make the adjustments necessary to the interval tree of BUFFER to
    represent an addition or deletion of LENGTH characters starting
    at position START.  Addition or deletion is indicated by the sign
-   of LENGTH.
-
-   The two inline functions (one static) pacify Sun C 5.8, a pre-C99
-   compiler that does not allow calling a static function (here,
-   adjust_intervals_for_deletion) from a non-static inline function.  */
+   of LENGTH.  */
 
 void
 offset_intervals (struct buffer *buffer, ptrdiff_t start, ptrdiff_t length)
@@ -1609,7 +1605,7 @@ graft_intervals_into_buffer (INTERVAL source, ptrdiff_t position,
   eassert (length == TOTAL_LENGTH (source));
 
   if ((BUF_Z (buffer) - BUF_BEG (buffer)) == length)
-    { 
+    {
       /* The inserted text constitutes the whole buffer, so
         simply copy over the interval structure.  */
       Lisp_Object buf;