From: Sam Steingold Date: Thu, 31 Jan 2013 22:37:54 +0000 (-0500) Subject: fix last patch X-Git-Tag: emacs-24.3.90~173^2~7^2~181 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1e77b18e33526319ee8bb9f1ebb28860ad20a4c2;p=emacs.git fix last patch --- diff --git a/lisp/simple.el b/lisp/simple.el index 68409a098d7..3481a736648 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -805,7 +805,7 @@ other words, it will work just like `just-one-space' command." ;; otherwise delete all excees spaces. (delete-region (if (and (not single-shot) (zerop n) (= mid end)) start mid) end) - (insert (make-string ?\s n)))) + (insert (make-string n ?\s)))) ;; Command run for the second time. ((not (equal orig-pos (point)))