From e05d97019076708e654fe02f8662092ea91a1c57 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Thu, 31 Jul 2003 02:49:33 +0000 Subject: [PATCH] Revert to use of lisp-style character names, and consistently use lower case forms. --- v7/src/runtime/char.scm | 79 ++++++++++++++++++++--------------------- 1 file changed, 39 insertions(+), 40 deletions(-) diff --git a/v7/src/runtime/char.scm b/v7/src/runtime/char.scm index fe22baf2f..acf9c1fad 100644 --- a/v7/src/runtime/char.scm +++ b/v7/src/runtime/char.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: char.scm,v 14.21 2003/07/31 02:38:45 cph Exp $ +$Id: char.scm,v 14.22 2003/07/31 02:49:33 cph Exp $ Copyright 1986,1987,1988,1991,1995,1997 Massachusetts Institute of Technology Copyright 1998,2001,2003 Massachusetts Institute of Technology @@ -316,44 +316,43 @@ USA. (cadr entry)))) (define named-codes - '((#x00 "NUL" "null") ; ^@ - (#x01 #f "soh") ; ^A - (#x02 #f "stx") ; ^B - (#x03 #f "etx") ; ^C - (#x04 #f "eot") ; ^D - (#x05 #f "enq") ; ^E - (#x06 #f "ack") ; ^F - (#x07 #f "bel") ; ^G - (#x08 "BS" "backspace") ; ^H - (#x09 "TAB" "ht") ; ^I - (#x0A "newline" "linefeed" "lfd" "lf") ; ^J - (#x0B #f "vt") ; ^K - (#x0C "page" "ff" "np") ; ^L - (#x0D "RET" "return" "cr") ; ^M - (#x0E #f "so") ; ^N - (#x0F #f "si") ; ^O - (#x10 #f "dle") ; ^P - (#x11 #f "dc1") ; ^Q - (#x12 #f "dc2") ; ^R - (#x13 #f "dc3") ; ^S - (#x14 #f "dc4") ; ^T - (#x15 #f "nak") ; ^U - (#x16 #f "syn") ; ^V - (#x17 #f "etb") ; ^W - (#x18 #f "can") ; ^X - (#x19 #f "em") ; ^Y - (#x1A #f "sub" "call") ; ^Z - (#x1B "ESC" "escape" "altmode") ; ^[ - (#x1C #f "fs") ; ^\ - (#x1D #f "gs") ; ^] - (#x1E #f "rs") ; ^^ - (#x1F #f "us" "backnext") ; ^_ - (#x20 "SPC" "sp" "space") ; - (#x7F "DEL" "rubout") ; ^? - )) + '((#x00 #f "null" "nul") + (#x01 #f "soh") + (#x02 #f "stx") + (#x03 #f "etx") + (#x04 #f "eot") + (#x05 #f "enq") + (#x06 #f "ack") + (#x07 #f "bel") + (#x08 "backspace" "bs") + (#x09 "tab" "ht") + (#x0A "newline" "linefeed" "lfd" "lf") + (#x0B #f "vt") + (#x0C "page" "ff" "np") + (#x0D "return" "ret" "cr") + (#x0E #f "so") + (#x0F #f "si") + (#x10 #f "dle") + (#x11 #f "dc1") + (#x12 #f "dc2") + (#x13 #f "dc3") + (#x14 #f "dc4") + (#x15 #f "nak") + (#x16 #f "syn") + (#x17 #f "etb") + (#x18 #f "can") + (#x19 #f "em") + (#x1A #f "sub" "call") + (#x1B "escape" "esc" "altmode") + (#x1C #f "fs") + (#x1D #f "gs") + (#x1E #f "rs") + (#x1F #f "us" "backnext") + (#x20 "space" "spc" "sp") + (#x7F "delete" "del" "rubout"))) (define named-bits - '((#x01 "M" "meta") - (#x02 "C" "ctrl" "control") - (#x04 "S" "super") - (#x08 "H" "hyper"))) \ No newline at end of file + '((#x01 "m" "meta") + (#x02 "c" "control" "ctrl") + (#x04 "s" "super") + (#x08 "h" "hyper"))) \ No newline at end of file -- 2.25.1