From afb8aa2482db730a8ebdabe314c320c01dda383c Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Thu, 18 Oct 2012 20:21:55 +0200 Subject: [PATCH] Fix wording of error message in staticpro. --- src/alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/alloc.c b/src/alloc.c index 08dc26784c..257e4fdd5e 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -5030,7 +5030,7 @@ staticpro (Lisp_Object *varaddress) { staticvec[staticidx++] = varaddress; if (staticidx >= NSTATICS) - fatal ("NSTATICS too small. Try increasing and recompiling Emacs."); + fatal ("NSTATICS too small; try increasing and recompiling Emacs."); } -- 2.20.1