From: Richard M. Stallman Date: Mon, 12 May 1997 23:22:22 +0000 (+0000) Subject: Define Latin-1, Latin-2 and Latin-3 chars as self-inserting. X-Git-Tag: emacs-20.1~2161 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3607b64db964677fa300e0d990750da1c0254075;p=emacs.git Define Latin-1, Latin-2 and Latin-3 chars as self-inserting. --- 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))