diff options
| author | Matt Armstrong | 2022-10-19 16:16:09 -0700 |
|---|---|---|
| committer | Stefan Monnier | 2022-10-19 21:35:09 -0400 |
| commit | 37a1145410f7d61883ea689255ee7e564c2fb3d0 (patch) | |
| tree | ea0d6e7eb8aab331e78fe67db3bdc9e426a93572 /src/buffer.h | |
| parent | f421b58db5d34f45773a73c699b4b1a5a5b9da03 (diff) | |
| download | emacs-37a1145410f7d61883ea689255ee7e564c2fb3d0.tar.gz emacs-37a1145410f7d61883ea689255ee7e564c2fb3d0.zip | |
Rename all exported itree.h functions with the itree_ prefix
For the most part, I replaced the interval_tree_ prefix with itree_,
interval_node_ with itree_node_, etc.
* src/alloc.c: Rename everywhere as appropriate.
* src/alloc.c: ditto.
* src/buffer.c: ditto.
* src/buffer.h: ditto.
* src/itree.c: ditto.
* src/itree.h: ditto.
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.h b/src/buffer.h index ee0c8dd8361..ce1b7b27b0f 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -1398,7 +1398,7 @@ overlay_start (struct Lisp_Overlay *ov) | |||
| 1398 | { | 1398 | { |
| 1399 | if (! ov->buffer) | 1399 | if (! ov->buffer) |
| 1400 | return -1; | 1400 | return -1; |
| 1401 | return interval_node_begin (ov->buffer->overlays, ov->interval); | 1401 | return itree_node_begin (ov->buffer->overlays, ov->interval); |
| 1402 | } | 1402 | } |
| 1403 | 1403 | ||
| 1404 | INLINE ptrdiff_t | 1404 | INLINE ptrdiff_t |
| @@ -1406,7 +1406,7 @@ overlay_end (struct Lisp_Overlay *ov) | |||
| 1406 | { | 1406 | { |
| 1407 | if (! ov->buffer) | 1407 | if (! ov->buffer) |
| 1408 | return -1; | 1408 | return -1; |
| 1409 | return interval_node_end (ov->buffer->overlays, ov->interval); | 1409 | return itree_node_end (ov->buffer->overlays, ov->interval); |
| 1410 | } | 1410 | } |
| 1411 | 1411 | ||
| 1412 | /* Return the start of OV in its buffer, or -1 if OV is not associated | 1412 | /* Return the start of OV in its buffer, or -1 if OV is not associated |