mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-01 18:00:40 -08:00
(copy_intervals_to_string): Take arg as buffer.
This commit is contained in:
parent
b516a185f9
commit
46d8a55bd1
1 changed files with 3 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue