diff options
| author | Matt Armstrong | 2022-10-19 15:56:07 -0700 |
|---|---|---|
| committer | Stefan Monnier | 2022-10-19 21:35:09 -0400 |
| commit | f421b58db5d34f45773a73c699b4b1a5a5b9da03 (patch) | |
| tree | 3bddc5b3bb76bb6054e30fbae30765d8211a37f8 /src/buffer.h | |
| parent | 06252617b2c4cc9bcdd9407f1e709a7e0908cf27 (diff) | |
| download | emacs-f421b58db5d34f45773a73c699b4b1a5a5b9da03.tar.gz emacs-f421b58db5d34f45773a73c699b4b1a5a5b9da03.zip | |
Prefix all itree.h type names with itree_
Rename interval_node -> itree_node, interval_tree -> itree_tree,
interval_tree_order -> itree_order.
* src/alloc.c: Renames.
* src/buffer.c: ditto.
* src/itree.c: ditto.
* src/itree.h: ditto.
* src/lisp.h: ditto.
* src/pdumper.h: ditto.
* src/textprop.h: ditto.
* src/xdisp.h: ditto.
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.h b/src/buffer.h index afcdfcd9a02..ee0c8dd8361 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -698,7 +698,7 @@ struct buffer | |||
| 698 | bool_bf long_line_optimizations_p : 1; | 698 | bool_bf long_line_optimizations_p : 1; |
| 699 | 699 | ||
| 700 | /* The inveral tree containing this buffer's overlays. */ | 700 | /* The inveral tree containing this buffer's overlays. */ |
| 701 | struct interval_tree *overlays; | 701 | struct itree_tree *overlays; |
| 702 | 702 | ||
| 703 | /* Changes in the buffer are recorded here for undo, and t means | 703 | /* Changes in the buffer are recorded here for undo, and t means |
| 704 | don't record anything. This information belongs to the base | 704 | don't record anything. This information belongs to the base |