aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-08-18 23:11:38 -0700
committerPaul Eggert2011-08-18 23:11:38 -0700
commit81f7c12e8079e2fa66cc14c34bb43260a15a190c (patch)
tree8a3311f8917cabfc82202c21fc6a1bf657928119 /src
parent2124ec92ffa31ba0a2e7b177f8de2dd6e27ded6d (diff)
downloademacs-81f7c12e8079e2fa66cc14c34bb43260a15a190c.tar.gz
emacs-81f7c12e8079e2fa66cc14c34bb43260a15a190c.zip
Fix comment.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 90b559dfdd5..6759016766f 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -3889,7 +3889,7 @@ usage: (format STRING &rest OBJECTS) */)
3889 : -1)), 3889 : -1)),
3890 3890
3891 /* Maximum number of bytes generated by any format, if 3891 /* Maximum number of bytes generated by any format, if
3892 precision is no more than DBL_USEFUL_PRECISION_MAX. 3892 precision is no more than USEFUL_PRECISION_MAX.
3893 On all practical hosts, %f is the worst case. */ 3893 On all practical hosts, %f is the worst case. */
3894 SPRINTF_BUFSIZE = 3894 SPRINTF_BUFSIZE =
3895 sizeof "-." + (DBL_MAX_10_EXP + 1) + USEFUL_PRECISION_MAX, 3895 sizeof "-." + (DBL_MAX_10_EXP + 1) + USEFUL_PRECISION_MAX,