Mercurial > emacs
changeset 30910:3fb31847c03a
Avoid DECLARE_INTERVALS.
author | Dave Love <fx@gnu.org> |
---|---|
date | Thu, 17 Aug 2000 13:48:48 +0000 |
parents | 7e4ace31d8b1 |
children | c1de0fc3a34b |
files | src/buffer.h |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/buffer.h Thu Aug 17 13:45:46 2000 +0000 +++ b/src/buffer.h Thu Aug 17 13:48:48 2000 +0000 @@ -423,8 +423,8 @@ end_unchanged contain no useful information. */ int overlay_unchanged_modified; - /* Properties of this buffer's text -- conditionally compiled. */ - DECLARE_INTERVALS + /* Properties of this buffer's text. */ + INTERVAL intervals; /* The markers that refer to this buffer. This is actually a single marker ---