mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
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:
parent
7a2fa0bf07
commit
6bee4ebbf2
11 changed files with 79 additions and 79 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue