diff options
| author | Richard M. Stallman | 1997-05-12 23:22:22 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-05-12 23:22:22 +0000 |
| commit | 3607b64db964677fa300e0d990750da1c0254075 (patch) | |
| tree | 28473590deb2d25e72a78b7049e4545cfa58243a | |
| parent | 9b73022fafc1bcf74b62ae7debb7988b8594c94f (diff) | |
| download | emacs-3607b64db964677fa300e0d990750da1c0254075.tar.gz emacs-3607b64db964677fa300e0d990750da1c0254075.zip | |
Define Latin-1, Latin-2 and Latin-3 chars as self-inserting.
| -rw-r--r-- | lisp/bindings.el | 5 |
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 | ||