From 3607b64db964677fa300e0d990750da1c0254075 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 12 May 1997 23:22:22 +0000 Subject: [PATCH] Define Latin-1, Latin-2 and Latin-3 chars as self-inserting. --- lisp/bindings.el | 5 +++++ 1 file changed, 5 insertions(+) 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)) -- 2.39.2