# HG changeset patch # User Richard M. Stallman # Date 863479342 0 # Node ID 5b2fa4a13a8bd2f5e144e954517e629285118c32 # Parent 1a6cc382cafff936504cf3c2f1fdefbe42128f5d Define Latin-1, Latin-2 and Latin-3 chars as self-inserting. diff -r 1a6cc382caff -r 5b2fa4a13a8b lisp/bindings.el --- a/lisp/bindings.el Mon May 12 23:20:55 1997 +0000 +++ b/lisp/bindings.el Mon May 12 23:22:22 1997 +0000 @@ -220,6 +220,11 @@ ;; 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))