From: Richard M. Stallman Date: Tue, 12 Apr 1994 21:27:10 +0000 (+0000) Subject: (quoted-insert): Do nothing special for meta chars. X-Git-Tag: emacs-19.34~9016 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=eb814ee189807c78c9802d59aecee96ce8125385;p=emacs.git (quoted-insert): Do nothing special for meta chars. --- diff --git a/lisp/simple.el b/lisp/simple.el index c0365c24c3b..10459d73ef3 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -82,9 +82,6 @@ this function useful in editing binary files." (read-char)))) (if (eq overwrite-mode 'overwrite-mode-binary) (delete-char arg)) - ;; Turn a meta-character into a character with the 0200 bit set. - (if (/= (logand last-input-char (lsh 1 23)) 0) - (setq char (logior char 128))) (insert-char char arg))) (defun delete-indentation (&optional arg)