projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c338d97
)
Use char-set:printing, not graphic, so we can type SPC in Edwin again.
author
Taylor R Campbell
<campbell@mumble.net>
Mon, 9 Dec 2019 02:27:19 +0000
(
02:27
+0000)
committer
Taylor R Campbell
<campbell@mumble.net>
Mon, 9 Dec 2019 02:30:07 +0000
(
02:30
+0000)
src/edwin/modefs.scm
patch
|
blob
|
history
diff --git
a/src/edwin/modefs.scm
b/src/edwin/modefs.scm
index 447a7ecd98fa050afe293c515fbbfba06ed52a59..6b9760a091fc8e9c18106abc757bf81a77f093ee 100644
(file)
--- a/
src/edwin/modefs.scm
+++ b/
src/edwin/modefs.scm
@@
-48,7
+48,7
@@
Most other major modes are defined by comparison to this one.")
;; The extra range allows international keyboards to insert 8-bit characters
(define char-set:self-insert-keys
- (char-set-union char-set:
graphic
(ascii-range->char-set 128 255)))
+ (char-set-union char-set:
printing
(ascii-range->char-set 128 255)))
(define-key 'fundamental char-set:self-insert-keys 'self-insert-command)
(define-key 'fundamental char-set:numeric 'auto-digit-argument)