# HG changeset patch # User Richard M. Stallman # Date 766186030 0 # Node ID e7d9adf0b7d749b268c6bec44067b8b3e5b7d347 # Parent 64e20f3960e81acd4c17c0eb579485bb927e7293 (quoted-insert): Do nothing special for meta chars. diff -r 64e20f3960e8 -r e7d9adf0b7d7 lisp/simple.el --- a/lisp/simple.el Tue Apr 12 20:13:58 1994 +0000 +++ b/lisp/simple.el Tue Apr 12 21:27:10 1994 +0000 @@ -82,9 +82,6 @@ (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)