aboutsummaryrefslogtreecommitdiffstats
path: root/src/print.c
diff options
context:
space:
mode:
authorKenichi Handa2009-10-15 07:22:27 +0000
committerKenichi Handa2009-10-15 07:22:27 +0000
commit01a8d3fa9734a937617b408c3b43cb2da2daee33 (patch)
tree2753cd1153ee67dc977ea2854ad8227f8f87f62b /src/print.c
parentd7a0fd6fcd3d90020bae3347bd0ca3627563fbc0 (diff)
downloademacs-01a8d3fa9734a937617b408c3b43cb2da2daee33.tar.gz
emacs-01a8d3fa9734a937617b408c3b43cb2da2daee33.zip
(print_object): Escape a symbol like "2E10" too.
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c
index 7f526243346..5eee386cab7 100644
--- a/src/print.c
+++ b/src/print.c
@@ -1753,7 +1753,7 @@ print_object (obj, printcharfun, escapeflag)
1753 { 1753 {
1754 while (p != end && ((*p >= '0' && *p <= '9') 1754 while (p != end && ((*p >= '0' && *p <= '9')
1755 /* Needed for \2e10. */ 1755 /* Needed for \2e10. */
1756 || *p == 'e')) 1756 || *p == 'e' || *p == 'E'))
1757 p++; 1757 p++;
1758 confusing = (end == p); 1758 confusing = (end == p);
1759 } 1759 }