# HG changeset patch # User Kenichi Handa # Date 1255591331 0 # Node ID 2eb955b84b6bf34a403c5a90d778c38ebad67255 # Parent 01e892771abe4ee96cc81b08d28d12d0b540c537 (print_object): Escape a symbol like "2E10" too. diff -r 01e892771abe -r 2eb955b84b6b src/print.c --- a/src/print.c Thu Oct 15 06:50:34 2009 +0000 +++ b/src/print.c Thu Oct 15 07:22:11 2009 +0000 @@ -1753,7 +1753,7 @@ { while (p != end && ((*p >= '0' && *p <= '9') /* Needed for \2e10. */ - || *p == 'e')) + || *p == 'e' || *p == 'E')) p++; confusing = (end == p); }