aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Steingold2013-01-31 17:37:54 -0500
committerSam Steingold2013-01-31 17:37:54 -0500
commit1e77b18e33526319ee8bb9f1ebb28860ad20a4c2 (patch)
treeb71bfb9e3f332845cf0b520599d76ec9b2ab26b1
parent20a8c4779268aa4be293ac44abb3477871cd7084 (diff)
downloademacs-1e77b18e33526319ee8bb9f1ebb28860ad20a4c2.tar.gz
emacs-1e77b18e33526319ee8bb9f1ebb28860ad20a4c2.zip
fix last patch
-rw-r--r--lisp/simple.el2
1 files changed, 1 insertions, 1 deletions
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."
805 ;; otherwise delete all excees spaces. 805 ;; otherwise delete all excees spaces.
806 (delete-region (if (and (not single-shot) (zerop n) (= mid end)) 806 (delete-region (if (and (not single-shot) (zerop n) (= mid end))
807 start mid) end) 807 start mid) end)
808 (insert (make-string ?\s n)))) 808 (insert (make-string n ?\s))))
809 809
810 ;; Command run for the second time. 810 ;; Command run for the second time.
811 ((not (equal orig-pos (point))) 811 ((not (equal orig-pos (point)))