Mercurial > emacs
changeset 6837:e7d9adf0b7d7
(quoted-insert): Do nothing special for meta chars.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 12 Apr 1994 21:27:10 +0000 |
parents | 64e20f3960e8 |
children | ff8e7580e32d |
files | lisp/simple.el |
diffstat | 1 files changed, 0 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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)