summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2003-02-14 09:57:03 +0000
committerJuanma Barranquero <lekktu@gmail.com>2003-02-14 09:57:03 +0000
commit39c0722f09c3bcf6b776ce0c5d0cb185a259a43f (patch)
treea6eea6fcbce5a697144dcb2e67000e69012392b7 /lisp
parent573743d2f28af8383383ec5ac680b01eedd560e5 (diff)
downloademacs-39c0722f09c3bcf6b776ce0c5d0cb185a259a43f.tar.gz
(backward-delete-char-untabify): Fix use of character constant.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/simple.el2
1 files changed, 1 insertions, 1 deletions
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))))))