summaryrefslogtreecommitdiff
path: root/src/thread.h
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-07-03 13:12:10 -0600
committerTom Tromey <tromey@redhat.com>2013-07-03 13:12:10 -0600
commit1d10d048003619f4e2d396a03274adad0dec78ba (patch)
treee72f771f783ca3679d8b10d0910cecae1695391a /src/thread.h
parentfbadec0d00820939ccac548aa54ed67a540bdd80 (diff)
downloademacs-1d10d048003619f4e2d396a03274adad0dec78ba.tar.gz
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
struct specbinding *m_specpdl_ptr;
#define specpdl_ptr (current_thread->m_specpdl_ptr)
- /* Pointer to the first "saved" element in specpdl. When this
- thread is swapped out, the current values of all specpdl bindings
- are pushed onto the specpdl; then these are popped again when
- switching back to this thread. */
- struct specbinding *m_saved_specpdl_ptr;
-
/* Depth in Lisp evaluations and function calls. */
EMACS_INT m_lisp_eval_depth;
#define lisp_eval_depth (current_thread->m_lisp_eval_depth)