1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-28 01:00:52 -07:00

(backward-delete-char-untabify): Fix use of character constant.

This commit is contained in:
Juanma Barranquero 2003-02-14 09:57:03 +00:00
parent 573743d2f2
commit 39c0722f09

View file

@ -2091,7 +2091,7 @@ and KILLP is t if a prefix arg was specified."
(let ((col (current-column)))
(forward-char -1)
(setq col (- col (current-column)))
(insert-char ?\ col)
(insert-char ?\ col)
(delete-char 1)))
(forward-char -1)
(setq count (1- count))))))