diff options
author | Frederic Culot <calcurse@culot.org> | 2008-12-03 19:31:03 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2008-12-03 19:31:03 +0000 |
commit | cf5617e3378fc4c6089195c83fac0f8a7acb84fe (patch) | |
tree | 61ea187c3d25949637d26bac08532881429c3421 /src/help.h | |
parent | 86d1a3b2dbbf5aa8a8b0f9e70bc1766df3c1ccc8 (diff) | |
download | calcurse-cf5617e3378fc4c6089195c83fac0f8a7acb84fe.zip |
more work on updating online help pages
Diffstat (limited to 'src/help.h')
-rwxr-xr-x | src/help.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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); |