diff options
| author | Dave Love | 2000-08-17 13:48:48 +0000 |
|---|---|---|
| committer | Dave Love | 2000-08-17 13:48:48 +0000 |
| commit | bb4fee022a7900dc607e2850743341ae145c0339 (patch) | |
| tree | 62dabc0c3d1a5df153c9d3834c3116f35e8976e9 | |
| parent | 9d8cf732e697eb256e55dae088c349850cebea3f (diff) | |
| download | emacs-bb4fee022a7900dc607e2850743341ae145c0339.tar.gz emacs-bb4fee022a7900dc607e2850743341ae145c0339.zip | |
Avoid DECLARE_INTERVALS.
| -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 6014b42b584..86796f54961 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -423,8 +423,8 @@ struct buffer_text | |||
| 423 | end_unchanged contain no useful information. */ | 423 | end_unchanged contain no useful information. */ |
| 424 | int overlay_unchanged_modified; | 424 | int overlay_unchanged_modified; |
| 425 | 425 | ||
| 426 | /* Properties of this buffer's text -- conditionally compiled. */ | 426 | /* Properties of this buffer's text. */ |
| 427 | DECLARE_INTERVALS | 427 | INTERVAL intervals; |
| 428 | 428 | ||
| 429 | /* The markers that refer to this buffer. | 429 | /* The markers that refer to this buffer. |
| 430 | This is actually a single marker --- | 430 | This is actually a single marker --- |