# HG changeset patch # User Richard M. Stallman # Date 841811620 0 # Node ID 4b672131c37fb509b7a6c4be6059d01ed3425d39 # Parent 198c6c2846ae1643e6cb743410b1215dbc9b8423 (copy_intervals_to_string): Take arg as buffer. diff -r 198c6c2846ae -r 4b672131c37f src/intervals.c --- a/src/intervals.c Wed Sep 04 04:31:10 1996 +0000 +++ b/src/intervals.c Wed Sep 04 04:33:40 1996 +0000 @@ -1843,10 +1843,11 @@ INLINE void copy_intervals_to_string (string, buffer, position, length) - Lisp_Object string, buffer; + Lisp_Object string; + struct buffer *buffer; int position, length; { - INTERVAL interval_copy = copy_intervals (BUF_INTERVALS (XBUFFER (buffer)), + INTERVAL interval_copy = copy_intervals (BUF_INTERVALS (buffer), position, length); if (NULL_INTERVAL_P (interval_copy)) return;