From: Richard M. Stallman Date: Thu, 29 Feb 1996 22:00:50 +0000 (+0000) Subject: (backward-delete-char-untabify): X-Git-Tag: emacs-19.34~1139 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4718d52e19c5a07c1fe07a59b9963ac8f61cabde;p=emacs.git (backward-delete-char-untabify): Don't handle overwrite-mode here (done in delete-backward-char). --- diff --git a/lisp/simple.el b/lisp/simple.el index f42c8d860f7..b24e6d87e2d 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -286,11 +286,7 @@ and KILLP is t if a prefix arg was specified." (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.