From 172efd71798a00469658b0f0e6fc730bac6fa5fe Mon Sep 17 00:00:00 2001 From: Lars Henriksen Date: Tue, 5 Sep 2017 01:15:25 +0200 Subject: Remove phase of moon feature The computation never really worked before and it seems like the feature is not very helpful, sometimes even confusing (see GitHub issue #21). The macro ISLEAP is moved to calcurse.h. Signed-off-by: Lars Henriksen Signed-off-by: Lukas Fleischer --- src/utils.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/utils.c') diff --git a/src/utils.c b/src/utils.c index e0e35bc..11d4582 100644 --- a/src/utils.c +++ b/src/utils.c @@ -51,8 +51,6 @@ #include "calcurse.h" #include "sha1.h" -#define ISLEAP(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0) - #define FS_EXT_MAXLEN 64 enum format_specifier { -- cgit v1.2.3-54-g00ecf