We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e65229e + 2c2cb3f commit 962d78dCopy full SHA for 962d78d
include/git2/common.h
@@ -91,10 +91,10 @@ GIT_BEGIN_DECL
91
92
/**
93
* The separator used in path list strings (ie like in the PATH
94
- * environment variable). A semi-colon ";" is used on Windows, and
95
- * a colon ":" for all other systems.
+ * environment variable). A semi-colon ";" is used on Windows and
+ * AmigaOS, and a colon ":" for all other systems.
96
*/
97
-#ifdef GIT_WIN32
+#if defined(GIT_WIN32) || defined(AMIGA)
98
#define GIT_PATH_LIST_SEPARATOR ';'
99
#else
100
#define GIT_PATH_LIST_SEPARATOR ':'
0 commit comments