]> git.eshelyaron.com Git - emacs.git/commitdiff
(quoted-insert): Do nothing special for meta chars.
authorRichard M. Stallman <rms@gnu.org>
Tue, 12 Apr 1994 21:27:10 +0000 (21:27 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 12 Apr 1994 21:27:10 +0000 (21:27 +0000)
lisp/simple.el

index c0365c24c3b8a07b49917d6fb032031df1d85ed7..10459d73ef35e4f3229093ab9774146f65111741 100644 (file)
@@ -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)