]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix comment.
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 19 Aug 2011 06:11:38 +0000 (23:11 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 19 Aug 2011 06:11:38 +0000 (23:11 -0700)
src/editfns.c

index 90b559dfdd5a762154c1ff8c31ddca64ea444f49..6759016766f98a2476d5e046027e58d6b2bc76f9 100644 (file)
@@ -3889,7 +3889,7 @@ usage: (format STRING &rest OBJECTS)  */)
                      : -1)),
 
                /* Maximum number of bytes generated by any format, if
-                  precision is no more than DBL_USEFUL_PRECISION_MAX.
+                  precision is no more than USEFUL_PRECISION_MAX.
                   On all practical hosts, %f is the worst case.  */
                SPRINTF_BUFSIZE =
                  sizeof "-." + (DBL_MAX_10_EXP + 1) + USEFUL_PRECISION_MAX,