From: Arthur Gleckler Date: Tue, 6 Aug 1991 18:12:28 +0000 (+0000) Subject: Add support for special keys, including function keys and arrow keys, X-Git-Tag: 20090517-FFI~10404 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=ed944beeb33f6a7ccdafa0019ddf346ffdbbc396;p=mit-scheme.git Add support for special keys, including function keys and arrow keys, with bucky bits. A key is either a CHAR or a SPECIAL-KEY. SPECIAL-KEYs can be compared using EQ?. Support all the keys named in /usr/include/X11/keysym.h, using the names X gives them (with few exceptions). Rename most procedures for dealing with keys from "-char" to "-key" to prevent confusion. Requires microcode 11.91 or later because of changes to the X keyboard event structure. --- diff --git a/v7/src/edwin/make.scm b/v7/src/edwin/make.scm index 3c30d9c75..71342f204 100644 --- a/v7/src/edwin/make.scm +++ b/v7/src/edwin/make.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/make.scm,v 3.53 1991/08/01 17:51:23 bal Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/make.scm,v 3.54 1991/08/06 18:12:28 arthur Exp $ Copyright (c) 1989-91 Massachusetts Institute of Technology @@ -37,4 +37,4 @@ MIT in each case. |# (declare (usual-integrations)) (package/system-loader "edwin" '() 'QUERY) -(add-system! (make-system "Edwin" 3 53 '())) +(add-system! (make-system "Edwin" 3 54 '()))