aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-05-12 23:22:22 +0000
committerRichard M. Stallman1997-05-12 23:22:22 +0000
commit3607b64db964677fa300e0d990750da1c0254075 (patch)
tree28473590deb2d25e72a78b7049e4545cfa58243a
parent9b73022fafc1bcf74b62ae7debb7988b8594c94f (diff)
downloademacs-3607b64db964677fa300e0d990750da1c0254075.tar.gz
emacs-3607b64db964677fa300e0d990750da1c0254075.zip
Define Latin-1, Latin-2 and Latin-3 chars as self-inserting.
-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)."
220;; that we will not need to keep permanently. 220;; that we will not need to keep permanently.
221(garbage-collect) 221(garbage-collect)
222 222
223;; Make Latin-1, Latin-2 and Latin-3 characters self-insert.
224(set-char-table-range (nth 1 global-map) [129] 'self-insert-command)
225(set-char-table-range (nth 1 global-map) [130] 'self-insert-command)
226(set-char-table-range (nth 1 global-map) [131] 'self-insert-command)
227
223(define-key ctl-x-map "n" (make-sparse-keymap)) 228(define-key ctl-x-map "n" (make-sparse-keymap))
224(define-key ctl-x-map "r" (make-sparse-keymap)) 229(define-key ctl-x-map "r" (make-sparse-keymap))
225 230