diff options
| author | Richard M. Stallman | 1993-11-07 10:24:20 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-11-07 10:24:20 +0000 |
| commit | 9a726cd617a5714b69af1b21c0c8ac03f29d99ee (patch) | |
| tree | f4e5c269bc1b47c03526a420af719b6373bab4bf | |
| parent | a78db71c7291b1c4c571f3abbaf86219a9af0d2c (diff) | |
| download | emacs-9a726cd617a5714b69af1b21c0c8ac03f29d99ee.tar.gz emacs-9a726cd617a5714b69af1b21c0c8ac03f29d99ee.zip | |
entered into RCS
| -rw-r--r-- | lisp/international/iso-transl.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/international/iso-transl.el b/lisp/international/iso-transl.el index 9e0f4f21fb0..74fa024d4ad 100644 --- a/lisp/international/iso-transl.el +++ b/lisp/international/iso-transl.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; iso-insert.el --- insert functions for ISO 8859/1. | 1 | ;;; iso-transl.el --- keyboard input definitions for ISO 8859/1. |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1987 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1987, 1993 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Howard Gayle | 5 | ;; Author: Howard Gayle |
| 6 | ;; Maintainer: FSF | 6 | ;; Maintainer: FSF |
| @@ -137,7 +137,10 @@ | |||
| 137 | (define-key map "~~" [172]) | 137 | (define-key map "~~" [172]) |
| 138 | (or key-translation-map | 138 | (or key-translation-map |
| 139 | (setq key-translation-map (make-sparse-keymap))) | 139 | (setq key-translation-map (make-sparse-keymap))) |
| 140 | (define-key key-translation-map "\C-x8" map)) | 140 | (define-key key-translation-map "\C-x8" map) |
| 141 | (define-key isearch-mode-map "\C-x" nil) | ||
| 142 | (define-key isearch-mode-map [?\C-x t] 'isearch-other-control-char) | ||
| 143 | (define-key isearch-mode-map "\C-x8" nil)) | ||
| 141 | 144 | ||
| 142 | (provide 'iso-transl) | 145 | (provide 'iso-transl) |
| 143 | 146 | ||