Standardise ASM include path slash use #431
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
FASM on Windows supports both forward- and back-slashes as path separators. Forward slashes should be preferred.
include 'example/good'-vs-include 'example\bad'.In FASM strings, the backslash can act as an escape character in some contexts. Forward slashes avoid this entirely and are portable across platforms, and match our tupfiles. BONUS: Makes searching for file usage more consistent! (e.g.
git grep "example/good")Open to whether we should also prefer single or double quotes ?...