Skip to content

Commit

Permalink
(backward-delete-char-untabify):
Browse files Browse the repository at this point in the history
Don't handle overwrite-mode here (done in delete-backward-char).
  • Loading branch information
Richard M. Stallman committed Feb 29, 1996
1 parent ba61775 commit 0f17d7c
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions lisp/simple.el
Expand Up @@ -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.
Expand Down

0 comments on commit 0f17d7c

Please sign in to comment.