mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-26 21:12:07 +00:00
Make quote marks consistent in error/warning messages (#1791)
- "Double quotes" for strings (filenames, section names, CLI option arguments, etc) - 'Single quotes' for characters and CLI option flags - `Backticks` for keywords and identifiers (symbol names, charmap names, etc) CLI option flags also have their leading dashes
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
error: 'constant' already defined
|
||||
error: `constant` already defined
|
||||
at def.asm(23)
|
||||
and also:
|
||||
at def.asm(10)
|
||||
error: 'mac' already defined as non-EQU
|
||||
error: `mac` already defined as non-`EQU`
|
||||
at def.asm(35)
|
||||
and also:
|
||||
at def.asm(32)
|
||||
error: 'name' already defined (should it be {interpolated} to define its contents "constant2"?)
|
||||
error: `name` already defined (should it be {interpolated} to define its contents "constant2"?)
|
||||
at def.asm(38)
|
||||
and also:
|
||||
at def.asm(37)
|
||||
error: 'name' already defined (should it be {interpolated} to define its contents "mac2"?)
|
||||
error: `name` already defined (should it be {interpolated} to define its contents "mac2"?)
|
||||
at def.asm(42)
|
||||
and also:
|
||||
at def.asm(40)
|
||||
|
||||
Reference in New Issue
Block a user