blob: 4731c68f91744c68c977b8fad187158782a32c5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
$NetBSD: patch-ah,v 1.7 2016/08/21 11:39:31 wiz Exp $
mutt_curses.h refers to event_t from mutt,h, and SHORT_STRING from lib.h,
so include those headers here.
--- mutt_curses.h.orig 2016-08-11 01:47:00.000000000 +0000
+++ mutt_curses.h
@@ -52,6 +52,9 @@
# include <curses.h>
#endif
+#include "lib.h" /* for SHORT_STRING */
+#include "mutt.h" /* for event_t */
+
#define MUTT_ENTER_C '\n'
#define MUTT_ENTER_S "\n"
|