Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
be4a1d71
Commit
be4a1d71
authored
Feb 16, 2011
by
Deniz Dogan
Browse files
* lisp/simple.el (just-one-space): Remove useless `or' call.
parent
274c2d34
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/simple.el
lisp/simple.el
+1
-1
No files found.
lisp/ChangeLog
View file @
be4a1d71
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)
...
...
lisp/simple.el
View file @
be4a1d71
...
...
@@ -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
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment