comparison lisp/simple.el @ 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 77349221ca81
children 35e524a24c7f
comparison
equal deleted inserted replaced
6836:64e20f3960e8 6837:e7d9adf0b7d7
80 (eq overwrite-mode 'overwrite-mode-binary)) 80 (eq overwrite-mode 'overwrite-mode-binary))
81 (read-quoted-char) 81 (read-quoted-char)
82 (read-char)))) 82 (read-char))))
83 (if (eq overwrite-mode 'overwrite-mode-binary) 83 (if (eq overwrite-mode 'overwrite-mode-binary)
84 (delete-char arg)) 84 (delete-char arg))
85 ;; Turn a meta-character into a character with the 0200 bit set.
86 (if (/= (logand last-input-char (lsh 1 23)) 0)
87 (setq char (logior char 128)))
88 (insert-char char arg))) 85 (insert-char char arg)))
89 86
90 (defun delete-indentation (&optional arg) 87 (defun delete-indentation (&optional arg)
91 "Join this line to previous and fix up whitespace at join. 88 "Join this line to previous and fix up whitespace at join.
92 If there is a fill prefix, delete it from the beginning of this line. 89 If there is a fill prefix, delete it from the beginning of this line.