diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2011-07-17 23:39:46 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2011-07-17 23:39:46 +0200 |
commit | 1b3b8ac2c6b8e652a56b6da71b6287e5d888a26d (patch) | |
tree | 4a3be0038c07e33c1ceedb63108f5d3edced12da | |
parent | 976d10e591b9bb1894655f1498d98cf114960853 (diff) | |
download | videoteco-fork-1b3b8ac2c6b8e652a56b6da71b6287e5d888a26d.tar.gz |
disable .OLD backup file creation by default
* should be configurable using ./configure (disabled by default)
-rw-r--r-- | teco.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -35,7 +35,9 @@ #define SUCCESS 1 #define NULL 0 -#define CREATE_OLD_FILES +#if 0 +#define CREATE_OLD_FILES /**< Create \c .OLD backup files */ +#endif #define BLOCKED 2 #define INVALIDATE 3 |