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:
Rangi
2025-08-12 15:24:21 -04:00
committed by GitHub
parent 7df9c12a6c
commit 7b405513d9
185 changed files with 889 additions and 877 deletions

View File

@@ -1,33 +1,33 @@
error: Undefined symbol '_NARG'
error: Undefined symbol `_NARG`
at builtin-reserved.asm(3)
error: '_NARG' is reserved for a built-in symbol
error: `_NARG` is reserved for a built-in symbol
at builtin-reserved.asm(5)
error: '_NARG' is reserved for a built-in symbol
error: `_NARG` is reserved for a built-in symbol
at builtin-reserved.asm(6)
error: '_NARG' is reserved for a built-in constant symbol
error: `_NARG` is reserved for a built-in constant symbol
at builtin-reserved.asm(8)
error: '_NARG' is reserved for a built-in constant symbol
error: `_NARG` is reserved for a built-in constant symbol
at builtin-reserved.asm(9)
error: '_NARG' is reserved for a built-in symbol
error: `_NARG` is reserved for a built-in symbol
at builtin-reserved.asm(11)
error: '_NARG' is reserved for a built-in non-EQUS symbol
error: `_NARG` is reserved for a built-in non-`EQUS` symbol
at builtin-reserved.asm(12)
error: '_NARG' is reserved for a built-in symbol
error: `_NARG` is reserved for a built-in symbol
at builtin-reserved.asm(15)
error: Undefined symbol '.'
error: Undefined symbol `.`
at builtin-reserved.asm(20)
error: '.' is reserved for a built-in symbol
error: `.` is reserved for a built-in symbol
at builtin-reserved.asm(22)
error: '.' is reserved for a built-in non-EQU symbol
error: `.` is reserved for a built-in non-`EQU` symbol
at builtin-reserved.asm(23)
error: '.' is reserved for a built-in constant symbol
error: `.` is reserved for a built-in constant symbol
at builtin-reserved.asm(25)
error: '.' is reserved for a built-in constant symbol
error: `.` is reserved for a built-in constant symbol
at builtin-reserved.asm(26)
error: '.' is reserved for a built-in symbol
error: `.` is reserved for a built-in symbol
at builtin-reserved.asm(28)
error: '.' is reserved for a built-in symbol
error: `.` is reserved for a built-in symbol
at builtin-reserved.asm(29)
error: "." has no value outside of a label scope
error: `.` has no value outside of a label scope
at builtin-reserved.asm(32)
Assembly aborted with 16 errors!