Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
962d78d3
Unverified
Commit
962d78d3
authored
3 years ago
by
Edward Thomson
Committed by
GitHub
3 years ago
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5978 from boretrk/amiga
amiga: use ';' as path list separator on AmigaOS
parents
e65229ee
2c2cb3f3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
include/git2/common.h
+3
-3
No files found.
include/git2/common.h
View file @
962d78d3
...
@@ -91,10 +91,10 @@ GIT_BEGIN_DECL
...
@@ -91,10 +91,10 @@ GIT_BEGIN_DECL
/**
/**
* The separator used in path list strings (ie like in the PATH
* The separator used in path list strings (ie like in the PATH
* environment variable). A semi-colon ";" is used on Windows
,
and
* environment variable). A semi-colon ";" is used on Windows and
* a colon ":" for all other systems.
*
AmigaOS, and
a colon ":" for all other systems.
*/
*/
#if
def GIT_WIN32
#if
defined(GIT_WIN32) || defined(AMIGA)
#define GIT_PATH_LIST_SEPARATOR ';'
#define GIT_PATH_LIST_SEPARATOR ';'
#else
#else
#define GIT_PATH_LIST_SEPARATOR ':'
#define GIT_PATH_LIST_SEPARATOR ':'
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment