aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1996-09-04 04:33:40 +0000
committerRichard M. Stallman <[email protected]>1996-09-04 04:33:40 +0000
commit46d8a55bd1965a90e08b030d6e97bb5a110bb9fc (patch)
treeb76a73685cc6626205b58b38ce2f42bd6c4058f2
parentb516a185f9b6503f05bbe376628d353de20dd7b7 (diff)
(copy_intervals_to_string): Take arg as buffer.
-rw-r--r--src/intervals.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/intervals.c b/src/intervals.c
index c399d40d10..00c7395cbb 100644
--- a/src/intervals.c
+++ b/src/intervals.c
@@ -1843,10 +1843,11 @@ copy_intervals (tree, start, length)
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;