aboutsummaryrefslogtreecommitdiffstats
path: root/src/editfns.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/editfns.c')
-rw-r--r--src/editfns.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 6b110b3d0e0..07fe3c68da0 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -46,7 +46,6 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
46#include <c-ctype.h> 46#include <c-ctype.h>
47#include <intprops.h> 47#include <intprops.h>
48#include <stdlib.h> 48#include <stdlib.h>
49#include <verify.h>
50 49
51#include "composite.h" 50#include "composite.h"
52#include "intervals.h" 51#include "intervals.h"
@@ -3408,7 +3407,7 @@ styled_format (ptrdiff_t nargs, Lisp_Object *args, bool message)
3408 SPRINTF_BUFSIZE = (sizeof "-." + (LDBL_MAX_10_EXP + 1) 3407 SPRINTF_BUFSIZE = (sizeof "-." + (LDBL_MAX_10_EXP + 1)
3409 + USEFUL_PRECISION_MAX) 3408 + USEFUL_PRECISION_MAX)
3410 }; 3409 };
3411 verify (USEFUL_PRECISION_MAX > 0); 3410 static_assert (USEFUL_PRECISION_MAX > 0);
3412 3411
3413 ptrdiff_t n; /* The number of the next arg to substitute. */ 3412 ptrdiff_t n; /* The number of the next arg to substitute. */
3414 char initial_buffer[1000 + SPRINTF_BUFSIZE]; 3413 char initial_buffer[1000 + SPRINTF_BUFSIZE];