From: Dave Love Date: Thu, 17 Aug 2000 13:48:48 +0000 (+0000) Subject: Avoid DECLARE_INTERVALS. X-Git-Tag: emacs-pretest-21.0.90~2213 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bb4fee022a7900dc607e2850743341ae145c0339;p=emacs.git Avoid DECLARE_INTERVALS. --- 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 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 ---