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
d73f2d85
Commit
d73f2d85
authored
Sep 26, 2014
by
Leo Liu
Browse files
* emacs-lisp/cl-extra.el (cl-parse-integer): Fix last change.
parent
89b354a5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
lisp/emacs-lisp/cl-extra.el
lisp/emacs-lisp/cl-extra.el
+2
-1
No files found.
lisp/emacs-lisp/cl-extra.el
View file @
d73f2d85
...
...
@@ -415,7 +415,8 @@ as an integer unless JUNK-ALLOWED is non-nil."
(
skip-whitespace
)
(
cond
((
and
junk-allowed
(
null
sum
))
sum
)
(
junk-allowed
(
*
sign
sum
))
((
/=
start
end
)
(
error
"Not an integer string: %s"
string
))
((
or
(
/=
start
end
)
(
null
sum
))
(
error
"Not an integer string: `%s'"
string
))
(
t
(
*
sign
sum
)))))))
...
...
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