From: Juanma Barranquero Date: Mon, 27 Nov 2006 14:00:11 +0000 (+0000) Subject: (copy-from-above-command): "?\ " -> "?\s". X-Git-Tag: emacs-pretest-22.0.92~465 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ff26cdfe3b9f37965d5c8ac75411f26388820dcc;p=emacs.git (copy-from-above-command): "?\ " -> "?\s". --- 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)))