aboutsummaryrefslogtreecommitdiffstats
path: root/src/help.h
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2008-12-03 19:31:03 +0000
committerFrederic Culot <calcurse@culot.org>2008-12-03 19:31:03 +0000
commitcf5617e3378fc4c6089195c83fac0f8a7acb84fe (patch)
tree61ea187c3d25949637d26bac08532881429c3421 /src/help.h
parent86d1a3b2dbbf5aa8a8b0f9e70bc1766df3c1ccc8 (diff)
downloadcalcurse-cf5617e3378fc4c6089195c83fac0f8a7acb84fe.tar.gz
calcurse-cf5617e3378fc4c6089195c83fac0f8a7acb84fe.zip
more work on updating online help pages
Diffstat (limited to 'src/help.h')
-rwxr-xr-xsrc/help.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/help.h b/src/help.h
index c8c4612..99710cd 100755
--- a/src/help.h
+++ b/src/help.h
@@ -1,4 +1,4 @@
-/* $calcurse: help.h,v 1.7 2008/11/28 08:46:29 culot Exp $ */
+/* $calcurse: help.h,v 1.8 2008/12/03 19:31:03 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -29,12 +29,12 @@
#include "wins.h"
-typedef struct
-{
+#define HELPTEXTSIZ 4096
+
+typedef struct {
char *title;
- char text[BUFSIZ];
-}
-help_page_t;
+ char text[HELPTEXTSIZ];
+} help_page_t;
void help_screen (void);