]> code.delx.au - gnu-emacs/commitdiff
(backward-delete-char-untabify): Fix use of character constant.
authorJuanma Barranquero <lekktu@gmail.com>
Fri, 14 Feb 2003 09:57:03 +0000 (09:57 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Fri, 14 Feb 2003 09:57:03 +0000 (09:57 +0000)
lisp/simple.el

index 90ebd908dfb592a42791bfc62bb17fda1b1e7185..82859767b18a7cdbe21a08d61e093038f5f4e123 100644 (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))))))