aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorKenichi Handa2010-09-27 14:42:43 +0900
committerKenichi Handa2010-09-27 14:42:43 +0900
commitb3253cd4b4bcbe1ab4ad1fdc98b30c33af70332c (patch)
tree4d55005558f96dfb44bfcd746098ed0882aff2d0 /src/eval.c
parent4be9765d4bad14d68cdfee2a2c6afe1001d9516a (diff)
parente5fa38990bca723fc3ef1d0ede792e8ff84b84f7 (diff)
downloademacs-b3253cd4b4bcbe1ab4ad1fdc98b30c33af70332c.tar.gz
emacs-b3253cd4b4bcbe1ab4ad1fdc98b30c33af70332c.zip
merge trunk
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/eval.c b/src/eval.c
index 89d353cf7cb..d64d15040df 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -79,7 +79,7 @@ Lisp_Object Vautoload_queue;
79 79
80/* Current number of specbindings allocated in specpdl. */ 80/* Current number of specbindings allocated in specpdl. */
81 81
82int specpdl_size; 82EMACS_INT specpdl_size;
83 83
84/* Pointer to beginning of specpdl. */ 84/* Pointer to beginning of specpdl. */
85 85
@@ -95,7 +95,7 @@ EMACS_INT max_specpdl_size;
95 95
96/* Depth in Lisp evaluations and function calls. */ 96/* Depth in Lisp evaluations and function calls. */
97 97
98int lisp_eval_depth; 98EMACS_INT lisp_eval_depth;
99 99
100/* Maximum allowed depth in Lisp evaluations and function calls. */ 100/* Maximum allowed depth in Lisp evaluations and function calls. */
101 101
@@ -216,7 +216,7 @@ call_debugger (Lisp_Object arg)
216 int debug_while_redisplaying; 216 int debug_while_redisplaying;
217 int count = SPECPDL_INDEX (); 217 int count = SPECPDL_INDEX ();
218 Lisp_Object val; 218 Lisp_Object val;
219 int old_max = max_specpdl_size; 219 EMACS_INT old_max = max_specpdl_size;
220 220
221 /* Temporarily bump up the stack limits, 221 /* Temporarily bump up the stack limits,
222 so the debugger won't run out of stack. */ 222 so the debugger won't run out of stack. */
@@ -1992,7 +1992,7 @@ void
1992verror (const char *m, va_list ap) 1992verror (const char *m, va_list ap)
1993{ 1993{
1994 char buf[200]; 1994 char buf[200];
1995 int size = 200; 1995 EMACS_INT size = 200;
1996 int mlen; 1996 int mlen;
1997 char *buffer = buf; 1997 char *buffer = buf;
1998 char *args[3]; 1998 char *args[3];
@@ -2003,7 +2003,7 @@ verror (const char *m, va_list ap)
2003 2003
2004 while (1) 2004 while (1)
2005 { 2005 {
2006 int used; 2006 EMACS_INT used;
2007 used = doprnt (buffer, size, m, m + mlen, ap); 2007 used = doprnt (buffer, size, m, m + mlen, ap);
2008 if (used < size) 2008 if (used < size)
2009 break; 2009 break;