From eb814ee189807c78c9802d59aecee96ce8125385 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 12 Apr 1994 21:27:10 +0000 Subject: [PATCH] (quoted-insert): Do nothing special for meta chars. --- lisp/simple.el | 3 --- 1 file changed, 3 deletions(-) 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) -- 2.39.5