changeset 14721:2630ac774647

(backward-delete-char-untabify): Don't handle overwrite-mode here (done in delete-backward-char).
author Richard M. Stallman <rms@gnu.org>
date Thu, 29 Feb 1996 22:00:50 +0000
parents 52a6ccf7c0a8
children 4f6baee20482
files lisp/simple.el
diffstat 1 files changed, 1 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/simple.el	Thu Feb 29 19:22:05 1996 +0000
+++ b/lisp/simple.el	Thu Feb 29 22:00:50 1996 +0000
@@ -286,11 +286,7 @@
 	      (delete-char 1)))
 	(forward-char -1)
 	(setq count (1- count)))))
-  (delete-backward-char arg killp)
-  ;; In overwrite mode, back over columns while clearing them out,
-  ;; unless at end of line.
-  (and overwrite-mode (not (eolp))
-       (save-excursion (insert-char ?\  arg))))
+  (delete-backward-char arg killp))
 
 (defun zap-to-char (arg char)
   "Kill up to and including ARG'th occurrence of CHAR.