From: Juri Linkov Date: Mon, 28 Nov 2005 19:59:59 +0000 (+0000) Subject: (quoted-insert): Let-bind input-method-function to nil. X-Git-Tag: emacs-pretest-22.0.90~5623 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1f57934ca570d71c6052edf0dfa3980ecb9e9b92;p=emacs.git (quoted-insert): Let-bind input-method-function to nil. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 88004d84047..6f6e4915519 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,12 @@ +2005-11-28 Juri Linkov + + * simple.el (quoted-insert): Let-bind input-method-function to nil. + + * replace.el (occur-mode-mouse-goto): Pop, don't switch. + (occur-mode-goto-occurrence): Let-bind same-window-buffer-names + and same-window-regexps. + (occur-next-error): Don't move point for arg 0. + 2005-11-28 Chong Yidong * 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 digits are interpreted as a character code. This is intended to be useful for editing binary files." (interactive "*p") - (let* ((char (let (translation-table-for-input) + (let* ((char (let (translation-table-for-input input-method-function) (if (or (not overwrite-mode) (eq overwrite-mode 'overwrite-mode-binary)) (read-quoted-char)