diff options
| author | Deniz Dogan | 2011-02-16 22:06:23 +0100 |
|---|---|---|
| committer | Deniz Dogan | 2011-02-16 22:06:23 +0100 |
| commit | be4a1d714e48267dfaac06e99184040242880754 (patch) | |
| tree | 11067c25a062983996e664940ce283b34cd5db90 | |
| parent | 274c2d34f170815260af2339c52cfc52ea1de3f7 (diff) | |
| download | emacs-be4a1d714e48267dfaac06e99184040242880754.tar.gz emacs-be4a1d714e48267dfaac06e99184040242880754.zip | |
* lisp/simple.el (just-one-space): Remove useless `or' call.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/simple.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d8831d56c0e..3b8354c9b0f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-02-16 Deniz Dogan <deniz.a.m.dogan@gmail.com> | ||
| 2 | |||
| 3 | * simple.el (just-one-space): Remove useless `or' call. | ||
| 4 | |||
| 1 | 2011-02-16 Alex Harsanyi <AlexHarsanyi@gmail.com> | 5 | 2011-02-16 Alex Harsanyi <AlexHarsanyi@gmail.com> |
| 2 | 6 | ||
| 3 | * soap-client.el (soap-well-known-xmlns, soap-local-xmlns) | 7 | * soap-client.el (soap-well-known-xmlns, soap-local-xmlns) |
diff --git a/lisp/simple.el b/lisp/simple.el index 4d2a0e69836..531c9212e34 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -778,7 +778,7 @@ If N is negative, delete newlines as well." | |||
| 778 | (n (abs n))) | 778 | (n (abs n))) |
| 779 | (skip-chars-backward skip-characters) | 779 | (skip-chars-backward skip-characters) |
| 780 | (constrain-to-field nil orig-pos) | 780 | (constrain-to-field nil orig-pos) |
| 781 | (dotimes (i (or n 1)) | 781 | (dotimes (i n) |
| 782 | (if (= (following-char) ?\s) | 782 | (if (= (following-char) ?\s) |
| 783 | (forward-char 1) | 783 | (forward-char 1) |
| 784 | (insert ?\s))) | 784 | (insert ?\s))) |