]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/simple.el (just-one-space): Remove useless `or' call.
authorDeniz Dogan <deniz.a.m.dogan@gmail.com>
Wed, 16 Feb 2011 21:06:23 +0000 (22:06 +0100)
committerDeniz Dogan <deniz.a.m.dogan@gmail.com>
Wed, 16 Feb 2011 21:06:23 +0000 (22:06 +0100)
lisp/ChangeLog
lisp/simple.el

index d8831d56c0e77730c364a9e8c75fbfb922a83f93..3b8354c9b0f108d17abfe071968b0e84b99eec55 100644 (file)
@@ -1,3 +1,7 @@
+2011-02-16  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
+
+       * simple.el (just-one-space): Remove useless `or' call.
+
 2011-02-16  Alex Harsanyi  <AlexHarsanyi@gmail.com>
 
        * soap-client.el (soap-well-known-xmlns, soap-local-xmlns)
index 4d2a0e69836aa4ed1714d967a76553276058aae8..531c9212e34d89b37b336284a58a7f1ff2604089 100644 (file)
@@ -778,7 +778,7 @@ If N is negative, delete newlines as well."
         (n (abs n)))
     (skip-chars-backward skip-characters)
     (constrain-to-field nil orig-pos)
-    (dotimes (i (or n 1))
+    (dotimes (i n)
       (if (= (following-char) ?\s)
          (forward-char 1)
        (insert ?\s)))