From 1e77b18e33526319ee8bb9f1ebb28860ad20a4c2 Mon Sep 17 00:00:00 2001 From: Sam Steingold Date: Thu, 31 Jan 2013 17:37:54 -0500 Subject: [PATCH] fix last patch --- lisp/simple.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))) -- 2.39.5