From: Juanma Barranquero Date: Fri, 14 Feb 2003 09:57:03 +0000 (+0000) Subject: (backward-delete-char-untabify): Fix use of character constant. X-Git-Tag: ttn-vms-21-2-B4~11199 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=39c0722f09c3bcf6b776ce0c5d0cb185a259a43f;p=emacs.git (backward-delete-char-untabify): Fix use of character constant. --- diff --git a/lisp/simple.el b/lisp/simple.el index 90ebd908dfb..82859767b18 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -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))))))