diff options
| author | Juri Linkov | 2005-11-28 19:59:59 +0000 |
|---|---|---|
| committer | Juri Linkov | 2005-11-28 19:59:59 +0000 |
| commit | 1f57934ca570d71c6052edf0dfa3980ecb9e9b92 (patch) | |
| tree | 37e2b5d5039972e159a639ffa4b551d36528fe95 | |
| parent | 6c6605b2cf27340ed455d20de6b289beea1a62d7 (diff) | |
| download | emacs-1f57934ca570d71c6052edf0dfa3980ecb9e9b92.tar.gz emacs-1f57934ca570d71c6052edf0dfa3980ecb9e9b92.zip | |
(quoted-insert): Let-bind input-method-function to nil.
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/simple.el | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 88004d84047..6f6e4915519 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2005-11-28 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * simple.el (quoted-insert): Let-bind input-method-function to nil. | ||
| 4 | |||
| 5 | * replace.el (occur-mode-mouse-goto): Pop, don't switch. | ||
| 6 | (occur-mode-goto-occurrence): Let-bind same-window-buffer-names | ||
| 7 | and same-window-regexps. | ||
| 8 | (occur-next-error): Don't move point for arg 0. | ||
| 9 | |||
| 1 | 2005-11-28 Chong Yidong <cyd@stupidchicken.com> | 10 | 2005-11-28 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 11 | ||
| 3 | * replace.el (occur-mode-goto-occurrence): Pop, don't switch. | 12 | * replace.el (occur-mode-goto-occurrence): Pop, don't switch. |
diff --git a/lisp/simple.el b/lisp/simple.el index f6a6fd6ad9a..a37ffcdd3ca 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -609,7 +609,7 @@ In binary overwrite mode, this function does overwrite, and octal | |||
| 609 | digits are interpreted as a character code. This is intended to be | 609 | digits are interpreted as a character code. This is intended to be |
| 610 | useful for editing binary files." | 610 | useful for editing binary files." |
| 611 | (interactive "*p") | 611 | (interactive "*p") |
| 612 | (let* ((char (let (translation-table-for-input) | 612 | (let* ((char (let (translation-table-for-input input-method-function) |
| 613 | (if (or (not overwrite-mode) | 613 | (if (or (not overwrite-mode) |
| 614 | (eq overwrite-mode 'overwrite-mode-binary)) | 614 | (eq overwrite-mode 'overwrite-mode-binary)) |
| 615 | (read-quoted-char) | 615 | (read-quoted-char) |