RS aliases for ASCII top-of-table control characters are misnamed (#1620)

* Fix misnames of ASCII control-character aliases

* artifacts from `make dev`
This commit is contained in:
John Kerl 2024-08-16 10:25:25 -04:00 committed by GitHub
parent 7a2fa0bf07
commit 6bee4ebbf2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 79 additions and 79 deletions

View file

@ -55,7 +55,7 @@ package cli
//
// * Overrriding these: if the last verb the user has explicitly provided is
// flatten, don't undo that by putting an unflatten right after.
//
//
// ================================================================
func DecideFinalFlatten(writerOptions *TWriterOptions) bool {
@ -70,7 +70,7 @@ func DecideFinalFlatten(writerOptions *TWriterOptions) bool {
func DecideFinalUnflatten(
options *TOptions,
verbSequences [][]string,
verbSequences [][]string,
) bool {
numVerbs := len(verbSequences)

View file

@ -21,13 +21,13 @@ const TABS_REGEX = "(\\t)+"
const WHITESPACE_REGEX = "([ \\t])+"
const ASCII_ESC = "\\x1b"
const ASCII_ETX = "\\x04"
const ASCII_ETX = "\\x03"
const ASCII_FS = "\\x1c"
const ASCII_GS = "\\x1d"
const ASCII_NULL = "\\x01"
const ASCII_NULL = "\\x00"
const ASCII_RS = "\\x1e"
const ASCII_SOH = "\\x02"
const ASCII_STX = "\\x03"
const ASCII_SOH = "\\x01"
const ASCII_STX = "\\x02"
const ASCII_US = "\\x1f"
const ASV_FS = "\\x1f"