aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ChangeLog2
-rw-r--r--src/eval.c1
2 files changed, 3 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 5d6eb0a435b..d7dc454c3dc 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
12011-04-16 Paul Eggert <eggert@cs.ucla.edu> 12011-04-16 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
4
3 * data.c (arith_error): Mark with NO_RETURN if it doesn't return. 5 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
4 6
5 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED): 7 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
diff --git a/src/eval.c b/src/eval.c
index c068f5f3fbf..b843ca5b2ec 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -20,6 +20,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20#include <config.h> 20#include <config.h>
21#include <limits.h> 21#include <limits.h>
22#include <setjmp.h> 22#include <setjmp.h>
23#include <stdio.h>
23#include "lisp.h" 24#include "lisp.h"
24#include "blockinput.h" 25#include "blockinput.h"
25#include "commands.h" 26#include "commands.h"