From: Eli Zaretskii Date: Thu, 18 Oct 2012 18:21:55 +0000 (+0200) Subject: Fix wording of error message in staticpro. X-Git-Url: http://git.hcoop.net/bpt/emacs.git/commitdiff_plain/afb8aa2482db730a8ebdabe314c320c01dda383c Fix wording of error message in staticpro. --- 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."); }