mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
* chars.c (scm_charnames): In ASCII character name table, make
newlines print as #\newline by default, not #\nl.
This commit is contained in:
parent
4b422a5a0f
commit
35fd439417
1 changed files with 2 additions and 2 deletions
|
@ -382,10 +382,10 @@ char scm_charnums[] =
|
|||
char *scm_charnames[] =
|
||||
{
|
||||
"nul","soh","stx","etx","eot","enq","ack","bel",
|
||||
"bs", "ht", "nl", "vt", "np", "cr", "so", "si",
|
||||
"bs", "ht", "newline", "vt", "np", "cr", "so", "si",
|
||||
"dle","dc1","dc2","dc3","dc4","nak","syn","etb",
|
||||
"can", "em","sub","esc", "fs", "gs", "rs", "us",
|
||||
"space", "newline", "tab", "backspace", "return", "page", "null", "del"};
|
||||
"space", "nl", "tab", "backspace", "return", "page", "null", "del"};
|
||||
char scm_charnums[] =
|
||||
"\000\001\002\003\004\005\006\007\
|
||||
\010\011\012\013\014\015\016\017\
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue