aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJuanma Barranquero2003-02-14 09:57:03 +0000
committerJuanma Barranquero2003-02-14 09:57:03 +0000
commit39c0722f09c3bcf6b776ce0c5d0cb185a259a43f (patch)
treea6eea6fcbce5a697144dcb2e67000e69012392b7 /lisp
parent573743d2f28af8383383ec5ac680b01eedd560e5 (diff)
downloademacs-39c0722f09c3bcf6b776ce0c5d0cb185a259a43f.tar.gz
emacs-39c0722f09c3bcf6b776ce0c5d0cb185a259a43f.zip
(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."
2091 (let ((col (current-column))) 2091 (let ((col (current-column)))
2092 (forward-char -1) 2092 (forward-char -1)
2093 (setq col (- col (current-column))) 2093 (setq col (- col (current-column)))
2094 (insert-char ?\ col) 2094 (insert-char ?\ col)
2095 (delete-char 1))) 2095 (delete-char 1)))
2096 (forward-char -1) 2096 (forward-char -1)
2097 (setq count (1- count)))))) 2097 (setq count (1- count))))))