aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKen Raeburn2000-12-05 20:36:44 +0000
committerKen Raeburn2000-12-05 20:36:44 +0000
commit0c21eeeb5e054eb1d278300848e584c1092e38df (patch)
treec1e2784938c53889658d8e16d1aaa7dde211510e /src
parentf201d7329fae4b5c18ac58afe095c7ee27f1eaca (diff)
downloademacs-0c21eeeb5e054eb1d278300848e584c1092e38df.tar.gz
emacs-0c21eeeb5e054eb1d278300848e584c1092e38df.zip
* minibuf.c: Include intervals.h.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/minibuf.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 52f133910e4..48d3a88a977 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12000-12-05 Ken Raeburn <raeburn@gnu.org>
2
3 * minibuf.c: Include intervals.h.
4
12000-12-05 Jason Rumney <jasonr@gnu.org> 52000-12-05 Jason Rumney <jasonr@gnu.org>
2 6
3 * w32term.c (x_produce_glyphs): If a font for a component of 7 * w32term.c (x_produce_glyphs): If a font for a component of
diff --git a/src/minibuf.c b/src/minibuf.c
index 3062f23e8ef..9809a3232c4 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -31,6 +31,7 @@ Boston, MA 02111-1307, USA. */
31#include "frame.h" 31#include "frame.h"
32#include "window.h" 32#include "window.h"
33#include "syntax.h" 33#include "syntax.h"
34#include "intervals.h"
34 35
35#define min(a, b) ((a) < (b) ? (a) : (b)) 36#define min(a, b) ((a) < (b) ? (a) : (b))
36 37