aboutsummaryrefslogtreecommitdiffstats
path: root/src/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread.h')
-rw-r--r--src/thread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/thread.h b/src/thread.h
index e43b0a335aa..e77d1144ecf 100644
--- a/src/thread.h
+++ b/src/thread.h
@@ -92,11 +92,11 @@ struct thread_state
92#define specpdl_size (current_thread->m_specpdl_size) 92#define specpdl_size (current_thread->m_specpdl_size)
93 93
94 /* Pointer to beginning of specpdl. */ 94 /* Pointer to beginning of specpdl. */
95 struct specbinding *m_specpdl; 95 union specbinding *m_specpdl;
96#define specpdl (current_thread->m_specpdl) 96#define specpdl (current_thread->m_specpdl)
97 97
98 /* Pointer to first unused element in specpdl. */ 98 /* Pointer to first unused element in specpdl. */
99 struct specbinding *m_specpdl_ptr; 99 union specbinding *m_specpdl_ptr;
100#define specpdl_ptr (current_thread->m_specpdl_ptr) 100#define specpdl_ptr (current_thread->m_specpdl_ptr)
101 101
102 /* Depth in Lisp evaluations and function calls. */ 102 /* Depth in Lisp evaluations and function calls. */