aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-04-06 03:47:00 +0000
committerRichard M. Stallman1994-04-06 03:47:00 +0000
commitc1279c7d3e931e45ba7acc1fb13b65bc817434c3 (patch)
tree78e222da2cf60a4561acbe5815103972390adcd9
parentc9b7c53a8263f5433b08ca6b824daaf064397704 (diff)
downloademacs-c1279c7d3e931e45ba7acc1fb13b65bc817434c3.tar.gz
emacs-c1279c7d3e931e45ba7acc1fb13b65bc817434c3.zip
(quoted-insert): Handle meta-chars usefully.
-rw-r--r--lisp/simple.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index e96ad8643a9..f1e4de6891a 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -82,6 +82,9 @@ this function useful in editing binary files."
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)))
85 (insert-char char arg))) 88 (insert-char char arg)))
86 89
87(defun delete-indentation (&optional arg) 90(defun delete-indentation (&optional arg)