aboutsummaryrefslogtreecommitdiff
path: root/teco.h
diff options
context:
space:
mode:
Diffstat (limited to 'teco.h')
-rw-r--r--teco.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/teco.h b/teco.h
index 3399262..8cd22b6 100644
--- a/teco.h
+++ b/teco.h
@@ -326,6 +326,14 @@
#define MAX_TAB_WIDTH 16
#define MAXOF( a,b) (a) > (b) ? (a) : (b)
+#ifdef MSDOS
+#define TECO_DIRSEP '\\'
+#define TECO_DIRSEP_S "\\"
+#else
+#define TECO_DIRSEP '/'
+#define TECO_DIRSEP_S "/"
+#endif
+
#define INITIAL_LINE_BUFFER_SIZE 32
#define INCREMENTAL_LINE_BUFFER_SIZE 32
#define MINIMUM_ALLOCATION_BLOCK 32