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

@ -747,13 +747,13 @@
- To avoid backslashing, you can use any of the following names:
ascii_esc = "\x1b"
ascii_etx = "\x04"
ascii_etx = "\x03"
ascii_fs = "\x1c"
ascii_gs = "\x1d"
ascii_null = "\x01"
ascii_null = "\x00"
ascii_rs = "\x1e"
ascii_soh = "\x02"
ascii_stx = "\x03"
ascii_soh = "\x01"
ascii_stx = "\x02"
ascii_us = "\x1f"
asv_fs = "\x1f"
asv_rs = "\x1e"
@ -3710,4 +3710,4 @@
MIME Type for Comma-Separated Values (CSV) Files, the Miller docsite
https://miller.readthedocs.io
2024-06-09 4mMILLER24m(1)
2024-08-16 4mMILLER24m(1)

View file

@ -2,12 +2,12 @@
.\" Title: mlr
.\" Author: [see the "AUTHOR" section]
.\" Generator: ./mkman.rb
.\" Date: 2024-06-09
.\" Date: 2024-08-16
.\" Manual: \ \&
.\" Source: \ \&
.\" Language: English
.\"
.TH "MILLER" "1" "2024-06-09" "\ \&" "\ \&"
.TH "MILLER" "1" "2024-08-16" "\ \&" "\ \&"
.\" -----------------------------------------------------------------
.\" * Portability definitions
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ -900,13 +900,13 @@ Notes about all other separators:
- To avoid backslashing, you can use any of the following names:
ascii_esc = "\ex1b"
ascii_etx = "\ex04"
ascii_etx = "\ex03"
ascii_fs = "\ex1c"
ascii_gs = "\ex1d"
ascii_null = "\ex01"
ascii_null = "\ex00"
ascii_rs = "\ex1e"
ascii_soh = "\ex02"
ascii_stx = "\ex03"
ascii_soh = "\ex01"
ascii_stx = "\ex02"
ascii_us = "\ex1f"
asv_fs = "\ex1f"
asv_rs = "\ex1e"