summaryrefslogtreecommitdiff
path: root/lisp/misc.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2006-11-27 14:00:11 +0000
committerJuanma Barranquero <lekktu@gmail.com>2006-11-27 14:00:11 +0000
commit8ec93905154eab715c1eed086b850d42977c4de6 (patch)
treec37809ec300917dc179fc4146d09929a15dc8b9e /lisp/misc.el
parent0d308ecc02980b4619993433e227d03a9e0938be (diff)
downloademacs-8ec93905154eab715c1eed086b850d42977c4de6.tar.gz
(copy-from-above-command): "?\ " -> "?\s".
Diffstat (limited to 'lisp/misc.el')
-rw-r--r--lisp/misc.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/misc.el b/lisp/misc.el
index e4c54092a49..a79328343ae 100644
--- a/lisp/misc.el
+++ b/lisp/misc.el
@@ -48,7 +48,7 @@ The characters copied are inserted in the buffer before point."
(if (< cc (current-column))
(if (= (preceding-char) ?\t)
(progn
- (setq string (make-string (min n (- (current-column) cc)) ?\ ))
+ (setq string (make-string (min n (- (current-column) cc)) ?\s))
(setq n (- n (min n (- (current-column) cc)))))
;; In middle of ctl char => copy that whole char.
(backward-char 1)))