aboutsummaryrefslogtreecommitdiffstats
path: root/src/calcurse.h
diff options
context:
space:
mode:
authorLars Henriksen <LarsHenriksen@get2net.dk>2018-08-23 20:45:38 +0200
committerLukas Fleischer <lfleischer@calcurse.org>2018-10-21 20:01:34 +0200
commit5ad0019b2326e4012299e36682669ca767f39cd4 (patch)
tree08ebd6a2b9a4a7ee2826d89bb973dea8c11181a2 /src/calcurse.h
parentab0fe682255f01e75b70a6ee3e95795020be8dd7 (diff)
downloadcalcurse-5ad0019b2326e4012299e36682669ca767f39cd4.tar.gz
calcurse-5ad0019b2326e4012299e36682669ca767f39cd4.zip
Only reload if data files were changed (replacement)
This is a replacement for commits 57dd3d6 and 912124b. The idea is to move the check for modified files and the list initialization into io_load_data(), and let io_load_data() decide what to load. A new argument is used to force a load. The return code from new_data() (the renamed version of io_check_data_files_modified()) tells which files have changed. Signed-off-by: Lars Henriksen <LarsHenriksen@get2net.dk> Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
Diffstat (limited to 'src/calcurse.h')
-rw-r--r--src/calcurse.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/calcurse.h b/src/calcurse.h
index 9bb714c..ddeec21 100644
--- a/src/calcurse.h
+++ b/src/calcurse.h
@@ -172,6 +172,8 @@
/* Mnemonics */
#define NOHILT 0 /* 'No highlight' argument */
+#define NOFORCE 0
+#define FORCE 1
#define ERROR_MSG(...) do { \
char msg[BUFSIZ]; \
@@ -858,7 +860,7 @@ unsigned io_save_keys(void);
int io_save_cal(enum save_display);
void io_load_app(struct item_filter *);
void io_load_todo(struct item_filter *);
-void io_load_data(struct item_filter *);
+void io_load_data(struct item_filter *, int);
int io_reload_data(void);
void io_load_keys(const char *);
int io_check_dir(const char *);