changeset 105612:2eb955b84b6b

(print_object): Escape a symbol like "2E10" too.
author Kenichi Handa <handa@m17n.org>
date Thu, 15 Oct 2009 07:22:11 +0000
parents 01e892771abe
children 8815cb207a2b
files src/print.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);
 	  }