From 2fe7a36aab8c6c934550b2b8dc2074c1af23859a Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Tue, 2 Aug 2011 21:42:10 +0200 Subject: Accept variable length note names Read up to the first blank in note_read() instead of assuming a fixed-width note file name. Accept everything up to 40 characters (which is the length of a SHA1 hash in hexadecimal representation). Signed-off-by: Lukas Fleischer --- src/calcurse.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/calcurse.h') diff --git a/src/calcurse.h b/src/calcurse.h index 8aa5c4a..4f0dc20 100644 --- a/src/calcurse.h +++ b/src/calcurse.h @@ -109,7 +109,8 @@ #define ATTR_HIGHEST 6 #define STATUSHEIGHT 2 -#define NOTESIZ 6 +#define MAX_NOTESIZ 40 +#define TMPEXTSIZ 6 /* Format for appointment hours is: HH:MM */ #define HRMIN_SIZE 6 -- cgit v1.2.3-54-g00ecf