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
01a8d3fa
Commit
01a8d3fa
authored
Oct 15, 2009
by
Kenichi Handa
Browse files
(print_object): Escape a symbol like "2E10" too.
parent
d7a0fd6f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/print.c
src/print.c
+1
-1
No files found.
src/ChangeLog
View file @
01a8d3fa
2009-10-15 Kenichi Handa <handa@m17n.org>
* print.c (print_object): Escape a symbol like "2E10" too.
2009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
Cleanups and changes for 64-bit compile under Snow Leopard. Based
on suggestions by Erik Charlebois.
...
...
src/print.c
View file @
01a8d3fa
...
...
@@ -1753,7 +1753,7 @@ print_object (obj, printcharfun, escapeflag)
{
while
(
p
!=
end
&&
((
*
p
>=
'0'
&&
*
p
<=
'9'
)
/* Needed for \2e10. */
||
*
p
==
'e'
))
||
*
p
==
'e'
||
*
p
==
'E'
))
p
++
;
confusing
=
(
end
==
p
);
}
...
...
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