aboutsummaryrefslogtreecommitdiffstats
path: root/src/thread.c
diff options
context:
space:
mode:
authorPaul Eggert2017-05-02 15:04:54 -0700
committerPaul Eggert2017-05-02 15:05:08 -0700
commitb867eb8ecf67e9fb8167d950316ba762ac561b1c (patch)
tree17a657b2b9231fd53117aa9acf1a165c14aa023b /src/thread.c
parentbc4d6185528b7e0933cd0486879ea3c2fbc7cf5a (diff)
downloademacs-b867eb8ecf67e9fb8167d950316ba762ac561b1c.tar.gz
emacs-b867eb8ecf67e9fb8167d950316ba762ac561b1c.zip
Use ptrdiff_t, not int, for stack sizes
* src/thread.c (invoke_thread_function): * src/xterm.c (x_cr_export_frames): Don’t assume SPECPDL_INDEX fits in ‘int’.
Diffstat (limited to 'src/thread.c')
-rw-r--r--src/thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread.c b/src/thread.c
index 9ea7e121a82..e3787971a53 100644
--- a/src/thread.c
+++ b/src/thread.c
@@ -664,7 +664,7 @@ DEFUN ("thread-yield", Fthread_yield, Sthread_yield, 0, 0, 0,
664static Lisp_Object 664static Lisp_Object
665invoke_thread_function (void) 665invoke_thread_function (void)
666{ 666{
667 int count = SPECPDL_INDEX (); 667 ptrdiff_t count = SPECPDL_INDEX ();
668 668
669 Ffuncall (1, &current_thread->function); 669 Ffuncall (1, &current_thread->function);
670 return unbind_to (count, Qnil); 670 return unbind_to (count, Qnil);