summaryrefslogtreecommitdiff
path: root/lisp/bindings.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-05-12 23:22:22 +0000
committerRichard M. Stallman <rms@gnu.org>1997-05-12 23:22:22 +0000
commit82055c7421e973ca0b57c1dc588fa6eecb96049c (patch)
tree7326594a323cdc28267f3039487455da99959ac0 /lisp/bindings.el
parent60a970415362812a34cce86fac9f7209c2829af6 (diff)
downloademacs-82055c7421e973ca0b57c1dc588fa6eecb96049c.tar.gz
Define Latin-1, Latin-2 and Latin-3 chars as self-inserting.
Diffstat (limited to 'lisp/bindings.el')
-rw-r--r--lisp/bindings.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el
index dc651212399..b906bcdcae9 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -220,6 +220,11 @@ for \\[find-tag] (which see)."
;; that we will not need to keep permanently.
(garbage-collect)
+;; Make Latin-1, Latin-2 and Latin-3 characters self-insert.
+(set-char-table-range (nth 1 global-map) [129] 'self-insert-command)
+(set-char-table-range (nth 1 global-map) [130] 'self-insert-command)
+(set-char-table-range (nth 1 global-map) [131] 'self-insert-command)
+
(define-key ctl-x-map "n" (make-sparse-keymap))
(define-key ctl-x-map "r" (make-sparse-keymap))