diff options
| author | Eli Zaretskii | 2012-10-18 20:21:55 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2012-10-18 20:21:55 +0200 |
| commit | afb8aa2482db730a8ebdabe314c320c01dda383c (patch) | |
| tree | d1ce4491d52ff1a4cc3a76433f40e116e7033ffd /src/alloc.c | |
| parent | 14145a1e84e9c84af22d66ed272bf1b28f597e24 (diff) | |
| download | emacs-afb8aa2482db730a8ebdabe314c320c01dda383c.tar.gz emacs-afb8aa2482db730a8ebdabe314c320c01dda383c.zip | |
Fix wording of error message in staticpro.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
| 5030 | { | 5030 | { |
| 5031 | staticvec[staticidx++] = varaddress; | 5031 | staticvec[staticidx++] = varaddress; |
| 5032 | if (staticidx >= NSTATICS) | 5032 | if (staticidx >= NSTATICS) |
| 5033 | fatal ("NSTATICS too small. Try increasing and recompiling Emacs."); | 5033 | fatal ("NSTATICS too small; try increasing and recompiling Emacs."); |
| 5034 | } | 5034 | } |
| 5035 | 5035 | ||
| 5036 | 5036 | ||