]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix wording of error message in staticpro.
authorEli Zaretskii <eliz@gnu.org>
Thu, 18 Oct 2012 18:21:55 +0000 (20:21 +0200)
committerEli Zaretskii <eliz@gnu.org>
Thu, 18 Oct 2012 18:21:55 +0000 (20:21 +0200)
src/alloc.c

index 08dc26784cc32275f17fe1608f8d7da3f0133d31..257e4fdd5e3ab1d8d510e28782de988b042ff1d3 100644 (file)
@@ -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.");
 }
 
 \f