diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-11-04 17:08:26 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-11-04 17:08:26 +0000 |
commit | 66842ba3d5fda6378b808394a8a9f1a2fca077be (patch) | |
tree | c5132b376edd02b7cedb6f56048d7cf8138b3422 | |
parent | b0780bc595cde0ba9e98e56d929811b0dfb7cc76 (diff) | |
download | guile-66842ba3d5fda6378b808394a8a9f1a2fca077be.tar.gz |
(scm_charnames, scm_charnums): Added "sp" as an alias for "space".
Thanks to Bruce Korb!
-rw-r--r-- | libguile/chars.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/chars.c b/libguile/chars.c index f234ddc55..ddc3d7fed 100644 --- a/libguile/chars.c +++ b/libguile/chars.c @@ -338,13 +338,13 @@ char *const scm_charnames[] = "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", "nl", "tab", "backspace", "return", "page", "null", "del"}; + "space", "sp", "nl", "tab", "backspace", "return", "page", "null", "del"}; const char scm_charnums[] = "\000\001\002\003\004\005\006\007\ \010\011\012\013\014\015\016\017\ \020\021\022\023\024\025\026\027\ \030\031\032\033\034\035\036\037\ - \n\t\b\r\f\0\177"; + \n\t\b\r\f\0\177"; #endif /* def ASCII */ int scm_n_charnames = sizeof (scm_charnames) / sizeof (char *); |