]> code.delx.au - gnu-emacs/blobdiff - src/intervals.c
Fix minor memory-related problems on MS-Windows revealed by Dr. Memory.
[gnu-emacs] / src / intervals.c
index 13ff9a9e3db8c2b8f9b6790aea9e6fde87a3b17d..703c0cefbd50c9f01eaa7f4ed28dfbf4392e194a 100644 (file)
@@ -60,16 +60,7 @@ static INTERVAL reproduce_tree (INTERVAL, INTERVAL);
 \f
 /* Utility functions for intervals.  */
 
-/* Use these functions to set Lisp_Object
-   or pointer slots of struct interval.  */
-
-static void
-set_interval_object (INTERVAL i, Lisp_Object obj)
-{
-  eassert (BUFFERP (obj) || STRINGP (obj));
-  i->up_obj = 1;
-  i->up.obj = obj;
-}
+/* Use these functions to set pointer slots of struct interval.  */
 
 static void
 set_interval_left (INTERVAL i, INTERVAL left)