diff options
Diffstat (limited to 'src/thread.h')
| -rw-r--r-- | src/thread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/thread.h b/src/thread.h index 0090652b358..33f8ea70636 100644 --- a/src/thread.h +++ b/src/thread.h | |||
| @@ -48,7 +48,7 @@ struct thread_state | |||
| 48 | /* The thread's function. */ | 48 | /* The thread's function. */ |
| 49 | Lisp_Object function; | 49 | Lisp_Object function; |
| 50 | 50 | ||
| 51 | /* If non-nil, this thread has been signalled. */ | 51 | /* If non-nil, this thread has been signaled. */ |
| 52 | Lisp_Object error_symbol; | 52 | Lisp_Object error_symbol; |
| 53 | Lisp_Object error_data; | 53 | Lisp_Object error_data; |
| 54 | 54 | ||
| @@ -60,7 +60,7 @@ struct thread_state | |||
| 60 | /* A list of currently active byte-code execution value stacks. | 60 | /* A list of currently active byte-code execution value stacks. |
| 61 | Fbyte_code adds an entry to the head of this list before it starts | 61 | Fbyte_code adds an entry to the head of this list before it starts |
| 62 | processing byte-code, and it removed the entry again when it is | 62 | processing byte-code, and it removed the entry again when it is |
| 63 | done. Signalling an error truncates the list. */ | 63 | done. Signaling an error truncates the list. */ |
| 64 | struct byte_stack *m_byte_stack_list; | 64 | struct byte_stack *m_byte_stack_list; |
| 65 | #define byte_stack_list (current_thread->m_byte_stack_list) | 65 | #define byte_stack_list (current_thread->m_byte_stack_list) |
| 66 | 66 | ||