Mercurial > emacs
changeset 17784:5b2fa4a13a8b
Define Latin-1, Latin-2 and Latin-3 chars as self-inserting.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 12 May 1997 23:22:22 +0000 |
parents | 1a6cc382caff |
children | 5b92f8ba5c6d |
files | lisp/bindings.el |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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))