From: Eli Zaretskii Date: Thu, 18 Oct 2012 18:21:55 +0000 (+0200) Subject: Fix wording of error message in staticpro. X-Git-Tag: emacs-24.2.90~221 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=afb8aa2482db730a8ebdabe314c320c01dda383c;p=emacs.git Fix wording of error message in staticpro. --- diff --git a/src/alloc.c b/src/alloc.c index 08dc26784cc..257e4fdd5e3 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."); }