diff options
| author | Paul Eggert | 2013-07-12 17:24:38 -0700 |
|---|---|---|
| committer | Paul Eggert | 2013-07-12 17:24:38 -0700 |
| commit | 5e301d7651c0691bb2bc7f3fbe711fdbe26ac471 (patch) | |
| tree | ee4962eb5ebb86a5de385d554b854864b9a53f21 /src/ChangeLog | |
| parent | c04bbd85c9b5a7db4b7fb62e741563aa848dce67 (diff) | |
| download | emacs-5e301d7651c0691bb2bc7f3fbe711fdbe26ac471.tar.gz emacs-5e301d7651c0691bb2bc7f3fbe711fdbe26ac471.zip | |
Don't lose top specpdl entry when memory is exhausted.
* eval.c (grow_specpdl): Increment specpdl top by 1 and check for
specpdl overflow here, to simplify callers; all callers changed.
Always reserve an unused entry at the stack top; this avoids
losing the top entry's information when memory is exhausted.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 6e3a82c7c13..60e7e376729 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2013-07-13 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Don't lose top specpdl entry when memory is exhausted. | ||
| 4 | * eval.c (grow_specpdl): Increment specpdl top by 1 and check for | ||
| 5 | specpdl overflow here, to simplify callers; all callers changed. | ||
| 6 | Always reserve an unused entry at the stack top; this avoids | ||
| 7 | losing the top entry's information when memory is exhausted. | ||
| 8 | |||
| 1 | 2013-07-12 Paul Eggert <eggert@cs.ucla.edu> | 9 | 2013-07-12 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 10 | ||
| 3 | Clean up errno reporting and fix some errno-reporting bugs. | 11 | Clean up errno reporting and fix some errno-reporting bugs. |