aboutsummaryrefslogtreecommitdiffstats
path: root/src/thread.h
diff options
context:
space:
mode:
authorTom Tromey2013-07-03 13:12:10 -0600
committerTom Tromey2013-07-03 13:12:10 -0600
commit1d10d048003619f4e2d396a03274adad0dec78ba (patch)
treee72f771f783ca3679d8b10d0910cecae1695391a /src/thread.h
parentfbadec0d00820939ccac548aa54ed67a540bdd80 (diff)
downloademacs-1d10d048003619f4e2d396a03274adad0dec78ba.tar.gz
emacs-1d10d048003619f4e2d396a03274adad0dec78ba.zip
remove unused field from struct thread_state
Diffstat (limited to 'src/thread.h')
-rw-r--r--src/thread.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/thread.h b/src/thread.h
index 9f0eead4637..e43b0a335aa 100644
--- a/src/thread.h
+++ b/src/thread.h
@@ -99,12 +99,6 @@ struct thread_state
99 struct specbinding *m_specpdl_ptr; 99 struct 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 /* Pointer to the first "saved" element in specpdl. When this
103 thread is swapped out, the current values of all specpdl bindings
104 are pushed onto the specpdl; then these are popped again when
105 switching back to this thread. */
106 struct specbinding *m_saved_specpdl_ptr;
107
108 /* Depth in Lisp evaluations and function calls. */ 102 /* Depth in Lisp evaluations and function calls. */
109 EMACS_INT m_lisp_eval_depth; 103 EMACS_INT m_lisp_eval_depth;
110#define lisp_eval_depth (current_thread->m_lisp_eval_depth) 104#define lisp_eval_depth (current_thread->m_lisp_eval_depth)