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:
parent
573743d2f2
commit
39c0722f09
1 changed files with 1 additions and 1 deletions
|
|
@ -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))))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue