1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-28 07:45:00 +00:00

(backward-delete-char-untabify):

Don't handle overwrite-mode here (done in delete-backward-char).
This commit is contained in:
Richard M. Stallman 1996-02-29 22:00:50 +00:00
parent 213543f0f9
commit 4718d52e19

View File

@ -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.