From: Richard M. Stallman Date: Sat, 22 Mar 1997 04:13:05 +0000 (+0000) Subject: (print): Generate a backslash in \2e10. X-Git-Tag: emacs-20.1~2722 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e837058bc33ac4055f8456f71081692734217d20;p=emacs.git (print): Generate a backslash in \2e10. --- diff --git a/src/print.c b/src/print.c index f592f4a769c..57f6ffdf826 100644 --- a/src/print.c +++ b/src/print.c @@ -1018,7 +1018,9 @@ print (obj, printcharfun, escapeflag) confusing = 0; else { - while (p != end && *p >= '0' && *p <= '9') + while (p != end && ((*p >= '0' && *p <= '9') + /* Needed for \2e10. */ + || *p == 'e')) p++; confusing = (end == p); }