From 39c0722f09c3bcf6b776ce0c5d0cb185a259a43f Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Fri, 14 Feb 2003 09:57:03 +0000 Subject: [PATCH] (backward-delete-char-untabify): Fix use of character constant. --- lisp/simple.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/simple.el b/lisp/simple.el index 90ebd908df..82859767b1 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)))))) -- 2.39.2